:root {
      --bg: #030705;
      --bg-soft: #08100b;
      --panel: rgba(10, 19, 14, 0.92);
      --panel-2: rgba(7, 14, 10, 0.98);
      --line: rgba(94, 255, 157, 0.12);
      --text: #edf6ef;
      --muted: #9fb1a6;
      --green: #1cc64f;
      --green-2: #5cff9d;
      --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
      --wrap: min(1180px, calc(100vw - 32px));
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Bahnschrift, "Trebuchet MS", "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(0, 184, 74, 0.14), transparent 24%),
        linear-gradient(180deg, #06100a 0%, #030705 36%, #050907 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(26, 68, 42, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 68, 42, 0.11) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 88%);
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    h1, h2, h3, p { margin: 0; }

    .wrap {
      width: var(--wrap);
      margin: 0 auto;
    }

    .account-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    }

    .account-link:hover { transform: translateY(-2px); }

    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(6, 11, 9, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav {
      min-height: 66px;
      display: grid;
      grid-template-columns: 160px 1fr auto;
      align-items: center;
      gap: 22px;
    }

    .brand img { width: 126px; }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      font-size: 12px;
      color: #cad3cd;
    }

    .nav-links a {
      opacity: 0.86;
      transition: opacity 0.2s ease, color 0.2s ease;
    }

    .nav-links a:hover {
      opacity: 1;
      color: #ffffff;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-btn {
      min-width: 92px;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 6px;
      font-size: 12px;
      text-transform: uppercase;
    }

    .nav-btn.enter {
      color: #ffffff;
      background: linear-gradient(180deg, #555555, #3e3e3e);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    .nav-btn.create {
      color: #ffffff;
      background: linear-gradient(180deg, #28d259, #10b548);
      box-shadow: 0 12px 30px rgba(28, 198, 79, 0.2);
    }

    .hero {
      position: relative;
      min-height: 860px;
      overflow: clip;
      background: #020503;
      --frame-scroll: 0px;
      --frame-z: 0px;
      --frame-scale: 1;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(2, 7, 4, 0.94) 0%, rgba(2, 7, 4, 0.76) 40%, rgba(2, 7, 4, 0.34) 72%, rgba(2, 7, 4, 0.74) 100%),
        url("imagem/bannersd.png") center top / cover no-repeat;
      z-index: 0;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 220px;
      background: linear-gradient(180deg, rgba(3, 7, 5, 0), rgba(3, 7, 5, 0.96));
      z-index: 0;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding-top: 128px;
      text-align: center;
    }

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

    .hero-copy h1 {
      font-size: clamp(2.8rem, 5vw, 4.35rem);
      line-height: 1.02;
      letter-spacing: -0.045em;
      font-weight: 800;
    }

    .hero-copy p {
      margin-top: 14px;
      font-size: 1rem;
      line-height: 1.65;
      color: #d4ddd7;
    }

    .hero-hook {
      margin-top: 16px;
      font-size: 0.95rem;
      color: #eef5ef;
      font-weight: 700;
    }

    .hero-hook strong {
      color: var(--green-2);
    }

    .hero-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .hero-cta {
      min-height: 46px;
      padding: 0 26px;
      border-radius: 8px;
      font-size: 12px;
      text-transform: uppercase;
      color: #0d0d0d;
      background: #ffffff;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
    }

    .hero-cta.whatsapp {
      color: #ffffff;
      background: linear-gradient(180deg, #24d366, #13a74d);
      box-shadow: 0 16px 34px rgba(36, 211, 102, 0.22);
    }

    .hero-group {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
      padding: 10px 16px;
      border-radius: 999px;
      background: rgba(9, 21, 14, 0.72);
      border: 1px solid rgba(94, 255, 157, 0.16);
      color: #d8f4e1;
      font-size: 0.86rem;
    }

    .hero-group::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #24d366;
      box-shadow: 0 0 0 7px rgba(36, 211, 102, 0.14);
    }

    .hook-strip {
      padding: 26px 0 10px;
    }

    .hook-panel {
      position: relative;
      display: block;
      overflow: hidden;
      padding: 28px 30px 22px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(92, 255, 157, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(10, 23, 16, 0.94), rgba(7, 15, 11, 0.98));
      border: 1px solid rgba(94, 255, 157, 0.14);
      box-shadow: var(--shadow);
    }

    .hook-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(26, 68, 42, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 68, 42, 0.08) 1px, transparent 1px);
      background-size: 34px 34px;
      opacity: 0.32;
      pointer-events: none;
    }

    .hook-copy,
    .hook-marquee,
    .hook-action {
      position: relative;
      z-index: 1;
    }

    .hook-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      color: #d8f6e3;
      background: rgba(12, 31, 20, 0.76);
      border: 1px solid rgba(94, 255, 157, 0.14);
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .hook-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 0 7px rgba(92, 255, 157, 0.12);
    }

    .hook-copy h2 {
      max-width: 840px;
      margin-top: 16px;
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .hook-copy p {
      max-width: 820px;
      margin-top: 14px;
      color: #d4e1d8;
      line-height: 1.75;
      font-size: 1rem;
    }

    .hook-marquee {
      margin-top: 22px;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .hook-track {
      display: flex;
      gap: 14px;
      width: max-content;
      animation: hook-loop 28s linear infinite;
    }

    .hook-panel:hover .hook-track {
      animation-play-state: paused;
    }

    .hook-pill {
      flex: 0 0 auto;
      padding: 12px 16px;
      border-radius: 999px;
      background: rgba(11, 25, 17, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.05);
      color: #e3f3e9;
      font-size: 0.92rem;
      white-space: nowrap;
    }

    .hook-action {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 22px;
      color: var(--green-2);
      font-size: 0.95rem;
      font-weight: 700;
    }

    .hook-action::after {
      content: "->";
      font-size: 1rem;
    }

    .hero-media {
      width: min(920px, 100%);
      margin: 36px auto 0;
      padding: 0 24px;
      perspective: 1400px;
    }

    .hero-frame {
      width: min(760px, 100%);
      margin: 0 auto;
      padding: 8px;
      border-radius: 18px;
      background: rgba(18, 22, 20, 0.54);
      border: 2px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      transform:
        translate3d(0, var(--frame-scroll), var(--frame-z))
        scale(var(--frame-scale))
        rotateX(0deg)
        rotateY(0deg);
      transform-style: preserve-3d;
      will-change: transform;
      transition: transform 0.18s ease-out;
    }

    .hero-frame img {
      width: 100%;
      border-radius: 14px;
    }

    .section { padding: 84px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head.centered {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .section-head h2 {
      max-width: 720px;
      font-size: clamp(2rem, 4.1vw, 3.3rem);
      line-height: 1.03;
      letter-spacing: -0.045em;
      text-transform: uppercase;
    }

    .section-head p {
      max-width: 460px;
      color: var(--muted);
      line-height: 1.75;
    }

    .section-head.centered p {
      max-width: 620px;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      color: #b8f0ca;
      background: rgba(10, 27, 18, 0.72);
      border: 1px solid rgba(94, 255, 157, 0.16);
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.74rem;
      font-weight: 700;
    }

    .kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green-2);
      box-shadow: 0 0 0 8px rgba(94, 255, 157, 0.1);
    }

    .card {
      background: linear-gradient(180deg, var(--panel), var(--panel-2));
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .ticker {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 6px;
      scrollbar-width: thin;
      scrollbar-color: rgba(94, 255, 157, 0.34) transparent;
    }

    .pill {
      flex: 0 0 auto;
      min-width: 190px;
      padding: 16px 18px;
      border-radius: 999px;
      background: rgba(10, 22, 15, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pill strong {
      display: block;
      font-size: 1rem;
    }

    .pill span {
      display: block;
      margin-top: 5px;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .asset-grid,
    .feature-grid,
    .quote-grid,
    .step-grid,
    .metrics-grid {
      display: grid;
      gap: 18px;
    }

    .asset-marquee {
      position: relative;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    }

    .asset-track {
      display: flex;
      gap: 18px;
      width: max-content;
      animation: asset-loop 34s linear infinite;
    }

    .asset-marquee:hover .asset-track {
      animation-play-state: paused;
    }

    .asset-grid {
      display: flex;
      gap: 18px;
      width: max-content;
    }

    .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .step-grid,
    .metrics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .asset {
      width: 182px;
      min-width: 182px;
      padding: 20px 18px;
      border-radius: 18px;
    }
    .feature,
    .quote,
    .step,
    .info,
    .faq-item,
    .metric { padding: 26px; }

    .asset-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

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

    .pair img:first-child {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
    }

    .pair strong {
      display: block;
      font-size: 1rem;
    }

    .pair span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .delta {
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 0.84rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .delta.up {
      color: #c7ffd7;
      background: rgba(0, 200, 83, 0.16);
    }

    .delta.down {
      color: #ffcbcb;
      background: rgba(255, 107, 107, 0.14);
    }

    .chart {
      margin-top: 20px;
      border-radius: 14px;
    }

    .meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 0.82rem;
    }

    .feature img {
      width: 54px;
      height: 54px;
    }

    .feature h3,
    .step h3 {
      margin-top: 18px;
      font-size: 1.15rem;
    }

    .feature p,
    .step p,
    .info p,
    .quote p {
      margin-top: 10px;
      color: var(--muted);
      line-height: 1.75;
    }

    .info-title {
      margin-top: 18px;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.05;
      text-transform: uppercase;
    }

    .tags-offset {
      margin-top: 24px;
    }

    .footer-gap-lg {
      margin-top: 18px;
    }

    .footer-gap-sm {
      margin-top: 8px;
    }

    .profit {
      display: flex;
      gap: 14px;
      overflow: hidden;
      margin-top: 28px;
    }

    .profit-track {
      display: flex;
      gap: 14px;
      min-width: max-content;
      animation: ticker-loop 24s linear infinite;
    }

    .profit-card {
      min-width: 220px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(10, 22, 15, 0.82);
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .profit-card span {
      display: block;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
    }

    .profit-card strong {
      display: block;
      margin-top: 10px;
      color: var(--green-2);
      font-size: 1.5rem;
    }

    @keyframes ticker-loop {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @keyframes hook-loop {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 7px)); }
    }

    @keyframes asset-loop {
      from { transform: translateX(0); }
      to { transform: translateX(calc(-50% - 9px)); }
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 22px;
      align-items: center;
    }

    .tags,
    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .tag,
    .pay-box,
    .footer-links a {
      border: 1px solid rgba(255, 255, 255, 0.05);
      background: rgba(10, 22, 15, 0.82);
    }

    .tag {
      padding: 12px 16px;
      border-radius: 999px;
      color: #dbf5e4;
      font-size: 0.92rem;
    }

    .pay-wrap {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .pay-box {
      min-height: 92px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      border-radius: 20px;
    }

    .pay-box img {
      max-height: 38px;
      width: auto;
    }

    .visuals {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
      gap: 18px;
    }

    .visual {
      min-height: 420px;
      overflow: hidden;
    }

    .visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .platform-shell {
      padding: 18px;
      border-radius: 32px;
      background: linear-gradient(180deg, rgba(8, 19, 13, 0.96), rgba(7, 15, 11, 0.96));
      border: 1px solid rgba(94, 255, 157, 0.14);
      box-shadow: var(--shadow);
    }

    .platform-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .platform-item {
      display: flex;
      gap: 14px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(10, 20, 15, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    .platform-item strong {
      display: block;
      font-size: 1rem;
    }

    .platform-item p { margin-top: 4px; }

    .dot {
      flex: 0 0 12px;
      width: 12px;
      height: 12px;
      margin-top: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-2), var(--green));
      box-shadow: 0 0 0 8px rgba(0, 200, 83, 0.08);
    }

    .quote { position: relative; }

    .quote::before {
      content: "\"";
      position: absolute;
      top: 16px;
      right: 20px;
      font-size: 4rem;
      line-height: 1;
      color: rgba(94, 255, 157, 0.12);
    }

    .person {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
    }

    .person img {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(94, 255, 157, 0.24);
    }

    .person span {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    .testimonial-band {
      padding: 38px 0 24px;
    }

    .testimonial-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 48px;
      align-items: start;
    }

    .testimonial-mini {
      text-align: center;
      color: #dce7df;
    }

    .testimonial-mini p {
      font-size: 0.94rem;
      line-height: 1.7;
      color: #d0d9d3;
    }

    .testimonial-meta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 14px;
    }

    .testimonial-meta img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      object-fit: cover;
    }

    .testimonial-meta strong {
      display: block;
      font-size: 0.95rem;
    }

    .testimonial-meta span {
      display: block;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .stars {
      margin-top: 10px;
      color: #ffffff;
      letter-spacing: 0.18em;
      font-size: 1rem;
    }

    .step img {
      width: 60px;
      height: 82px;
      object-fit: contain;
      opacity: 0.94;
    }

    .metrics-grid { margin-top: 26px; }

    .metric { text-align: center; }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .metric strong {
      display: block;
      margin-top: 12px;
      color: var(--green-2);
      font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .faq-list {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .faq-item { overflow: hidden; }

    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--text);
      text-align: left;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
    }

    .faq-btn span:last-child {
      font-size: 1.4rem;
      color: var(--green-2);
      transition: transform 0.2s ease;
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.25s ease;
    }

    .faq-answer > div { overflow: hidden; }

    .faq-answer p {
      padding-top: 18px;
      color: var(--muted);
      line-height: 1.8;
    }

    .faq-item.open .faq-answer { grid-template-rows: 1fr; }
    .faq-item.open .faq-btn span:last-child { transform: rotate(45deg); }

    .cta { padding: 0 0 90px; }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 36px;
      background:
        linear-gradient(90deg, rgba(5, 10, 7, 0.95), rgba(5, 10, 7, 0.72)),
        url("imagem/trader.jpg") center / cover no-repeat;
      border: 1px solid rgba(94, 255, 157, 0.16);
      box-shadow: var(--shadow);
    }

    .cta-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0, 200, 83, 0.12), transparent 45%);
    }

    .cta-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      padding: 46px;
      align-items: center;
    }

    .cta-grid h2 {
      margin-top: 18px;
      font-size: clamp(2.2rem, 4.8vw, 4rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      text-transform: uppercase;
    }

    .cta-grid p {
      margin-top: 18px;
      max-width: 580px;
      color: #d2e2d7;
      line-height: 1.75;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }

    .cta-btn {
      min-height: 48px;
      padding: 0 24px;
      border-radius: 8px;
      text-transform: uppercase;
      font-size: 12px;
    }

    .cta-btn.primary {
      color: #0c120d;
      background: #ffffff;
    }

    .cta-btn.secondary {
      color: #ffffff;
      background: rgba(9, 20, 14, 0.72);
      border: 1px solid rgba(94, 255, 157, 0.18);
    }

    .footer {
      padding: 32px 0 60px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
      gap: 18px;
    }

    .footer p {
      color: var(--muted);
      line-height: 1.8;
    }

    .footer-links a {
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.92rem;
    }

    .risk {
      margin-top: 18px;
      padding: 18px 20px;
      border-radius: 18px;
      background: rgba(52, 20, 20, 0.34);
      border: 1px solid rgba(255, 107, 107, 0.18);
      color: #f5c7c7;
      font-size: 0.95rem;
    }

    .footnote {
      margin-top: 22px;
      font-size: 0.88rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

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

    @media (max-width: 1080px) {
      .nav {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 14px 0;
      }

      .nav-links { gap: 18px; }

      .split,
      .cta-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .asset-marquee {
        mask-image: none;
        -webkit-mask-image: none;
      }

      .asset-track {
        animation: none;
      }

      .asset-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
      }

      .asset {
        width: auto;
        min-width: 0;
      }

      .feature-grid,
      .quote-grid,
      .step-grid,
      .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .visuals { grid-template-columns: 1fr; }
      .testimonial-row { grid-template-columns: 1fr; gap: 24px; }
      .hook-marquee {
        mask-image: none;
        -webkit-mask-image: none;
      }
    }

    @media (max-width: 720px) {
      .hero { min-height: auto; }
      .hero-inner { padding-top: 86px; }
      .hero-media { padding: 0; }
      .section { padding: 66px 0; }
      .section-head { flex-direction: column; align-items: flex-start; }
      .asset-grid,
      .feature-grid,
      .quote-grid,
      .step-grid,
      .metrics-grid,
      .pay-wrap { grid-template-columns: 1fr; }
      .nav-actions { width: 100%; justify-content: center; }
      .cta-grid { padding: 34px 24px; }
      .hero-actions { flex-direction: column; }
      .hook-panel {
        padding: 24px 20px 20px;
      }
      .hook-copy h2 {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
      }
      .hook-copy p {
        font-size: 0.96rem;
      }
    }
