:root {
      color-scheme: dark;
      --bg: #080b0f;
      --bg-elevated: #10161d;
      --surface: rgba(13, 18, 25, 0.88);
      --surface-strong: #121923;
      --surface-soft: rgba(255, 255, 255, 0.045);
      --text: #f7fafc;
      --muted: #c1cad6;
      --faint: #8c9bad;
      --line: rgba(255, 255, 255, 0.11);
      --primary: #73d6b3;
      --primary-strong: #3fbf93;
      --accent: #ffb86b;
      --blue: #79a8ff;
      --coral: #ff7d7d;
      --button-primary-bg: linear-gradient(180deg, #55c99e 0%, #287f61 100%);
      --button-primary-hover-bg: linear-gradient(180deg, #60d7ab 0%, #217257 100%);
      --button-primary-text: #ffffff;
      --button-primary-border: #1f6e53;
      --button-primary-shadow: 0 14px 34px rgba(40, 127, 97, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.28);
      --button-primary-hover-shadow: 0 18px 42px rgba(40, 127, 97, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
      --button-ghost-bg: color-mix(in srgb, var(--surface) 90%, transparent);
      --button-ghost-text: var(--text);
      --button-ghost-border: color-mix(in srgb, var(--line) 80%, var(--primary));
      --button-ghost-hover-bg: color-mix(in srgb, var(--primary) 11%, var(--surface));
      --button-ghost-hover-text: var(--text);
      --button-ghost-hover-border: color-mix(in srgb, var(--primary) 52%, var(--line));
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
      --radius: 8px;
      --max: 1180px;
    }

    [data-theme="light"] {
      color-scheme: light;
      --bg: #f6f8fb;
      --bg-elevated: #ffffff;
      --surface: rgba(255, 255, 255, 0.9);
      --surface-strong: #ffffff;
      --surface-soft: rgba(12, 28, 45, 0.045);
      --text: #111827;
      --muted: #556274;
      --faint: #8491a1;
      --line: rgba(16, 24, 40, 0.12);
      --primary: #247e64;
      --primary-strong: #2fa883;
      --accent: #c26822;
      --blue: #326fd6;
      --coral: #c74848;
      --button-primary-bg: linear-gradient(180deg, #44bd91 0%, #21775a 100%);
      --button-primary-hover-bg: linear-gradient(180deg, #4bc99c 0%, #1c684f 100%);
      --button-primary-text: #ffffff;
      --button-primary-border: #195f48;
      --button-primary-shadow: 0 14px 34px rgba(32, 119, 90, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.26);
      --button-primary-hover-shadow: 0 18px 42px rgba(32, 119, 90, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.32);
      --button-ghost-bg: rgba(255, 255, 255, 0.72);
      --button-ghost-text: #172033;
      --button-ghost-border: rgba(24, 95, 72, 0.18);
      --button-ghost-hover-bg: rgba(36, 126, 100, 0.08);
      --button-ghost-hover-text: #123226;
      --button-ghost-hover-border: rgba(24, 95, 72, 0.34);
      --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
    }

    [data-button-style="coral"] {
      --button-primary-bg: linear-gradient(180deg, #ff806d 0%, #cf433f 100%);
      --button-primary-hover-bg: linear-gradient(180deg, #ff917f 0%, #b93635 100%);
      --button-primary-text: #ffffff;
      --button-primary-border: #ad3534;
      --button-primary-shadow: 0 14px 34px rgba(207, 67, 63, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.27);
      --button-primary-hover-shadow: 0 18px 42px rgba(207, 67, 63, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.33);
      --button-ghost-hover-bg: color-mix(in srgb, #ff806d 10%, var(--surface));
      --button-ghost-hover-border: color-mix(in srgb, #cf433f 45%, var(--line));
    }

    [data-theme="light"][data-button-style="coral"] {
      --button-ghost-hover-bg: rgba(207, 67, 63, 0.08);
      --button-ghost-hover-border: rgba(173, 53, 52, 0.28);
      --button-ghost-hover-text: #3a1515;
    }

    [data-button-style="ink"] {
      --button-primary-bg: linear-gradient(180deg, #263142 0%, #101827 100%);
      --button-primary-hover-bg: linear-gradient(180deg, #303c50 0%, #0b1220 100%);
      --button-primary-text: #ffffff;
      --button-primary-border: #050b14;
      --button-primary-shadow: 0 14px 34px rgba(8, 15, 26, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.16);
      --button-primary-hover-shadow: 0 18px 42px rgba(8, 15, 26, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.22);
      --button-ghost-hover-bg: color-mix(in srgb, #263142 18%, var(--surface));
      --button-ghost-hover-border: color-mix(in srgb, #7d8ca3 36%, var(--line));
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      margin: 0;
      background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 45%, var(--bg) 100%);
      color: var(--text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      display: none;
      pointer-events: none;
    }

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

    button {
      font: inherit;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      border-bottom: 1px solid transparent;
      transition: background 180ms ease, border-color 180ms ease;
    }

    .topbar.is-scrolled {
      background: color-mix(in srgb, var(--bg) 78%, transparent);
      border-color: var(--line);
      backdrop-filter: blur(18px);
    }

    .topbar.menu-open {
      background: color-mix(in srgb, var(--bg) 88%, transparent);
      border-color: var(--line);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      max-width: var(--max);
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0;
      font-weight: 800;
      letter-spacing: 0;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      width: clamp(146px, 12vw, 172px);
      height: auto;
      object-fit: contain;
    }

    .brand-logo.footer-logo {
      width: 170px;
    }

    .brand-icon {
      display: none;
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
    }

    .nav-links a {
      padding: 9px 12px;
      border-radius: var(--radius);
    }

    .nav-links a:hover {
      color: var(--text);
      background: var(--surface-soft);
    }

    @media (min-width: 981px) {
      .nav-inner {
        width: min(calc(100% - 140px), 1236px);
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
      }

      .brand {
        flex: 0 0 170px;
      }

      .brand-logo {
        width: clamp(128px, 9vw, 148px);
      }

      .nav-links {
        min-height: 62px;
        margin-left: 40px;
        padding: 0 28px;
        gap: 18px;
        border: 1px solid color-mix(in srgb, var(--line) 62%, var(--primary) 20%);
        border-radius: 12px;
        background:
          linear-gradient(110deg, color-mix(in srgb, var(--primary) 8%, transparent), color-mix(in srgb, var(--accent) 7%, transparent)),
          color-mix(in srgb, var(--surface) 78%, transparent);
        box-shadow:
          0 18px 46px rgba(15, 23, 42, 0.12),
          inset 0 1px 0 rgba(255, 255, 255, 0.26);
        backdrop-filter: blur(16px);
        font-size: 16px;
      }

      .nav-links a {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        border: 1px solid transparent;
      }

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

      .nav-links a:hover {
        border-color: color-mix(in srgb, var(--primary) 30%, transparent);
        background: color-mix(in srgb, var(--primary) 10%, transparent);
      }
    }

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

    .theme-toggle,
    .ghost-link,
    .primary-link {
      min-height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--text);
      background: color-mix(in srgb, var(--surface) 84%, transparent);
      cursor: pointer;
      font-size: 13px;
      font-weight: 700;
      transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
    }

    .theme-toggle {
      width: 48px;
      padding: 0;
    }

    .header-language {
      position: relative;
      width: 78px;
      min-height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: color-mix(in srgb, var(--surface) 84%, transparent);
      color: var(--text);
      transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
    }

    .header-language::after {
      content: "⌄";
      position: absolute;
      top: 50%;
      right: 9px;
      transform: translateY(-54%);
      color: var(--muted);
      font-size: 11px;
      line-height: 1;
      pointer-events: none;
    }

    .header-language:hover,
    .header-language:focus-within {
      transform: translateY(-1px);
      border-color: var(--button-ghost-hover-border);
      background: var(--button-ghost-hover-bg);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .header-language-select {
      width: 100%;
      min-height: 38px;
      border: 0;
      outline: 0;
      appearance: none;
      background: transparent;
      color: var(--text);
      padding: 0 23px 0 10px;
      cursor: pointer;
      font: inherit;
      font-size: 11px;
      font-weight: 850;
      letter-spacing: 0.06em;
    }

    .header-language-select option {
      background: var(--bg-elevated);
      color: var(--text);
    }

    .theme-toggle [data-theme-icon] {
      font-size: 15px;
      line-height: 1;
    }

    .primary-link {
      background: var(--button-primary-bg);
      color: var(--button-primary-text);
      border-color: var(--button-primary-border);
      box-shadow: var(--button-primary-shadow);
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22);
    }

    .ghost-link {
      background: var(--button-ghost-bg);
      color: var(--button-ghost-text);
      border-color: var(--button-ghost-border);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .theme-toggle:hover,
    .ghost-link:hover {
      transform: translateY(-1px);
      color: var(--button-ghost-hover-text);
      background: var(--button-ghost-hover-bg);
      border-color: var(--button-ghost-hover-border);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .primary-link:hover {
      transform: translateY(-1px);
      background: var(--button-primary-hover-bg);
      border-color: var(--button-primary-border);
      box-shadow: var(--button-primary-hover-shadow);
    }

    .mobile-menu-button {
      display: none;
      width: 42px;
      min-height: 40px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      background: color-mix(in srgb, var(--surface) 84%, transparent);
      color: var(--text);
      cursor: pointer;
    }

    .mobile-menu-button span {
      width: 17px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 160ms ease, opacity 160ms ease;
    }

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

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

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

    .hero {
      position: relative;
      min-height: 100svh;
      padding: 112px 24px 42px;
      isolation: isolate;
      overflow: hidden;
      background:
        radial-gradient(circle at 67% 29%, color-mix(in srgb, var(--primary) 34%, transparent), transparent 28%),
        radial-gradient(circle at 90% 45%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 26%),
        radial-gradient(circle at 10% 88%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 25%),
        linear-gradient(115deg, color-mix(in srgb, var(--bg-elevated) 96%, var(--bg)) 0%, var(--bg) 100%);
    }

    #market-canvas {
      position: absolute;
      inset: 0;
      z-index: -2;
      opacity: 0.3;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 6%, transparent) 0%, color-mix(in srgb, var(--bg) 28%, transparent) 62%, var(--bg) 100%),
        linear-gradient(118deg, color-mix(in srgb, var(--bg) 20%, transparent) 0%, transparent 58%);
      pointer-events: none;
    }

    .hero-grid {
      max-width: var(--max);
      margin: 0 auto;
      min-height: calc(100svh - 154px);
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
      align-items: start;
      gap: 44px 54px;
      min-width: 0;
    }

    @media (min-width: 981px) {
      .hero {
        min-height: 760px;
        padding: 106px 0 46px;
      }

      .hero-grid {
        width: min(calc(100% - 140px), 1760px);
        max-width: none;
        min-height: auto;
        grid-template-columns: minmax(620px, 0.98fr) minmax(500px, 0.9fr);
        grid-template-rows: auto auto;
        gap: 48px 44px;
      }
    }

    .hero-copy {
      position: static;
      z-index: 2;
      min-width: 0;
      max-width: 100%;
    }

    @media (min-width: 981px) {
      .hero-copy {
        padding-top: 44px;
      }

      .hero .eyebrow {
        display: none;
      }
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: var(--primary);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      font-family: "Space Grotesk", Inter, sans-serif;
      letter-spacing: 0;
      line-height: 1.04;
    }

    .hero h1 {
      max-width: 760px;
      font-size: clamp(58px, 4.9vw, 72px);
      font-weight: 700;
      line-height: 0.98;
      text-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    }

    .hero h1 span {
      color: transparent;
      background: linear-gradient(92deg, #23b8bd 0%, #49d9bd 44%, #d8b95f 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-lede {
      max-width: min(650px, 100%);
      margin: 28px 0 0;
      color: color-mix(in srgb, var(--text) 86%, var(--muted));
      font-size: 20px;
      line-height: 1.32;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      margin-top: 40px;
    }

    .hero-actions .primary-link,
    .hero-actions .ghost-link {
      min-height: 54px;
      border-radius: 9px;
      padding: 0 24px;
      font-size: 18px;
      font-weight: 800;
    }

    .hero-proof {
      width: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 24px;
    }

    @media (min-width: 981px) {
      .hero-proof {
        grid-column: 1 / -1;
      }
    }

    .proof-item {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 70px minmax(0, 1fr);
      grid-template-rows: auto auto auto;
      align-items: center;
      align-content: center;
      gap: 16px;
      row-gap: 4px;
      border: 1px solid color-mix(in srgb, var(--line) 58%, var(--primary) 28%);
      border-radius: 12px;
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--primary) 11%, transparent) 0%, transparent 52%),
        color-mix(in srgb, var(--surface) 84%, transparent);
      padding: 14px 18px 14px 14px;
      height: 112px;
      min-height: 112px;
      backdrop-filter: blur(14px);
      box-shadow:
        0 18px 42px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .proof-item::before,
    .proof-item::after {
      content: "";
      position: absolute;
      pointer-events: none;
    }

    .proof-item::before {
      left: 100px;
      right: 18px;
      bottom: 36px;
      height: 1px;
      background: color-mix(in srgb, var(--line) 78%, transparent);
    }

    .proof-item::after {
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), color-mix(in srgb, var(--accent) 72%, var(--primary)));
      opacity: 0.86;
    }

    .proof-item:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--primary) 62%, var(--line));
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--primary) 17%, transparent) 0%, transparent 52%),
        color-mix(in srgb, var(--surface) 90%, transparent);
      box-shadow:
        0 24px 64px color-mix(in srgb, var(--primary) 18%, transparent),
        0 18px 46px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .proof-item.is-accent {
      border-color: color-mix(in srgb, var(--line) 70%, var(--accent) 24%);
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--accent) 13%, transparent) 0%, transparent 52%),
        color-mix(in srgb, var(--surface) 84%, transparent);
    }

    .proof-item.is-accent::after {
      background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 42%, var(--primary)));
    }

    .proof-item.is-blue {
      border-color: color-mix(in srgb, var(--line) 70%, var(--blue) 24%);
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--blue) 12%, transparent) 0%, transparent 52%),
        color-mix(in srgb, var(--surface) 84%, transparent);
    }

    .proof-item.is-blue::after {
      background: linear-gradient(90deg, var(--blue), color-mix(in srgb, var(--blue) 34%, var(--primary)));
    }

    .proof-icon {
      position: relative;
      top: auto;
      right: auto;
      grid-row: 1 / -1;
      width: 68px;
      height: 68px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent);
      border-radius: 12px;
      color: var(--primary);
      opacity: 1;
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.38), transparent 42%),
        color-mix(in srgb, var(--primary) 14%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 20%, transparent);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .proof-icon svg {
      display: block;
      width: 38px;
      height: 38px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
    }

    .proof-item:hover .proof-icon {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 18px 42px color-mix(in srgb, var(--primary) 28%, transparent);
    }

    .proof-item.is-accent .proof-icon {
      color: var(--accent);
      border-color: color-mix(in srgb, var(--accent) 34%, transparent);
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.42), transparent 42%),
        color-mix(in srgb, var(--accent) 15%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 19%, transparent);
    }

    .proof-item.is-blue .proof-icon {
      color: var(--blue);
      border-color: color-mix(in srgb, var(--blue) 34%, transparent);
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.36), transparent 42%),
        color-mix(in srgb, var(--blue) 15%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--blue) 19%, transparent);
    }

    .proof-value {
      display: block;
      margin-top: 0;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
      color: var(--text);
      letter-spacing: 0;
      text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
    }

    .proof-kicker {
      display: none;
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      max-width: 100%;
    }

    .proof-item.is-accent .proof-kicker {
      color: var(--accent);
    }

    .proof-item.is-blue .proof-kicker {
      color: var(--blue);
    }

    .proof-label {
      display: block;
      margin-top: 0;
      color: color-mix(in srgb, var(--text) 76%, var(--muted));
      font-size: 13px;
      font-weight: 800;
      line-height: 1.16;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .source-proof-head,
    .metric-source-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .source-proof-head {
      justify-content: space-between;
    }

    .source-proof-head .proof-value {
      display: inline-block;
      margin-left: auto;
    }

    .source-logo-stack {
      display: flex;
      align-items: center;
      isolation: isolate;
      min-width: 90px;
    }

    .source-logo-stack img {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      border: 2px solid var(--surface);
      background: #fff;
      object-fit: cover;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
      transition: filter 180ms ease, opacity 180ms ease;
    }

    .source-logo-stack img + img {
      margin-left: -11px;
    }

    .source-logo-stack.is-large {
      min-width: 126px;
    }

    .source-logo-stack.is-large img {
      width: 46px;
      height: 46px;
      border-radius: 14px;
    }

    html:not([data-archive-logos="visible"]) .archive-logo-stack img {
      filter: blur(5px) saturate(0.85);
      opacity: 0.74;
    }

    .announcement-layer {
      position: fixed;
      inset: 0;
      z-index: 120;
      pointer-events: none;
    }

    .announcement-item,
    .announcement-overlay {
      pointer-events: auto;
    }

    .announcement-item {
      color: var(--text);
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      border: 1px solid var(--line);
      box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
      backdrop-filter: blur(18px);
    }

    body[data-theme="dark"] .announcement-item {
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    }

    .announcement-content {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .announcement-copy {
      min-width: 0;
      flex: 1;
    }

    .announcement-copy h3 {
      margin: 0;
      font-size: 16px;
      line-height: 1.22;
      letter-spacing: 0;
    }

    .announcement-copy .body {
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .announcement-copy .body > :first-child {
      margin-top: 0;
    }

    .announcement-copy .body > :last-child {
      margin-bottom: 0;
    }

    .announcement-image {
      width: 96px;
      max-height: 84px;
      border-radius: 12px;
      object-fit: cover;
      border: 1px solid var(--line);
    }

    .announcement-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 0 14px;
      border-radius: 8px;
      background: var(--button-primary-bg);
      border: 1px solid var(--button-primary-border);
      color: var(--button-primary-text);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
      box-shadow: var(--button-primary-shadow);
    }

    .announcement-close {
      width: 32px;
      height: 32px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: color-mix(in srgb, var(--surface) 90%, transparent);
      color: var(--muted);
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
    }

    .announcement-top_bar,
    .announcement-bottom_bar {
      position: fixed;
      left: 0;
      right: 0;
      padding: 10px max(18px, calc((100vw - 1180px) / 2));
      border-radius: 0;
    }

    .announcement-top_bar {
      top: 0;
      border-width: 0 0 1px;
    }

    .announcement-bottom_bar {
      bottom: 0;
      border-width: 1px 0 0;
    }

    .announcement-top_bar .announcement-content,
    .announcement-bottom_bar .announcement-content {
      max-width: 1180px;
      margin: 0 auto;
    }

    .announcement-side_left,
    .announcement-side_right,
    .announcement-corner_left,
    .announcement-corner_right {
      position: fixed;
      width: min(340px, calc(100vw - 32px));
      padding: 16px;
      border-radius: 14px;
    }

    .announcement-side_left,
    .announcement-side_right {
      top: 50%;
      transform: translateY(-50%);
    }

    .announcement-side_left {
      left: 18px;
    }

    .announcement-side_right {
      right: 18px;
    }

    .announcement-corner_left,
    .announcement-corner_right {
      bottom: 18px;
    }

    .announcement-corner_left {
      left: 18px;
    }

    .announcement-corner_right {
      right: 18px;
    }

    .announcement-drawer_left,
    .announcement-drawer_right {
      position: fixed;
      top: 0;
      bottom: 0;
      width: min(430px, 92vw);
      padding: 24px;
      border-radius: 0;
      display: flex;
      align-items: center;
    }

    .announcement-drawer_left {
      left: 0;
      border-width: 0 1px 0 0;
    }

    .announcement-drawer_right {
      right: 0;
      border-width: 0 0 0 1px;
    }

    .announcement-drawer_left .announcement-content,
    .announcement-drawer_right .announcement-content,
    .announcement-modal .announcement-content {
      align-items: stretch;
      flex-direction: column;
    }

    .announcement-drawer_left .announcement-image,
    .announcement-drawer_right .announcement-image,
    .announcement-modal .announcement-image {
      width: 100%;
      max-height: 260px;
    }

    .announcement-overlay {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 22px;
      background: rgba(15, 23, 42, 0.42);
      backdrop-filter: blur(10px);
    }

    .announcement-modal {
      position: relative;
      width: min(560px, 100%);
      padding: 22px;
      border-radius: 18px;
    }

    .announcement-modal .announcement-close,
    .announcement-drawer_left .announcement-close,
    .announcement-drawer_right .announcement-close {
      position: absolute;
      top: 14px;
      right: 14px;
    }

    @media (max-width: 760px) {
      .announcement-content {
        align-items: flex-start;
        flex-direction: column;
      }

      .announcement-top_bar,
      .announcement-bottom_bar {
        padding: 12px 14px;
      }

      .announcement-side_left,
      .announcement-side_right {
        left: 14px;
        right: 14px;
        top: auto;
        bottom: 14px;
        transform: none;
        width: auto;
      }

      .announcement-corner_left,
      .announcement-corner_right {
        left: 14px;
        right: 14px;
        width: auto;
      }

      .announcement-action {
        width: 100%;
      }
    }

    .hero-mobile-showcase {
      position: relative;
      z-index: 1;
      min-height: 430px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 12px;
    }

    @media (min-width: 981px) {
      .hero-mobile-showcase {
        height: 430px;
        min-height: 0;
      }
    }

    @media (min-width: 981px) and (max-width: 1240px) {
      .nav-inner,
      .hero-grid {
        width: min(calc(100% - 48px), 1180px);
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
        gap: 36px 28px;
      }

      .hero h1 {
        font-size: clamp(52px, 5vw, 64px);
      }

      .hero-lede {
        font-size: 18px;
      }

      .hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .hero-phone-frame {
      position: relative;
      width: min(620px, 44vw);
      height: 428px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
    }

    .hero-phone-frame::before {
      content: "";
      position: absolute;
      left: 14%;
      right: 8%;
      bottom: 58px;
      height: 72px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--primary) 18%, transparent);
      filter: blur(28px);
      opacity: 0.84;
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .hero-phone-shot {
      display: block;
      width: min(650px, 47vw);
      height: auto;
      border: 0;
      border-radius: 0;
      background: transparent;
      filter: drop-shadow(0 36px 46px rgba(15, 23, 42, 0.22));
      transform: translateY(-4px) scale(1);
      transition: transform 240ms ease, filter 240ms ease;
      will-change: transform;
    }

    .hero-mobile-showcase:hover .hero-phone-shot {
      transform: translateY(-10px) scale(1.03) rotate(-1deg);
      filter: drop-shadow(0 42px 58px rgba(15, 23, 42, 0.26));
    }

    .scroll-cue {
      position: static;
      margin: 20px auto 0;
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 7px;
      width: 42px;
      height: 60px;
      color: var(--primary);
      opacity: 0.9;
    }

    .scroll-cue:hover {
      opacity: 1;
    }

    .mouse-cue {
      position: relative;
      width: 24px;
      height: 36px;
      border: 2px solid color-mix(in srgb, var(--primary) 72%, var(--line));
      border-radius: 999px;
      background: color-mix(in srgb, var(--surface) 68%, transparent);
      box-shadow: 0 12px 30px rgba(45, 169, 132, 0.14);
    }

    .mouse-cue::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 7px;
      width: 4px;
      height: 7px;
      border-radius: 999px;
      background: var(--primary);
      transform: translateX(-50%);
      animation: mouseWheel 1.45s ease-in-out infinite;
    }

    .scroll-arrow {
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      animation: scrollArrow 1.45s ease-in-out infinite;
    }

    @keyframes mouseWheel {
      0% {
        transform: translate(-50%, 0);
        opacity: 0;
      }
      35% {
        opacity: 1;
      }
      100% {
        transform: translate(-50%, 12px);
        opacity: 0;
      }
    }

    @keyframes scrollArrow {
      0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.55;
      }
      50% {
        transform: translateY(5px) rotate(45deg);
        opacity: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .mouse-cue::before,
      .scroll-arrow {
        animation: none;
      }
    }

    .section {
      padding: 96px 24px;
      border-top: 1px solid var(--line);
      scroll-margin-top: 96px;
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .section.alt {
      background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
    }

    .section-inner {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section h2 {
      font-size: 44px;
      font-weight: 700;
    }

    .section-copy {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
      margin: 0;
    }

    .learning-section {
      min-height: auto;
      padding: 88px 24px;
    }

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

    .learning-card {
      display: flex;
      min-height: 286px;
      flex-direction: column;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: color-mix(in srgb, var(--surface) 92%, transparent);
      color: var(--text);
      text-decoration: none;
      box-shadow: 0 18px 50px color-mix(in srgb, #091820 8%, transparent);
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .learning-card:hover {
      transform: translateY(-5px);
      border-color: color-mix(in srgb, var(--primary) 58%, var(--line));
      box-shadow: 0 24px 64px color-mix(in srgb, var(--primary) 16%, transparent);
    }

    .learning-index {
      width: fit-content;
      margin-bottom: 32px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
    }

    .learning-card h3 {
      margin: 0 0 12px;
      font-size: clamp(21px, 2vw, 28px);
      line-height: 1.12;
      letter-spacing: -0.025em;
    }

    .learning-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    .learning-link {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: auto;
      padding-top: 24px;
      color: var(--primary);
      font-weight: 800;
    }

    .learning-all {
      display: flex;
      width: fit-content;
      margin: 26px auto 0;
      padding: 12px 20px;
      border: 1px solid color-mix(in srgb, var(--primary) 52%, var(--line));
      border-radius: 999px;
      color: var(--primary);
      font-weight: 800;
      text-decoration: none;
    }

    @media (max-width: 900px) {
      .learning-grid {
        grid-template-columns: 1fr;
      }

      .learning-card {
        min-height: 230px;
      }
    }

    .metric-rail {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--line);
    }

    .metric-tile {
      background: var(--surface);
      padding: 24px;
      min-height: 150px;
    }

    .metric-tile b {
      display: block;
      color: var(--primary);
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 34px;
      line-height: 1;
    }

    .metric-tile span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .metric-tile .source-logo-stack {
      display: flex;
      margin-top: 0;
      color: inherit;
      font-size: inherit;
      font-weight: inherit;
      text-transform: none;
      letter-spacing: 0;
    }

    .signal-showcase {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.8fr);
      gap: 34px;
      align-items: center;
    }

    .signal-intro {
      margin-bottom: 28px;
    }

    .signal-intro .eyebrow {
      margin-bottom: 16px;
    }

    .signal-intro h2 {
      max-width: 620px;
      font-size: clamp(54px, 6vw, 82px);
      line-height: 0.98;
      text-transform: uppercase;
    }

    .signal-intro .section-copy {
      max-width: 590px;
      margin-top: 24px;
      font-size: 18px;
    }

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

    .capability-card {
      --card-y: 0px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 74px minmax(0, 1fr);
      gap: 16px;
      align-items: center;
      min-height: 104px;
      border: 1px solid color-mix(in srgb, var(--line) 58%, var(--primary) 26%);
      border-radius: 14px;
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--primary) 12%, transparent) 0%, transparent 58%),
        color-mix(in srgb, var(--surface) 84%, transparent);
      padding: 14px 18px;
      box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
      backdrop-filter: blur(16px);
      transform: translateY(var(--card-y));
      transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    .capability-card::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      height: 2px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--primary) 78%, transparent);
      opacity: 0.38;
    }

    .capability-card:hover {
      transform: translateY(calc(var(--card-y) - 5px));
      border-color: color-mix(in srgb, var(--primary) 64%, var(--line));
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--primary) 18%, transparent) 0%, transparent 58%),
        color-mix(in srgb, var(--surface) 91%, transparent);
      box-shadow:
        0 24px 64px color-mix(in srgb, var(--primary) 18%, transparent),
        0 18px 48px rgba(15, 23, 42, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .capability-card:nth-child(2),
    .capability-card:nth-child(6) {
      --card-y: 18px;
    }

    .capability-card:nth-child(3),
    .capability-card:nth-child(7) {
      --card-y: 5px;
    }

    .capability-card:nth-child(4),
    .capability-card:nth-child(8) {
      --card-y: 24px;
    }

    .capability-card.is-warm {
      border-color: color-mix(in srgb, var(--line) 58%, var(--accent) 30%);
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--accent) 15%, transparent) 0%, transparent 58%),
        color-mix(in srgb, var(--surface) 84%, transparent);
    }

    .capability-card.is-blue {
      border-color: color-mix(in srgb, var(--line) 58%, var(--blue) 30%);
      background:
        linear-gradient(112deg, color-mix(in srgb, var(--blue) 14%, transparent) 0%, transparent 58%),
        color-mix(in srgb, var(--surface) 84%, transparent);
    }

    .capability-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 60px;
      height: 60px;
      margin-bottom: 0;
      border: 1px solid color-mix(in srgb, var(--primary) 36%, transparent);
      border-radius: 14px;
      color: var(--primary);
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.38), transparent 42%),
        color-mix(in srgb, var(--primary) 14%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 20%, transparent);
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 15px;
      font-weight: 800;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .capability-icon svg {
      width: 34px;
      height: 34px;
      stroke: currentColor;
      stroke-width: 1.9;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .capability-card:hover .capability-icon {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 18px 42px color-mix(in srgb, var(--primary) 28%, transparent);
    }

    .capability-card.is-warm .capability-icon {
      color: var(--accent);
      border-color: color-mix(in srgb, var(--accent) 38%, transparent);
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.42), transparent 42%),
        color-mix(in srgb, var(--accent) 15%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--accent) 19%, transparent);
    }

    .capability-card.is-blue .capability-icon {
      color: var(--blue);
      border-color: color-mix(in srgb, var(--blue) 38%, transparent);
      background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.36), transparent 42%),
        color-mix(in srgb, var(--blue) 15%, var(--surface));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--blue) 19%, transparent);
    }

    .capability-title {
      display: block;
      color: var(--text);
      font-size: 18px;
      font-weight: 800;
      line-height: 1.14;
    }

    .capability-copy {
      display: block;
      margin-top: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.35;
    }

    .capability-content {
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
    }

    .preview-stack {
      display: grid;
      grid-template-rows: auto auto;
      gap: 32px;
      align-content: center;
      align-self: stretch;
      margin-top: 68px;
      perspective: 1000px;
    }

    .preview-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background:
        linear-gradient(145deg, color-mix(in srgb, var(--primary) 12%, transparent), transparent 52%),
        color-mix(in srgb, var(--surface) 92%, transparent);
      box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.2),
        0 0 42px color-mix(in srgb, var(--primary) 18%, transparent);
      min-height: 0;
      transform: rotate(-7deg) translateX(-8px);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .preview-card:nth-child(2) {
      transform: rotate(7deg) translateX(20px);
      box-shadow:
        0 30px 70px rgba(15, 23, 42, 0.2),
        0 0 42px color-mix(in srgb, var(--accent) 18%, transparent);
    }

    .preview-card:hover {
      transform: rotate(-4deg) translateY(-6px) translateX(-8px);
      border-color: color-mix(in srgb, var(--primary) 56%, var(--line));
      box-shadow:
        0 36px 84px rgba(15, 23, 42, 0.22),
        0 0 54px color-mix(in srgb, var(--primary) 24%, transparent);
    }

    .preview-card:nth-child(2):hover {
      transform: rotate(4deg) translateY(-6px) translateX(20px);
      border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
      box-shadow:
        0 36px 84px rgba(15, 23, 42, 0.22),
        0 0 54px color-mix(in srgb, var(--accent) 22%, transparent);
    }

    .preview-card img {
      display: block;
      width: 100%;
      height: clamp(210px, 18vw, 252px);
      object-fit: cover;
      object-position: center;
      opacity: 0.96;
    }

    .preview-caption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius);
      color: #f8fafc;
      background: rgba(8, 13, 20, 0.72);
      backdrop-filter: blur(12px);
    }

    .preview-caption strong {
      font-size: 13px;
      line-height: 1.2;
    }

    .preview-caption span {
      color: rgba(248, 250, 252, 0.72);
      font-size: 12px;
      white-space: nowrap;
    }

    @media (min-width: 981px) {
      .hero {
        min-height: max(768px, 100svh);
        padding: clamp(155px, 17svh, 176px) 70px 60px;
        background:
          radial-gradient(circle at 51% 5%, rgba(83, 237, 220, 0.33), transparent 23%),
          radial-gradient(circle at 85% 50%, rgba(231, 198, 100, 0.30), transparent 22%),
          radial-gradient(circle at 9% 85%, rgba(58, 231, 216, 0.26), transparent 18%),
          linear-gradient(120deg, #fbfffe 0%, #f2faf8 48%, #fffaf0 100%);
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        display: none;
        pointer-events: none;
      }

      .hero::after {
        background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.22) 64%, rgba(246, 248, 251, 0.62) 100%),
          linear-gradient(118deg, rgba(255, 255, 255, 0.18) 0%, transparent 58%);
      }

      #market-canvas {
        opacity: 0.2;
      }

      .hero-grid {
        width: min(100%, 1236px);
        max-width: none;
        height: calc(100svh - clamp(155px, 17svh, 176px) - 60px);
        min-height: 543px;
        grid-template-columns: 58% 42%;
        grid-template-rows: minmax(392px, 1fr) 112px;
        align-items: start;
        gap: 36px 24px;
      }

      .hero-copy {
        padding-top: 0;
        transform: translateY(clamp(28px, 4svh, 46px));
      }

      .hero .eyebrow {
        display: none;
      }

      .hero h1 {
        max-width: 650px;
        font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 70px;
        font-weight: 900;
        line-height: 0.96;
        letter-spacing: -0.055em;
        color: #1d2430;
        text-shadow: none;
      }

      .hero h1 span {
        display: block;
        margin-top: 5px;
        white-space: nowrap;
        background: linear-gradient(90deg, #17a5ae 0%, #38dbcd 34%, #d6b450 88%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      html[lang="en"] .hero h1 {
        font-size: 64px;
      }

      .hero-lede {
        width: 650px;
        max-width: 100%;
        margin-top: 25px;
        color: #111827;
        font-size: 22px;
        line-height: 1.28;
        letter-spacing: -0.025em;
      }

      .hero-actions {
        gap: 20px;
        margin-top: 36px;
      }

      .hero-actions .primary-link,
      .hero-actions .ghost-link {
        min-height: 54px;
        border-radius: 12px;
        padding: 0 24px;
        font-size: 20px;
        font-weight: 800;
      }

      .hero-actions .primary-link {
        color: #fff;
        background: linear-gradient(135deg, #3a4c67, #121824 48%, #d2b058);
        border-color: rgba(210, 176, 88, 0.44);
        box-shadow: 0 13px 28px rgba(34, 47, 65, 0.27), 0 0 25px rgba(215, 180, 88, 0.28);
      }

      .hero-actions .ghost-link {
        color: #111827;
        background: rgba(255, 255, 255, 0.60);
        border-color: rgba(180, 145, 58, 0.46);
        box-shadow: inset 0 0 20px rgba(214, 180, 88, 0.13);
      }

      .hero-mobile-showcase {
        height: auto;
        min-height: 0;
        padding-top: 0;
        align-items: flex-start;
        justify-content: flex-end;
        transform: translateY(clamp(28px, 4svh, 46px));
      }

      .hero-phone-frame {
        width: 100%;
        height: auto;
        aspect-ratio: 2304 / 1660;
        overflow: hidden;
        justify-content: flex-end;
      }

      .hero-phone-frame::before {
        display: none;
      }

      .hero-phone-shot {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: auto;
        object-fit: initial;
        object-position: initial;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 28px 50px rgba(8, 17, 25, 0.26));
        transform: translateY(-29.736%);
      }

      .hero-mobile-showcase:hover .hero-phone-shot {
        transform: translateY(-29.736%);
        filter: drop-shadow(0 34px 62px rgba(8, 17, 25, 0.30));
      }

      .hero-proof {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr 0.95fr 0.95fr;
        gap: 24px;
        margin: 0;
      }

      .proof-item {
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 20px;
        row-gap: 0;
        height: 112px;
        min-height: 112px;
        border: 1px solid rgba(20, 184, 166, 0.30);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.62);
        padding: 15px 20px;
        box-shadow: 0 0 34px rgba(40, 226, 209, 0.55), 0 18px 36px rgba(20, 184, 166, 0.12);
        backdrop-filter: blur(8px);
      }

      .proof-item.is-accent {
        border-color: rgba(215, 180, 88, 0.36);
        background: rgba(255, 255, 255, 0.62);
        box-shadow: 0 0 34px rgba(215, 180, 88, 0.45), 0 18px 34px rgba(180, 132, 30, 0.10);
      }

      .proof-item::before {
        left: 110px;
        right: 20px;
        bottom: 48px;
        background: rgba(25, 32, 45, 0.10);
      }

      .proof-item::after {
        height: 0;
        opacity: 0;
      }

      .proof-item:hover {
        transform: translateY(-7px);
        border-color: rgba(20, 184, 166, 0.48);
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 0 46px rgba(40, 226, 209, 0.64), 0 24px 48px rgba(20, 184, 166, 0.17);
      }

      .proof-item.is-accent:hover {
        border-color: rgba(215, 180, 88, 0.52);
        box-shadow: 0 0 46px rgba(215, 180, 88, 0.54), 0 24px 48px rgba(180, 132, 30, 0.15);
      }

      .proof-icon {
        width: 70px;
        height: 70px;
        border-radius: 14px;
        color: #247e64;
        border: 0;
        background: linear-gradient(135deg, rgba(55, 226, 212, 0.75), rgba(255, 255, 255, 0.25));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.55);
      }

      .proof-item.is-accent .proof-icon {
        color: #c26822;
        border: 0;
        background: linear-gradient(135deg, rgba(215, 180, 88, 0.70), rgba(255, 255, 255, 0.25));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.55);
      }

      .proof-icon svg {
        width: 39px;
        height: 39px;
        stroke-width: 1.9;
      }

      .proof-kicker {
        color: #247e64;
        font-size: 13px;
        line-height: 1.06;
        letter-spacing: -0.02em;
      }

      .proof-item.is-accent .proof-kicker {
        color: #c26822;
      }

      .proof-value {
        margin: 7px 0 2px;
        font-size: 37px;
        line-height: 1;
        color: #111827;
        text-shadow: none;
      }

      .proof-label {
        margin-top: 12px;
        color: #111827;
        font-size: 12px;
        line-height: 1.08;
        letter-spacing: -0.02em;
      }

      #signal.section {
        position: relative;
        overflow: hidden;
        min-height: 768px;
        padding: 36px 70px;
        background:
          radial-gradient(circle at 51% 5%, rgba(83, 237, 220, 0.33), transparent 23%),
          radial-gradient(circle at 85% 50%, rgba(231, 198, 100, 0.30), transparent 22%),
          radial-gradient(circle at 9% 85%, rgba(58, 231, 216, 0.26), transparent 18%),
          linear-gradient(120deg, #fbfffe 0%, #f2faf8 48%, #fffaf0 100%);
      }

      #signal.section::before {
        content: "";
        position: absolute;
        inset: 0;
        display: none;
        pointer-events: none;
      }

      #signal .section-inner {
        position: relative;
        z-index: 1;
        max-width: 1236px;
        min-height: 696px;
      }

      .signal-showcase {
        display: block;
        min-height: 696px;
      }

      .signal-showcase > div:first-child {
        position: static;
      }

      .signal-intro {
        position: absolute;
        left: 0;
        top: 32px;
        width: 520px;
        margin: 0;
      }

      .signal-intro .eyebrow {
        display: none;
      }

      .signal-intro h2 {
        max-width: 520px;
        color: #1d2430;
        font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 66px;
        font-weight: 900;
        line-height: 0.96;
        letter-spacing: -0.055em;
        text-transform: uppercase;
      }

      .tool-subtitle {
        margin: 28px 0 0;
        color: #1d2430;
        font-size: 34px;
        font-weight: 800;
        line-height: 0.98;
        letter-spacing: -0.045em;
      }

      .signal-intro .section-copy {
        width: 510px;
        max-width: 100%;
        margin-top: 37px;
        color: #111827;
        font-size: 20px;
        line-height: 1.35;
        letter-spacing: -0.015em;
      }

      .capability-grid {
        position: absolute;
        inset: 32px 0 auto 0;
        display: block;
        height: 640px;
      }

      .capability-card {
        --card-y: 0px;
        position: absolute;
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-content: center;
        align-items: center;
        column-gap: 18px;
        row-gap: 5px;
        min-height: 104px;
        height: 104px;
        border-radius: 16px;
        border: 1px solid rgba(20, 184, 166, 0.32);
        background: rgba(255, 255, 255, 0.60);
        padding: 10px 20px;
        box-shadow: 0 0 34px rgba(40, 226, 209, 0.55), 0 18px 36px rgba(20, 184, 166, 0.12);
        transform: none;
      }

      .capability-card:nth-child(1) { left: 520px; top: 0; width: 302px; }
      .capability-card:nth-child(2) { left: 520px; top: 135px; width: 302px; }
      .capability-card:nth-child(3) { left: 520px; top: 263px; width: 302px; }
      .capability-card:nth-child(4) { left: 0; top: 388px; width: 312px; }
      .capability-card:nth-child(5) { left: 335px; top: 388px; width: 270px; }
      .capability-card:nth-child(6) { left: 0; top: 515px; width: 338px; }
      .capability-card:nth-child(7) { left: 568px; top: 515px; width: 330px; }
      .capability-card:nth-child(8) { right: 0; top: 515px; width: 320px; }

      .capability-card.is-warm {
        border-color: rgba(240, 107, 99, 0.37);
        background: rgba(255, 255, 255, 0.60);
        box-shadow: 0 0 36px rgba(240, 107, 99, 0.45), 0 18px 34px rgba(240, 107, 99, 0.12);
      }

      .capability-card.is-blue {
        border-color: rgba(215, 180, 88, 0.36);
        background: rgba(255, 255, 255, 0.60);
        box-shadow: 0 0 34px rgba(215, 180, 88, 0.45), 0 18px 34px rgba(180, 132, 30, 0.10);
      }

      .capability-card::after {
        display: none;
      }

      .capability-card:hover {
        transform: translateY(-7px);
        border-color: rgba(20, 184, 166, 0.52);
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 0 48px rgba(40, 226, 209, 0.65), 0 24px 46px rgba(20, 184, 166, 0.16);
      }

      .capability-card.is-warm:hover {
        border-color: rgba(240, 107, 99, 0.54);
        box-shadow: 0 0 48px rgba(240, 107, 99, 0.55), 0 24px 46px rgba(240, 107, 99, 0.16);
      }

      .capability-card.is-blue:hover {
        border-color: rgba(215, 180, 88, 0.54);
        box-shadow: 0 0 48px rgba(215, 180, 88, 0.55), 0 24px 46px rgba(180, 132, 30, 0.15);
      }

      .capability-icon {
        grid-row: 1 / -1;
        width: 70px;
        height: 70px;
        border: 0;
        border-radius: 14px;
        color: #247e64;
        background: linear-gradient(135deg, rgba(55, 226, 212, 0.75), rgba(255, 255, 255, 0.25));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.55);
      }

      .capability-card.is-warm .capability-icon {
        color: #c74848;
        border: 0;
        background: linear-gradient(135deg, rgba(240, 107, 99, 0.72), rgba(255, 255, 255, 0.25));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.55);
      }

      .capability-card.is-blue .capability-icon {
        color: #c26822;
        border: 0;
        background: linear-gradient(135deg, rgba(215, 180, 88, 0.70), rgba(255, 255, 255, 0.25));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.55);
      }

      .capability-icon svg {
        width: 39px;
        height: 39px;
      }

      .capability-content {
        grid-column: 2;
        grid-row: 1 / -1;
        gap: var(--capability-text-gap, 5px);
      }

      .capability-title {
        color: #111827;
        font-size: var(--capability-title-size, 19px);
        font-weight: 800;
        line-height: 0.97;
        letter-spacing: -0.03em;
      }

      .capability-copy {
        color: #111827;
        font-size: var(--capability-copy-size, 16px);
        line-height: 1.12;
      }

      .capability-card.is-text-fitted .capability-title {
        line-height: 1;
      }

      .capability-card.is-text-fitted .capability-copy {
        line-height: 1.08;
      }

      .preview-stack {
        position: absolute;
        right: 15px;
        top: 10px;
        width: 390px;
        height: 470px;
        display: block;
        margin: 0;
        perspective: 1000px;
        pointer-events: none;
      }

      .preview-card {
        position: absolute;
        width: 300px;
        height: 165px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.20);
        background: linear-gradient(160deg, rgba(73, 91, 111, 0.94), rgba(20, 29, 45, 0.94));
        box-shadow: 0 32px 48px rgba(27, 39, 63, 0.30), 0 0 30px rgba(45, 222, 208, 0.22);
        transform: rotate(17deg) skewX(-7deg);
        overflow: hidden;
      }

      .preview-card:nth-child(1) {
        right: 55px;
        top: 10px;
      }

      .preview-card:nth-child(2) {
        right: 15px;
        top: 250px;
        transform: rotate(8deg) skewX(-7deg);
        background: linear-gradient(160deg, rgba(58, 52, 82, 0.95), rgba(35, 32, 45, 0.98));
        box-shadow: 0 32px 48px rgba(39, 31, 58, 0.32), 0 0 30px rgba(215, 180, 88, 0.26);
      }

      .preview-card:hover,
      .preview-card:nth-child(2):hover {
        transform: translateY(-6px) rotate(12deg) skewX(-7deg);
      }

      .preview-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.84;
      }

      .preview-caption {
        left: 20px;
        right: 20px;
        bottom: 16px;
        border-radius: 10px;
      }
    }

    .model-layout {
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      gap: 22px;
    }

    #models,
    #radars {
      isolation: isolate;
      background:
        radial-gradient(circle at 12% 36%, color-mix(in srgb, var(--primary) 28%, transparent), transparent 24%),
        radial-gradient(circle at 82% 47%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 24%),
        radial-gradient(circle at 52% 10%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 22%),
        linear-gradient(112deg, color-mix(in srgb, var(--bg-elevated) 86%, #ffffff) 0%, color-mix(in srgb, var(--bg) 92%, #effaf8) 52%, color-mix(in srgb, var(--bg-elevated) 86%, #fff7e4) 100%);
      padding-block: clamp(74px, 9vh, 106px);
    }

    #models::before,
    #radars::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      pointer-events: none;
    }

    #models::after,
    #radars::after {
      content: "";
      position: absolute;
      left: -10%;
      right: -10%;
      bottom: -24%;
      z-index: -1;
      height: 330px;
      pointer-events: none;
      background: radial-gradient(ellipse at 50% 0, color-mix(in srgb, var(--primary) 22%, transparent), transparent 64%);
    }

    #models .section-inner,
    #radars .section-inner {
      min-height: min(768px, calc(100svh - 148px));
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #models .section-head,
    #radars .section-head {
      grid-template-columns: 1fr;
      gap: 14px;
      max-width: 980px;
      margin: 0 auto clamp(26px, 4vh, 42px);
      text-align: center;
    }

    #models .eyebrow,
    #radars .eyebrow {
      color: color-mix(in srgb, var(--primary) 76%, var(--text));
      border-bottom: 2px solid color-mix(in srgb, var(--primary) 44%, transparent);
      padding-bottom: 5px;
      margin-bottom: 10px;
    }

    #models h2,
    #radars h2 {
      max-width: 980px;
      margin: 0 auto;
      font-size: clamp(34px, 3.75vw, 52px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      text-shadow:
        0 2px 16px color-mix(in srgb, var(--primary) 16%, transparent),
        0 1px 0 color-mix(in srgb, #ffffff 24%, transparent);
    }

    #models .section-copy,
    #radars .section-copy {
      max-width: 780px;
      margin: 0 auto;
      color: color-mix(in srgb, var(--text) 76%, var(--muted));
      font-size: 15px;
      line-height: 1.55;
      text-shadow: 0 1px 12px color-mix(in srgb, var(--bg-elevated) 32%, transparent);
    }

    #radars {
      --ready-ink: #111827;
      --ready-muted: #526075;
      --ready-green: #118467;
      --ready-mint: #35d7c3;
      --ready-gold: #c98234;
      --ready-blue: #3f7df0;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: var(--ready-ink);
      padding: clamp(72px, 7vh, 92px) 24px clamp(56px, 6vh, 76px);
      background:
        radial-gradient(circle at 12% 28%, rgba(45, 217, 196, 0.19), transparent 30%),
        radial-gradient(circle at 86% 30%, rgba(212, 175, 91, 0.15), transparent 28%),
        radial-gradient(circle at 50% 76%, rgba(63, 125, 240, 0.08), transparent 30%),
        #f7fafb;
      background-size: auto, auto, auto, auto;
    }

    #radars::before {
      display: none;
    }

    #radars::after {
      bottom: -20%;
      background: radial-gradient(ellipse at 50% 0, rgba(45, 217, 196, 0.20), transparent 62%);
    }

    #radars .section-inner {
      width: min(1180px, 100%);
      min-height: auto;
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    #radars .section-head {
      max-width: 840px;
      margin: 0 auto clamp(28px, 4vh, 44px);
    }

    #radars .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      border-bottom: 0;
      padding-bottom: 0;
      margin-bottom: 18px;
      color: var(--ready-green);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.12em;
    }

    #radars .eyebrow::before,
    #radars .eyebrow::after {
      content: "";
      width: 36px;
      height: 1px;
      background: currentColor;
      opacity: 0.72;
    }

    #radars h2 {
      max-width: 820px;
      font-size: clamp(42px, 4.8vw, 64px);
      line-height: 0.92;
      letter-spacing: -0.072em;
      text-shadow: 0 18px 42px rgba(15, 94, 78, 0.10);
    }

    #radars .section-copy {
      max-width: 720px;
      margin-top: 20px;
      color: var(--ready-muted);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 740;
      text-shadow: none;
    }

    #models {
      --workspace-ink: #111827;
      --workspace-muted: #536176;
      --workspace-green: #118467;
      --workspace-mint: #2ed7bd;
      --workspace-cyan: #73fff0;
      --workspace-gold: #d5b765;
      --workspace-blue: #3f7df0;
      min-height: 100svh;
      padding: clamp(78px, 9vh, 104px) 24px;
      color: var(--workspace-ink);
      background:
        radial-gradient(circle at 18% 42%, rgba(47, 216, 190, 0.22), transparent 28%),
        radial-gradient(circle at 83% 70%, rgba(213, 183, 101, 0.20), transparent 26%),
        radial-gradient(circle at 54% 48%, rgba(115, 255, 240, 0.16), transparent 34%),
        #f6f9fb;
      background-size: auto, auto, auto, auto;
    }

    #models::before,
    #models::after {
      content: "";
      position: absolute;
      z-index: 0;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(20px);
      opacity: 0.65;
    }

    #models::before {
      width: 520px;
      height: 120px;
      left: -120px;
      top: 270px;
      background: linear-gradient(90deg, rgba(46, 215, 189, 0.55), rgba(213, 183, 101, 0.26), transparent);
      transform: rotate(16deg);
    }

    #models::after {
      width: 440px;
      height: 120px;
      right: -70px;
      bottom: 160px;
      background: linear-gradient(90deg, transparent, rgba(115, 255, 240, 0.42), rgba(213, 183, 101, 0.30));
      transform: rotate(-14deg);
    }

    #models .section-inner {
      position: relative;
      z-index: 1;
      width: min(1220px, 100%);
      min-height: min(860px, calc(100svh - clamp(156px, 18vh, 208px)));
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #models .section-head {
      display: grid;
      grid-template-columns: 1.35fr 0.85fr;
      gap: 64px;
      align-items: end;
      max-width: none;
      margin: 0 0 clamp(32px, 5vh, 42px);
      text-align: left;
    }

    #models .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      border: 0;
      padding: 0;
      color: var(--workspace-green);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.115em;
      text-transform: uppercase;
    }

    #models .eyebrow::before {
      content: "";
      display: block;
      width: 36px;
      height: 1px;
      background: var(--workspace-green);
    }

    #models h2 {
      max-width: 780px;
      margin: 0;
      color: var(--workspace-ink);
      font-size: clamp(38px, 4.2vw, 66px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 900;
      text-shadow: none;
    }

    #models .section-copy {
      max-width: 470px;
      margin: 0 0 8px;
      color: var(--workspace-muted);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 500;
      text-shadow: none;
    }

    #models .model-layout {
      grid-template-columns: 330px minmax(0, 1fr);
      gap: 22px;
      align-items: stretch;
    }

    #models .model-tabs {
      display: grid;
      gap: 14px;
    }

    #models .model-tab {
      position: relative;
      min-height: 132px;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.10);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.70);
      box-shadow: 0 12px 30px rgba(17, 24, 39, 0.045);
      color: #172033;
      padding: 24px;
      cursor: pointer;
      transform: translateZ(0);
      transition:
        border-color 250ms ease,
        background 250ms ease,
        box-shadow 250ms ease,
        transform 250ms ease;
    }

    #models .model-tab::before {
      content: "";
      position: absolute;
      inset: -1px;
      opacity: 0;
      pointer-events: none;
      background: radial-gradient(circle at 15% 20%, rgba(47, 216, 190, 0.24), transparent 42%), rgba(255, 255, 255, 0.16);
      transition: opacity 250ms ease;
    }

    #models .model-tab:hover,
    #models .model-tab.is-active {
      border-color: rgba(17, 132, 103, 0.55);
      background: rgba(231, 247, 243, 0.82);
      box-shadow: 0 18px 42px rgba(17, 132, 103, 0.11);
      transform: translateY(-3px);
    }

    #models .model-tab:hover::before,
    #models .model-tab.is-active::before {
      opacity: 1;
    }

    #models .model-tab[data-model-tab="auto"].is-active {
      border-color: rgba(63, 125, 240, 0.70);
      background: linear-gradient(135deg, rgba(231, 247, 243, 0.78), rgba(255, 255, 255, 0.78));
    }

    #models .model-tab strong,
    #models .model-tab span {
      position: relative;
      z-index: 1;
    }

    #models .model-tab strong {
      display: block;
      font-size: 17px;
      font-weight: 900;
      letter-spacing: 0;
      color: #172033;
    }

    #models .model-tab span {
      display: inline-flex;
      width: max-content;
      align-items: center;
      height: 26px;
      margin-top: 12px;
      padding: 0 12px;
      border: 1px solid rgba(17, 132, 103, 0.38);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      color: var(--workspace-green);
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.045em;
      text-transform: uppercase;
    }

    #models .model-panel {
      position: relative;
      min-height: clamp(340px, 42vh, 460px);
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.11);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.84);
      box-shadow: 0 28px 70px rgba(17, 24, 39, 0.10);
      backdrop-filter: blur(18px);
      padding: clamp(32px, 4vw, 56px);
      grid-template-columns: 1fr;
      align-items: center;
    }

    #models .model-panel::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: 18%;
      top: -160px;
      border-radius: 999px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(115, 255, 240, 0.24), transparent 64%);
    }

    #models .model-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 46%, rgba(46, 215, 189, 0.05));
    }

    #models .model-panel > * {
      position: relative;
      z-index: 1;
    }

    #models .model-panel > div {
      max-width: 780px;
    }

    #models .panel-kicker {
      margin: 0 0 14px;
      color: var(--workspace-green);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    #models .panel-title {
      max-width: 780px;
      margin: 0;
      color: var(--workspace-ink);
      font-size: clamp(32px, 3vw, 48px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      font-weight: 900;
    }

    #models .panel-copy {
      max-width: 760px;
      margin: 22px 0 28px;
      color: var(--workspace-muted);
      font-size: 17px;
      line-height: 1.68;
      font-weight: 500;
    }

    #models .check-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #4d5b70;
      font-weight: 800;
    }

    #models .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #4d5b70;
      font-size: 14px;
      font-weight: 800;
    }

    #models .check-list li::before {
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
      background: radial-gradient(circle at 50% 50%, var(--workspace-green) 0 36%, rgba(17, 132, 103, 0.18) 38% 100%);
      box-shadow: 0 0 0 4px rgba(46, 215, 189, 0.10);
    }

    @media (max-width: 980px) {
      #models {
        padding: 72px 18px 88px;
      }

      #models .section-inner {
        min-height: auto;
      }

      #models .section-head {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      #models .model-layout {
        grid-template-columns: 1fr;
      }

      #models .model-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      #models .model-tab {
        min-height: 118px;
      }

      #models .model-panel {
        grid-template-columns: 1fr;
        padding: 30px;
      }

      #models .check-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 700px) {
      #models h2 {
        font-size: 40px;
      }

      #models .model-tabs {
        grid-template-columns: 1fr;
      }

      #models .model-panel {
        gap: 28px;
        padding: 24px;
      }

      #models .panel-title {
        font-size: 34px;
      }

      #models .section-copy,
      #models .panel-copy {
        font-size: 16px;
      }
    }

    @media (min-width: 981px) and (max-height: 820px) {
      #models {
        padding-block: 46px;
      }

      #models .section-inner {
        min-height: calc(100svh - 92px);
      }

      #models .section-head {
        gap: 46px;
        margin-bottom: 26px;
      }

      #models .eyebrow {
        margin-bottom: 14px;
      }

      #models h2 {
        max-width: 720px;
        font-size: clamp(34px, 3.5vw, 48px);
      }

      #models .section-copy {
        font-size: 16px;
        line-height: 1.55;
      }

      #models .model-tab {
        min-height: 106px;
        padding: 19px;
      }

      #models .model-panel {
        min-height: 360px;
        padding: 28px;
      }

      #models .panel-title {
        font-size: clamp(30px, 2.55vw, 40px);
      }

      #models .panel-copy {
        margin: 16px 0 20px;
        font-size: 15px;
        line-height: 1.55;
      }
    }

    .ready-radars-layout {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(28px, 6vw, 92px);
      align-items: stretch;
    }

    .ready-radar-card {
      --card-accent: var(--ready-green);
      --card-accent-soft: rgba(53, 215, 195, 0.15);
      position: relative;
      min-height: clamp(292px, 32vh, 350px);
      padding: clamp(26px, 3vw, 36px);
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--card-accent) 28%, rgba(17, 24, 39, 0.09));
      border-radius: 28px;
      background:
        radial-gradient(circle at 80% 46%, var(--card-accent-soft), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.73));
      box-shadow:
        0 30px 90px rgba(17, 24, 39, 0.08),
        0 0 48px color-mix(in srgb, var(--card-accent) 16%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
      isolation: isolate;
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .ready-radar-card:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--card-accent) 46%, rgba(17, 24, 39, 0.12));
      box-shadow:
        0 38px 110px rgba(17, 24, 39, 0.11),
        0 0 70px color-mix(in srgb, var(--card-accent) 22%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .ready-radar-card.is-odds {
      --card-accent: var(--ready-gold);
      --card-accent-soft: rgba(212, 149, 63, 0.15);
    }

    .ready-radar-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      display: none;
    }

    .ready-radar-card::after {
      content: "";
      position: absolute;
      right: clamp(34px, 5vw, 70px);
      top: 50%;
      z-index: -1;
      width: 160px;
      height: 160px;
      border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
      border-radius: 999px;
      transform: translateY(-42%);
      box-shadow:
        0 0 0 28px color-mix(in srgb, var(--card-accent) 7%, transparent),
        0 0 0 58px color-mix(in srgb, var(--card-accent) 4%, transparent),
        inset 0 0 28px color-mix(in srgb, var(--card-accent) 16%, transparent);
      opacity: 0.7;
    }

    .ready-card-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      min-height: 42px;
      margin-bottom: clamp(24px, 4vh, 38px);
    }

    .ready-radar-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      min-height: 34px;
      padding: 0 14px;
      border: 1px solid color-mix(in srgb, var(--card-accent) 34%, rgba(17, 24, 39, 0.09));
      border-radius: 999px;
      background: color-mix(in srgb, var(--card-accent) 10%, rgba(255, 255, 255, 0.88));
      color: color-mix(in srgb, var(--card-accent) 84%, #113027);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.035em;
      text-transform: uppercase;
      box-shadow: 0 10px 22px color-mix(in srgb, var(--card-accent) 12%, transparent);
    }

    .ready-radar-badge::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 12%, transparent);
    }

    .ready-radar-body {
      position: relative;
      z-index: 1;
      max-width: 430px;
    }

    .ready-radar-card h3 {
      max-width: 430px;
      margin: 0;
      color: var(--ready-ink);
      font-size: clamp(26px, 2.45vw, 34px);
      line-height: 0.98;
      letter-spacing: -0.058em;
      font-weight: 950;
    }

    .ready-radar-card p {
      max-width: 450px;
      margin: 16px 0 0;
      color: var(--ready-muted);
      font-size: 14.5px;
      line-height: 1.48;
      font-weight: 720;
    }

    .ready-radar-tags {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: clamp(18px, 3vh, 24px);
    }

    .ready-radar-tags span {
      --chip-color: var(--card-accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 12px;
      border: 1px solid color-mix(in srgb, var(--chip-color) 34%, rgba(17, 24, 39, 0.10));
      border-radius: 13px;
      background: color-mix(in srgb, var(--chip-color) 7%, rgba(255, 255, 255, 0.80));
      color: color-mix(in srgb, var(--chip-color) 84%, #163329);
      font-size: 12px;
      font-weight: 950;
      line-height: 1;
      text-align: center;
      box-shadow: 0 12px 28px color-mix(in srgb, var(--chip-color) 10%, transparent);
    }

    .ready-radar-tags span::before {
      content: "";
      width: 6px;
      height: 6px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: currentColor;
      box-shadow: 0 0 10px currentColor;
    }

    .ready-radar-tags span:nth-child(2) {
      --chip-color: var(--ready-blue);
    }

    .ready-radar-tags span:nth-child(3) {
      --chip-color: var(--ready-gold);
    }

    .ready-radar-card.is-odds .ready-radar-tags span:nth-child(1) {
      --chip-color: var(--ready-blue);
    }

    .ready-radar-card.is-odds .ready-radar-tags span:nth-child(2) {
      --chip-color: var(--ready-gold);
    }

    .ready-radar-card.is-odds .ready-radar-tags span:nth-child(3) {
      --chip-color: var(--ready-green);
    }

    #notifications {
      --alerts-ink: #111827;
      --alerts-muted: #516078;
      --alerts-line: rgba(17, 24, 39, 0.10);
      --alerts-green: #168064;
      --alerts-green-dark: #0f6c55;
      --alerts-blue: #2f80ed;
      --alerts-gold: #d8aa42;
      min-height: 100svh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      color: var(--alerts-ink);
      padding-block: clamp(96px, 11vh, 150px) clamp(82px, 10vh, 120px);
      background:
        radial-gradient(circle at 16% 35%, rgba(42, 220, 194, 0.20), transparent 28%),
        radial-gradient(circle at 82% 45%, rgba(216, 170, 66, 0.16), transparent 30%),
        radial-gradient(circle at 60% 82%, rgba(47, 128, 237, 0.08), transparent 25%),
        #f7f9fb;
      background-size: auto, auto, auto, auto;
    }

    #notifications::before,
    #notifications::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(34px);
      opacity: 0.72;
    }

    #notifications::before {
      width: 460px;
      height: 160px;
      left: -80px;
      top: 280px;
      background: linear-gradient(90deg, rgba(24, 203, 177, 0.30), rgba(216, 170, 66, 0.20), transparent);
      transform: rotate(-14deg);
    }

    #notifications::after {
      width: 520px;
      height: 170px;
      right: -110px;
      bottom: 210px;
      background: linear-gradient(90deg, transparent, rgba(47, 128, 237, 0.13), rgba(24, 203, 177, 0.26));
      transform: rotate(13deg);
    }

    #notifications .section-inner {
      position: relative;
      z-index: 1;
      width: min(1180px, 100%);
      margin-inline: auto;
    }

    #notifications .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
      gap: clamp(44px, 6vw, 80px);
      align-items: end;
      margin-bottom: clamp(30px, 5vh, 46px);
    }

    #notifications .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      color: var(--alerts-green);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.105em;
      text-transform: uppercase;
    }

    #notifications .eyebrow::before {
      content: "";
      width: 36px;
      height: 1px;
      background: currentColor;
      opacity: 0.75;
    }

    #notifications h2 {
      max-width: 690px;
      margin: 0;
      color: var(--alerts-ink);
      font-size: clamp(38px, 4.7vw, 64px);
      line-height: 0.96;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    #notifications .section-copy {
      margin: 0;
      color: var(--alerts-muted);
      font-size: 18px;
      line-height: 1.62;
      font-weight: 520;
      text-shadow: none;
    }

    .model-tabs {
      display: grid;
      gap: 10px;
    }

    .model-tab {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      color: var(--muted);
      padding: 18px;
      text-align: left;
      cursor: pointer;
      transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
    }

    .model-tab.is-active {
      border-color: color-mix(in srgb, var(--primary) 58%, var(--line));
      background: color-mix(in srgb, var(--primary) 11%, var(--surface));
      color: var(--text);
    }

    .model-tab strong {
      display: block;
      font-size: 15px;
      color: inherit;
    }

    .model-tab span {
      display: inline-flex;
      width: fit-content;
      margin-top: 9px;
      padding: 5px 10px;
      border: 1px solid color-mix(in srgb, var(--primary) 24%, var(--line));
      border-radius: 999px;
      background: color-mix(in srgb, var(--primary) 8%, transparent);
      color: var(--primary);
      font-size: 11px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .model-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      min-height: 420px;
      padding: 28px;
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .panel-kicker {
      color: var(--primary);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .panel-title {
      margin-top: 12px;
      font-size: 34px;
    }

    .panel-copy {
      margin: 16px 0 0;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .check-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
    }

    .check-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px color-mix(in srgb, var(--primary) 12%, transparent);
      flex: 0 0 auto;
    }

    .signal-board {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: color-mix(in srgb, var(--bg) 48%, var(--surface));
      padding: 16px;
    }

    .signal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--faint);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 12px;
    }

    .signal-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 14px;
      background: var(--surface);
      display: grid;
      gap: 8px;
    }

    .signal-card + .signal-card {
      margin-top: 10px;
    }

    .signal-line {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 14px;
      font-weight: 800;
    }

    .signal-line span:last-child {
      color: var(--primary);
    }

    .mini-bars {
      display: grid;
      gap: 6px;
      margin-top: 6px;
    }

    .mini-bars i {
      height: 6px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--primary), var(--blue));
      opacity: 0.9;
    }

    .radar-grid,
    .price-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .radar-card,
    .price-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 26px;
    }

    .radar-card h3,
    .price-card h3 {
      font-size: 22px;
    }

    .radar-card p,
    .price-card p {
      color: var(--muted);
      margin: 12px 0 0;
    }

    .radar-meta {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .radar-meta span {
      --chip-color: var(--primary);
      position: relative;
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--chip-color) 42%, var(--line));
      border-radius: var(--radius);
      padding: 10px 12px;
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--chip-color) 15%, var(--surface)) 0%, color-mix(in srgb, var(--chip-color) 6%, var(--surface)) 100%);
      color: color-mix(in srgb, var(--chip-color) 86%, var(--text));
      font-size: 12px;
      font-weight: 850;
      text-align: center;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 22px color-mix(in srgb, var(--chip-color) 15%, transparent);
    }

    .radar-meta span::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-right: 7px;
      vertical-align: 1px;
      background: currentColor;
      box-shadow: 0 0 12px currentColor;
      opacity: 0.86;
    }

    .radar-card:nth-child(1) .radar-meta span:nth-child(1),
    .radar-card:nth-child(2) .radar-meta span:nth-child(3) {
      --chip-color: var(--primary);
    }

    .radar-card:nth-child(1) .radar-meta span:nth-child(2),
    .radar-card:nth-child(2) .radar-meta span:nth-child(1) {
      --chip-color: var(--blue);
    }

    .radar-card:nth-child(1) .radar-meta span:nth-child(3),
    .radar-card:nth-child(2) .radar-meta span:nth-child(2) {
      --chip-color: var(--accent);
    }

    .price-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }

    .price-card {
      position: relative;
      min-height: 330px;
      display: flex;
      flex-direction: column;
    }

    .price-card.is-featured {
      border-color: color-mix(in srgb, var(--primary) 64%, var(--line));
      box-shadow: var(--shadow);
      background: color-mix(in srgb, var(--primary) 8%, var(--surface));
    }

    .badge {
      position: absolute;
      top: 18px;
      right: 18px;
      border-radius: 999px;
      padding: 6px 9px;
      background: color-mix(in srgb, var(--accent) 20%, transparent);
      color: var(--accent);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .price-label {
      color: var(--faint);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .was {
      color: var(--faint);
      font-size: 14px;
      text-decoration: line-through;
      margin-top: 14px;
      min-height: 21px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-top: 4px;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 42px;
      font-weight: 700;
      line-height: 1;
    }

    .price small {
      color: var(--faint);
      font-family: Inter, sans-serif;
      font-size: 13px;
      font-weight: 800;
    }

    .monthly-note {
      min-height: 20px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 900;
      margin-top: 8px;
    }

    .price-card ul {
      margin: 24px 0 22px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .price-card li::before {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      margin-right: 8px;
      vertical-align: middle;
    }

    .price-card .primary-link,
    .price-card .ghost-link {
      margin-top: auto;
      width: 100%;
    }

    #pricing {
      padding: 84px 24px 92px;
      background:
        radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 28%),
        radial-gradient(circle at 85% 75%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 30%),
        color-mix(in srgb, var(--bg) 94%, var(--bg-elevated));
      background-size: auto, auto, auto;
    }

    #pricing::before,
    #pricing::after {
      content: "";
      position: absolute;
      width: 390px;
      height: 390px;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(58px);
      opacity: 0.28;
    }

    #pricing::before {
      left: 8%;
      top: 30%;
      background: var(--primary);
    }

    #pricing::after {
      right: 8%;
      bottom: 12%;
      background: var(--accent);
    }

    #pricing .section-inner {
      position: relative;
      z-index: 1;
      max-width: 1180px;
    }

    #pricing .section-head {
      display: block;
      margin-bottom: 34px;
    }

    #pricing h2 {
      max-width: 720px;
      font-size: clamp(38px, 4.2vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 900;
    }

    #pricing .section-copy {
      margin: 0 0 6px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
      font-weight: 540;
    }

    #pricing .pricing-launch-note {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      max-width: 720px;
      margin: 18px 0 0;
      padding: 11px 14px;
      border: 1px solid color-mix(in srgb, var(--primary) 48%, var(--line));
      border-radius: 10px;
      background: color-mix(in srgb, var(--primary) 12%, var(--surface-strong));
      color: color-mix(in srgb, var(--primary) 68%, var(--text));
      font-size: 14px;
      line-height: 1.45;
      font-weight: 800;
    }

    #pricing .pricing-launch-note::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      border-radius: 3px;
      background: var(--primary);
      box-shadow: 0 0 0 5px color-mix(in srgb, var(--primary) 13%, transparent);
      transform: rotate(45deg);
    }

    #pricing .price-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    #pricing .price-card {
      --plan-accent: var(--primary);
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 560px;
      padding: 30px 28px 26px;
      border: 1px solid color-mix(in srgb, var(--line) 88%, var(--primary) 8%);
      border-radius: 14px;
      background: linear-gradient(145deg, color-mix(in srgb, var(--surface-strong) 94%, transparent), color-mix(in srgb, var(--surface) 72%, transparent));
      box-shadow: 0 18px 50px rgba(15, 23, 42, 0.055);
      overflow: hidden;
    }

    #pricing .price-card[data-period="weekly"] {
      --plan-accent: #10b981;
    }

    #pricing .price-card[data-period="monthly"] {
      --plan-accent: #3b82f6;
    }

    #pricing .price-card[data-period="yearly"] {
      --plan-accent: #f59e0b;
    }

    #pricing .price-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 34%);
      opacity: 0;
      pointer-events: none;
    }

    #pricing .price-card.is-featured {
      border-color: color-mix(in srgb, var(--primary) 72%, var(--line));
      background:
        linear-gradient(145deg, color-mix(in srgb, var(--primary) 10%, var(--surface-strong)), color-mix(in srgb, var(--surface) 82%, transparent));
      box-shadow: 0 26px 80px color-mix(in srgb, var(--primary) 18%, transparent), 0 22px 60px rgba(15, 23, 42, 0.09);
    }

    #pricing .price-card.is-featured::before {
      opacity: 1;
    }

    #pricing .price-card-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    #pricing .price-card-heading {
      display: grid;
      min-width: 0;
      gap: 12px;
    }

    #pricing .price-label {
      min-height: 0;
      margin: 0;
      color: var(--text);
      font-size: 19px;
      font-weight: 850;
      letter-spacing: -0.02em;
    }

    #pricing .badge {
      position: static;
      justify-self: start;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--plan-accent) 42%, var(--line));
      background: color-mix(in srgb, var(--plan-accent) 17%, transparent);
      color: color-mix(in srgb, var(--plan-accent) 82%, var(--text));
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
      box-shadow: none;
    }

    #pricing .price-plan-icon {
      display: grid;
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
      place-items: center;
      border-radius: 12px;
      background: color-mix(in srgb, var(--plan-accent) 14%, transparent);
      color: var(--plan-accent);
    }

    #pricing .price-plan-icon::before {
      content: "";
      width: 16px;
      height: 15px;
      background: currentColor;
      -webkit-mask: url("/assets/premium-crown.svg") center / contain no-repeat;
      mask: url("/assets/premium-crown.svg") center / contain no-repeat;
    }

    #pricing .launch-offer {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 9px;
      min-height: 34px;
      margin: 0 0 14px;
      padding: 8px 12px;
      border: 1px solid color-mix(in srgb, var(--primary) 62%, var(--line));
      border-radius: 9px;
      background: var(--primary);
      color: #071710;
      font-size: 11px;
      line-height: 1.25;
      font-weight: 950;
      letter-spacing: 0.045em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 20%, transparent);
    }

    body[data-theme="light"] #pricing .launch-offer {
      border-color: rgba(36, 126, 100, 0.28);
      background: #eaf7f2;
      color: #17644f;
      box-shadow: 0 8px 18px rgba(36, 126, 100, 0.1);
    }

    #pricing .launch-offer-icon {
      position: relative;
      width: 16px;
      height: 16px;
      flex: 0 0 16px;
    }

    #pricing .launch-offer-icon::before,
    #pricing .launch-offer-icon::after {
      content: "";
      position: absolute;
      background: currentColor;
    }

    #pricing .launch-offer-icon::before {
      left: 0;
      top: 0;
      width: 16px;
      height: 16px;
      clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    }

    #pricing .launch-offer-icon::after {
      right: -2px;
      top: -2px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
    }

    #pricing .price-discount-row {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 25px;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 3px;
    }

    #pricing .was {
      position: static;
      min-height: 0;
      margin: 0;
      color: color-mix(in srgb, var(--muted) 82%, var(--text));
      font-size: 16px;
      font-weight: 800;
      text-decoration: line-through;
      opacity: 0.78;
    }

    #pricing .was:empty {
      display: none;
    }

    #pricing .discount-badge {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 9px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--plan-accent) 15%, transparent);
      color: color-mix(in srgb, var(--plan-accent) 88%, var(--text));
      font-size: 12px;
      line-height: 1;
      font-weight: 950;
      white-space: nowrap;
    }

    #pricing .price {
      margin-top: 0;
      gap: 10px;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 46px;
      line-height: 1;
      letter-spacing: -0.06em;
      font-weight: 950;
      color: var(--text);
    }

    #pricing .price small {
      color: color-mix(in srgb, var(--muted) 86%, var(--text));
      font-size: 19px;
      letter-spacing: -0.02em;
      font-weight: 900;
    }

    #pricing .monthly-note {
      min-height: 0;
      margin: -4px 0 20px;
      color: var(--primary);
      font-size: 14px;
      font-weight: 900;
    }

    #pricing .price-card p {
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.58;
      font-weight: 540;
    }

    #pricing .price-card ul {
      display: grid;
      gap: 14px;
      margin: 6px 0 26px;
      color: color-mix(in srgb, var(--muted) 88%, var(--text));
      font-size: 14px;
    }

    #pricing .price-card li {
      position: relative;
      padding-left: 22px;
      line-height: 1.35;
      font-weight: 650;
    }

    #pricing .price-card li::before {
      position: absolute;
      left: 0;
      top: 0.5em;
      margin: 0;
      box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 9%, transparent);
    }

    #pricing .price-card .primary-link,
    #pricing .price-card .ghost-link {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      margin-top: auto;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 900;
      text-decoration: none;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    #pricing .price-card .ghost-link {
      border: 1px solid color-mix(in srgb, var(--line) 86%, var(--text) 12%);
      background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
      color: var(--text);
    }

    #pricing .price-card .primary-link {
      border-color: color-mix(in srgb, var(--primary) 82%, var(--line));
      color: #ffffff;
      background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 72%, #5ff0b3), color-mix(in srgb, var(--primary) 88%, #0c5f4a));
      box-shadow: 0 14px 34px color-mix(in srgb, var(--primary) 30%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    #pricing .price-card .primary-link:hover,
    #pricing .price-card .ghost-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
    }

    .app-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
      gap: 34px;
      align-items: center;
    }

    .app-highlights {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      margin-top: 28px;
    }

    .app-highlight,
    .store-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 16px;
    }

    .app-highlight strong,
    .store-card strong {
      display: block;
      color: var(--text);
      font-size: 14px;
    }

    .app-highlight span,
    .store-card span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .phone-shell {
      width: min(100%, 330px);
      margin-left: auto;
      display: flex;
      justify-content: center;
      filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.28));
    }

    .mobile-app-mockup {
      display: block;
      width: 100%;
      max-width: 330px;
      height: auto;
    }

    .phone-screen {
      min-height: 560px;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 18px;
      background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--primary) 20%, transparent), transparent 36%),
        color-mix(in srgb, var(--bg) 58%, var(--surface));
      overflow: hidden;
    }

    .phone-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--faint);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .phone-hero {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: color-mix(in srgb, var(--primary) 10%, var(--surface));
      padding: 16px;
    }

    .phone-hero strong {
      display: block;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 25px;
      line-height: 1.05;
    }

    .phone-hero span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .phone-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .phone-row {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--surface);
      padding: 13px;
    }

    .phone-row div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      font-weight: 800;
    }

    .phone-row span {
      color: var(--primary);
    }

    .phone-row p {
      margin: 7px 0 0;
      color: var(--faint);
      font-size: 12px;
    }

    .store-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .store-card {
      min-height: 112px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .store-card small {
      color: var(--accent);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .store-badge {
      position: relative;
      display: inline-flex;
      width: fit-content;
      min-width: 164px;
      height: 48px;
      box-sizing: border-box;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      padding: 0 15px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        #0b1018;
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(8, 15, 26, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
      cursor: not-allowed;
      user-select: none;
    }

    .store-badge span,
    .store-card .store-badge span,
    .footer-column .store-badge span {
      display: inline-flex;
      margin: 0;
      padding: 0;
      color: inherit;
      line-height: 1;
    }

    .store-badge .store-name {
      font-size: 15.5px;
      font-weight: 850;
      letter-spacing: -0.01em;
    }

    .store-badge .apple-mark {
      font-size: 24px;
      transform: translateY(-1px);
    }

    .store-badge .play-mark {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
    }

    .store-badge--google {
      min-width: 172px;
      transform: translateY(1px);
    }

    .store-badge--google .play-mark {
      width: 25px;
      height: 25px;
      margin-left: -1px;
    }

    .store-badge--google .store-name {
      font-size: 16px;
    }

    #mobile {
      padding: 112px 24px;
      background:
        radial-gradient(circle at 22% 35%, color-mix(in srgb, var(--primary) 17%, transparent), transparent 27%),
        radial-gradient(circle at 73% 25%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 30%),
        radial-gradient(circle at 78% 76%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 28%),
        color-mix(in srgb, var(--bg) 94%, var(--bg-elevated));
      background-size: auto, auto, auto, auto;
    }

    #mobile::before,
    #mobile::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 999px;
      filter: blur(36px);
      opacity: 0.78;
    }

    #mobile::before {
      width: 520px;
      height: 170px;
      left: -105px;
      top: 275px;
      background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 24%, transparent), color-mix(in srgb, var(--accent) 16%, transparent), transparent);
      transform: rotate(-16deg);
    }

    #mobile::after {
      width: 560px;
      height: 190px;
      right: -130px;
      bottom: 145px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--blue) 12%, transparent), color-mix(in srgb, var(--primary) 26%, transparent));
      transform: rotate(15deg);
    }

    #mobile .app-layout {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 86px;
      align-items: center;
    }

    #mobile .eyebrow {
      margin-bottom: 18px;
    }

    #mobile h2 {
      max-width: 690px;
      font-size: clamp(40px, 3.9vw, 60px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    #mobile .section-copy {
      max-width: 690px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.64;
      font-weight: 600;
    }

    #mobile .app-highlight,
    #mobile .store-card {
      border: 1px solid color-mix(in srgb, var(--line) 82%, var(--primary) 10%);
      border-radius: 18px;
      background: color-mix(in srgb, var(--surface) 78%, transparent);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
    }

    #mobile .app-highlights {
      margin-top: 28px;
    }

    #mobile .app-highlight {
      position: relative;
      overflow: hidden;
      padding: 22px 24px;
    }

    #mobile .app-highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, color-mix(in srgb, var(--primary) 8%, transparent), transparent 48%, color-mix(in srgb, var(--accent) 9%, transparent));
      opacity: 0.78;
      pointer-events: none;
    }

    #mobile .app-highlight strong,
    #mobile .app-highlight span {
      position: relative;
      z-index: 1;
    }

    #mobile .app-highlight strong {
      font-size: 17px;
      font-weight: 950;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    #mobile .app-highlight span {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      font-weight: 650;
    }

    #mobile .store-grid {
      gap: 16px;
      margin-top: 18px;
    }

    #mobile .store-card {
      position: relative;
      overflow: hidden;
      min-height: 168px;
      padding: 20px;
    }

    #mobile .store-card::after {
      content: "";
      position: absolute;
      width: 190px;
      height: 78px;
      right: -58px;
      top: -34px;
      background: radial-gradient(circle, color-mix(in srgb, var(--primary) 20%, transparent), transparent 68%);
      filter: blur(8px);
    }

    #mobile .store-card small {
      display: inline-block;
      margin-bottom: 8px;
      color: #b75d18;
      font-size: 12px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    #mobile .store-card > span {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.55;
      font-weight: 650;
    }

    #mobile .store-card .store-badge {
      width: 180px;
      min-width: 180px;
      min-height: 48px;
      margin-bottom: 14px;
      border-radius: 9px;
      box-shadow: 0 16px 32px rgba(17, 24, 39, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    #mobile .store-card .store-badge--google {
      transform: none;
    }

    #mobile .store-card .store-badge span {
      margin: 0;
      color: inherit;
      line-height: 1;
    }

    #mobile .phone-shell {
      position: relative;
      width: 100%;
      max-width: 460px;
      min-height: 640px;
      margin: 0 auto;
      display: grid;
      place-items: center;
      filter: none;
    }

    #mobile .phone-shell::before {
      content: "";
      position: absolute;
      z-index: 0;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 34%, color-mix(in srgb, var(--primary) 18%, transparent) 35% 49%, color-mix(in srgb, var(--accent) 13%, transparent) 50% 62%, transparent 63%),
        conic-gradient(from 145deg, transparent, color-mix(in srgb, var(--primary) 28%, transparent), transparent, color-mix(in srgb, var(--blue) 12%, transparent), transparent);
      opacity: 0.86;
      pointer-events: none;
    }

    #mobile .phone-shell::after {
      content: "";
      position: absolute;
      z-index: 0;
      width: 310px;
      height: 66px;
      bottom: 34px;
      border-radius: 50%;
      background: rgba(17, 24, 39, 0.17);
      filter: blur(22px);
      pointer-events: none;
    }

    #mobile .mobile-app-mockup {
      position: relative;
      z-index: 2;
      width: min(100%, 344px);
      max-height: 640px;
      object-fit: contain;
      filter: drop-shadow(0 40px 90px rgba(17, 24, 39, 0.3));
    }

    .footer-column .store-badge {
      display: flex;
      margin: 0 0 8px;
      width: 172px;
      min-width: 172px;
      padding: 0 14px;
      color: #ffffff;
    }

    .footer-store-badge::after {
      content: attr(data-tooltip);
      position: absolute;
      left: 50%;
      bottom: calc(100% + 8px);
      transform: translate(-50%, 4px);
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--surface-strong);
      color: var(--text);
      padding: 5px 9px;
      font-size: 11px;
      font-weight: 850;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 140ms ease, transform 140ms ease;
      box-shadow: var(--shadow);
    }

    .footer-store-badge:hover::after,
    .footer-store-badge:focus-visible::after {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .notification-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
      gap: 28px;
      align-items: stretch;
    }

    .notification-stack {
      display: grid;
      gap: 14px;
    }

    .notification-card {
      position: relative;
      min-height: 132px;
      border: 1px solid var(--alerts-line);
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64));
      box-shadow: 0 16px 48px rgba(17, 24, 39, 0.055);
      backdrop-filter: blur(20px);
      padding: 24px 28px 24px 24px;
      display: grid;
      grid-template-columns: 66px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    }

    .notification-card:hover {
      transform: translateY(-2px);
      border-color: rgba(22, 128, 100, 0.32);
      box-shadow: 0 24px 70px rgba(17, 24, 39, 0.09);
    }

    .notification-icon {
      width: 52px;
      height: 52px;
      border-radius: 17px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(22, 128, 100, 0.13), rgba(22, 128, 100, 0.05));
      border: 1px solid rgba(22, 128, 100, 0.14);
      color: var(--alerts-green-dark);
      font-size: 18px;
      font-weight: 950;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(17, 24, 39, 0.10);
    }

    .notification-icon.telegram-brand-icon {
      border: 0;
      background: linear-gradient(135deg, #61c7ff, #1c8fda);
      color: #ffffff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 16px 34px rgba(34, 158, 217, 0.22);
    }

    .telegram-brand-icon svg {
      width: 52px;
      height: 52px;
      display: block;
      filter: none;
    }

    .notification-card h3 {
      font-size: 18px;
      letter-spacing: -0.025em;
      line-height: 1.18;
      font-weight: 900;
    }

    .notification-card p {
      margin: 8px 0 0;
      color: var(--alerts-muted);
      font-size: 15px;
      line-height: 1.58;
      font-weight: 520;
    }

    .notification-terminal {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(22, 128, 100, 0.26);
      border-radius: 20px;
      background:
        radial-gradient(circle at 24% 0%, rgba(33, 216, 190, 0.20), transparent 32%),
        radial-gradient(circle at 100% 78%, rgba(216, 170, 66, 0.11), transparent 30%),
        rgba(255, 255, 255, 0.74);
      padding: 24px;
      box-shadow: 0 26px 70px rgba(17, 24, 39, 0.10);
      backdrop-filter: blur(22px);
      min-height: 100%;
    }

    .notification-terminal::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(130deg, rgba(255, 255, 255, 0.70), transparent 32%, rgba(22, 128, 100, 0.20));
      pointer-events: none;
      opacity: 0.78;
    }

    .notification-terminal > * {
      position: relative;
      z-index: 1;
    }

    .notification-terminal header {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      color: #8793a8;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .terminal-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      border: 1px solid rgba(17, 24, 39, 0.08);
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: 0 10px 30px rgba(17, 24, 39, 0.045);
      padding: 18px;
    }

    .terminal-row + .terminal-row {
      margin-top: 10px;
    }

    .terminal-row strong {
      color: var(--alerts-green-dark);
      font-size: 15px;
      letter-spacing: -0.015em;
      font-weight: 900;
    }

    .terminal-status {
      min-width: 58px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #ffffff;
      text-align: center;
      font-size: 13px;
      font-weight: 950;
      background: linear-gradient(135deg, #20bd82, #11805e);
      box-shadow: 0 9px 22px rgba(22, 128, 100, 0.24);
    }

    .terminal-row p {
      color: var(--alerts-muted);
      margin: 7px 0 0;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 520;
    }

    .notification-preview-footer {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .notification-mini-stat {
      padding: 14px 12px;
      border: 1px solid rgba(17, 24, 39, 0.075);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.56);
      text-align: center;
    }

    .notification-mini-stat b {
      display: block;
      color: var(--alerts-ink);
      font-size: 18px;
      line-height: 1;
      font-weight: 950;
    }

    .notification-mini-stat span {
      display: block;
      margin-top: 6px;
      color: #7a879a;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    @media (max-width: 980px) {
      #notifications {
        padding: 92px 18px;
      }

      #notifications .section-head,
      .notification-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      #notifications .section-copy {
        max-width: 720px;
      }
    }

    @media (max-width: 620px) {
      #notifications {
        padding: 70px 14px;
      }

      .notification-card {
        grid-template-columns: 1fr;
        padding: 22px;
      }

      .notification-terminal {
        padding: 18px;
      }

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

      .terminal-status {
        width: fit-content;
      }

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

    #faq {
      min-height: auto;
      padding: 72px 24px 80px;
      background:
        radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 27%),
        radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 24%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 96%, var(--surface-soft)) 0%, var(--bg) 100%);
      background-size: auto, auto, auto;
    }

    #faq::before,
    #faq::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 999px;
      pointer-events: none;
      opacity: 0.52;
      filter: blur(22px);
    }

    #faq::before {
      left: -220px;
      top: 160px;
      background: radial-gradient(circle, color-mix(in srgb, var(--primary) 16%, transparent), transparent 65%);
    }

    #faq::after {
      right: -180px;
      bottom: 60px;
      background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 65%);
    }

    #faq .section-inner {
      position: relative;
      z-index: 1;
    }

    #faq .section-head {
      display: block;
      max-width: 920px;
      margin: 0 auto 28px;
    }

    #faq h2 {
      max-width: 720px;
      font-size: clamp(42px, 5.1vw, 68px);
      line-height: 0.95;
      letter-spacing: -0.055em;
      font-weight: 900;
    }

    #faq .faq-layout {
      display: block;
      max-width: 920px;
      margin: 0 auto;
    }

    #faq .section-copy {
      max-width: 430px;
      margin: 0 0 6px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.75;
      font-weight: 560;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 26px;
      align-items: start;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 96%, transparent), color-mix(in srgb, var(--surface) 78%, transparent));
      box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
      overflow: hidden;
      transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
    }

    .faq-item:hover {
      transform: translateY(-1px);
    }

    .faq-item[open] {
      border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
      background:
        radial-gradient(circle at 95% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 28%),
        linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 98%, transparent), color-mix(in srgb, var(--primary) 8%, var(--surface)));
      box-shadow: 0 22px 58px color-mix(in srgb, var(--primary) 12%, transparent);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 24px;
      color: var(--text);
      cursor: pointer;
      font-size: 16px;
      font-weight: 900;
      list-style: none;
    }

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

    .faq-plus {
      display: grid;
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      place-items: center;
      border: 1px solid color-mix(in srgb, var(--primary) 22%, var(--line));
      border-radius: 999px;
      background: var(--surface-strong);
      color: var(--primary);
      box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
      font-weight: 1000;
      transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .faq-item[open] .faq-plus {
      transform: rotate(45deg);
      border-color: transparent;
      background: linear-gradient(135deg, var(--primary), color-mix(in srgb, var(--primary) 74%, var(--blue)));
      color: #ffffff;
    }

    .faq-answer {
      max-width: 780px;
      margin-top: -6px;
      padding: 0 24px 24px;
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.75;
    }

    footer {
      padding: 64px 24px 30px;
      border-top: 1px solid var(--line);
      color: var(--faint);
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--surface-soft) 70%, transparent), transparent),
        var(--bg);
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      gap: 34px;
      font-size: 13px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: minmax(240px, 1.2fr) repeat(4, minmax(120px, 0.55fr));
      gap: 26px;
      align-items: start;
    }

    .footer-brand p {
      max-width: 330px;
      margin: 16px 0 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .footer-adult-notice {
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 360px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.5;
    }

    .age-badge {
      display: inline-grid;
      place-items: center;
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      border: 2px solid var(--coral);
      border-radius: 50%;
      color: var(--text);
      background: color-mix(in srgb, var(--coral) 10%, var(--surface-strong));
      font-size: 12px;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    .footer-column h3 {
      margin: 0 0 14px;
      color: var(--text);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-column a,
    .footer-column span {
      display: block;
      padding: 5px 0;
      color: var(--muted);
      font-weight: 650;
    }

    .footer-column [hidden] {
      display: none !important;
    }

    .footer-column a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    .gamble-aware-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      margin-top: 16px;
      padding: 9px 12px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      background: #10161d;
      color: #ffffff;
      transition: border-color 160ms ease, transform 160ms ease;
    }

    .gamble-aware-link[hidden] {
      display: none;
    }

    .gamble-aware-link:hover {
      border-color: rgba(239, 104, 28, 0.75);
      transform: translateY(-1px);
    }

    .gamble-aware-link:focus-visible {
      outline: 3px solid color-mix(in srgb, var(--primary) 45%, transparent);
      outline-offset: 3px;
    }

    .gamble-aware-link img {
      display: block;
      width: 142px;
      height: auto;
    }

    .gamble-aware-domain {
      color: #c1cad6;
      font-size: 10px;
      font-weight: 750;
      white-space: nowrap;
    }

    @media (max-width: 980px) {
      .ghost-link.hide-mobile {
        display: none;
      }

      .nav-links {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: grid;
        gap: 6px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: color-mix(in srgb, var(--bg-elevated) 96%, transparent);
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
      }

      .topbar.menu-open .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 12px 14px;
        border: 1px solid transparent;
      }

      .nav-links a:hover {
        border-color: var(--line);
      }

      .mobile-menu-button {
        display: inline-flex;
      }

      .hero {
        min-height: auto;
        padding-top: 104px;
      }

      .hero-grid,
      .section-head,
      .model-layout,
      .model-panel,
      .app-layout,
      .notification-grid,
      .signal-showcase,
      .footer-top {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        width: 100%;
        gap: 28px;
      }

      .hero h1 {
        font-size: 52px;
      }

      .hero-mobile-showcase {
        min-height: auto;
        margin-top: 32px;
        justify-content: flex-start;
      }

      .hero-proof {
        position: static;
        width: auto;
        transform: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 18px;
      }

      .scroll-cue {
        display: none;
      }

      .preview-stack {
        align-self: start;
        align-content: start;
        margin-top: 0;
      }

      .capability-card {
        --card-y: 0px;
      }

      .preview-card,
      .preview-card:nth-child(2),
      .preview-card:hover,
      .preview-card:nth-child(2):hover {
        transform: none;
      }

      .hero-phone-frame {
        width: min(720px, 94vw);
        height: 560px;
      }

      .metric-rail,
      .capability-grid,
      .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      #radars {
        padding: 96px 22px;
      }

      #radars h2 {
        font-size: clamp(42px, 8vw, 58px);
      }

      #radars .section-copy {
        font-size: 16px;
      }

      .ready-radars-layout {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 720px;
        margin-inline: auto;
      }

      .ready-radar-card {
        min-height: auto;
      }

      .phone-shell {
        margin: 0;
      }

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

      #pricing .price-card {
        min-height: auto;
      }

      #mobile {
        padding: 96px 22px;
      }

      #mobile .app-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 760px;
      }

      #mobile .phone-shell {
        min-height: 610px;
        max-width: 390px;
        margin: 0 auto;
      }

      #mobile .mobile-app-mockup {
        width: min(100%, 330px);
        max-height: 610px;
      }
    }

    @media (max-width: 680px) {
      html {
        scroll-padding-top: 82px;
      }

      .nav-inner {
        padding: 10px 14px;
        gap: 8px;
      }

      .brand-logo {
        display: none;
      }

      .brand-icon {
        display: block;
        width: 38px;
        height: 38px;
      }

      .nav-actions {
        gap: 6px;
      }

      .theme-toggle,
      .mobile-menu-button {
        width: 38px;
        min-height: 38px;
      }

      .header-language {
        width: 70px;
        min-height: 38px;
      }

      .header-language::after {
        right: 7px;
      }

      .header-language-select {
        min-height: 36px;
        padding-right: 20px;
        padding-left: 8px;
        font-size: 10px;
      }

      .primary-link {
        min-height: 38px;
        padding: 0 10px;
        font-size: 12px;
      }

      .hero {
        padding: 88px 14px 48px;
      }

      .hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 11.2vw, 44px);
      }

      .hero-lede {
        max-width: 100%;
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.62;
      }

      .metric-rail,
      .capability-grid,
      .radar-grid,
      .ready-radars-layout,
      .price-grid,
      .app-highlights,
      .store-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        gap: 8px;
        margin-top: 22px;
      }

      .hero-proof {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 22px;
      }

      .proof-item {
        grid-template-columns: 60px minmax(0, 1fr);
        min-height: 116px;
        padding: 14px;
      }

      .proof-item::before {
        left: 88px;
        right: 14px;
        bottom: 42px;
      }

      .proof-icon {
        top: auto;
        right: auto;
        width: 52px;
        height: 52px;
      }

      .proof-icon svg {
        width: 31px;
        height: 31px;
      }

      .proof-value {
        margin-top: 8px;
        font-size: 30px;
      }

      .proof-kicker {
        max-width: 100%;
        font-size: 10px;
      }

      .proof-label {
        margin-top: 18px;
        font-size: 10px;
        line-height: 1.25;
      }

      .signal-intro h2 {
        font-size: clamp(36px, 11vw, 48px);
      }

      .signal-intro .section-copy {
        font-size: 15px;
      }

      .capability-card {
        grid-template-columns: 58px minmax(0, 1fr);
        min-height: 96px;
        padding: 13px 14px;
      }

      .capability-icon {
        width: 50px;
        height: 50px;
      }

      .capability-icon svg {
        width: 29px;
        height: 29px;
      }

      .capability-title {
        font-size: 16px;
      }

      .source-proof-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .source-proof-head .proof-value {
        margin-left: 0;
      }

      .source-logo-stack {
        min-width: 74px;
      }

      .source-logo-stack img {
        width: 28px;
        height: 28px;
        border-radius: 8px;
      }

      .source-logo-stack img + img {
        margin-left: -9px;
      }

      .source-logo-stack.is-large {
        min-width: 112px;
      }

      .source-logo-stack.is-large img {
        width: 42px;
        height: 42px;
      }

      .hero-mobile-showcase {
        margin: 18px calc(50% - 50vw) 0;
        justify-content: center;
        overflow: hidden;
      }

      .hero-phone-frame {
        width: min(660px, 132vw);
        height: 360px;
      }

      .hero-phone-shot {
        width: min(660px, 132vw);
        max-width: none;
        filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
      }

      .section {
        padding: 68px 16px;
        scroll-margin-top: 82px;
      }

      .signal-intro {
        margin-bottom: 20px;
      }

      .capability-card {
        min-height: 116px;
      }

      .preview-caption {
        position: static;
        margin: 0;
        border-width: 1px 0 0;
        border-radius: 0;
      }

      .section h2 {
        font-size: 34px;
      }

      #radars {
        padding: 78px 16px;
      }

      #radars .section-head {
        margin-bottom: 28px;
      }

      #radars h2 {
        font-size: clamp(36px, 11.2vw, 46px);
        line-height: 0.95;
      }

      #radars .section-copy {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.58;
      }

      .ready-radar-card {
        padding: 22px;
        border-radius: 22px;
      }

      .ready-card-top {
        min-height: auto;
        margin-bottom: 42px;
      }

      .ready-radar-card h3 {
        font-size: clamp(27px, 8.4vw, 34px);
      }

      .ready-radar-card p {
        font-size: 14.5px;
      }

      .ready-radar-tags {
        grid-template-columns: 1fr;
      }

      .model-panel {
        padding: 20px;
      }

      .panel-title {
        font-size: 28px;
      }

      .radar-meta {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .phone-screen {
        min-height: 500px;
      }

      #pricing {
        padding: 68px 16px;
      }

      #pricing h2 {
        font-size: 38px;
      }

      #pricing .price-card {
        padding: 24px 20px;
      }

      #pricing .badge {
        padding: 7px 9px;
        font-size: 10px;
      }

      #pricing .price-card-head {
        gap: 14px;
      }

      #pricing .price-plan-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
      }

      #pricing .launch-offer {
        padding: 8px 10px;
        font-size: 10px;
      }

      #pricing .price {
        font-size: 42px;
      }

      #pricing .price small {
        font-size: 16px;
      }

      #faq {
        padding: 76px 16px;
      }

      #faq h2 {
        font-size: 42px;
      }

      .faq-item summary {
        padding: 19px 18px;
        font-size: 15px;
      }

      .faq-answer {
        padding: 0 18px 20px;
      }

      #mobile {
        padding: 82px 18px;
      }

      #mobile::before {
        width: 360px;
        height: 130px;
        left: -120px;
        top: 210px;
      }

      #mobile::after {
        width: 360px;
        height: 140px;
        right: -130px;
        bottom: 120px;
      }

      #mobile h2 {
        font-size: clamp(38px, 11vw, 44px);
        letter-spacing: -0.045em;
      }

      #mobile .section-copy {
        font-size: 16px;
      }

      #mobile .app-highlight,
      #mobile .store-card {
        padding: 18px;
      }

      #mobile .store-card {
        min-height: 0;
      }

      #mobile .phone-shell {
        min-height: 560px;
        max-width: 340px;
      }

      #mobile .phone-shell::before {
        width: 380px;
        height: 380px;
      }

      #mobile .phone-shell::after {
        width: 230px;
        bottom: 22px;
      }

      #mobile .mobile-app-mockup {
        width: min(100%, 292px);
        max-height: 548px;
      }
    }

    /* Theme-complete overrides for the editorial landing sections. */
    body,
    .hero,
    #signal,
    #models,
    #radars,
    #notifications {
      transition: background-color 220ms ease, color 220ms ease;
    }

    body[data-theme="dark"] #models {
      --workspace-ink: var(--text);
      --workspace-muted: var(--muted);
      --workspace-green: var(--primary);
      --workspace-mint: var(--primary-strong);
      --workspace-cyan: var(--primary);
      --workspace-gold: var(--accent);
      --workspace-blue: var(--blue);
      background:
        radial-gradient(circle at 18% 42%, color-mix(in srgb, var(--primary) 19%, transparent), transparent 30%),
        radial-gradient(circle at 83% 70%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 28%),
        radial-gradient(circle at 54% 48%, color-mix(in srgb, var(--blue) 10%, transparent), transparent 36%),
        linear-gradient(125deg, var(--bg-elevated), var(--bg) 54%, color-mix(in srgb, var(--bg-elevated) 92%, var(--accent)));
    }

    body[data-theme="dark"] #models .model-tab {
      border-color: var(--line);
      background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
      color: var(--text);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    }

    body[data-theme="dark"] #models .model-tab::before {
      background:
        radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 42%),
        color-mix(in srgb, var(--surface-soft) 82%, transparent);
    }

    body[data-theme="dark"] #models .model-tab:hover,
    body[data-theme="dark"] #models .model-tab.is-active {
      border-color: color-mix(in srgb, var(--primary) 58%, var(--line));
      background: color-mix(in srgb, var(--primary) 12%, var(--surface-strong));
      box-shadow: 0 20px 52px color-mix(in srgb, var(--primary) 13%, rgba(0, 0, 0, 0.22));
    }

    body[data-theme="dark"] #models .model-tab[data-model-tab="auto"].is-active {
      border-color: color-mix(in srgb, var(--blue) 66%, var(--line));
      background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, var(--surface-strong)), color-mix(in srgb, var(--blue) 10%, var(--surface-strong)));
    }

    body[data-theme="dark"] #models .model-tab strong {
      color: var(--text);
    }

    body[data-theme="dark"] #models .model-tab span {
      border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
      background: color-mix(in srgb, var(--primary) 9%, var(--surface));
      color: var(--primary);
    }

    body[data-theme="dark"] #models .model-panel {
      border-color: var(--line);
      background: color-mix(in srgb, var(--surface-strong) 91%, transparent);
      box-shadow: 0 30px 76px rgba(0, 0, 0, 0.28);
    }

    body[data-theme="dark"] #models .model-panel::after {
      background: linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 46%, color-mix(in srgb, var(--primary) 7%, transparent));
    }

    body[data-theme="dark"] #models .check-list,
    body[data-theme="dark"] #models .check-list li {
      color: color-mix(in srgb, var(--text) 78%, var(--muted));
    }

    body[data-theme="dark"] #radars {
      --ready-ink: var(--text);
      --ready-muted: var(--muted);
      --ready-green: var(--primary);
      --ready-mint: var(--primary-strong);
      --ready-gold: var(--accent);
      --ready-blue: var(--blue);
      background:
        radial-gradient(circle at 12% 28%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 31%),
        radial-gradient(circle at 86% 30%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 29%),
        radial-gradient(circle at 50% 76%, color-mix(in srgb, var(--blue) 9%, transparent), transparent 31%),
        linear-gradient(125deg, var(--bg), var(--bg-elevated) 52%, var(--bg));
    }

    body[data-theme="dark"] .ready-radar-card {
      border-color: color-mix(in srgb, var(--card-accent) 34%, var(--line));
      background:
        radial-gradient(circle at 80% 46%, var(--card-accent-soft), transparent 36%),
        linear-gradient(145deg, color-mix(in srgb, var(--surface-strong) 96%, transparent), color-mix(in srgb, var(--surface) 88%, transparent));
      box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.26),
        0 0 48px color-mix(in srgb, var(--card-accent) 13%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    body[data-theme="dark"] .ready-radar-card:hover {
      border-color: color-mix(in srgb, var(--card-accent) 52%, var(--line));
      box-shadow:
        0 38px 110px rgba(0, 0, 0, 0.34),
        0 0 70px color-mix(in srgb, var(--card-accent) 19%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    }

    body[data-theme="dark"] .ready-radar-badge,
    body[data-theme="dark"] .ready-radar-tags span {
      border-color: color-mix(in srgb, var(--chip-color, var(--card-accent)) 38%, var(--line));
      background: color-mix(in srgb, var(--chip-color, var(--card-accent)) 10%, var(--surface-strong));
      color: color-mix(in srgb, var(--chip-color, var(--card-accent)) 76%, var(--text));
    }

    body[data-theme="dark"] #notifications {
      --alerts-ink: var(--text);
      --alerts-muted: var(--muted);
      --alerts-line: var(--line);
      --alerts-green: var(--primary);
      --alerts-green-dark: color-mix(in srgb, var(--primary) 82%, var(--text));
      --alerts-blue: var(--blue);
      --alerts-gold: var(--accent);
      background:
        radial-gradient(circle at 16% 35%, color-mix(in srgb, var(--primary) 18%, transparent), transparent 29%),
        radial-gradient(circle at 82% 45%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 31%),
        radial-gradient(circle at 60% 82%, color-mix(in srgb, var(--blue) 8%, transparent), transparent 26%),
        linear-gradient(122deg, var(--bg-elevated), var(--bg) 58%, var(--bg-elevated));
    }

    body[data-theme="dark"] .notification-card {
      border-color: var(--alerts-line);
      background: linear-gradient(135deg, color-mix(in srgb, var(--surface-strong) 94%, transparent), color-mix(in srgb, var(--surface) 84%, transparent));
      box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
    }

    body[data-theme="dark"] .notification-card:hover {
      border-color: color-mix(in srgb, var(--primary) 42%, var(--line));
      box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
    }

    body[data-theme="dark"] .notification-icon {
      border-color: color-mix(in srgb, var(--primary) 24%, var(--line));
      background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 16%, var(--surface-strong)), color-mix(in srgb, var(--primary) 5%, var(--surface)));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 16px 34px rgba(0, 0, 0, 0.22);
    }

    body[data-theme="dark"] .notification-terminal {
      border-color: color-mix(in srgb, var(--primary) 32%, var(--line));
      background:
        radial-gradient(circle at 24% 0%, color-mix(in srgb, var(--primary) 17%, transparent), transparent 32%),
        radial-gradient(circle at 100% 78%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 30%),
        color-mix(in srgb, var(--surface-strong) 90%, transparent);
      box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
    }

    body[data-theme="dark"] .notification-terminal::before {
      background: linear-gradient(130deg, rgba(255, 255, 255, 0.055), transparent 32%, color-mix(in srgb, var(--primary) 16%, transparent));
    }

    body[data-theme="dark"] .notification-terminal header,
    body[data-theme="dark"] .notification-mini-stat span {
      color: var(--faint);
    }

    body[data-theme="dark"] .terminal-row,
    body[data-theme="dark"] .notification-mini-stat {
      border-color: var(--line);
      background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    }

    @media (min-width: 981px) {
      body[data-theme="dark"] .hero,
      body[data-theme="dark"] #signal.section {
        background:
          radial-gradient(circle at 51% 5%, color-mix(in srgb, var(--primary) 24%, transparent), transparent 24%),
          radial-gradient(circle at 85% 50%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 23%),
          radial-gradient(circle at 9% 85%, color-mix(in srgb, var(--primary) 16%, transparent), transparent 20%),
          linear-gradient(120deg, var(--bg-elevated) 0%, var(--bg) 50%, color-mix(in srgb, var(--bg-elevated) 94%, var(--accent)) 100%);
      }

      body[data-theme="dark"] .hero::after {
        background:
          linear-gradient(180deg, rgba(8, 11, 15, 0.04) 0%, rgba(8, 11, 15, 0.28) 64%, rgba(8, 11, 15, 0.72) 100%),
          linear-gradient(118deg, rgba(255, 255, 255, 0.025) 0%, transparent 58%);
      }

      body[data-theme="dark"] .hero h1,
      body[data-theme="dark"] .hero-lede,
      body[data-theme="dark"] .proof-value,
      body[data-theme="dark"] .proof-label,
      body[data-theme="dark"] .signal-intro h2,
      body[data-theme="dark"] .tool-subtitle,
      body[data-theme="dark"] .signal-intro .section-copy,
      body[data-theme="dark"] .capability-title,
      body[data-theme="dark"] .capability-copy {
        color: var(--text);
      }

      body[data-theme="dark"] .hero-actions .ghost-link {
        color: var(--button-ghost-text);
        background: var(--button-ghost-bg);
        border-color: var(--button-ghost-border);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      }

      body[data-theme="dark"] .hero-phone-shot {
        mix-blend-mode: normal;
      }

      body[data-theme="dark"] .proof-item,
      body[data-theme="dark"] .proof-item.is-accent,
      body[data-theme="dark"] .capability-card,
      body[data-theme="dark"] .capability-card.is-warm,
      body[data-theme="dark"] .capability-card.is-blue {
        background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
        backdrop-filter: blur(12px);
      }

      body[data-theme="dark"] .proof-item:hover,
      body[data-theme="dark"] .proof-item.is-accent:hover,
      body[data-theme="dark"] .capability-card:hover,
      body[data-theme="dark"] .capability-card.is-warm:hover,
      body[data-theme="dark"] .capability-card.is-blue:hover {
        background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
      }

      body[data-theme="dark"] .proof-item::before {
        background: var(--line);
      }

      body[data-theme="dark"] .proof-icon,
      body[data-theme="dark"] .capability-icon {
        color: var(--primary);
        background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 32%, var(--surface-strong)), color-mix(in srgb, var(--surface) 92%, transparent));
        box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.09);
      }

      body[data-theme="dark"] .proof-item.is-accent .proof-icon,
      body[data-theme="dark"] .capability-card.is-blue .capability-icon {
        color: var(--accent);
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, var(--surface-strong)), color-mix(in srgb, var(--surface) 92%, transparent));
      }

      body[data-theme="dark"] .capability-card.is-warm .capability-icon {
        color: var(--coral);
        background: linear-gradient(135deg, color-mix(in srgb, var(--coral) 28%, var(--surface-strong)), color-mix(in srgb, var(--surface) 92%, transparent));
      }

      body[data-theme="dark"] .proof-kicker {
        color: var(--primary);
      }

      body[data-theme="dark"] .proof-item.is-accent .proof-kicker {
        color: var(--accent);
      }
    }

    .telegram-support-launcher {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      font-family: Inter, system-ui, sans-serif;
    }

    .telegram-support-panel {
      width: min(390px, calc(100vw - 28px));
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: color-mix(in srgb, var(--surface-strong) 96%, transparent);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transform-origin: bottom right;
      animation: telegramPanelIn 180ms ease-out;
    }

    .telegram-support-panel[hidden] { display: none; }

    .telegram-support-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding: 16px;
      border-bottom: 1px solid var(--line);
      background: linear-gradient(135deg, rgba(115, 214, 179, 0.14), rgba(255, 184, 107, 0.08));
    }

    .telegram-support-head h2 {
      margin: 0;
      font-family: "Space Grotesk", sans-serif;
      font-size: 17px;
      line-height: 1.25;
    }

    .telegram-support-head p {
      margin: 4px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .telegram-support-close {
      display: grid;
      width: 32px;
      height: 32px;
      min-height: 32px;
      flex: 0 0 auto;
      place-items: center;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: transparent;
      color: var(--faint);
      font-size: 20px;
      cursor: pointer;
    }

    .telegram-support-close:hover {
      background: var(--surface-soft);
      color: var(--text);
    }

    .telegram-support-topics {
      display: grid;
      max-height: min(58vh, 410px);
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      padding: 12px;
      overflow-y: auto;
    }

    .telegram-support-topic {
      display: flex;
      min-height: 52px;
      align-items: center;
      gap: 10px;
      padding: 10px 11px;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: var(--surface-soft);
      color: var(--text);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.25;
      transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
    }

    .telegram-support-topic:hover {
      transform: translateY(-2px);
      border-color: rgba(42, 171, 238, 0.55);
      background: rgba(42, 171, 238, 0.1);
    }

    .telegram-support-topic-icon {
      display: grid;
      width: 30px;
      height: 30px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 9px;
      background: rgba(42, 171, 238, 0.14);
      color: #2aabee;
      font-size: 15px;
    }

    .telegram-support-toggle {
      display: flex;
      min-height: 56px;
      align-items: center;
      gap: 9px;
      padding: 0 17px;
      border: 0;
      border-radius: 999px;
      background: #2aabee;
      box-shadow: 0 14px 36px rgba(42, 171, 238, 0.38);
      color: #fff;
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform 160ms ease, background 160ms ease;
    }

    .telegram-support-toggle:hover {
      transform: translateY(-2px);
      background: #229ed9;
    }

    .telegram-support-toggle svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    @keyframes telegramPanelIn {
      from { opacity: 0; transform: translateY(8px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (max-width: 560px) {
      .telegram-support-launcher { right: 14px; bottom: 14px; }
      .telegram-support-topics { grid-template-columns: 1fr; }
      .telegram-support-toggle span { display: none; }
      .telegram-support-toggle {
        width: 56px;
        padding: 0;
        justify-content: center;
      }
    }

    /* Adaptive AI hero — integrated into the existing OddsTips theme. */
    .hero {
      min-height: max(860px, 100svh);
      padding: 110px 24px 38px;
      background:
        radial-gradient(circle at 50% 22%, color-mix(in srgb, var(--primary) 24%, transparent), transparent 28%),
        radial-gradient(circle at 82% 55%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 28%),
        radial-gradient(circle at 13% 76%, color-mix(in srgb, var(--primary) 13%, transparent), transparent 25%),
        linear-gradient(120deg, var(--bg-elevated) 0%, var(--bg) 54%, color-mix(in srgb, var(--bg-elevated) 94%, var(--accent)) 100%);
    }

    .hero::after,
    body[data-theme="dark"] .hero::after {
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg) 2%, transparent) 0%, color-mix(in srgb, var(--bg) 18%, transparent) 68%, var(--bg) 100%),
        linear-gradient(118deg, color-mix(in srgb, var(--text) 2.5%, transparent) 0%, transparent 58%);
    }

    #market-canvas,
    .hero-actions,
    .hero-mobile-showcase {
      display: none !important;
    }

    .hero-grid {
      width: min(calc(100% - 64px), 1480px);
      max-width: none;
      min-height: calc(100svh - 148px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      grid-template-rows: auto minmax(360px, 1fr) auto;
      align-items: center;
      gap: 2px;
    }

    @media (min-width: 981px) {
      .hero-copy {
        padding-top: 0;
        transform: none;
      }
    }

    .hero-copy {
      width: min(1120px, 100%);
      margin: 0 auto;
      position: relative;
      z-index: 12;
      text-align: center;
    }

    .hero .eyebrow {
      display: none;
    }

    html[lang] .hero h1 {
      max-width: 1100px;
      margin: 0 auto;
      color: var(--text);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: clamp(56px, 5.2vw, 82px);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.058em;
      text-shadow: 0 14px 38px color-mix(in srgb, var(--bg) 46%, transparent);
    }

    .hero h1 span {
      display: block;
      margin-top: 6px;
      color: transparent;
      background: linear-gradient(90deg, #17a5ae 0%, #38dbcd 42%, #d6b450 92%);
      -webkit-background-clip: text;
      background-clip: text;
      filter: drop-shadow(0 0 26px color-mix(in srgb, var(--primary) 14%, transparent));
    }

    .hero-lede,
    body[data-theme="dark"] .hero-lede {
      width: min(1040px, 100%);
      max-width: none;
      margin: 18px auto 0;
      color: color-mix(in srgb, var(--text) 84%, var(--muted));
      font-size: clamp(15px, 1.18vw, 18px);
      font-weight: 500;
      line-height: 1.52;
      letter-spacing: -0.012em;
      text-wrap: balance;
    }

    .adaptive-radar-showcase {
      --adaptive-green: var(--primary);
      --adaptive-blue: var(--blue);
      --adaptive-gold: var(--accent);
      width: min(900px, 75vw);
      height: clamp(380px, 47svh, 440px);
      margin: -16px auto -4px;
      position: relative;
      z-index: 8;
      contain: layout paint;
      perspective: 1000px;
      will-change: transform;
    }

    #adaptive-radar-canvas {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .adaptive-radar-core {
      width: 112px;
      min-height: 64px;
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 9;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 3px;
      transform: translate(-50%, -50%);
      color: var(--text);
      text-align: center;
      pointer-events: none;
    }

    .adaptive-radar-core strong {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 14px;
      line-height: 1;
      letter-spacing: -0.035em;
    }

    .adaptive-radar-core span {
      color: var(--faint);
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .adaptive-sport-orbiter {
      width: 76px;
      height: 76px;
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 12;
      margin: -38px 0 0 -38px;
      will-change: transform, opacity;
    }

    .adaptive-sport-icon {
      width: 62px;
      height: 62px;
      margin: 7px;
      position: relative;
      display: grid;
      place-items: center;
      border: 1px solid color-mix(in srgb, var(--adaptive-blue) 34%, var(--line));
      border-radius: 17px;
      background: color-mix(in srgb, var(--surface-strong) 84%, transparent);
      box-shadow:
        0 18px 42px color-mix(in srgb, var(--bg) 28%, transparent),
        0 0 28px color-mix(in srgb, var(--adaptive-blue) 10%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--text) 8%, transparent);
      color: var(--text);
      cursor: pointer;
      backdrop-filter: blur(16px);
      transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
      will-change: transform;
    }

    .adaptive-sport-icon:hover,
    .adaptive-sport-icon:focus-visible {
      border-color: color-mix(in srgb, var(--adaptive-green) 74%, var(--line));
      background: color-mix(in srgb, var(--adaptive-green) 10%, var(--surface-strong));
      box-shadow:
        0 20px 48px color-mix(in srgb, var(--bg) 34%, transparent),
        0 0 34px color-mix(in srgb, var(--adaptive-green) 23%, transparent);
    }

    .adaptive-sport-icon .material-symbols-rounded {
      color: color-mix(in srgb, var(--adaptive-green) 82%, var(--text));
      font-size: 34px;
      font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 36;
      filter: drop-shadow(0 0 10px color-mix(in srgb, var(--adaptive-green) 34%, transparent));
    }

    .adaptive-sport-name {
      position: absolute;
      left: 50%;
      bottom: -20px;
      transform: translateX(-50%);
      color: var(--muted);
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0.72;
    }

    .adaptive-data-chip {
      position: absolute;
      z-index: 5;
      color: var(--faint);
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      pointer-events: none;
    }

    .adaptive-data-chip--left { left: 5%; top: 34%; }
    .adaptive-data-chip--right { right: 5%; top: 31%; }
    .adaptive-data-chip--bottom { left: 16%; bottom: 18%; }

    .adaptive-floating-odd {
      position: absolute;
      z-index: 4;
      color: color-mix(in srgb, var(--text) 76%, var(--muted));
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      opacity: 0.28;
      pointer-events: none;
      will-change: transform, opacity;
    }

    .adaptive-floating-odd--one { left: 8%; top: 18%; }
    .adaptive-floating-odd--two { right: 9%; top: 18%; }
    .adaptive-floating-odd--three { left: 9%; bottom: 19%; }
    .adaptive-floating-odd--four { right: 10%; bottom: 17%; }

    .adaptive-signal-layer {
      position: absolute;
      inset: 0;
      z-index: 10;
      overflow: visible;
      pointer-events: none;
    }

    .adaptive-signal-card {
      width: 164px;
      height: 82px;
      position: absolute;
      z-index: 11;
      padding: 10px 11px;
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--adaptive-green) 34%, var(--line));
      border-radius: 13px;
      background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
      box-shadow:
        0 24px 58px color-mix(in srgb, var(--bg) 36%, transparent),
        0 0 28px color-mix(in srgb, var(--adaptive-green) 11%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--text) 7%, transparent);
      color: var(--text);
      backdrop-filter: blur(16px);
      will-change: transform, opacity;
    }

    .adaptive-signal-top,
    .adaptive-signal-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .adaptive-signal-sport,
    .adaptive-signal-live,
    .adaptive-signal-market {
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .adaptive-signal-sport,
    .adaptive-signal-market {
      color: var(--faint);
    }

    .adaptive-signal-live,
    .adaptive-signal-odd {
      color: var(--adaptive-green);
    }

    .adaptive-signal-match {
      max-width: 92px;
      margin-top: 7px;
      overflow: hidden;
      font-size: 10px;
      font-weight: 800;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .adaptive-signal-market {
      margin-top: 3px;
      letter-spacing: 0.02em;
      text-transform: none;
    }

    .adaptive-signal-odd {
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1;
      text-align: right;
    }

    .adaptive-signal-chart {
      width: 58px;
      height: 22px;
      display: block;
      margin-top: 3px;
    }

    .hero-proof {
      position: relative;
      z-index: 16;
      grid-column: 1;
      width: 100%;
      margin: 0;
    }

    @media (min-width: 981px) {
      .hero {
        min-height: max(860px, 100svh);
        padding: clamp(104px, 11.5svh, 122px) 48px 38px;
      }

      .hero-grid {
        width: min(calc(100% - 56px), 1480px);
        height: auto;
        min-height: calc(100svh - clamp(142px, 15.5svh, 160px));
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto minmax(360px, 1fr) 112px;
        gap: 0;
      }

      .hero-copy {
        padding-top: 0;
        transform: none;
      }

      .hero-proof {
        grid-column: 1;
        grid-template-columns: 1.05fr 0.95fr 0.95fr 0.95fr;
        gap: 20px;
      }

      .proof-item {
        height: 108px;
        min-height: 108px;
      }
    }

    @media (max-width: 1120px) {
      html[lang] .hero h1 {
        font-size: clamp(52px, 7vw, 70px);
      }

      .adaptive-radar-showcase {
        width: min(820px, 86vw);
      }

      .hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .hero {
        min-height: auto;
        padding: 106px 20px 42px;
      }

      .hero-grid {
        width: 100%;
        min-height: 0;
        grid-template-rows: auto 400px auto;
        gap: 12px;
      }

      .adaptive-radar-showcase {
        width: min(760px, 96vw);
        height: 400px;
        margin: -6px auto;
      }

      .hero-proof {
        margin-top: 4px;
      }
    }

    @media (max-width: 680px) {
      .hero {
        padding: 92px 14px 30px;
      }

      .hero-grid {
        grid-template-rows: auto 350px auto;
      }

      html[lang] .hero h1 {
        font-size: clamp(40px, 12vw, 50px);
        line-height: 0.94;
        letter-spacing: -0.052em;
      }

      .hero-lede,
      body[data-theme="dark"] .hero-lede {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.55;
      }

      .adaptive-radar-showcase {
        width: calc(100vw - 8px);
        height: 350px;
        margin: -2px calc(50% - 50vw);
      }

      .adaptive-data-chip,
      .adaptive-floating-odd--three,
      .adaptive-floating-odd--four {
        display: none;
      }

      .adaptive-floating-odd--one { left: 7%; top: 20%; }
      .adaptive-floating-odd--two { right: 7%; top: 22%; }

      .adaptive-sport-orbiter {
        width: 62px;
        height: 62px;
        margin: -31px 0 0 -31px;
      }

      .adaptive-sport-icon {
        width: 50px;
        height: 50px;
        margin: 6px;
        border-radius: 14px;
      }

      .adaptive-sport-icon .material-symbols-rounded {
        font-size: 28px;
      }

      .adaptive-sport-name {
        bottom: -17px;
        font-size: 6px;
      }

      .adaptive-radar-core {
        width: 94px;
      }

      .adaptive-radar-core strong { font-size: 12px; }
      .adaptive-radar-core span { font-size: 6px; }

      .adaptive-signal-card {
        width: 126px;
        height: 68px;
        padding: 8px 9px;
      }

      .adaptive-signal-match {
        max-width: 66px;
        margin-top: 5px;
        font-size: 8px;
      }

      .adaptive-signal-chart {
        width: 43px;
        height: 18px;
      }

      .hero-proof {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .adaptive-radar-showcase,
      .adaptive-sport-orbiter,
      .adaptive-sport-icon,
      .adaptive-floating-odd,
      .adaptive-signal-card {
        will-change: auto;
      }
    }

    /* Original Adaptive AI prototype fidelity pass. */
    .hero {
      min-height: max(820px, 100svh);
      padding-bottom: 24px;
    }

    .hero-grid {
      grid-template-rows: auto minmax(450px, 1fr) auto;
    }

    html[lang] .hero h1 {
      max-width: 960px;
      font-size: clamp(48px, 4.45vw, 68px);
      line-height: 0.94;
      letter-spacing: -0.054em;
    }

    .hero-lede,
    body[data-theme="dark"] .hero-lede {
      width: min(980px, 100%);
      margin-top: 15px;
      font-size: clamp(14px, 1.02vw, 16px);
      line-height: 1.48;
    }

    .adaptive-radar-showcase {
      --radar-green: var(--primary);
      --radar-blue: var(--blue);
      --radar-green-rgb: 115, 214, 179;
      --radar-blue-rgb: 121, 168, 255;
      --radar-card-bg: color-mix(in srgb, var(--surface-strong) 88%, transparent);
      --radar-glow:
        0 0 36px color-mix(in srgb, var(--primary) 25%, transparent),
        0 0 88px color-mix(in srgb, var(--blue) 13%, transparent);
      width: 100%;
      height: clamp(450px, 50svh, 480px);
      margin: -8px auto -2px;
      display: grid;
      place-items: center;
      overflow: visible;
      contain: layout;
    }

    body[data-theme="light"] .adaptive-radar-showcase {
      --radar-green-rgb: 36, 126, 100;
      --radar-blue-rgb: 50, 111, 214;
      --radar-card-bg: rgba(255, 255, 255, 0.86);
      --radar-glow:
        0 18px 52px rgba(36, 126, 100, 0.11),
        0 0 68px rgba(50, 111, 214, 0.08);
    }

    .adaptive-radar-stage {
      width: clamp(360px, 46vw, 610px);
      aspect-ratio: 1;
      position: absolute;
      left: 50%;
      top: 50%;
      translate: -50% -50%;
      display: grid;
      place-items: center;
      perspective: 1000px;
      will-change: transform;
    }

    .adaptive-radar-stage::before {
      content: "";
      position: absolute;
      inset: 6%;
      border-radius: 50%;
      background: radial-gradient(
        circle,
        rgba(var(--radar-green-rgb), 0.11),
        rgba(var(--radar-blue-rgb), 0.025) 54%,
        transparent 72%
      );
      filter: blur(20px);
      pointer-events: none;
    }

    .adaptive-orbit-track {
      position: absolute;
      inset: 8%;
      border: 1px dashed rgba(var(--radar-blue-rgb), 0.24);
      border-radius: 50%;
      transform: rotateX(67deg) rotateZ(-8deg);
      box-shadow: 0 0 40px rgba(var(--radar-blue-rgb), 0.04);
      pointer-events: none;
    }

    .adaptive-orbit-track--inner {
      inset: 19%;
      border-style: solid;
      border-color: rgba(var(--radar-green-rgb), 0.13);
      transform: rotateX(67deg) rotateZ(18deg);
    }

    .adaptive-radar-shell {
      width: 64%;
      aspect-ratio: 1;
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(var(--radar-green-rgb), 0.38);
      border-radius: 50%;
      background:
        radial-gradient(circle, transparent 15%, var(--line) 15.4%, transparent 16%),
        radial-gradient(circle, transparent 31%, var(--line) 31.4%, transparent 32%),
        radial-gradient(circle, transparent 47%, var(--line) 47.4%, transparent 48%),
        radial-gradient(circle at 50% 50%, rgba(var(--radar-green-rgb), 0.09), rgba(var(--radar-blue-rgb), 0.025) 62%, transparent 74%);
      box-shadow: var(--radar-glow), inset 0 0 42px rgba(var(--radar-green-rgb), 0.07);
      backdrop-filter: blur(4px);
      transition: border-color 400ms ease, box-shadow 400ms ease, background 400ms ease;
      will-change: transform;
    }

    .adaptive-radar-shell::before,
    .adaptive-radar-shell::after {
      content: "";
      position: absolute;
      background: var(--line);
      pointer-events: none;
    }

    .adaptive-radar-shell::before {
      width: 1px;
      height: 100%;
      left: 50%;
    }

    .adaptive-radar-shell::after {
      width: 100%;
      height: 1px;
      top: 50%;
    }

    .adaptive-radar-sweep {
      position: absolute;
      inset: -1px;
      border-radius: 50%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg 294deg,
        rgba(var(--radar-green-rgb), 0.02) 310deg,
        rgba(var(--radar-green-rgb), 0.32) 358deg,
        var(--radar-green) 360deg
      );
      mask-image: radial-gradient(circle, transparent 0 11%, black 12% 100%);
      will-change: transform;
    }

    .adaptive-radar-sweep::after {
      content: "";
      position: absolute;
      width: 48%;
      height: 1px;
      right: 50%;
      top: 50%;
      transform-origin: right center;
      background: linear-gradient(90deg, transparent, var(--radar-green));
      box-shadow: 0 0 14px rgba(var(--radar-green-rgb), 0.9);
    }

    .adaptive-radar-dot {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--radar-green);
      box-shadow: 0 0 13px rgba(var(--radar-green-rgb), 0.9);
    }

    .adaptive-radar-dot:nth-child(2) { top: 25%; left: 66%; }
    .adaptive-radar-dot:nth-child(3) { top: 63%; left: 27%; }
    .adaptive-radar-dot:nth-child(4) { top: 71%; left: 69%; background: var(--radar-blue); }
    .adaptive-radar-dot:nth-child(5) { top: 39%; left: 18%; }

    .adaptive-ai-core {
      width: 78px;
      height: 78px;
      position: relative;
      z-index: 5;
      display: grid;
      place-items: center;
      border: 1px solid rgba(var(--radar-green-rgb), 0.48);
      border-radius: 50%;
      background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
      box-shadow: 0 0 28px rgba(var(--radar-green-rgb), 0.28), inset 0 0 20px rgba(var(--radar-blue-rgb), 0.1);
      color: var(--text);
      font-family: "Space Grotesk", sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    .adaptive-ai-core::before,
    .adaptive-ai-core::after {
      content: "";
      position: absolute;
      inset: -9px;
      border: 1px solid rgba(var(--radar-green-rgb), 0.2);
      border-radius: 50%;
    }

    .adaptive-ai-core::after {
      inset: -18px;
      border-style: dashed;
      border-color: rgba(var(--radar-blue-rgb), 0.18);
    }

    .adaptive-core-caption {
      position: absolute;
      z-index: 6;
      bottom: 25%;
      left: 50%;
      transform: translate(-50%, 22px);
      color: var(--muted);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .adaptive-sport-orbiter {
      width: 70px;
      height: 70px;
      margin: -35px 0 0 -35px;
    }

    .adaptive-sport-icon {
      width: 58px;
      height: 58px;
      margin: 6px;
      border: 1px solid rgba(var(--radar-blue-rgb), 0.3);
      border-radius: 18px;
      background: var(--radar-card-bg);
      box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16), 0 0 24px rgba(var(--radar-blue-rgb), 0.09);
      color: var(--text);
    }

    .adaptive-sport-icon:hover,
    .adaptive-sport-icon:focus-visible {
      border-color: rgba(var(--radar-green-rgb), 0.7);
      background: var(--radar-card-bg);
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.19), 0 0 30px rgba(var(--radar-green-rgb), 0.22);
    }

    .adaptive-sport-icon::after {
      content: attr(data-short);
      position: absolute;
      left: 50%;
      bottom: -21px;
      transform: translateX(-50%);
      color: var(--muted);
      font-family: Inter, sans-serif;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .adaptive-sport-icon:hover::after,
    .adaptive-sport-icon:focus-visible::after {
      opacity: 1;
      transform: translate(-50%, -2px);
    }

    .adaptive-sport-glyph {
      display: block;
      font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
      font-size: 30px;
      line-height: 1;
      filter: drop-shadow(0 6px 9px rgba(0, 0, 0, 0.16));
    }

    .adaptive-puck-art {
      width: 31px;
      height: 17px;
      position: relative;
      display: block;
      border-radius: 50%;
      background: linear-gradient(180deg, #65717e 0%, #111820 52%, #02060a 100%);
      box-shadow: inset 0 3px 3px rgba(255, 255, 255, 0.2), 0 6px 10px rgba(0, 0, 0, 0.45);
      transform: rotate(-12deg);
    }

    .adaptive-puck-art::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 50%;
      background: radial-gradient(circle at 40% 34%, #4b5966, #151d25 74%);
    }

    .adaptive-data-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.12em;
    }

    .adaptive-data-chip::before {
      content: "";
      width: 26px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--radar-blue));
    }

    .adaptive-data-chip--left { left: 2%; top: 31%; }
    .adaptive-data-chip--right { right: 0; top: 38%; display: flex; flex-direction: row-reverse; }
    .adaptive-data-chip--right::before { background: linear-gradient(90deg, var(--radar-green), transparent); }
    .adaptive-data-chip--bottom { left: 8%; bottom: 20%; }

    .adaptive-floating-odd {
      color: var(--text);
      font-size: clamp(0.68rem, 0.9vw, 0.82rem);
      font-weight: 600;
      letter-spacing: 0.04em;
      opacity: 0.2;
    }

    .adaptive-floating-odd::before {
      content: "";
      width: 4px;
      height: 4px;
      display: inline-block;
      margin-right: 7px;
      border-radius: 50%;
      background: var(--radar-green);
      box-shadow: 0 0 10px rgba(var(--radar-green-rgb), 0.8);
      vertical-align: 2px;
    }

    .adaptive-floating-odd--one { left: 6%; top: 36%; }
    .adaptive-floating-odd--two { right: 7%; top: 28%; }
    .adaptive-floating-odd--three { left: 13%; bottom: 27%; }
    .adaptive-floating-odd--four { right: 13%; bottom: 24%; }
    .adaptive-floating-odd--five { right: 29%; top: 49%; }
    .adaptive-floating-odd--six { left: 30%; top: 52%; }

    .adaptive-signal-layer {
      inset: 0;
      z-index: 14;
      overflow: visible;
    }

    .adaptive-signal-card {
      width: 152px;
      height: 76px;
      padding: 11px 12px;
      border-color: rgba(var(--radar-green-rgb), 0.3);
      border-radius: 13px;
      background: var(--radar-card-bg);
      box-shadow: var(--shadow), 0 0 28px rgba(var(--radar-green-rgb), 0.1);
    }

    .adaptive-signal-sport,
    .adaptive-signal-live,
    .adaptive-signal-market {
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.13em;
    }

    .adaptive-signal-match {
      margin-top: 5px;
      font-size: 10px;
      font-weight: 700;
    }

    .adaptive-signal-market {
      margin-top: 0;
      letter-spacing: 0;
    }

    .hero-proof {
      width: min(1200px, 100%);
      margin: 0 auto;
      gap: 14px;
    }

    .proof-item,
    body[data-theme="dark"] .proof-item,
    body[data-theme="dark"] .proof-item.is-accent {
      grid-template-columns: 52px minmax(0, 1fr);
      height: 86px;
      min-height: 86px;
      padding: 10px 14px 10px 10px;
      gap: 12px;
      row-gap: 2px;
      border-radius: 12px;
    }

    .proof-item::before {
      left: 76px;
      right: 14px;
      bottom: 28px;
    }

    .proof-icon,
    body[data-theme="dark"] .proof-icon,
    body[data-theme="dark"] .proof-item.is-accent .proof-icon {
      width: 52px;
      height: 52px;
      border-radius: 11px;
    }

    .proof-icon svg {
      width: 29px;
      height: 29px;
    }

    .proof-value,
    body[data-theme="dark"] .proof-value {
      font-size: 28px;
    }

    .proof-label,
    body[data-theme="dark"] .proof-label {
      font-size: 10px;
      line-height: 1.12;
    }

    @media (min-width: 981px) {
      .hero-grid {
        grid-template-rows: auto minmax(450px, 1fr) 86px;
      }

      .hero-proof {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
      }

      .proof-item,
      body[data-theme="dark"] .proof-item,
      body[data-theme="dark"] .proof-item.is-accent {
        height: 86px;
        min-height: 86px;
      }
    }

    @media (max-width: 1120px) {
      html[lang] .hero h1 {
        font-size: clamp(46px, 6.2vw, 62px);
      }
    }

    @media (max-width: 980px) {
      .hero-grid {
        grid-template-rows: auto 420px auto;
      }

      .adaptive-radar-showcase {
        width: 100%;
        height: 420px;
        margin: -4px auto;
      }
    }

    @media (max-width: 680px) {
      .hero-grid {
        grid-template-rows: auto 350px auto;
      }

      html[lang] .hero h1 {
        font-size: clamp(36px, 10.5vw, 42px);
        line-height: 0.96;
      }

      .hero-lede,
      body[data-theme="dark"] .hero-lede {
        margin-top: 13px;
        font-size: 13px;
        line-height: 1.5;
      }

      .adaptive-radar-showcase {
        width: calc(100vw - 8px);
        height: 350px;
      }

      .adaptive-radar-stage {
        width: clamp(350px, 96vw, 420px);
      }

      .adaptive-data-chip,
      .adaptive-floating-odd--three,
      .adaptive-floating-odd--four,
      .adaptive-floating-odd--five,
      .adaptive-floating-odd--six {
        display: none;
      }

      .adaptive-sport-orbiter {
        width: 62px;
        height: 62px;
        margin: -31px 0 0 -31px;
      }

      .adaptive-sport-icon {
        width: 50px;
        height: 50px;
        margin: 6px;
        border-radius: 14px;
      }

      .adaptive-sport-glyph { font-size: 26px; }
      .adaptive-puck-art { transform: rotate(-12deg) scale(0.86); }

      .adaptive-ai-core {
        width: 62px;
        height: 62px;
        font-size: 1rem;
      }

      .adaptive-core-caption {
        font-size: 7px;
      }

      .adaptive-signal-card {
        width: 126px;
        height: 68px;
        padding: 8px 9px;
      }

      .hero-proof {
        width: min(330px, 100%);
        gap: 7px;
      }

      .proof-item,
      body[data-theme="dark"] .proof-item,
      body[data-theme="dark"] .proof-item.is-accent {
        height: 80px;
        min-height: 80px;
      }
    }
