:root {
  color-scheme: dark;
  --background: #07090b;
  --surface: #111418;
  --surface-strong: #171b20;
  --surface-blue: #122538;
  --line: #2a3038;
  --line-soft: #1b2026;
  --text: #f5f7fa;
  --muted: #9ba3ad;
  --blue: #0a84ff;
  --blue-deep: #0864bd;
  --green: #31c95b;
  --red: #ff4d45;
  --amber: #ff9f0a;
  --purple: #9a55df;
  --header-height: 76px;
  --content-width: 1180px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  overflow-x: hidden;
}

body::selection {
  background: var(--blue);
  color: white;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.09;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.scrolled,
.menu-open .site-header {
  background: rgba(7, 9, 11, 0.92);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand img {
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.main-nav a {
  color: #c6ccd3;
  font-size: 0.92rem;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: inline-flex;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--line);
  background: #0c0f12;
  border-radius: 6px;
}

.language-switch button {
  width: 38px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--surface-strong);
  color: white;
}

.header-play-link {
  display: inline-flex;
  height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 6px;
  background: white;
  color: #080a0d;
  font-size: 0.86rem;
  font-weight: 800;
}

.header-play-link svg,
.icon-button svg {
  width: 18px;
  height: 18px;
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: white;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: 40px;
  padding: calc(var(--header-height) + 58px) max(24px, calc((100vw - var(--content-width)) / 2)) 120px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0 0 0 48%;
  background: #0c1117;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 22%;
  right: -8%;
  width: 49%;
  height: 56%;
  border: 1px solid #1e3448;
  transform: rotate(-7deg);
  opacity: 0.75;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid #11171d;
  opacity: 0.8;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  max-width: 640px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 8px;
  font-size: clamp(4.8rem, 7.3vw, 7.4rem);
  font-weight: 900;
}

.hero-lead {
  margin-bottom: 20px;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 750;
  line-height: 1.08;
}

.hero-description {
  max-width: 590px;
  margin-bottom: 34px;
  color: #b0b8c2;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 34px rgba(10, 132, 255, 0.23);
  transition: transform 180ms ease, background-color 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #2390ff;
  transform: translateY(-2px);
}

.primary-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.primary-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.primary-button small {
  font-size: 0.68rem;
}

.primary-button strong {
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c0c7cf;
  font-size: 0.79rem;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  top: 120px;
  min-height: 660px;
  margin-left: 42px;
}

.phone {
  position: absolute;
  padding: 10px;
  border: 1px solid #343a43;
  border-radius: 34px;
  background: #0a0b0d;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.48);
  overflow: hidden;
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  object-fit: contain;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 56px;
  height: 5px;
  border-radius: 4px;
  background: #080a0d;
  transform: translateX(-50%);
  opacity: 0.88;
}

.phone-main {
  z-index: 3;
  right: 8%;
  top: 2%;
  width: 318px;
  transform: rotate(2deg);
}

.phone-secondary {
  z-index: 2;
  left: 2%;
  top: 18%;
  width: 270px;
  transform: rotate(-7deg);
  opacity: 0.8;
}

.floating-stat {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid #39424d;
  border-radius: 7px;
  background: rgba(17, 20, 24, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.floating-stat svg {
  width: 16px;
  height: 16px;
}

.stat-value {
  top: 11%;
  right: 0;
}

.stat-value svg {
  color: var(--green);
}

.stat-local {
  right: 3%;
  bottom: 12%;
}

.stat-local svg {
  color: var(--blue);
}

.hero-next {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - var(--content-width)) / 2));
  right: max(24px, calc((100vw - var(--content-width)) / 2));
  bottom: 0;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #c8ced5;
  font-size: 0.86rem;
  font-weight: 750;
}

.asset-ticker {
  display: flex;
  gap: 8px;
}

.asset-ticker b {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #7f8995;
  font-size: 0.62rem;
}

.section {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
}

.section-band {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #0b0e11;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.focus-copy h2,
.history-copy h2,
.savings-copy h2,
.privacy-copy h2,
.final-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 850;
}

.section-heading > p:last-child,
.focus-copy > p:last-child,
.history-copy > p,
.savings-copy > p,
.privacy-copy > p {
  max-width: 680px;
  font-size: 1.06rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 62px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip span {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
}

.feature-strip span:last-child {
  border-right: 0;
}

.feature-strip svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--blue);
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding-top: 112px;
}

