@layer reset, tokens, base, components, utilities, responsive;

@layer reset {

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body,
  h1,
  h2,
  h3,
  p,
  ul {
    margin: 0;
  }

  ul {
    padding: 0;
  }

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

  button,
  a {
    font: inherit;
  }
}

@layer tokens {
  :root {
    color-scheme: dark;
    --black: #040506;
    --black-soft: #080a0d;
    --surface: #0d1014;
    --surface-2: #12161b;
    --white: #f4f5f6;
    --muted: #989fa9;
    --blue: #087cff;
    --blue-dark: #004bb8;
    --red: #ff272d;
    --line: rgba(255, 255, 255, .105);
    --blue-line: rgba(23, 126, 255, .43);
    --shadow: 0 24px 70px rgba(0, 0, 0, .52);
    --shell: min(1440px, calc(100% - 6rem));
    --header-h: 90px;
    --ease: cubic-bezier(.2, .75, .25, 1);
  }
}

@layer base {
  html {
    background: var(--black);
    scroll-padding-top: calc(var(--header-h) + 24px);
  }

  body {
    min-width: 320px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    color: var(--white);
    background: var(--black);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  :focus-visible {
    outline: 2px solid #66adff;
    outline-offset: 4px;
  }

  ::selection {
    color: white;
    background: #075fc7;
  }

  h1,
  h2,
  h3 {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: .98;
    letter-spacing: .025em;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }

  h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
  }

  h3 {
    font-family: "Arial Narrow", "Segoe UI", sans-serif;
    line-height: 1.1;
  }

  p {
    text-wrap: pretty;
  }
}

