:root {
    --bg: #0d0806;
    --surface: rgba(255,255,255,0.04);
    --surface2: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.08);
    --border2: rgba(255,255,255,0.14);

    /* Vibrant palette */
    --red: #e8294a;
    --red2: #ff4d6a;
    --orange: #ff6b2b;
    --orange2: #ff8c42;
    --gold: #f5a800;
    --gold2: #ffc107;
    --rose: #f43f5e;
    --green: #10b981;
    --orange: #f97316;

    --pub: #f5a800;
    --adv: #e8294a;

    --text: #f0f1f6;
    --muted: #7c8499;

    --grad-hero: linear-gradient(135deg, #e8294a 0%, #ff6b2b 50%, #f5a800 100%);
    --grad-pub: linear-gradient(135deg, #f5a800, #ff6b2b);
    --grad-adv: linear-gradient(135deg, #e8294a, #ff4d6a);
    --grad-gold: linear-gradient(135deg, #f59e0b, #ef4444);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ─── GRADIENT MESH BACKGROUND ─── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 70% 50% at 10% 20%, rgba(232,41,74,0.14) 0%, transparent 60%),
      radial-gradient(ellipse 55% 40% at 90% 10%, rgba(255,107,43,0.12) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 50% 95%, rgba(245,158,11,0.09) 0%, transparent 60%),
      radial-gradient(ellipse 45% 35% at 80% 55%, rgba(232,41,74,0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .z1 { position: relative; z-index: 1; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 4rem;
    background: rgba(7,8,15,0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center;
  }

  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.18s;
  }
  .nav-links a:hover { color: var(--text); }

  .btn-nav {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: #fff !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.18s;
    font-weight: 600;
  }
  .btn-nav:hover { opacity: 0.85; }

  /* ─── HERO ─── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 2rem;
  }

  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeUp 1s ease 0.5s both;
  }

  .hero-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.2));
    border: 1px solid rgba(232,41,74,0.4);
    color: var(--orange2);
    padding: 0.4rem 1.2rem;
    display: inline-block;
    margin-bottom: 2rem;
    border-radius: 100px;
    animation: fadeUp 0.6s ease both;
  }

  .hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease 0.1s both;
  }

  .hero h1 .grad {
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
    font-weight: 400;
    line-height: 1.75;
  }

  .hero-ctas {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.9rem 2.4rem;
    background: var(--grad-pub);
    color: #fff;
    border: none; cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.18s;
    box-shadow: 0 4px 24px rgba(245,168,0,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,168,0,0.4); }

  .btn-secondary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.9rem 2.4rem;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid var(--border2);
    cursor: pointer;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.18s;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--adv); }

  .hero-stats {
    display: flex; gap: 3rem;
    margin-top: 3.5rem;
    animation: fadeUp 0.8s ease 0.4s both;
    flex-wrap: wrap;
  }

  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
  }
  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 0.3rem;
  }

  /* ─── HERO SVG ANIMATION ─── */
  .hero-svg-wrap {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    position: relative;
  }

  .hero-svg-wrap svg {
    width: 100%; height: 100%;
    overflow: visible;
  }

  /* Orbit rings */ to { transform: rotate(360deg);  } } to { transform: rotate(-360deg); } } to { transform: rotate(-360deg); } } to { transform: rotate(360deg);  } }
    3% { transform: translate(286.92px,107.35px); }
    6% { transform: translate(313.01px,114.35px); }
    8% { transform: translate(337.5px,125.77px); }
    11% { transform: translate(359.63px,141.26px); }
    14% { transform: translate(378.74px,160.37px); }
    17% { transform: translate(394.23px,182.5px); }
    19% { transform: translate(405.65px,206.99px); }
    22% { transform: translate(412.65px,233.08px); }
    25% { transform: translate(415.0px,260.0px); }
    28% { transform: translate(412.65px,286.92px); }
    31% { transform: translate(405.65px,313.01px); }
    33% { transform: translate(394.23px,337.5px); }
    36% { transform: translate(378.74px,359.63px); }
    39% { transform: translate(359.63px,378.74px); }
    42% { transform: translate(337.5px,394.23px); }
    44% { transform: translate(313.01px,405.65px); }
    47% { transform: translate(286.92px,412.65px); }
    50% { transform: translate(260.0px,415.0px); }
    53% { transform: translate(233.08px,412.65px); }
    56% { transform: translate(206.99px,405.65px); }
    58% { transform: translate(182.5px,394.23px); }
    61% { transform: translate(160.37px,378.74px); }
    64% { transform: translate(141.26px,359.63px); }
    67% { transform: translate(125.77px,337.5px); }
    69% { transform: translate(114.35px,313.01px); }
    72% { transform: translate(107.35px,286.92px); }
    75% { transform: translate(105.0px,260.0px); }
    78% { transform: translate(107.35px,233.08px); }
    81% { transform: translate(114.35px,206.99px); }
    83% { transform: translate(125.77px,182.5px); }
    86% { transform: translate(141.26px,160.37px); }
    89% { transform: translate(160.37px,141.26px); }
    92% { transform: translate(182.5px,125.77px); }
    94% { transform: translate(206.99px,114.35px); }
    97% { transform: translate(233.08px,107.35px); }
    100% { transform: translate(260.0px,105.0px); }
  }
    3% { transform: translate(378.74px,359.63px); }
    6% { transform: translate(359.63px,378.74px); }
    8% { transform: translate(337.5px,394.23px); }
    11% { transform: translate(313.01px,405.65px); }
    14% { transform: translate(286.92px,412.65px); }
    17% { transform: translate(260.0px,415.0px); }
    19% { transform: translate(233.08px,412.65px); }
    22% { transform: translate(206.99px,405.65px); }
    25% { transform: translate(182.5px,394.23px); }
    28% { transform: translate(160.37px,378.74px); }
    31% { transform: translate(141.26px,359.63px); }
    33% { transform: translate(125.77px,337.5px); }
    36% { transform: translate(114.35px,313.01px); }
    39% { transform: translate(107.35px,286.92px); }
    42% { transform: translate(105.0px,260.0px); }
    44% { transform: translate(107.35px,233.08px); }
    47% { transform: translate(114.35px,206.99px); }
    50% { transform: translate(125.77px,182.5px); }
    53% { transform: translate(141.26px,160.37px); }
    56% { transform: translate(160.37px,141.26px); }
    58% { transform: translate(182.5px,125.77px); }
    61% { transform: translate(206.99px,114.35px); }
    64% { transform: translate(233.08px,107.35px); }
    67% { transform: translate(260.0px,105.0px); }
    69% { transform: translate(286.92px,107.35px); }
    72% { transform: translate(313.01px,114.35px); }
    75% { transform: translate(337.5px,125.77px); }
    78% { transform: translate(359.63px,141.26px); }
    81% { transform: translate(378.74px,160.37px); }
    83% { transform: translate(394.23px,182.5px); }
    86% { transform: translate(405.65px,206.99px); }
    89% { transform: translate(412.65px,233.08px); }
    92% { transform: translate(415.0px,260.0px); }
    94% { transform: translate(412.65px,286.92px); }
    97% { transform: translate(405.65px,313.01px); }
    100% { transform: translate(394.23px,337.5px); }
  }
    3% { transform: translate(114.35px,313.01px); }
    6% { transform: translate(107.35px,286.92px); }
    8% { transform: translate(105.0px,260.0px); }
    11% { transform: translate(107.35px,233.08px); }
    14% { transform: translate(114.35px,206.99px); }
    17% { transform: translate(125.77px,182.5px); }
    19% { transform: translate(141.26px,160.37px); }
    22% { transform: translate(160.37px,141.26px); }
    25% { transform: translate(182.5px,125.77px); }
    28% { transform: translate(206.99px,114.35px); }
    31% { transform: translate(233.08px,107.35px); }
    33% { transform: translate(260.0px,105.0px); }
    36% { transform: translate(286.92px,107.35px); }
    39% { transform: translate(313.01px,114.35px); }
    42% { transform: translate(337.5px,125.77px); }
    44% { transform: translate(359.63px,141.26px); }
    47% { transform: translate(378.74px,160.37px); }
    50% { transform: translate(394.23px,182.5px); }
    53% { transform: translate(405.65px,206.99px); }
    56% { transform: translate(412.65px,233.08px); }
    58% { transform: translate(415.0px,260.0px); }
    61% { transform: translate(412.65px,286.92px); }
    64% { transform: translate(405.65px,313.01px); }
    67% { transform: translate(394.23px,337.5px); }
    69% { transform: translate(378.74px,359.63px); }
    72% { transform: translate(359.63px,378.74px); }
    75% { transform: translate(337.5px,394.23px); }
    78% { transform: translate(313.01px,405.65px); }
    81% { transform: translate(286.92px,412.65px); }
    83% { transform: translate(260.0px,415.0px); }
    86% { transform: translate(233.08px,412.65px); }
    89% { transform: translate(206.99px,405.65px); }
    92% { transform: translate(182.5px,394.23px); }
    94% { transform: translate(160.37px,378.74px); }
    97% { transform: translate(141.26px,359.63px); }
    100% { transform: translate(125.77px,337.5px); }
  }
    3% { transform: translate(223.53px,53.19px); }
    6% { transform: translate(188.18px,62.66px); }
    8% { transform: translate(155.0px,78.13px); }
    11% { transform: translate(125.01px,99.13px); }
    14% { transform: translate(99.13px,125.01px); }
    17% { transform: translate(78.13px,155.0px); }
    19% { transform: translate(62.66px,188.18px); }
    22% { transform: translate(53.19px,223.53px); }
    25% { transform: translate(50.0px,260.0px); }
    28% { transform: translate(53.19px,296.47px); }
    31% { transform: translate(62.66px,331.82px); }
    33% { transform: translate(78.13px,365.0px); }
    36% { transform: translate(99.13px,394.99px); }
    39% { transform: translate(125.01px,420.87px); }
    42% { transform: translate(155.0px,441.87px); }
    44% { transform: translate(188.18px,457.34px); }
    47% { transform: translate(223.53px,466.81px); }
    50% { transform: translate(260.0px,470.0px); }
    53% { transform: translate(296.47px,466.81px); }
    56% { transform: translate(331.82px,457.34px); }
    58% { transform: translate(365.0px,441.87px); }
    61% { transform: translate(394.99px,420.87px); }
    64% { transform: translate(420.87px,394.99px); }
    67% { transform: translate(441.87px,365.0px); }
    69% { transform: translate(457.34px,331.82px); }
    72% { transform: translate(466.81px,296.47px); }
    75% { transform: translate(470.0px,260.0px); }
    78% { transform: translate(466.81px,223.53px); }
    81% { transform: translate(457.34px,188.18px); }
    83% { transform: translate(441.87px,155.0px); }
    86% { transform: translate(420.87px,125.01px); }
    89% { transform: translate(394.99px,99.13px); }
    92% { transform: translate(365.0px,78.13px); }
    94% { transform: translate(331.82px,62.66px); }
    97% { transform: translate(296.47px,53.19px); }
    100% { transform: translate(260.0px,50.0px); }
  }
    3% { transform: translate(398.95px,102.55px); }
    6% { transform: translate(369.5px,80.81px); }
    8% { transform: translate(336.72px,64.52px); }
    11% { transform: translate(301.61px,54.16px); }
    14% { transform: translate(265.24px,50.07px); }
    17% { transform: translate(228.7px,52.35px); }
    19% { transform: translate(193.12px,60.94px); }
    22% { transform: translate(159.57px,75.57px); }
    25% { transform: translate(129.07px,95.82px); }
    28% { transform: translate(102.55px,121.05px); }
    31% { transform: translate(80.81px,150.5px); }
    33% { transform: translate(64.52px,183.28px); }
    36% { transform: translate(54.16px,218.39px); }
    39% { transform: translate(50.07px,254.76px); }
    42% { transform: translate(52.35px,291.3px); }
    44% { transform: translate(60.94px,326.88px); }
    47% { transform: translate(75.57px,360.43px); }
    50% { transform: translate(95.82px,390.93px); }
    53% { transform: translate(121.05px,417.45px); }
    56% { transform: translate(150.5px,439.19px); }
    58% { transform: translate(183.28px,455.48px); }
    61% { transform: translate(218.39px,465.84px); }
    64% { transform: translate(254.76px,469.93px); }
    67% { transform: translate(291.3px,467.65px); }
    69% { transform: translate(326.88px,459.06px); }
    72% { transform: translate(360.43px,444.43px); }
    75% { transform: translate(390.93px,424.18px); }
    78% { transform: translate(417.45px,398.95px); }
    81% { transform: translate(439.19px,369.5px); }
    83% { transform: translate(455.48px,336.72px); }
    86% { transform: translate(465.84px,301.61px); }
    89% { transform: translate(469.93px,265.24px); }
    92% { transform: translate(467.65px,228.7px); }
    94% { transform: translate(459.06px,193.12px); }
    97% { transform: translate(444.43px,159.57px); }
    100% { transform: translate(424.18px,129.07px); }
  }
    3% { transform: translate(469.74px,270.47px); }
    6% { transform: translate(468.37px,233.89px); }
    8% { transform: translate(460.67px,198.1px); }
    11% { transform: translate(446.87px,164.2px); }
    14% { transform: translate(427.4px,133.2px); }
    17% { transform: translate(402.84px,106.06px); }
    19% { transform: translate(373.93px,83.59px); }
    22% { transform: translate(341.57px,66.49px); }
    25% { transform: translate(306.73px,55.27px); }
    28% { transform: translate(270.47px,50.26px); }
    31% { transform: translate(233.89px,51.63px); }
    33% { transform: translate(198.1px,59.33px); }
    36% { transform: translate(164.2px,73.13px); }
    39% { transform: translate(133.2px,92.6px); }
    42% { transform: translate(106.06px,117.16px); }
    44% { transform: translate(83.59px,146.07px); }
    47% { transform: translate(66.49px,178.43px); }
    50% { transform: translate(55.27px,213.27px); }
    53% { transform: translate(50.26px,249.53px); }
    56% { transform: translate(51.63px,286.11px); }
    58% { transform: translate(59.33px,321.9px); }
    61% { transform: translate(73.13px,355.8px); }
    64% { transform: translate(92.6px,386.8px); }
    67% { transform: translate(117.16px,413.94px); }
    69% { transform: translate(146.07px,436.41px); }
    72% { transform: translate(178.43px,453.51px); }
    75% { transform: translate(213.27px,464.73px); }
    78% { transform: translate(249.53px,469.74px); }
    81% { transform: translate(286.11px,468.37px); }
    83% { transform: translate(321.9px,460.67px); }
    86% { transform: translate(355.8px,446.87px); }
    89% { transform: translate(386.8px,427.4px); }
    92% { transform: translate(413.94px,402.84px); }
    94% { transform: translate(436.41px,373.93px); }
    97% { transform: translate(453.51px,341.57px); }
    100% { transform: translate(464.73px,306.73px); }
  }
    3% { transform: translate(382.59px,430.51px); }
    6% { transform: translate(410.33px,406.63px); }
    8% { transform: translate(433.51px,378.3px); }
    11% { transform: translate(451.42px,346.37px); }
    14% { transform: translate(463.51px,311.82px); }
    17% { transform: translate(469.41px,275.69px); }
    19% { transform: translate(468.96px,239.09px); }
    22% { transform: translate(462.15px,203.12px); }
    25% { transform: translate(449.2px,168.88px); }
    28% { transform: translate(430.51px,137.41px); }
    31% { transform: translate(406.63px,109.67px); }
    33% { transform: translate(378.3px,86.49px); }
    36% { transform: translate(346.37px,68.58px); }
    39% { transform: translate(311.82px,56.49px); }
    42% { transform: translate(275.69px,50.59px); }
    44% { transform: translate(239.09px,51.04px); }
    47% { transform: translate(203.12px,57.85px); }
    50% { transform: translate(168.88px,70.8px); }
    53% { transform: translate(137.41px,89.49px); }
    56% { transform: translate(109.67px,113.37px); }
    58% { transform: translate(86.49px,141.7px); }
    61% { transform: translate(68.58px,173.63px); }
    64% { transform: translate(56.49px,208.18px); }
    67% { transform: translate(50.59px,244.31px); }
    69% { transform: translate(51.04px,280.91px); }
    72% { transform: translate(57.85px,316.88px); }
    75% { transform: translate(70.8px,351.12px); }
    78% { transform: translate(89.49px,382.59px); }
    81% { transform: translate(113.37px,410.33px); }
    83% { transform: translate(141.7px,433.51px); }
    86% { transform: translate(173.63px,451.42px); }
    89% { transform: translate(208.18px,463.51px); }
    92% { transform: translate(244.31px,469.41px); }
    94% { transform: translate(280.91px,468.96px); }
    97% { transform: translate(316.88px,462.15px); }
    100% { transform: translate(351.12px,449.2px); }
  }
    3% { transform: translate(203.12px,462.15px); }
    6% { transform: translate(239.09px,468.96px); }
    8% { transform: translate(275.69px,469.41px); }
    11% { transform: translate(311.82px,463.51px); }
    14% { transform: translate(346.37px,451.42px); }
    17% { transform: translate(378.3px,433.51px); }
    19% { transform: translate(406.63px,410.33px); }
    22% { transform: translate(430.51px,382.59px); }
    25% { transform: translate(449.2px,351.12px); }
    28% { transform: translate(462.15px,316.88px); }
    31% { transform: translate(468.96px,280.91px); }
    33% { transform: translate(469.41px,244.31px); }
    36% { transform: translate(463.51px,208.18px); }
    39% { transform: translate(451.42px,173.63px); }
    42% { transform: translate(433.51px,141.7px); }
    44% { transform: translate(410.33px,113.37px); }
    47% { transform: translate(382.59px,89.49px); }
    50% { transform: translate(351.12px,70.8px); }
    53% { transform: translate(316.88px,57.85px); }
    56% { transform: translate(280.91px,51.04px); }
    58% { transform: translate(244.31px,50.59px); }
    61% { transform: translate(208.18px,56.49px); }
    64% { transform: translate(173.63px,68.58px); }
    67% { transform: translate(141.7px,86.49px); }
    69% { transform: translate(113.37px,109.67px); }
    72% { transform: translate(89.49px,137.41px); }
    75% { transform: translate(70.8px,168.88px); }
    78% { transform: translate(57.85px,203.12px); }
    81% { transform: translate(51.04px,239.09px); }
    83% { transform: translate(50.59px,275.69px); }
    86% { transform: translate(56.49px,311.82px); }
    89% { transform: translate(68.58px,346.37px); }
    92% { transform: translate(86.49px,378.3px); }
    94% { transform: translate(109.67px,406.63px); }
    97% { transform: translate(137.41px,430.51px); }
    100% { transform: translate(168.88px,449.2px); }
  }
    3% { transform: translate(66.49px,341.57px); }
    6% { transform: translate(83.59px,373.93px); }
    8% { transform: translate(106.06px,402.84px); }
    11% { transform: translate(133.2px,427.4px); }
    14% { transform: translate(164.2px,446.87px); }
    17% { transform: translate(198.1px,460.67px); }
    19% { transform: translate(233.89px,468.37px); }
    22% { transform: translate(270.47px,469.74px); }
    25% { transform: translate(306.73px,464.73px); }
    28% { transform: translate(341.57px,453.51px); }
    31% { transform: translate(373.93px,436.41px); }
    33% { transform: translate(402.84px,413.94px); }
    36% { transform: translate(427.4px,386.8px); }
    39% { transform: translate(446.87px,355.8px); }
    42% { transform: translate(460.67px,321.9px); }
    44% { transform: translate(468.37px,286.11px); }
    47% { transform: translate(469.74px,249.53px); }
    50% { transform: translate(464.73px,213.27px); }
    53% { transform: translate(453.51px,178.43px); }
    56% { transform: translate(436.41px,146.07px); }
    58% { transform: translate(413.94px,117.16px); }
    61% { transform: translate(386.8px,92.6px); }
    64% { transform: translate(355.8px,73.13px); }
    67% { transform: translate(321.9px,59.33px); }
    69% { transform: translate(286.11px,51.63px); }
    72% { transform: translate(249.53px,50.26px); }
    75% { transform: translate(213.27px,55.27px); }
    78% { transform: translate(178.43px,66.49px); }
    81% { transform: translate(146.07px,83.59px); }
    83% { transform: translate(117.16px,106.06px); }
    86% { transform: translate(92.6px,133.2px); }
    89% { transform: translate(73.13px,164.2px); }
    92% { transform: translate(59.33px,198.1px); }
    94% { transform: translate(51.63px,233.89px); }
    97% { transform: translate(50.26px,270.47px); }
    100% { transform: translate(55.27px,306.73px); }
  }
    3% { transform: translate(75.57px,159.57px); }
    6% { transform: translate(60.94px,193.12px); }
    8% { transform: translate(52.35px,228.7px); }
    11% { transform: translate(50.07px,265.24px); }
    14% { transform: translate(54.16px,301.61px); }
    17% { transform: translate(64.52px,336.72px); }
    19% { transform: translate(80.81px,369.5px); }
    22% { transform: translate(102.55px,398.95px); }
    25% { transform: translate(129.07px,424.18px); }
    28% { transform: translate(159.57px,444.43px); }
    31% { transform: translate(193.12px,459.06px); }
    33% { transform: translate(228.7px,467.65px); }
    36% { transform: translate(265.24px,469.93px); }
    39% { transform: translate(301.61px,465.84px); }
    42% { transform: translate(336.72px,455.48px); }
    44% { transform: translate(369.5px,439.19px); }
    47% { transform: translate(398.95px,417.45px); }
    50% { transform: translate(424.18px,390.93px); }
    53% { transform: translate(444.43px,360.43px); }
    56% { transform: translate(459.06px,326.88px); }
    58% { transform: translate(467.65px,291.3px); }
    61% { transform: translate(469.93px,254.76px); }
    64% { transform: translate(465.84px,218.39px); }
    67% { transform: translate(455.48px,183.28px); }
    69% { transform: translate(439.19px,150.5px); }
    72% { transform: translate(417.45px,121.05px); }
    75% { transform: translate(390.93px,95.82px); }
    78% { transform: translate(360.43px,75.57px); }
    81% { transform: translate(326.88px,60.94px); }
    83% { transform: translate(291.3px,52.35px); }
    86% { transform: translate(254.76px,50.07px); }
    89% { transform: translate(218.39px,54.16px); }
    92% { transform: translate(183.28px,64.52px); }
    94% { transform: translate(150.5px,80.81px); }
    97% { transform: translate(121.05px,102.55px); }
    100% { transform: translate(95.82px,129.07px); }
  }

  @keyframes pulse-ring   { 0%,100%{ opacity:0.07; } 50%{ opacity:0.14; } }
  @keyframes pulse-core   { 0%,100%{ opacity:0.9;  } 50%{ opacity:1;    } }
  @keyframes dash-flow    { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -40; } }
  @keyframes coin-glow    { 0%,100%{ filter:drop-shadow(0 0 6px rgba(245,168,0,0.5));  } 50%{ filter:drop-shadow(0 0 18px rgba(245,168,0,0.9)); } }
  @keyframes ticker-up    { 0%,100%{ transform:translateY(0);  } 50%{ transform:translateY(-3px); } }

  /* Orbit groups rotate around center */

  /* Each node counter-rotates so label stays upright + no float (float conflicts with counter-rotate) */

  .pulse-ring  { animation: pulse-ring 3s ease-in-out infinite; }
  .core-circle { animation: pulse-core 2.5s ease-in-out infinite; }

  /* fn classes only used outside orbits (float cards) */

  .dash-line { animation: dash-flow 1.6s linear infinite; }
  .coin-icon { animation: coin-glow 2.2s ease-in-out infinite; }
  .ticker-val { animation: ticker-up 2s ease-in-out infinite; }

  /* ─── RESPONSIVE HERO ─── */
  @media (max-width: 960px) {
    .hero {
      grid-template-columns: 1fr;
      padding: 8rem 2rem 4rem;
      text-align: center;
      gap: 3rem;
    }
    .hero-content { align-items: center; padding-left: 0; }
    .hero-sub { text-align: center; max-width: 540px; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; gap: 2rem; }
    .stat-item { text-align: center; }
    .hero-visual { display: none; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 7rem 4rem; }
  section.hero { padding: 9rem 4rem 5rem 6rem; }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
  }

  .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-desc {
    color: var(--muted);
    max-width: 500px;
    font-size: 1rem;
    line-height: 1.7;
  }

  /* ─── GLASS CARD ─── */
  .glass {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
  }

  /* ─── SPLIT TABS ─── */
  .split-section { max-width: 1400px; margin: 0 auto; }

  .tab-switcher {
    display: flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto 4rem;
    padding: 4px;
    gap: 4px;
  }

  .tab-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.7rem 2.2rem;
    background: transparent;
    color: var(--muted);
    border: none; cursor: pointer;
    transition: all 0.18s;
    border-radius: 100px;
  }

  .tab-btn.active-pub {
    background: var(--grad-pub);
    color: #fff;
  }

  .tab-btn.active-adv {
    background: var(--grad-adv);
    color: #fff;
  }

  .tab-panel { display: none; }
  .tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

  .panel-features { display: flex; flex-direction: column; gap: 1rem; }

  .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.18s;
  }

  .feature-card:hover { border-color: var(--border2); }

  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 2px;
  }

  .pub-card::before { background: var(--grad-pub); }
  .adv-card::before { background: var(--grad-adv); }

  .feature-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }

  .feature-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .feature-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

  .tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }

  .tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 100px;
  }
  .tag.pub { border-color: rgba(245,168,0,0.4); color: var(--orange2); background: rgba(245,168,0,0.08); }
  .tag.adv { border-color: rgba(232,41,74,0.4); color: var(--red2); background: rgba(232,41,74,0.08); }

  /* ─── AD FORMATS GRID ─── */
  .formats-section {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .formats-grid {
    display: grid;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
  }

  .format-cell {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.8rem;
    text-align: center;
    transition: all 0.18s;
    position: relative;
    overflow: hidden;
  }

  .format-cell::after {
    content: '';
    position: absolute;
    inset: 0; border-radius: 12px;
    background: linear-gradient(135deg, rgba(124,58,237,0.0), rgba(6,182,212,0.0));
    transition: all 0.3s;
  }

  .format-cell:hover { border-color: rgba(232,41,74,0.4); transform: translateY(-4px); }
  .format-cell:hover::after { background: linear-gradient(135deg, rgba(124,58,237,0.06), rgba(6,182,212,0.06)); }

  .format-icon { font-size: 2rem; margin-bottom: 0.8rem; position: relative; z-index: 1; }

  .format-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    position: relative; z-index: 1;
  }

  .format-detail { font-size: 0.8rem; color: var(--muted); position: relative; z-index: 1; }

  /* ─── EARNINGS TABLE ─── */
  .earn-section { max-width: 1200px; margin: 0 auto; }

  .earn-table { width: 100%; border-collapse: collapse; margin-top: 2.5rem; font-size: 0.88rem; }

  .earn-table th {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-align: left;
    padding: 0.8rem 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .earn-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
  }

  .earn-table tr:hover td { background: rgba(255,255,255,0.03); }

  .earn-label { font-weight: 600; display: flex; align-items: center; gap: 0.8rem; }
  .earn-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .earn-rate { color: var(--green); font-family: 'Space Mono', monospace; font-size: 0.82rem; }

  .earn-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
  }

  .badge-instant { background: rgba(16,185,129,0.15); color: var(--green); }
  .badge-monthly { background: rgba(245,158,11,0.15); color: var(--gold2); }

  /* ─── PAYMENT ─── */
  .payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
  }

  .payment-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.18s;
  }

  .payment-card:hover { border-color: rgba(245,168,0,0.5); }

  .pay-symbol {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
  }

  .pay-name {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
  }

  /* ─── HOW IT WORKS ─── */
  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto 0;
  }

  .how-col-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.8rem;
  }

  .how-dot {
    width: 10px; height: 10px; border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px currentColor;
  }

  .step-list { display: flex; flex-direction: column; gap: 1.5rem; }

  .step-item { display: flex; gap: 1.2rem; align-items: flex-start; }

  .step-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--grad-pub);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245,168,0,0.3);
    border-radius: 6px;
    margin-top: 2px;
  }

  .step-text strong {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
  }

  .step-text p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* ─── STATS BAND ─── */
  .stats-band {
    background: linear-gradient(135deg, rgba(232,41,74,0.12), rgba(245,168,0,0.08), rgba(245,158,11,0.08));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 4rem;
    position: relative; z-index: 1;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .band-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: var(--grad-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .band-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-top: 0.4rem;
  }

  /* ─── REVIEW CARD ─── */
  .review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.8rem;
    transition: border-color 0.18s;
  }

  .review-card:hover { border-color: var(--border2); }

  .review-text {
    font-size: 0.9rem;
    color: rgba(240,241,246,0.7);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .review-author {
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }

  /* ─── CTA BLOCK ─── */
  .cta-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 7rem 4rem;
  }

  .cta-block h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }

  .cta-block p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

  .cta-options { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

  .cta-option {
    flex: 1; min-width: 200px; max-width: 260px;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.18s;
    cursor: pointer;
    display: block;
    background: rgba(255,255,255,0.03);
  }

  .cta-option:hover { transform: translateY(-6px); }
  .cta-option.pub-opt:hover { border-color: var(--gold); }
  .cta-option.adv-opt:hover { border-color: var(--red2); }

  .cta-opt-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }

  .cta-opt-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .cta-opt-desc { font-size: 0.82rem; color: var(--muted); }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--muted);
  }

  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { color: var(--muted); text-decoration: none; transition: color 0.18s; }
  .footer-links a:hover { color: var(--text); }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(232,41,74,0.4); border-radius: 4px; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.18s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(7,8,15,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    text-decoration: none;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.18s;
  }
  .mobile-menu a:last-child { border-bottom: none; padding-bottom: 0; }
  .mobile-menu a:hover { color: var(--text); }
  .mobile-menu .btn-nav-mobile {
    margin-top: 1rem;
    text-align: center;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: #fff;
    border-radius: 6px;
    border: none;
  }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 5rem 1.5rem; }
    section.hero { padding: 8rem 1.5rem 4rem; }
    .tab-panel.active { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .formats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .earn-table { font-size: 0.78rem; }
    .earn-table th, .earn-table td { padding: 0.7rem 0.6rem; }
  }
  /* ══════════════ MODAL ══════════════ */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.75);
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .modal-box {
    background: #150f0a;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    width: 100%; max-width: 440px;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.22s ease;
  }
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .modal-top-bar { height: 3px; background: var(--grad-hero); }
  .modal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 1.8rem 0;
  }
  .modal-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem; font-weight: 800; letter-spacing: -0.02em;
  }
  .modal-close {
    background: rgba(255,255,255,0.08); border: none; cursor: pointer;
    color: var(--muted); font-size: 1rem;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.18s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.15); color: var(--text); }
  .modal-body { padding: 1.4rem 1.8rem 1.8rem; }
  .modal-foot {
    text-align: center; margin-top: 1rem;
    font-size: 0.8rem; color: var(--muted);
  }
  .modal-foot a { color: var(--gold); text-decoration: none; }
  .modal-foot a:hover { text-decoration: underline; }

  .modal-status {
    border-radius: 6px; padding: 0.55rem 0.8rem;
    font-size: 0.82rem; margin-bottom: 0.8rem; display: none;
  }
  .modal-status.info    { background: rgba(245,168,0,0.1);  color: var(--gold2);  display: block; }
  .modal-status.error   { background: rgba(232,41,74,0.12); color: var(--red2);   display: block; }
  .modal-status.success { background: rgba(16,185,129,0.12);color: #34d399;       display: block; }

  .btn-google {
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px; padding: 0.7rem 1rem;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem; font-weight: 600;
    cursor: pointer; transition: background 0.18s;
    margin-bottom: 1rem; text-decoration: none;
  }
  .btn-google:hover { background: rgba(255,255,255,0.11); }

  .modal-divider {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 1rem; color: var(--muted);
    font-size: 0.72rem; font-family: 'Space Mono', monospace;
  }
  .modal-divider::before, .modal-divider::after {
    content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
  }

  .mfield {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.7rem 1rem;
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem; outline: none;
    transition: border-color 0.18s;
    margin-bottom: 0.65rem; box-sizing: border-box;
  }
  .mfield:focus { border-color: var(--gold); }
  .mfield::placeholder { color: var(--muted); }
  select.mfield option { background: #150f0a; }

  .role-pick { display: flex; gap: 0.65rem; margin-bottom: 0.9rem; }
  .role-opt {
    flex: 1; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.55rem 0.5rem;
    text-align: center; cursor: pointer; transition: all 0.18s;
    font-size: 0.8rem; font-weight: 600; color: var(--muted);
    user-select: none;
  }
  .role-opt input { display: none; }
  .role-opt.selected { border-color: var(--gold); color: var(--gold); background: rgba(245,168,0,0.08); }

  .btn-submit {
    width: 100%; padding: 0.82rem; border: none; border-radius: 8px;
    background: var(--grad-hero); color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.92rem; font-weight: 700;
    cursor: pointer; transition: opacity 0.18s; margin-top: 0.4rem;
  }
  .btn-submit:hover { opacity: 0.88; }

  .check-row {
    display: flex; align-items: flex-start; gap: 0.6rem;
    margin-bottom: 0.9rem; font-size: 0.8rem; color: var(--muted);
  }
  .check-row input[type=checkbox] { margin-top: 2px; accent-color: var(--gold); }
  .check-row a { color: var(--gold); text-decoration: none; }

  @media (max-width: 480px) {
    .modal-box { border-radius: 12px; }
    .modal-body, .modal-head { padding-left: 1.2rem; padding-right: 1.2rem; }
  }
/* ── Documentation Links ── */
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.6rem;
  padding: 0.3rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange2, #ff8c42);
  background: rgba(255, 140, 66, 0.07);
  border: 1px solid rgba(255, 140, 66, 0.3);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.doc-link:hover {
  background: rgba(255, 140, 66, 0.14);
  border-color: rgba(255, 140, 66, 0.6);
  color: #ffaa66;
}

.doc-link-small {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  padding: 0.2rem 0.55rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 140, 66, 0.8);
  background: rgba(255, 140, 66, 0.06);
  border: 1px solid rgba(255, 140, 66, 0.22);
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.doc-link-small:hover {
  background: rgba(255, 140, 66, 0.12);
  border-color: rgba(255, 140, 66, 0.5);
  color: #ffaa66;
}