:root {
  --navy-950: #030b13;
  --navy-900: #061421;
  --navy-850: #081a2a;
  --navy-800: #0b2235;
  --navy-700: #123650;
  --gold: #f5c451;
  --gold-soft: #ffe09a;
  --emerald: #35e0a1;
  --emerald-deep: #0a9c70;
  --text: #f5faff;
  --muted: #a9bac9;
  --line: rgba(165, 211, 232, .2);
  --glass: rgba(8, 31, 49, .78);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(53, 224, 161, .1), transparent 30rem),
    linear-gradient(155deg, var(--navy-950), var(--navy-900) 42%, #071725);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--emerald);
  color: #02110b;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(245, 196, 81, .12);
  background: rgba(3, 11, 19, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 1000;
  font-style: italic;
  letter-spacing: -.08em;
  line-height: 1;
  text-shadow: 0 3px 22px rgba(245, 196, 81, .2);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #c9d7e2;
  font-weight: 700;
}

.site-nav a {
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, var(--emerald), #0fb37c);
  color: #03150e;
  box-shadow: 0 14px 34px rgba(53, 224, 161, .2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(53, 224, 161, .3);
}

.button-outline {
  border-color: rgba(245, 196, 81, .8);
  color: var(--gold-soft);
  background: rgba(6, 20, 33, .4);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: .78rem;
}

.nav-toggle {
  display: none;
}

.home-hero {
  min-height: 680px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 196, 81, .11);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 19, .96) 0%, rgba(3, 11, 19, .65) 47%, rgba(3, 11, 19, .14) 100%),
    radial-gradient(circle at 72% 42%, rgba(53, 224, 161, .15), transparent 34%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(53, 224, 161, .11);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 760px;
  height: 760px;
  right: -230px;
  top: -180px;
}

.hero-orbit-two {
  width: 520px;
  height: 520px;
  right: -30px;
  top: 70px;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  min-height: 680px;
}

.home-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  padding-block: 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 8px 2px;
  border-radius: 50%;
  background: var(--emerald);
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
}

.home-hero-copy > p:not(.eyebrow),
.hero-intro {
  max-width: 650px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .88rem;
}

.hero-proof b {
  color: var(--emerald);
}

.home-hero-visual {
  position: relative;
  align-self: end;
  min-width: 690px;
  margin-left: -110px;
}

.home-hero-visual img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45));
}

.visual-glow {
  position: absolute;
  inset: 20% 8% 8%;
  border-radius: 50%;
  background: rgba(53, 224, 161, .2);
  filter: blur(70px);
}

.visual-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 196, 81, .5);
  background: rgba(3, 11, 19, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-badge-top {
  top: 20%;
  right: 9%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 1000;
}

.visual-badge-bottom {
  right: 17%;
  bottom: 11%;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--emerald);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 28, 44, .92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 118px;
  padding: 24px 28px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.line-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 224, 161, .45);
  border-radius: 50%;
  color: var(--emerald);
  background: rgba(53, 224, 161, .08);
}

.trust-icon {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip h2,
.trust-strip p {
  margin: 0;
}

.trust-strip h2 {
  font-size: 1.02rem;
  text-transform: uppercase;
}

.trust-strip p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.45;
}

.section {
  padding-block: 92px;
}

.section-dark {
  border-block: 1px solid rgba(165, 211, 232, .1);
  background: linear-gradient(180deg, rgba(2, 10, 17, .34), rgba(10, 33, 50, .48));
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading h2,
.final-cta h2,
.content-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 26px;
  border: 1px solid rgba(245, 196, 81, .34);
  border-radius: 20px;
  background: var(--navy-800);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  transition: transform .22s ease, border-color .22s ease;
}

.experience-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(2, 9, 15, .96) 92%);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .05), transparent 70%);
  transform: translateX(-100%);
  transition: transform .45s ease;
}

.experience-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.experience-card:hover .experience-image,
.experience-card:focus-visible .experience-image {
  transform: scale(1.045);
}

.experience-card:hover::after {
  transform: translateX(100%);
}

.experience-card strong,
.experience-card small {
  position: relative;
  z-index: 2;
}

.experience-card strong {
  color: var(--gold-soft);
  font-size: 1.28rem;
  text-transform: uppercase;
}

.experience-card small {
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.step-card,
.benefit-card,
.content-card,
.article-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.step-card {
  min-height: 260px;
  position: relative;
  padding: 34px;
  text-align: center;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: #04150f;
  font-weight: 1000;
}

.step-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: 4px auto 22px;
  border: 1px solid rgba(53, 224, 161, .5);
  border-radius: 50%;
  color: var(--emerald);
  background: rgba(53, 224, 161, .08);
}

.step-icon-svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3,
.benefit-card h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.step-card p,
.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.step-arrow {
  color: var(--emerald);
  font-size: 3rem;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 0 30px 36px;
  text-align: center;
  overflow: hidden;
}

.benefit-image {
  width: calc(100% + 60px);
  height: 235px;
  margin: 0 -30px 24px;
  object-fit: cover;
  object-position: center;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
  overflow: hidden;
}

.guide-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-card div {
  padding: 22px;
}

.guide-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.guide-card p {
  color: var(--muted);
}

.guide-card span {
  color: var(--emerald);
  font-weight: 800;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-block: 38px 86px;
  padding: 40px;
  border: 1px solid rgba(245, 196, 81, .48);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 50%, rgba(245, 196, 81, .15), transparent 22%),
    linear-gradient(120deg, rgba(10, 37, 52, .95), rgba(3, 14, 23, .95));
  box-shadow: var(--shadow);
}