@layer components {
  .shell {
    width: var(--shell);
    margin-inline: auto;
  }

  .skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    transform: translateY(-150%);
    padding: .8rem 1rem;
    color: #fff;
    background: var(--blue);
  }

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

  .site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background: rgba(4, 5, 6, .78);
    backdrop-filter: blur(18px) saturate(130%);
    transition: height .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  }

  .site-header.is-scrolled {
    height: 74px;
    background: rgba(4, 5, 6, .93);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .33);
  }

  .nav-shell {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.2rem;
  }

  .brand {
    width: 188px;
    flex: 0 0 auto;
  }

  .brand img {
    width: 100%;
  }

  .main-nav {
    display: flex;
    justify-content: center;
    align-items: stretch;
    align-self: stretch;
    gap: clamp(1rem, 2.8vw, 3.6rem);
  }

  .nav-link {
    position: relative;
    display: grid;
    place-items: center;
    color: #aaaeb4;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: color .2s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -1px;
    height: 2px;
    background: var(--blue);
    box-shadow: 0 0 15px var(--blue);
    transition: left .22s var(--ease), right .22s var(--ease);
  }

  .nav-link:hover,
  .nav-link.is-active {
    color: var(--blue);
  }

  .nav-link:hover::after,
  .nav-link.is-active::after {
    left: 0;
    right: 0;
  }

  .menu-toggle {
    display: none;
  }

  .button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.75rem;
    border: 1px solid transparent;
    border-radius: 3px;
    color: white;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .22s var(--ease), filter .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  }

  .button:hover {
    transform: translateY(-3px);
  }

  .button--primary,
  .button--nav {
    background: linear-gradient(180deg, var(--blue), var(--blue-dark));
    border-color: #258cff;
    box-shadow: inset 0 1px rgba(255, 255, 255, .18), 0 12px 34px rgba(0, 89, 213, .22);
  }

  .button--primary:hover,
  .button--nav:hover {
    filter: brightness(1.12);
    box-shadow: 0 0 28px rgba(0, 120, 255, .28), 0 18px 42px rgba(0, 0, 0, .4);
  }

  .button--nav {
    min-height: 50px;
    padding-inline: 1.55rem;
    white-space: nowrap;
  }

  .button--outline {
    border-color: var(--blue-line);
    background: rgba(0, 93, 215, .05);
  }

  .button--outline:hover {
    border-color: var(--blue);
    background: rgba(0, 101, 228, .13);
  }

  .button--large {
    min-height: 62px;
    padding-inline: 2.4rem;
  }

  .text-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: #c4c8ce;
    font-weight: 700;
  }

  .text-link span {
    color: var(--blue);
    transition: transform .2s ease;
  }

  .text-link:hover {
    color: white;
  }

  .text-link:hover span {
    transform: translateY(3px);
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: #b9bdc3;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue);
  }

  .hero {
    position: relative;
    min-height: 780px;
    padding: calc(var(--header-h) + 5rem) 0 6.3rem;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(circle at 64% 53%, rgba(0, 93, 228, .18), transparent 28rem),
      radial-gradient(circle at 19% 90%, rgba(0, 100, 255, .14), transparent 24rem),
      linear-gradient(110deg, #06080b, #030405 62%);
  }

  .hero::after {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .38;
    background-image:
      linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
  }

  .hero-noise {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: .1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  }

  .hero-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 1rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 2.4rem;
  }

  .hero-copy h1 {
    max-width: 670px;
    margin-top: 1.35rem;
    font-size: clamp(4.6rem, 8.5vw, 8rem);
    color: #e9e8e4;
    text-shadow: 0 18px 55px #000;
  }

  .hero-accent {
    margin-top: .45rem;
    color: var(--blue);
    font-size: clamp(1.45rem, 2.3vw, 2.25rem);
    font-weight: 500;
    line-height: 1.15;
  }

  .hero-offer {
    margin-top: 2.4rem;
    max-width: 540px;
  }

  .hero-offer h2 {
    font-family: "Arial Narrow", "Segoe UI", sans-serif;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    letter-spacing: 0;
  }

  .hero-offer p {
    margin-top: .8rem;
    color: var(--muted);
    max-width: 470px;
    font-size: 1.04rem;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-top: 2.1rem;
  }

  .trust-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    color: #858c95;
    font-size: .78rem;
  }

  .trust-row span::before {
    content: "✓";
    margin-right: .45rem;
    color: var(--blue);
  }

  .hero-media {
    position: relative;
    z-index: 1;
    margin-right: -5vw;
    transform: translateY(1.8rem);
  }

  .hero-media::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 26%;
    right: 7%;
    bottom: 0;
    height: 18%;
    background: rgba(0, 95, 255, .34);
    filter: blur(40px);
    border-radius: 50%;
  }

  .hero-media img {
    width: 100%;
    filter: drop-shadow(0 35px 34px rgba(0, 0, 0, .62));
    animation: hero-enter .85s var(--ease) both;
  }

  .hero-glow {
    position: absolute;
    z-index: -2;
    inset: 10% 0 0 20%;
    background: radial-gradient(circle, rgba(0, 102, 255, .18), transparent 65%);
    filter: blur(22px);
  }

  .content-section {
    position: relative;
    padding: 7.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .055);
    background: var(--black);
  }

  .content-section--raised {
    background: linear-gradient(180deg, #090b0e, #050607);
  }

  .content-section--raised::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .25;
    pointer-events: none;
    background: repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, .012) 23px 24px);
  }

  .section-heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-bottom: 3.2rem;
  }

  .section-heading h2 {
    margin-top: 1.15rem;
  }

  .section-heading>p:last-child {
    margin-top: 1.2rem;
    color: var(--muted);
    max-width: 720px;
  }

  .heading-row {
    display: grid;
    grid-template-columns: 1fr .8fr;
    max-width: none;
    align-items: end;
    gap: 4rem;
  }

  .heading-row>p {
    color: var(--muted);
    padding-bottom: .5rem;
  }

  .section-heading--center {
    margin-inline: auto;
    text-align: center;
  }

  .section-heading--center .eyebrow {
    justify-content: center;
  }

  .section-heading--center>p:last-child {
    margin-inline: auto;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .video-card {
    overflow: hidden;
    border: 1px solid var(--blue-line);
    border-radius: 7px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 60%), var(--surface);
    box-shadow: var(--shadow);
    transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
  }

  .video-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue);
    box-shadow: 0 28px 75px rgba(0, 0, 0, .6), 0 0 30px rgba(0, 102, 255, .11);
  }

  .video-card img {
    width: 100%;
    aspect-ratio: 2.45 / 1;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .35s ease;
  }

  .video-card:hover img {
    transform: scale(1.035);
    filter: brightness(1.1);
  }

  .video-card__body {
    padding: 1.45rem 1.5rem 1.65rem;
  }

  .video-card__body span {
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .video-card__body h3 {
    margin-top: .6rem;
    font-size: 1.35rem;
  }

  .video-card__body p {
    margin-top: .65rem;
    color: var(--muted);
    font-size: .9rem;
  }

  .benefit-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
  }

  .benefit-card {
    min-height: 275px;
    padding: 2rem;
    background: rgba(255, 255, 255, .016);
    border-right: 1px solid var(--line);
    transition: background .24s ease, transform .24s var(--ease);
  }

  .benefit-card:last-child {
    border-right: 0;
  }

  .benefit-card:hover {
    background: rgba(0, 101, 235, .08);
    transform: translateY(-5px);
  }

  .benefit-icon {
    display: grid;
    place-items: center;
    width: 50px;
    aspect-ratio: 1;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    font-weight: 800;
  }

  .benefit-icon--red {
    color: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 18px rgba(255, 39, 45, .12);
  }

  .benefit-card h3 {
    margin-top: 2.2rem;
    font-size: 1.35rem;
  }

  .benefit-card p {
    margin-top: .75rem;
    color: var(--muted);
    font-size: .92rem;
  }

  .community {
    padding: 6.5rem 0;
    border-block: 1px solid rgba(0, 120, 255, .25);
    background: radial-gradient(circle at 20% 50%, rgba(0, 105, 255, .11), transparent 27rem), #07090b;
  }

  .community-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 7rem;
    align-items: center;
  }

  .community h2 {
    margin-top: 1.1rem;
    max-width: 800px;
  }

  .community-copy>p {
    color: #b0b5bc;
    font-size: 1.08rem;
  }

  .check-list {
    display: grid;
    gap: .8rem;
    margin-top: 1.5rem;
    list-style: none;
    color: #c1c5ca;
  }

  .check-list li {
    position: relative;
    padding-left: 1.6rem;
  }

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

  .plans {
    background: radial-gradient(circle at 50% 20%, rgba(0, 104, 255, .09), transparent 28rem), var(--black);
  }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
  }

  .plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 570px;
    padding: 2.4rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(150deg, rgba(255, 255, 255, .04), transparent 45%), var(--surface);
    box-shadow: var(--shadow);
    transition: transform .28s var(--ease), border-color .28s ease, box-shadow .28s ease;
  }

  .plan-card:hover {
    transform: translateY(-9px);
    border-color: var(--blue-line);
  }

  .plan-card--featured {
    border-color: var(--blue);
    background: linear-gradient(150deg, rgba(0, 107, 255, .16), transparent 43%), var(--surface);
    box-shadow: var(--shadow), 0 0 44px rgba(0, 106, 255, .09);
  }

  .popular-badge {
    position: absolute;
    top: 0;
    right: 1.3rem;
    transform: translateY(-50%);
    padding: .45rem .8rem;
    background: var(--blue);
    border-radius: 2px;
    color: white;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .plan-kicker {
    color: var(--blue);
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .plan-card h3 {
    margin-top: 1rem;
    font-size: clamp(1.65rem, 2.3vw, 2.2rem);
  }

  .plan-description {
    min-height: 84px;
    margin-top: 1.3rem;
    color: var(--muted);
  }

  .plan-card .check-list {
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
  }

  .plan-card .button {
    width: 100%;
    margin-top: auto;
  }

  .plans-note {
    margin-top: 1.4rem;
    color: #757c84;
    text-align: center;
    font-size: .78rem;
  }

  .join-section {
    padding: 1px 0 7.5rem;
    background: var(--black);
  }

  .join-card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 3.6rem 4rem;
    border: 1px solid var(--blue-line);
    border-radius: 8px;
    background: radial-gradient(circle at 80% 50%, rgba(0, 109, 255, .18), transparent 24rem), linear-gradient(120deg, #0e1217, #07090c);
    box-shadow: var(--shadow);
  }

  .join-card::after {
    content: "4";
    position: absolute;
    right: 17%;
    bottom: -60%;
    color: rgba(255, 255, 255, .025);
    font: 700 24rem/.8 Impact, sans-serif;
    pointer-events: none;
  }

  .join-card h2 {
    margin-top: 1rem;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  }

  .join-card p:not(.eyebrow) {
    margin-top: 1rem;
    color: var(--muted);
  }

  .about {
    background: linear-gradient(180deg, #080a0d, #040506);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 7rem;
    align-items: start;
  }

  .about h2 {
    margin-top: 1rem;
  }

  .about-grid>div:last-child>p {
    color: #afb4bb;
    font-size: 1.08rem;
  }

  .about-grid .text-link {
    margin-top: 2rem;
  }

  .faq {
    background: var(--black);
  }

  .faq-layout {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 6rem;
  }

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

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

  summary {
    position: relative;
    padding: 1.5rem 3rem 1.5rem 0;
    cursor: pointer;
    color: #e8eaed;
    font-weight: 700;
    list-style: none;
  }

  summary::-webkit-details-marker {
    display: none;
  }

  summary::after {
    content: "+";
    position: absolute;
    right: .4rem;
    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform .2s ease;
  }

  details[open] summary::after {
    transform: rotate(45deg);
  }

  details p {
    padding: 0 3rem 1.5rem 0;
    color: var(--muted);
  }

  .site-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 110, 255, .22);
    background: #020303;
    color: #777e86;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.2rem;
  }

  .brand--footer {
    width: 150px;
    opacity: .84;
  }

  .footer-grid>p {
    font-size: .83rem;
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: .8rem;
  }

  .footer-links a:hover {
    color: var(--blue);
  }

  .copyright {
    grid-column: 1 / -1;
    padding-top: 1.3rem;
    border-top: 1px solid var(--line);
  }

  .testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .scroll-top-fab {
    position: fixed;
    z-index: 105;
    right: max(14px, env(safe-area-inset-right, 0px));
    bottom: max(18px, env(safe-area-inset-bottom, 18px));
    width: 50px;
    height: 50px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 89, 213, .35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.16s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.16s ease;
  }

  .scroll-top-fab.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .scroll-top-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 89, 213, .45);
  }

  .scroll-top-fab:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 89, 213, .3);
  }

  .scroll-top-fab:focus-visible {
    outline: 2px solid #66adff;
    outline-offset: 3px;
  }

  .scroll-top-fab svg {
    display: block;
  }

  .video-card {
    cursor: pointer;
  }

  .video-card:active img,
  .video-card.is-tapped img {
    transform: scale(1.12);
    filter: brightness(1.15) saturate(1.1);
  }

  .video-card.is-tapped {
    box-shadow: 0 28px 75px rgba(0, 0, 0, .6);
    border-color: var(--blue);
    z-index: 2;
  }

  .menu-backdrop,
  .mobile-nav-sheet {
    display: none;
  }

  .voices-intro {
    display: grid;
    grid-template-columns: 1.05fr .75fr;
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
  }

  .voices-intro .section-heading {
    margin-bottom: 0;
  }

  .testimonial-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 3rem;
    align-items: end;
    margin-top: 7rem;
    margin-bottom: 2.4rem;
  }

  .testimonial-heading h3 {
    margin-top: .85rem;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(2.2rem, 4.3vw, 4rem);
  }

  .testimonial-heading>p {
    color: #7f8791;
    font-size: .78rem;
  }
}