.showcase-copy h3 {
  max-width: 510px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.showcase-copy > p {
  max-width: 520px;
  font-size: 1.05rem;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d3d8de;
  font-size: 0.91rem;
}

.check-list svg {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(49, 201, 91, 0.14);
  color: var(--green);
}

.showcase-media {
  position: relative;
  min-height: 710px;
  background: #0e1318;
  overflow: hidden;
}

.showcase-media::before,
.showcase-media::after {
  content: "";
  position: absolute;
  border: 1px solid #21303f;
}

.showcase-media::before {
  inset: 8% 9%;
}

.showcase-media::after {
  inset: 18% 19%;
}

.phone-showcase {
  z-index: 3;
  top: 8%;
  left: 50%;
  width: 310px;
  transform: translateX(-50%);
}

.allocation-legend {
  position: absolute;
  right: 9%;
  bottom: 8%;
  display: flex;
  gap: 7px;
}

.allocation-legend span {
  width: 34px;
  height: 5px;
}

.legend-green {
  background: var(--green);
}

.legend-blue {
  background: var(--blue);
}

.legend-purple {
  background: var(--purple);
}

.legend-grey {
  background: #a4a7ad;
}

.band-inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
}

.focus-copy {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.focus-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -46px;
}

.focus-copy h2 {
  max-width: 560px;
}

.focus-copy > p:last-child {
  padding-top: 6px;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.focus-list article {
  position: relative;
  min-height: 285px;
  padding: 38px 30px 28px;
  border-right: 1px solid var(--line);
}

.focus-list article:last-child {
  border-right: 0;
}

.focus-list svg {
  width: 32px;
  height: 32px;
  margin: 45px 0 30px;
  color: var(--green);
}

.focus-list h3 {
  font-size: 1.35rem;
}

.focus-list p {
  font-size: 0.91rem;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 26px;
  color: #4e5864;
  font-size: 0.72rem;
  font-weight: 850;
}

.history {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 94px;
}

.history-media {
  position: relative;
  min-height: 800px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-soft);
  background: #0e1318;
  overflow: hidden;
}

.history-media::before,
.history-media::after {
  content: "";
  position: absolute;
  border: 1px solid #21303f;
  pointer-events: none;
}

.history-media::before {
  inset: 8%;
}

.history-media::after {
  inset: 17%;
}

.phone-history {
  position: relative;
  z-index: 2;
  width: min(390px, 76%);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-row div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  margin-bottom: 6px;
  color: white;
  font-size: 1.08rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.76rem;
}

.savings-inner {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 850px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 120px 0;
}

.savings-steps {
  display: grid;
  gap: 0;
  margin-top: 36px;
}

.savings-steps span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}

.savings-steps b {
  color: var(--blue);
  font-size: 0.78rem;
}

.savings-steps i {
  color: #d3d8de;
  font-size: 0.9rem;
  font-style: normal;
}

.savings-visual {
  position: relative;
  min-height: 720px;
}

.phone-savings {
  z-index: 3;
  top: 0;
  right: 4%;
  width: 330px;
  transform: rotate(2deg);
}

.goal-ring {
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 15%;
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 22px solid #263039;
  border-top-color: var(--green);
  border-right-color: var(--blue);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-26deg);
}

.goal-ring div {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(26deg);
}

.goal-ring strong {
  font-size: 1.8rem;
}

.goal-ring span {
  color: var(--muted);
  font-size: 0.75rem;
}

.privacy {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 100px;
}

.privacy-mark {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #1d3448;
  background: #0a1118;
}

.privacy-mark::before,
.privacy-mark::after {
  content: "";
  position: absolute;
  border: 1px solid #1d3448;
}

.privacy-mark::before {
  inset: 12%;
}

.privacy-mark::after {
  inset: 25%;
}

.privacy-mark svg {
  z-index: 2;
  width: 92px;
  height: 92px;
  color: var(--blue);
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  margin: 34px 0;
}

.privacy-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7dce1;
  font-size: 0.88rem;
}

.privacy-points svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.pricing-inner {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
}

.price-comparison {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 64px;
  border: 1px solid var(--line);
}

.price-comparison article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px;
}

.price-comparison article > p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-comparison h3 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.price-comparison article > span {
  color: #b7bec6;
  font-size: 0.88rem;
}

.plan-free {
  background: var(--surface);
}

.plan-premium {
  position: relative;
  border-left: 1px solid #1f4260;
  background: #0c1721;
  overflow: hidden;
}

.plan-premium .plan-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--blue);
}

.plan-premium .primary-button {
  margin-top: 34px;
}

.faq-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: #e6e9ed;
  font-size: 1.06rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 26px;
}