.final-cta-home {
  grid-template-columns: auto 1fr auto;
}

.final-cta p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cta-art {
  width: 190px;
  height: 132px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 15px 32px rgba(0, 0, 0, .28);
}

.site-footer {
  padding: 56px 0 26px;
  border-top: 1px solid var(--line);
  background: rgba(2, 9, 15, .72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-grid p {
  max-width: 500px;
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 10px 28px;
}

.footer-grid nav a {
  color: #c5d5e1;
}

.responsible {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}

.responsible strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
}

.responsible a {
  margin-left: auto;
  color: var(--gold);
}

.page-hero {
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 80% 30%, rgba(53, 224, 161, .12), transparent 32rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 48px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.hero-visual img {
  max-height: 390px;
  margin-inline: auto;
  object-fit: contain;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  padding-top: 24px;
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumbs a {
  color: var(--gold);
}

.page-content {
  display: grid;
  gap: 22px;
  padding-block: 52px 70px;
}

.content-card {
  position: relative;
  padding: 38px 42px;
}

.content-card h2 {
  padding-right: 72px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.content-card > p {
  color: var(--muted);
}

.section-number {
  position: absolute;
  top: 28px;
  right: 32px;
  color: rgba(245, 196, 81, .35);
  font-size: 2rem;
  font-weight: 1000;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d7e3eb;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 900;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: start;
  width: min(620px, calc(100% - 40px));
  margin: auto;
}

.error-page h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.error-page p:not(.eyebrow) {
  color: var(--muted);
}

.article-main {
  padding-block: 54px 80px;
}

.article-shell {
  padding: clamp(26px, 5vw, 58px);
}

.article-shell h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.06;
}

.article-summary {
  margin: 22px 0 34px;
  padding: 20px 22px;
  border-left: 3px solid var(--emerald);
  background: rgba(53, 224, 161, .06);
  color: #ccdae4;
}

.article-body {
  color: #d5e0e8;
  font-size: 1.05rem;
}

.article-body h2,
.article-body h3 {
  color: var(--gold-soft);
}

.article-body img {
  height: auto;
  border-radius: 16px;
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.article-nav > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.article-nav span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-top-actions {
  margin-bottom: 34px;
}

.article-inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
  padding: 28px;
  border: 1px solid rgba(245, 196, 81, .38);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(53, 224, 161, .08), rgba(245, 196, 81, .06));
}

.article-inline-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.related-guides {
  padding-bottom: 10px;
}

@media (max-width: 1040px) {
  .site-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions .button-outline {
    display: inline-flex;
  }

  .home-hero-grid {
    grid-template-columns: 1fr .8fr;
  }

  .home-hero-visual {
    min-width: 500px;
    margin-left: -90px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    font-size: 2.25rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    background: rgba(8, 31, 49, .8);
  }

  .nav-toggle > span:not(.sr-only) {
    width: 19px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3, 15, 24, .98);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .header-actions .button {
    display: none;
  }

  .header-actions .button-primary {
    min-height: 40px;
    display: inline-flex;
    padding-inline: 13px;
    font-size: .68rem;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero::before {
    background: linear-gradient(180deg, rgba(3, 11, 19, .54), rgba(3, 11, 19, .98) 70%);
  }

  .home-hero-grid {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .home-hero-copy {
    order: 2;
    width: 100%;
    padding: 0 0 58px;
    text-align: left;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.3rem);
  }

  .home-hero-copy > p:not(.eyebrow) {
    margin-block: 20px;
    font-size: 1rem;
  }

  .home-hero-visual {
    order: 1;
    width: calc(100% + 48px);
    min-width: 0;
    margin: -10px -24px -18px;
  }

  .home-hero-visual img {
    max-height: 390px;
  }

  .visual-badge-top {
    top: 17%;
    right: 10%;
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }

  .visual-badge-bottom {
    display: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 12px;
    font-size: .76rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .trust-strip article {
    min-height: auto;
    padding: 18px;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .experience-card {
    min-height: 190px;
    padding: 16px;
  }

  .experience-card strong {
    font-size: .94rem;
  }

  .experience-card small {
    font-size: .75rem;
  }

  .steps-grid,
  .benefit-grid,
  .guide-grid,
  .page-hero-grid,
  .footer-grid,
  .article-nav {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }

  .step-card {
    min-height: 220px;
  }

  .benefit-grid {
    gap: 14px;
  }

  .benefit-card {
    padding: 0 24px 28px;
  }

  .benefit-image {
    width: calc(100% + 48px);
    height: auto;
    max-height: 330px;
    margin: 0 -24px 24px;
  }

  .final-cta,
  .final-cta-home,
  .article-inline-cta {
    grid-template-columns: 1fr;
    margin-bottom: 58px;
    padding: 28px 22px;
  }

  .cta-art {
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .footer-grid nav {
    grid-template-columns: 1fr 1fr;
  }

  .responsible {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .responsible a {
    width: 100%;
    margin-left: 56px;
  }

  .page-hero {
    padding-block: 58px 44px;
  }

  .page-hero-grid {
    gap: 16px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .hero-visual {
    display: none;
  }

  .content-card {
    padding: 28px 24px;
  }

  .content-card h2 {
    padding-right: 46px;
  }

  .section-number {
    top: 22px;
    right: 22px;
    font-size: 1.35rem;
  }
}

@media (max-width: 390px) {
  .header-actions .button-primary {
    display: none;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