@layer utilities {
  .section-anchor {
    scroll-margin-top: calc(var(--header-h) + 20px);
  }
}

@layer responsive {
  @media (max-width: 1180px) {
    :root {
      --shell: min(100% - 3rem, 1120px);
    }

    .main-nav {
      gap: 1.25rem;
    }

    .nav-link {
      font-size: .68rem;
    }

    .brand {
      width: 158px;
    }

    .button--nav {
      display: none;
    }

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

    .hero-grid {
      grid-template-columns: .9fr 1.1fr;
    }

    .hero-copy h1 {
      font-size: clamp(4.1rem, 8.2vw, 6.8rem);
    }
  }

  @media (max-width: 900px) {
    :root {
      --header-h: 76px;
    }

    .nav-shell {
      display: flex;
      justify-content: space-between;
    }

    .brand {
      width: 154px;
    }

    .menu-toggle {
      display: grid;
      width: 46px;
      height: 46px;
      place-content: center;
      gap: 5px;
      border: 1px solid var(--line);
      border-radius: 3px;
      color: white;
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      transition: transform .22s ease, opacity .22s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
      position: fixed;
      inset: var(--header-h) 0 auto;
      display: grid;
      align-content: start;
      gap: 0;
      padding: 1rem 1.5rem 1.5rem;
      border-bottom: 1px solid var(--blue-line);
      background: rgba(4, 5, 6, .98);
      transform: translateY(-125%);
      opacity: 0;
      visibility: hidden;
      transition: transform .28s var(--ease), opacity .2s ease, visibility .2s ease;
      z-index: 200;
    }

    .main-nav.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }

    .menu-backdrop {
      display: block;
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 199;
      background: rgba(4, 5, 6, 0.6);
      backdrop-filter: blur(8px) saturate(0.95);
      -webkit-backdrop-filter: blur(8px) saturate(0.95);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition:
        opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s;
    }

    .menu-backdrop.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-nav-sheet {
      display: block;
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      z-index: 210;
      max-height: calc(100vh - var(--header-h));
      max-height: calc(100dvh - var(--header-h));
      box-sizing: border-box;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 0 1.5rem 1.25rem;
      padding-right: max(1.5rem, env(safe-area-inset-right));
      padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
      padding-left: max(1.5rem, env(safe-area-inset-left));
      background: rgba(4, 5, 6, .98);
      border-bottom: 1px solid var(--blue-line);
      box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
      transform: translateY(-100%);
      visibility: hidden;
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.28s;
    }

    html.menu-open .mobile-nav-sheet {
      transform: translateY(0);
      visibility: visible;
    }

    .mobile-nav-sheet-head {
      display: none;
    }

    .mobile-nav-sheet-nav {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mobile-nav-sheet-link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding-block: 0.8rem;
      color: #aaaeb4;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .075em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid var(--line);
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-nav-sheet-link:last-child {
      border-bottom: none;
    }

    .mobile-nav-sheet-link:hover,
    .mobile-nav-sheet-link.is-active {
      color: var(--blue);
      background: rgba(0, 101, 235, .08);
    }

    .nav-link {
      display: block;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
      font-size: .8rem;
    }

    .nav-link::after {
      display: none;
    }

    .hero {
      min-height: auto;
      padding-top: calc(var(--header-h) + 4rem);
    }

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

    .hero-copy {
      text-align: center;
    }

    .hero-copy .eyebrow,
    .hero-actions,
    .trust-row {
      justify-content: center;
    }

    .hero-copy h1,
    .hero-offer,
    .hero-offer p {
      margin-inline: auto;
    }

    .hero-media {
      margin: 1.8rem -12vw 0;
      transform: none;
    }

    .heading-row,
    .community-grid,
    .about-grid,
    .faq-layout {
      grid-template-columns: 1fr;
      gap: 2.2rem;
    }

    .heading-row>p {
      max-width: 680px;
    }

    .video-grid,
    .plans-grid,
    .voices-points,
    .voices-intro,
    .testimonial-heading {
      grid-template-columns: 1fr;
    }

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

    .video-card {
      display: block;
    }

    .video-card img {
      height: 100%;
      aspect-ratio: auto;
      object-position: center 40%;
    }

    .benefit-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card:nth-child(2) {
      border-right: 0;
    }

    .benefit-card:nth-child(-n+2) {
      border-bottom: 1px solid var(--line);
    }

    .plan-card {
      min-height: 490px;
    }

    .join-card {
      padding: 3rem;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1.5rem;
    }

    .footer-grid>p:not(.copyright) {
      display: none;
    }
  }

  @media (max-width: 620px) {
    :root {
      --shell: calc(100% - 2rem);
    }

    h2 {
      font-size: clamp(1.8rem, 8vw, 3.8rem);
    }

    .site-header,
    .site-header.is-scrolled {
      height: var(--header-h);
    }

    .brand {
      width: 140px;
    }

    .hero {
      padding-bottom: 4.5rem;
    }

    .hero-copy {
      padding-top: .5rem;
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 10vw, 4rem);
    }

    .hero-accent {
      font-size: 1.25rem;
    }

    .hero-actions {
      flex-direction: column;
      gap: 1rem;
    }

    .hero-actions .button {
      width: 100%;
    }

    .trust-row {
      flex-direction: column;
      gap: .35rem;
    }

    .hero-media {
      margin-inline: -27vw;
    }

    .content-section {
      padding: 5rem 0;
    }

    .community {
      padding: 5rem 0;
    }

    .section-heading {
      margin-bottom: 2.2rem;
    }

    .video-card {
      display: block;
    }

    .video-card img {
      aspect-ratio: 2.45/1;
      object-position: center 40%;
    }

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

    .benefit-card {
      min-height: auto;
      border-right: 0;
      border-bottom: 1px solid var(--line);
    }

    .benefit-card:last-child {
      border-bottom: 0;
    }

    .plan-card {
      min-height: 0;
      padding: 2rem 1.35rem;
    }

    .plan-description {
      min-height: 0;
    }

    .plan-card .button {
      margin-top: 2.2rem;
    }

    .join-card {
      display: block;
      padding: 2.2rem 1.4rem;
    }

    .join-card .button {
      width: 100%;
      margin-top: 2rem;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .brand--footer {
      margin-inline: auto;
    }

    .footer-links {
      justify-content: center;
    }

    .copyright {
      grid-column: 1;
    }

    .mobile-nav-sheet {
      padding-inline: 1rem;
      padding-right: max(1rem, env(safe-area-inset-right));
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }

    .mobile-nav-sheet-link {
      justify-content: flex-start;
      font-size: 0.78rem;
    }
  }

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

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

  @media (prefers-contrast: more) {
    :root {
      --muted: #c2c5ca;
      --line: rgba(255, 255, 255, .28);
    }
  }

  @media print {

    .site-header,
    .hero-actions,
    .join-section {
      display: none;
    }

    body,
    .hero,
    .content-section {
      color: #000;
      background: #fff;
    }
  }
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translate3d(3rem, 1rem, 0) scale(.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* v3: community proof, closing artwork and progressive motion */
.voices {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 105, 255, .10), transparent 26rem),
    linear-gradient(180deg, #07090c, #040506) !important;
}

.voices::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.voices>.shell {
  position: relative;
  z-index: 1;
}

.voices-summary {
  padding-bottom: .45rem;
}

.voices-summary>p {
  color: #b0b6be;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.voices-summary .text-link {
  margin-top: 1.5rem;
}

.voices-summary .text-link:hover span {
  transform: translateX(4px);
}

.voices-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
}