.final-cta {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px;
  border-top: 1px solid #163755;
  background: #091827;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 10% 18%;
  border: 1px solid #1d4568;
  transform: rotate(-4deg);
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 18% 25%;
  border: 1px solid #1d4568;
  transform: rotate(5deg);
}

.final-cta-noise {
  position: absolute;
  z-index: -3;
  inset: 0;
  border-top: 1px solid #17466d;
  border-bottom: 1px solid #17466d;
}

.final-cta > img {
  margin-bottom: 32px;
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
}

.final-cta h2 {
  max-width: 850px;
}

.final-cta > p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.06rem;
}

.final-cta .primary-button {
  margin-top: 22px;
}

footer {
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand span,
footer > p {
  margin: 3px 0 0;
  color: #747d87;
  font-size: 0.72rem;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer nav a {
  color: #9da5ae;
  font-size: 0.78rem;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible {
  animation: reveal-in 600ms ease both;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .mobile-menu-button {
    display: inline-grid;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 9, 11, 0.98);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .header-play-link {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 76px);
  }

  .hero::before {
    inset: 44% 0 0 0;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(690px, 100%);
    margin: 10px auto 0;
  }

  .hero-next {
    position: relative;
    left: auto;
    right: auto;
    grid-column: 1;
    margin-top: 20px;
  }

  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-strip span {
    border-bottom: 1px solid var(--line);
  }

  .showcase,
  .history,
  .savings-inner,
  .privacy {
    grid-template-columns: 1fr;
  }

  .showcase {
    gap: 55px;
  }

  .showcase-media {
    width: min(650px, 100%);
    min-height: 690px;
    margin: 0 auto;
  }

  .focus-copy {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .focus-copy .eyebrow {
    margin-bottom: 20px;
  }

  .focus-copy h2 {
    max-width: 780px;
  }

  .history {
    gap: 56px;
  }

  .history-media {
    order: 2;
  }

  .savings-inner {
    gap: 60px;
  }

  .savings-visual {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .privacy-mark {
    width: min(390px, 100%);
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    display: flex;
    gap: 10px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
    margin-right: auto;
    order: 0;
  }

  .header-actions {
    flex: 0 0 auto;
    order: 1;
  }

  .mobile-menu-button {
    flex: 0 0 auto;
    order: 2;
  }

  .main-nav {
    display: none;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    min-height: 790px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 105px;
  }

  .hero h1 {
    font-size: min(15vw, 4.25rem);
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 335px;
    font-size: 1.85rem;
  }

  .hero-description {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-trust {
    display: flex;
    max-width: 330px;
    gap: 12px 18px;
    margin-top: 26px;
  }

  .hero-visual {
    position: absolute;
    z-index: -1;
    top: 500px;
    right: -148px;
    width: 315px;
    min-height: 470px;
    margin-left: 0;
    opacity: 0.38;
    transform: none;
  }

  .phone-main {
    right: 0;
    width: 245px;
  }

  .phone-secondary {
    display: none;
  }

  .stat-value,
  .stat-local {
    display: none;
  }

  .hero-next {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    width: auto;
    height: auto;
    min-height: 82px;
    margin: 0;
  }

  .asset-ticker {
    display: none;
  }

  .section,
  .band-inner,
  .savings-inner,
  .pricing-inner {
    width: min(100% - 40px, var(--content-width));
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-heading h2,
  .focus-copy h2,
  .history-copy h2,
  .savings-copy h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: 2.55rem;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .feature-strip span {
    min-height: 70px;
    border-right: 0;
  }

  .showcase {
    padding-top: 78px;
  }

  .showcase-copy h3 {
    font-size: 2.3rem;
  }

  .showcase-media {
    min-height: 600px;
  }

  .phone-showcase {
    width: min(290px, 76vw);
  }

  .focus-list {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .focus-list article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .phone-history {
    width: min(350px, 92%);
  }

  .history-media {
    min-height: 780px;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .savings-visual {
    min-height: 650px;
  }

  .phone-savings {
    right: -5%;
    width: min(300px, 76vw);
  }

  .goal-ring {
    left: -4%;
    width: 165px;
    border-width: 17px;
  }

  .goal-ring strong {
    font-size: 1.4rem;
  }

  .privacy {
    gap: 55px;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .price-comparison {
    grid-template-columns: 1fr;
  }

  .plan-premium {
    border-top: 1px solid #1f4260;
    border-left: 0;
  }

  .price-comparison article {
    min-height: 280px;
    padding: 34px 28px;
  }

  .final-cta {
    min-height: 610px;
  }

  footer {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  footer nav {
    flex-wrap: wrap;
  }
}