.voice-point {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
  transition: background .22s ease;
}

.voice-point:last-child {
  border-right: 0;
}

.voice-point:hover {
  background: rgba(0, 106, 255, .08);
}

.voice-point__check {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 900;
}

.voice-point p {
  color: #c7cbd0;
  font-size: .86rem;
  font-weight: 700;
}

.testimonial-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  isolation: isolate;
  min-height: 335px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 58%), var(--surface);
  box-shadow: var(--shadow);
  transition: transform .28s var(--ease), border-color .28s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0;
  background: radial-gradient(350px circle at var(--spot-x) var(--spot-y), rgba(0, 118, 255, .14), transparent 65%);
  transition: opacity .25s ease;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: var(--blue-line);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.rating {
  color: #198aff;
  letter-spacing: .15em;
  text-shadow: 0 0 16px rgba(0, 118, 255, .25);
}

.testimonial-card blockquote {
  margin: 1.4rem 0 2rem;
  color: #b4bac2;
  font-size: .97rem;
  font-style: italic;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
}

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}

.avatar--blue {
  background: linear-gradient(145deg, #157eff, #073a7b);
}

.avatar--red {
  background: linear-gradient(145deg, #ff3439, #761118);
}

.avatar--steel {
  background: linear-gradient(145deg, #77828f, #242a31);
}

.testimonial-author>span:last-child {
  display: grid;
  gap: .1rem;
}

.testimonial-author strong {
  color: #f0f2f4;
  font-size: .9rem;
}

.testimonial-author small {
  color: #707984;
  font-size: .7rem;
}

.garage-banner {
  position: relative;
  min-height: min(78vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #030405;
}

.garage-banner>img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.05);
  transform: scale(1.015);
}

.garage-banner__overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, .95) 0%, rgba(2, 3, 4, .78) 37%, rgba(2, 3, 4, .18) 72%, rgba(2, 3, 4, .38) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, .35), transparent 50%, rgba(2, 3, 4, .7));
}

.garage-banner__content {
  padding-block: 7rem;
}

.garage-banner h2 {
  max-width: 760px;
  margin-top: 1.2rem;
  font-size: clamp(3.3rem, 7.3vw, 7rem);
  text-shadow: 0 18px 50px #000;
}

.garage-banner__content>p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 1.2rem;
  color: #b8bec6;
  font-size: 1.06rem;
}

.garage-banner .button {
  margin-top: 2rem;
}

/* Progressive enhancement: content stays visible without JS. */
.js.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(5px);
  transition:
    opacity .72s var(--ease),
    transform .72s var(--ease),
    filter .72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

/* Prevent black gaps during resize by ensuring containers have min-height */
.content-section,
.community,
.voices,
.garage-banner {
  min-height: 0;
  overflow: hidden;
}

.js.motion-ready [data-reveal="left"] {
  transform: translate3d(-38px, 0, 0);
}

.js.motion-ready [data-reveal="right"] {
  transform: translate3d(38px, 0, 0);
}

.js.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  will-change: auto;
}

@media (max-width: 620px) {
  .voices-points {
    grid-template-columns: 1fr;
  }

  .voice-point,
  .voice-point:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .voice-point:last-child {
    border-bottom: 0;
  }

  .testimonial-heading {
    margin-top: 5rem;
  }

  .testimonial-card {
    min-height: 0;
    padding: 1.5rem 1.5rem 2.5rem;
  }

  .garage-banner {
    min-height: 650px;
  }

  .garage-banner>img {
    object-position: 69% center;
  }

  .garage-banner__overlay {
    background:
      linear-gradient(180deg, rgba(2, 3, 4, .78), rgba(2, 3, 4, .4) 45%, rgba(2, 3, 4, .9)),
      linear-gradient(90deg, rgba(2, 3, 4, .75), transparent);
  }

  .garage-banner__content {
    align-self: end;
    padding-block: 5rem;
  }


/* ==========================================================================
   v6 Samsung Internet hardening
   Prevent root horizontal panning and remove mobile overflow at its source.
   Samsung Internet ignores user-scalable=no — CSS overflow-x: clip and
   touch-action: pan-y are the only reliable fixes for horizontal scroll
   and the black line on the right edge.
   ========================================================================== */

@media (width <=900px) {
  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }

  @supports (overflow: clip) {
    html {
      overflow-x: clip;
    }
  }

  body,
  main,
  header,
  footer,
  section {
    width: 100%;
    max-width: 100%;
  }

  body {
    position: relative;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }

  main,
  .site-header,
  .site-footer,
  .hero,
  .community,
  .content-section,
  .join-section,
  .voices,
  .garage-banner {
    overflow-x: clip;
  }

  .shell,
  .nav-shell,
  .hero-grid,
  .hero-copy,
  .hero-media,
  .heading-row,
  .community-grid,
  .about-grid,
  .faq-layout,
  .video-grid,
  .benefit-grid,
  .plans-grid,
  .join-card,
  .voices-intro,
  .voices-points,
  .testimonial-heading,
  .testimonials,
  .footer-grid {
    min-width: 0;
    max-width: 100%;
  }

  img,
  svg,
  video,
  canvas {
    max-width: 100%;
  }

  /* Avoid transformed reveal states enlarging Samsung's root scroll area. */
  .js.motion-ready [data-reveal="left"],
  .js.motion-ready [data-reveal="right"] {
    transform: translate3d(0, 24px, 0);
  }

  /* The old 112-128% media widths can create horizontal root overflow. */
  .hero-media {
    width: min(100%, 820px);
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-media img {
    width: 100%;
    max-width: 100%;
  }
}

@media (width <=620px) {
  .hero-media {
    width: 100%;
    margin: 0.75rem auto 0;
  }
}

@media (width <=900px) and (orientation: landscape) and (height <=560px) {
  .hero-media {
    width: 100%;
    margin: 0;
  }
}

/* Compact phones: preserve readable type and prevent edge collisions. */
@media (width < 360px) {
  :root {
    --shell: calc(100% - 1.5rem);
  }

  .brand {
    width: 118px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 15.2vw, 3.35rem);
  }

  .hero-offer h2 {
    font-size: 1.55rem;
  }

  .button {
    padding-inline: 1rem;
    letter-spacing: 0.045em;
  }

  .testimonial-card,
  .plan-card,
  .join-card {
    padding-inline: 1rem;
  }
}

@media (hover: none) {

  .button:hover,
  .video-card:hover:not(.is-tapped),
  .plan-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .video-card:hover:not(.is-tapped) img {
    transform: none;
  }
}

@media (forced-colors: active) {

  .button,
  .menu-toggle,
  .nav-link,
  summary {
    forced-color-adjust: auto;
  }
}
}