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

    :root {
      --orange: #FF6B2B;
      --cyan: #00B4FF;
      --bg: #0a0a0a;
      --nav-bg: #0d0d0d;
      --text-white: #ffffff;
      --text-gray: #8a8a8a;
      --text-muted: #555;
      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-ui: 'Syne', sans-serif;
    }

    html, body {
      background: var(--bg);
      color: var(--text-white);
      font-family: var(--font-body);
      min-height: 100vh;
    }

    /* ─── NAV ─────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 68px;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-logo img {
      width: 38px;
      height: 38px;
      border-radius: 9px;
    }

    .nav-logo-text {
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 17px;
      letter-spacing: 0.04em;
      color: var(--text-white);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }

    /* Auth entries only show inside the mobile hamburger drawer */
    .nav-links .nav-mobile-auth { display: none; }

    .nav-links a {
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-gray);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--text-white); }

    /* Navigation buttons container */
    .nav-buttons {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-buttons .btn {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s;
      cursor: pointer;
    }

    .nav-buttons .btn-primary {
      background: var(--orange);
      color: #fff;
    }

    .nav-buttons .btn-primary:hover {
      background: #ff7d42;
      transform: translateY(-1px);
    }

    .nav-buttons .btn-outline {
      background: transparent;
      color: var(--text-white);
      border: 2px solid rgba(255,255,255,0.3);
    }

    .nav-buttons .btn-outline:hover {
      border-color: rgba(255,255,255,0.6);
      transform: translateY(-1px);
    }

    /* User Menu Styles */
    .user-menu {
      position: relative;
    }

    .user-menu-trigger {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px;
      background: rgba(255,255,255,0.1);
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s;
      color: var(--text-white);
    }

    .user-menu-trigger:hover {
      background: rgba(255,255,255,0.15);
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--orange);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }

    .user-menu-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      background: white;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
      min-width: 240px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s;
      z-index: 1000;
    }

    .user-menu:hover .user-menu-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .user-menu-header {
      padding: 20px;
      border-bottom: 1px solid #eee;
    }

    .user-name {
      font-weight: 700;
      color: #282828;
      margin-bottom: 6px;
    }

    .user-tier {
      font-size: 12px;
      color: #666;
      padding: 4px 10px;
      background: #f0f0f0;
      border-radius: 12px;
      display: inline-block;
    }

    .user-menu-items {
      padding: 10px;
    }

    .user-menu-item {
      display: block;
      padding: 12px 16px;
      color: #282828;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.2s;
      font-size: 14px;
    }

    .user-menu-item:hover {
      background: #f5f5f5;
    }

    .user-menu-item.logout {
      color: #dc3545;
    }

    .user-menu-item.logout:hover {
      background: #fff0f0;
    }

    /* ─── HERO ────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    /* ─── HERO VIDEO BACKGROUND ───────────────── */
    .hero-video-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-video-bg video {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      object-fit: cover;
    }

    /* Dark overlay so text stays readable over any video content */
    .hero-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.40) 50%,
        rgba(10, 10, 10, 0.72) 100%
      );
      z-index: 1;
    }

    /* Radial glow — now layered on top of video */
    .hero-video-glow {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(0, 80, 120, 0.30) 0%, transparent 70%);
      pointer-events: none;
      z-index: 2;
    }

    /* Video placeholder state (shown when no src is provided) */
    .hero-video-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      background: #0a0e14;
      z-index: 0;
    }

    .hero-video-placeholder svg {
      opacity: 0.18;
      width: 80px;
      height: 80px;
    }

    .hero-video-placeholder span {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }

    /* All direct hero children sit above the video stack */
    .hero > *:not(.hero-video-bg) { position: relative; z-index: 3; }

    /* Badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(0, 180, 255, 0.4);
      background: rgba(0, 30, 50, 0.5);
      color: #aad8f0;
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 40px;
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* Headline */
    .hero-headline {
      font-family: var(--font-display);
      font-size: clamp(80px, 12vw, 160px);
      line-height: 0.92;
      letter-spacing: 0.01em;
      margin-bottom: 30px;
    }

    .hero-headline .line-orange { color: var(--orange); display: block; }
    .hero-headline .line-white  { color: var(--text-white); display: block; }

    /* Subhead */
    .hero-subhead {
      font-family: var(--font-body);
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 400;
      color: var(--text-gray);
      margin-bottom: 28px;
      letter-spacing: -0.01em;
    }

    .hero-subhead .accent { color: var(--orange); }

    /* Body copy */
    .hero-body {
      max-width: 520px;
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-gray);
      margin-bottom: 44px;
    }

    .hero-body .brand { color: var(--orange); font-weight: 600; }

    /* CTA row */
    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(255, 107, 43, 0.35);
    }

    .btn-primary:hover {
      background: #ff7d42;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(255, 107, 43, 0.5);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--text-gray);
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.2s;
    }

    .btn-ghost:hover { color: var(--text-white); }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0.4;
    }

    .hero-scroll-bar {
      width: 2px;
      height: 32px;
      background: linear-gradient(to bottom, var(--text-white), transparent);
      animation: scrollDown 1.8s ease-in-out infinite;
    }

    @keyframes scrollDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ─── DEMO IMAGE ──────────────────────────── */
    .demo-section {
      background: var(--bg);
      display: flex;
      justify-content: center;
      padding: 0 40px 60px;
    }

    .demo-frame {
      position: relative;
      width: 100%;
      max-width: 700px;
      aspect-ratio: 16 / 10;
      background: #0e1a1f;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
    }

    /* Ambient glow inside demo frame */
    .demo-frame::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 60%, rgba(255, 107, 43, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 40%, rgba(0, 180, 255, 0.12) 0%, transparent 55%);
      z-index: 0;
    }

    .demo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
    }

    /* Label top-left */
    .demo-label {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 6px 12px;
      font-family: var(--font-body);
      font-size: 12px;
      color: rgba(255,255,255,0.7);
    }

    .demo-label-dot {
      width: 8px;
      height: 8px;
      background: #3cff8f;
      border-radius: 50%;
      animation: pulse 2s ease-in-out infinite;
    }

    /* ─── STATS TICKER ────────────────────────── */
    .stats-bar {
      background: #0d0d0d;
      border-top: 1px solid rgba(255,255,255,0.07);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      padding: 22px 40px;
      display: flex;
      justify-content: center;
      gap: 80px;
    }

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

    .stat-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid rgba(0, 180, 255, 0.4);
      background: rgba(0, 60, 100, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .stat-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--cyan);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .stat-label {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.75);
    }

    /* ─── WHY THIS WORKS ─────────────────────── */
    .why-section {
      padding: 100px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      max-width: 1300px;
      margin: 0 auto;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 107, 43, 0.15);
      border: 1px solid rgba(255, 107, 43, 0.35);
      color: var(--orange);
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 7px 14px;
      border-radius: 50px;
      margin-bottom: 28px;
    }

    .why-byline {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .why-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,0.12);
      flex-shrink: 0;
    }

    .why-byline-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      line-height: 1.2;
    }

    .why-byline-name {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 700;
      color: var(--text-white);
      letter-spacing: 0.01em;
    }

    .why-byline-meta {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .why-headline {
      font-family: var(--font-ui);
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-white);
      margin-bottom: 14px;
      letter-spacing: -0.015em;
    }

    .why-deck {
      font-family: var(--font-body);
      font-size: clamp(16px, 1.4vw, 19px);
      font-weight: 400;
      font-style: italic;
      line-height: 1.5;
      color: rgba(255,255,255,0.72);
      margin-bottom: 28px;
      letter-spacing: -0.005em;
    }

    .why-body {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-gray);
      margin-bottom: 20px;
    }



    .why-callout {
      margin-top: 36px;
      background: #111;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 24px 28px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .callout-stat {
      font-family: var(--font-display);
      font-size: 52px;
      color: var(--orange);
      line-height: 1;
      flex-shrink: 0;
    }

    .callout-text {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-gray);
    }

    .callout-text strong {
      color: var(--text-white);
      font-weight: 600;
    }

    .why-card {
      background: #0f0f0f;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 16px;
      overflow: hidden;
    }

    .why-card-titlebar {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .traffic-lights { display: flex; gap: 6px; }
    .traffic-lights span { width: 12px; height: 12px; border-radius: 50%; }
    .tl-red    { background: #FF5F56; }
    .tl-yellow { background: #FFBD2E; }
    .tl-green  { background: #27C93F; }

    .why-card-title {
      font-family: var(--font-body);
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      margin-left: 4px;
    }

    .why-step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .why-step:last-child { border-bottom: none; }

    .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(0, 60, 100, 0.5);
      border: 1.5px solid rgba(0, 180, 255, 0.5);
      color: var(--cyan);
      font-family: var(--font-ui);
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .step-content-title {
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-white);
      margin-bottom: 6px;
    }

    .step-content-desc {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-gray);
    }

    /* ─── HOW IT WORKS ───────────────────────── */
    .how-section {
      padding: 90px 60px 100px;
      text-align: center;
    }

    .how-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .how-eyebrow-line {
      width: 40px;
      height: 2px;
      background: var(--cyan);
    }

    .how-eyebrow-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .how-headline {
      font-family: var(--font-ui);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--text-white);
      margin-bottom: 18px;
    }

    .how-headline .accent { color: var(--cyan); }

    .how-subhead {
      font-size: 16px;
      line-height: 1.65;
      color: var(--text-gray);
      max-width: 520px;
      margin: 0 auto 60px;
    }

    .how-grid-wrap {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
    }

    .how-card {
      padding: 36px 32px 32px;
      border-right: 1px solid rgba(255,255,255,0.07);
      text-align: left;
      display: flex;
      flex-direction: column;
    }

    .how-card:last-child { border-right: none; }

    .how-card-num {
      font-family: var(--font-display);
      font-size: 56px;
      color: rgba(255,255,255,0.08);
      line-height: 1;
      margin-bottom: 20px;
    }

    .how-card-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #161616;
      border-radius: 12px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
    }

    .how-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .img-placeholder-label {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.15);
      text-transform: uppercase;
    }


    .how-card-title {
      font-family: var(--font-ui);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 12px;
    }

    .how-card-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-gray);
      flex-grow: 1;
      margin-bottom: 20px;
    }

    .how-card-tag {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--cyan);
    }

    .how-card-tag-icon {
      width: 16px;
      height: 16px;
      border: 1.5px solid var(--cyan);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      flex-shrink: 0;
    }

    /* ─── CREATOR TOOLS ──────────────────────── */
    .tools-section {
      padding: 90px 80px 100px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .tools-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .tools-headline {
      font-family: var(--font-ui);
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .tools-headline .line-white { color: var(--text-white); display: block; }
    .tools-headline .line-cyan  { color: var(--cyan); display: block; }

    .tools-subhead {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-gray);
      max-width: 420px;
      margin-bottom: 50px;
    }

    .tools-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    /* Tab list */
    .tools-tabs {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .tool-tab {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.06);
      background: #0d0d0d;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .tool-tab.active {
      border-color: rgba(0, 180, 255, 0.5);
      background: rgba(0, 60, 100, 0.18);
    }

    .tool-tab:hover:not(.active) {
      border-color: rgba(255,255,255,0.12);
      background: #111;
    }

    .tool-tab-icon {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #1a1a2e;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .tool-tab-title {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 3px;
    }

    .tool-tab-sub {
      font-size: 13px;
      color: var(--text-gray);
    }

    /* Preview panel */
    .tools-preview {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      overflow: hidden;
    }

    .tools-preview-img {
      width: 100%;
      aspect-ratio: 4/3;
      background: #111;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

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

    .tools-preview-body {
      padding: 28px;
    }

    .tools-preview-title {
      font-family: var(--font-ui);
      font-size: 22px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 12px;
    }

    .tools-preview-desc {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-gray);
      margin-bottom: 20px;
    }

    .tools-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tools-tag {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--cyan);
      border: 1px solid rgba(0, 180, 255, 0.3);
      background: rgba(0, 60, 100, 0.2);
      padding: 5px 12px;
      border-radius: 50px;
    }

    .tool-panel { display: none; }
    .tool-panel.active { display: block; }

    /* ─── REAL EXAMPLES ──────────────────────── */
    .examples-section {
      padding: 90px 60px 100px;
      text-align: center;
    }

    .examples-eyebrow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .examples-headline {
      font-family: var(--font-ui);
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .examples-headline .line-white { color: var(--text-white); display: block; }
    .examples-headline .line-cyan  { color: var(--cyan); display: block; }

    .examples-subhead {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-gray);
      max-width: 540px;
      margin: 0 auto 56px;
    }

    .example-card {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      overflow: hidden;
      text-align: left;
    }

    .example-left {
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .example-badge {
      display: inline-flex;
      align-items: center;
      background: rgba(0, 180, 255, 0.12);
      border: 1px solid rgba(0, 180, 255, 0.35);
      color: var(--cyan);
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 24px;
      width: fit-content;
    }

    .example-title {
      font-family: var(--font-ui);
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 800;
      color: var(--text-white);
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .example-desc {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-gray);
    }

    .example-right {
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-left: 1px solid rgba(255,255,255,0.07);
    }

    .example-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: #161616;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 4px;
      overflow: hidden;
    }

    .example-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
    }

    .example-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 16px;
      background: #111;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.05);
    }

    .example-row-icon {
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .example-row-title {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 4px;
    }

    .example-row-desc {
      font-size: 12px;
      line-height: 1.6;
      color: var(--text-gray);
    }

    /* ─── PRICING ────────────────────────────── */
    .pricing-section {
      padding: 90px 60px 100px;
      text-align: center;
    }

    .pricing-headline {
      font-family: var(--font-ui);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .pricing-headline .white { color: var(--text-white); }
    .pricing-headline .cyan  { color: var(--cyan); }

    .pricing-subhead {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-gray);
      max-width: 520px;
      margin: 0 auto 56px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
      align-items: stretch;
    }

    .pricing-card {
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.08);
      padding: 36px 32px 40px;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .pricing-card:first-child { border-radius: 16px 0 0 16px; }
    .pricing-card:last-child  { border-radius: 0 16px 16px 0; }

    .pricing-card.featured {
      border-color: var(--orange);
      border-width: 2px;
      background: #0f0d0b;
      position: relative;
      z-index: 1;
      margin: -2px 0;
      border-radius: 16px;
    }

    .pricing-tier {
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .pricing-card.featured .pricing-tier { color: var(--orange); }

    .pricing-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--orange);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 50px;
      margin-bottom: 16px;
      width: fit-content;
    }

    .pricing-name {
      font-family: var(--font-ui);
      font-size: 32px;
      font-weight: 800;
      color: var(--text-white);
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }

    .pricing-desc {
      font-size: 13px;
      line-height: 1.65;
      color: var(--text-gray);
      margin-bottom: 24px;
      min-height: 56px;
    }

    .pricing-price {
      font-family: var(--font-ui);
      font-size: 48px;
      font-weight: 800;
      color: var(--text-white);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 6px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .pricing-price[onclick] {
      cursor: pointer;
    }

    .pricing-price[onclick]:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .pricing-price[onclick]:hover .amount {
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .pricing-price .amount { color: var(--orange); }
    .pricing-price .period {
      font-size: 16px;
      font-weight: 500;
      color: var(--text-gray);
      letter-spacing: 0;
    }

    .pricing-price-sub {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .pricing-talk {
      font-family: var(--font-display);
      font-size: 36px;
      color: rgba(255,255,255,0.12);
      line-height: 1;
      margin-top: 18px;
      margin-bottom: 28px;
      white-space: nowrap;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
      flex-grow: 1;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      line-height: 1.5;
      color: rgba(255,255,255,0.75);
    }

    .pricing-features li.muted { color: var(--text-muted); }

    .pricing-features li .check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-size: 9px;
      color: rgba(255,255,255,0.4);
    }

    .pricing-card.featured .pricing-features li .check {
      background: rgba(255,107,43,0.15);
      border-color: rgba(255,107,43,0.4);
      color: var(--orange);
    }

    .pricing-cta-primary {
      display: block;
      text-align: center;
      background: var(--orange);
      color: #fff;
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-decoration: none;
      padding: 15px 24px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 20px rgba(255,107,43,0.3);
      margin-top: auto;
    }

    .pricing-cta-primary:hover { background: #ff7d42; transform: translateY(-1px); }

    .pricing-cta-ghost {
      display: block;
      text-align: center;
      color: var(--text-gray);
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      padding: 14px 24px;
      transition: color 0.2s;
      margin-top: auto;
    }

    .pricing-cta-ghost:hover { color: var(--text-white); }

    .pricing-cta-cyan {
      display: block;
      text-align: center;
      color: var(--cyan);
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      padding: 14px 24px;
      border-top: 1px solid rgba(255,255,255,0.07);
      transition: color 0.2s;
      margin-top: auto;
    }

    .pricing-cta-cyan:hover { color: #33c6ff; }

    /* ─── ENTERPRISE BANNER ──────────────────── */
    .enterprise-banner {
      max-width: 1100px;
      margin: 0 auto 28px;
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 22px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .enterprise-banner-title {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 700;
      color: var(--text-white);
      margin-bottom: 4px;
    }

    .enterprise-banner-sub {
      font-size: 13px;
      color: var(--text-gray);
    }

    .enterprise-banner-link {
      font-family: var(--font-ui);
      font-size: 14px;
      font-weight: 600;
      color: var(--cyan);
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      flex-shrink: 0;
    }

    .enterprise-banner-link:hover { color: #33c6ff; }

    /* ─── CTA SECTION ────────────────────────── */
    .cta-section {
      padding: 0 60px 100px;
    }

    .cta-card {
      max-width: 1100px;
      margin: 0 auto;
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 20px;
      padding: 80px 60px;
      text-align: center;
    }

    .cta-headline {
      font-family: var(--font-ui);
      font-size: clamp(30px, 4vw, 52px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .cta-headline .white { color: var(--text-white); display: block; margin-bottom: 8px; }
    .cta-headline .cyan  { color: var(--cyan); display: block; }

    .cta-body {
      font-size: 16px;
      line-height: 1.7;
      color: var(--text-gray);
      max-width: 480px;
      margin: 0 auto 40px;
    }

    .cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .btn-outline-dark {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      color: var(--text-white);
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      padding: 15px 28px;
      border-radius: 8px;
      transition: background 0.2s, border-color 0.2s;
    }

    .btn-outline-dark:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(255,255,255,0.25);
    }

    .cta-microcopy {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* ─── FOOTER ─────────────────────────────── */
    footer {
      border-top: 1px solid rgba(255,255,255,0.07);
      background: #080808;
      padding: 64px 80px 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto 56px;
    }

    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      text-decoration: none;
    }

    .footer-brand-logo img {
      width: 34px;
      height: 34px;
      border-radius: 8px;
    }

    .footer-brand-name {
      font-family: var(--font-ui);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: var(--text-white);
    }

    .footer-tagline {
      font-size: 13px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 240px;
    }

    .footer-col-label {
      font-family: var(--font-ui);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-copy {
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-legal a {
      color: var(--cyan);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-legal a:hover { color: #33c6ff; }

    /* ─── HAMBURGER BUTTON ───────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-white);
      border-radius: 2px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .nav-hamburger[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-hamburger[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }
    .nav-hamburger[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ─── RESPONSIVE ─────────────────────────── */

    /* Tablet — 1024px */
    @media (max-width: 1024px) {
      .why-section {
        padding: 80px 40px;
        gap: 48px;
      }
      .tools-section {
        padding: 80px 40px 90px;
      }
      .how-section {
        padding: 80px 40px 90px;
      }
      .examples-section {
        padding: 80px 40px 90px;
      }
      .pricing-section {
        padding: 80px 40px 90px;
      }
      .cta-section {
        padding: 0 40px 80px;
      }
      .cta-card {
        padding: 60px 40px;
      }
      footer {
        padding: 56px 40px 32px;
      }
      .stats-bar {
        gap: 40px;
        flex-wrap: wrap;
        padding: 20px 40px;
      }
    }

    /* Mobile — 768px */
    @media (max-width: 768px) {
      /* Nav */
      nav {
        padding: 0 20px;
      }

      .nav-buttons { display: none; }

      .nav-hamburger { display: flex; }

      .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 12px 0 20px;
        z-index: 99;
      }

      .nav-links.open { display: flex; }

      .nav-links li a {
        display: block;
        padding: 14px 24px;
        font-size: 14px;
        letter-spacing: 0.08em;
        color: var(--text-gray);
      }

      .nav-links li a:hover { color: var(--text-white); }

      /* Mobile auth entries (Login / Start Free / Account / Logout) */
      .nav-links .nav-mobile-auth { display: block; }
      .nav-links .nav-mobile-auth.is-hidden { display: none; }
      .nav-links .nav-mobile-auth { border-top: 1px solid rgba(255,255,255,0.06); }
      .nav-links .nav-mobile-auth:first-of-type { margin-top: 6px; }
      .nav-links .nav-mobile-login a,
      .nav-links .nav-mobile-account a {
        color: var(--text-white);
        font-weight: 600;
      }
      .nav-links .nav-mobile-signup a {
        color: var(--orange, #FF6B2B);
        font-weight: 700;
      }
      .nav-links .nav-mobile-logout a { color: var(--text-gray); }

      /* Hero */
      .hero {
        padding: 100px 24px 70px;
      }

      .hero-headline {
        font-size: clamp(60px, 16vw, 90px);
      }

      .hero-badge {
        font-size: 10px;
        letter-spacing: 0.08em;
        padding: 7px 12px;
        max-width: 100%;
      }

      .hero-ctas {
        flex-direction: column;
        gap: 16px;
        width: 100%;
      }

      .btn-primary, .btn-ghost {
        width: 100%;
        justify-content: center;
      }

      /* Demo */
      .demo-section { padding: 0 20px 40px; }

      /* Stats */
      .stats-bar {
        gap: 20px 40px;
        padding: 20px 24px;
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .stat-item { min-width: calc(50% - 20px); }

      /* Why */
      .why-section {
        grid-template-columns: 1fr;
        padding: 60px 24px 70px;
        gap: 40px;
      }

      /* How */
      .how-section { padding: 60px 24px 70px; }

      .how-grid-wrap {
        grid-template-columns: 1fr;
      }

      .how-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
      }

      .how-card:last-child { border-bottom: none; }

      /* Tools */
      .tools-section {
        padding: 60px 24px 70px;
      }

      .tools-layout {
        grid-template-columns: 1fr;
      }

      /* Examples */
      .examples-section {
        padding: 60px 24px 70px;
      }

      .example-card {
        grid-template-columns: 1fr;
      }

      .example-right {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.07);
        padding: 24px;
      }

      .example-left { padding: 32px 24px; }

      /* Pricing */
      .pricing-section { padding: 60px 24px 70px; }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 16px;
        margin-left: auto;
        margin-right: auto;
      }

      .pricing-card:first-child { border-radius: 16px; }
      .pricing-card:last-child  { border-radius: 16px; }

      .pricing-card.featured {
        margin: 0;
        order: -1;
      }

      /* Enterprise banner */
      .enterprise-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      /* Enterprise banner wrapper */
      .enterprise-wrapper {
        padding: 0 24px !important;
      }

      /* CTA */
      .cta-section { padding: 0 24px 70px; }

      .cta-card {
        padding: 48px 24px;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .btn-outline-dark {
        justify-content: center;
        width: 100%;
      }

      /* Footer */
      footer { padding: 48px 24px 28px; }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
    }

    /* Small mobile — 480px */
    @media (max-width: 480px) {
      .hero-headline { font-size: clamp(52px, 18vw, 72px); }

      .stat-item { min-width: 100%; }

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

      .hero-video-glow { width: 340px; height: 300px; }
    }

    /* ─── OUR STORY (MAGAZINE) ──────────────────── */
    .story-section {
      padding: 100px 60px 110px;
      background: #0a0a0a;
      position: relative;
    }

    .story-container { max-width: 1100px; margin: 0 auto; }

    .story-eyebrow-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .story-headline {
      font-family: var(--font-display);
      font-size: clamp(64px, 9vw, 120px);
      font-weight: 400;
      letter-spacing: 0.01em;
      line-height: 0.92;
      text-align: center;
      color: var(--text-white);
    }

    .story-deck {
      font-family: var(--font-ui);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-align: center;
      color: var(--cyan);
      margin-top: 18px;
    }

    .story-byline {
      font-family: var(--font-body);
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-align: center;
      color: var(--text-gray);
      margin-top: 10px;
      margin-bottom: 64px;
    }

    .story-article {
      max-width: 720px;
      margin: 0 auto;
      font-family: 'Georgia', 'Times New Roman', serif;
      color: #d6d6d6;
      font-size: 17px;
      line-height: 1.78;
    }

    .story-portrait {
      float: right;
      width: 240px;
      margin: 8px 0 28px 40px;
      shape-outside: margin-box;
    }

    .story-portrait img {
      width: 100%;
      display: block;
      border-radius: 4px;
      border: 1px solid rgba(255,255,255,0.08);
      filter: grayscale(0.15) contrast(1.02);
    }

    .story-portrait figcaption {
      margin-top: 14px;
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-gray);
      line-height: 1.55;
    }

    .story-portrait figcaption strong {
      display: block;
      color: var(--text-white);
      font-weight: 700;
      margin-bottom: 3px;
    }

    .story-body p { margin-bottom: 22px; }

    .story-dropcap {
      float: left;
      font-family: var(--font-display);
      font-size: 82px;
      line-height: 0.82;
      color: var(--orange);
      padding: 8px 14px 0 0;
    }

    .story-divider {
      border: none;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
      margin: 44px auto;
      max-width: 220px;
    }

    .story-pullquote {
      font-family: var(--font-ui);
      font-size: 22px;
      font-weight: 600;
      line-height: 1.45;
      color: var(--text-white);
      border-left: 3px solid var(--orange);
      padding: 6px 0 6px 24px;
      margin: 36px 0;
      font-style: italic;
    }

    .story-bio {
      margin: 60px auto 0;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
      max-width: 720px;
      font-family: var(--font-body);
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-gray);
      font-style: italic;
      text-align: center;
    }

    /* Expand / Collapse */
    .story-section:not(.story-expanded) .story-collapsible { display: none; }
    .story-section.story-expanded .story-fade-wrap { display: none; }

    .story-fade-wrap {
      position: relative;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }

    .story-fade {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 100%;
      height: 140px;
      background: linear-gradient(to bottom, rgba(10,10,10,0) 0%, rgba(10,10,10,0.95) 80%, #0a0a0a 100%);
      pointer-events: none;
    }

    .story-expand-btn,
    .story-collapse-btn {
      font-family: var(--font-ui);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-white);
      background: transparent;
      border: 1px solid rgba(255,255,255,0.25);
      padding: 14px 30px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    }

    .story-expand-btn:hover,
    .story-collapse-btn:hover {
      background: var(--orange);
      border-color: var(--orange);
      color: #fff;
      transform: translateY(-1px);
    }

    .story-collapse-wrap {
      text-align: center;
      margin-top: 32px;
    }

    @media (max-width: 768px) {
      .story-section { padding: 70px 24px 80px; }
      .story-article { font-size: 16px; line-height: 1.72; }
      .story-byline { margin-bottom: 44px; }
      .story-portrait {
        float: none;
        width: 180px;
        margin: 0 auto 32px;
        text-align: center;
      }
      .story-portrait figcaption { text-align: center; }
      .story-dropcap { font-size: 64px; padding: 6px 10px 0 0; }
      .story-pullquote { font-size: 18px; padding-left: 18px; margin: 28px 0; }
      .story-divider { margin: 34px auto; }
      .story-expand-btn,
      .story-collapse-btn { font-size: 12px; padding: 12px 22px; }
      .story-fade { height: 100px; }
    }

    /* ─── AiR CHANNELS LIVE MAP (under hero) ─────── */
    .airmap-section {
      position: relative;
      padding: 64px 24px 40px;
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }
    .airmap-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-ui);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #7ce8ff;
      padding: 6px 12px;
      border: 1px solid rgba(0, 234, 255, 0.4);
      border-radius: 999px;
      background: rgba(0, 234, 255, 0.06);
      margin-bottom: 16px;
    }
    .airmap-eyebrow::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #00ffe7;
      box-shadow: 0 0 10px #00ffe7;
      animation: airmapPulse 2s ease-out infinite;
    }
    @keyframes airmapPulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .airmap-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 44px);
      letter-spacing: 0.02em;
      color: var(--text-white);
      margin-bottom: 8px;
    }
    .airmap-subtitle {
      font-size: 15px;
      color: var(--text-gray);
      max-width: 620px;
      margin: 0 auto 24px;
    }

    .airmap-card {
      position: relative;
      border: 1px solid rgba(0, 234, 255, 0.35);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(0, 212, 255, 0.15), inset 0 0 30px rgba(0, 212, 255, 0.05);
    }
    .airmap-card::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: 16px;
      pointer-events: none;
      box-shadow: inset 0 0 80px rgba(0, 170, 255, 0.12);
    }
    .airmap-card::before {
      content: '';
      position: absolute; inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(0, 234, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 32px,
        linear-gradient(90deg, rgba(0, 234, 255, 0.045) 1px, transparent 1px) 0 0 / 32px 100%,
        radial-gradient(ellipse at center, transparent 55%, rgba(0, 12, 24, 0.55) 100%);
      mix-blend-mode: screen;
      z-index: 400;
      border-radius: 16px;
    }
    #airInlineMap { width: 100%; height: 380px; background: #020308; }
    #airInlineMap .map-base-pane {
      filter: url(#airTronify) brightness(1.25) contrast(1.55) saturate(1.15);
    }
    #airInlineMap .map-labels-pane {
      filter: url(#airTronifyLabels) brightness(1.55) contrast(1.25);
      mix-blend-mode: screen;
    }
    .airmap-card .leaflet-container { background: #020308; outline: none; font-family: inherit; }
    .airmap-card .leaflet-control-attribution { display: none !important; }
    .airmap-card .leaflet-control-zoom a {
      background: rgba(0, 20, 30, 0.9) !important;
      color: #7ce8ff !important;
      border: 1px solid rgba(0, 234, 255, 0.5) !important;
      text-shadow: 0 0 6px rgba(0, 234, 255, 0.6);
    }

    .air-user-dot {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: #00ffe7;
      border: 2px solid #fff;
      box-shadow: 0 0 0 4px rgba(0, 255, 231, 0.25), 0 0 18px rgba(0, 255, 231, 0.9);
      animation: airUserPulse 2s ease-out infinite;
    }
    @keyframes airUserPulse {
      0% { box-shadow: 0 0 0 0 rgba(0, 255, 231, 0.7), 0 0 18px rgba(0, 255, 231, 0.9); }
      70% { box-shadow: 0 0 0 18px rgba(0, 255, 231, 0), 0 0 18px rgba(0, 255, 231, 0.9); }
      100% { box-shadow: 0 0 0 0 rgba(0, 255, 231, 0), 0 0 18px rgba(0, 255, 231, 0.9); }
    }
    .air-channel-tag {
      width: 40px; height: 40px;
      border-radius: 8px;
      border: 2px solid #00eaff;
      background: #020308;
      box-shadow: 0 0 14px rgba(0, 234, 255, 0.85);
      overflow: hidden;
      cursor: pointer;
    }
    .air-channel-tag img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .air-channel-tag .ph {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      color: #00eaff; font-weight: 800; font-size: 16px;
    }
    .airmap-card .leaflet-popup-content-wrapper {
      background: rgba(5, 10, 20, 0.96);
      color: #fff;
      border: 1px solid rgba(0, 234, 255, 0.5);
      border-radius: 10px;
      box-shadow: 0 0 24px rgba(0, 212, 255, 0.3);
    }
    .airmap-card .leaflet-popup-tip {
      background: rgba(5, 10, 20, 0.96) !important;
      border: 1px solid rgba(0, 234, 255, 0.5);
    }
    .airmap-card .leaflet-popup-content { margin: 10px 12px; font-size: 13px; }
    .airmap-popup-img { width: 220px; max-width: 100%; border-radius: 6px; display: block; margin-bottom: 6px; }
    .airmap-popup-link {
      display: inline-block;
      margin-top: 8px;
      padding: 6px 14px;
      background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
      color: #001018;
      text-decoration: none;
      border-radius: 8px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .air-gps-chip {
      position: absolute;
      top: 10px; left: 10px;
      z-index: 500;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid rgba(0, 234, 255, 0.4);
      background: rgba(5, 10, 20, 0.78);
      color: var(--text-gray);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.4px;
      display: flex;
      align-items: center;
      gap: 6px;
      pointer-events: none;
    }
    .air-gps-chip .gd {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--text-muted);
      box-shadow: 0 0 6px var(--text-muted);
    }
    .air-gps-chip.good .gd { background: #00ffa6; box-shadow: 0 0 6px #00ffa6; }
    .air-gps-chip.poor .gd { background: #ffb84d; box-shadow: 0 0 6px #ffb84d; }
    .air-gps-chip.bad .gd { background: #ff6680; box-shadow: 0 0 6px #ff6680; }

    .air-recenter-btn,
    .air-expand-btn {
      position: absolute;
      z-index: 500;
      border: 1px solid rgba(0, 234, 255, 0.45);
      background: rgba(5, 10, 20, 0.85);
      color: #00eaff;
      cursor: pointer;
      box-shadow: 0 0 14px rgba(0, 234, 255, 0.3);
      font-family: inherit;
    }
    .air-recenter-btn {
      bottom: 12px; right: 12px;
      width: 40px; height: 40px;
      border-radius: 50%;
      font-size: 18px;
      display: flex; align-items: center; justify-content: center;
    }
    .air-expand-btn {
      bottom: 12px; left: 12px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.6px;
      text-transform: uppercase;
    }
    .air-recenter-btn:active, .air-expand-btn:active { transform: scale(0.96); }

    .airmap-stats {
      display: flex; gap: 10px; margin: 16px 0 18px;
    }
    .airmap-stat {
      flex: 1;
      background: rgba(20, 20, 20, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 10px 12px;
      text-align: center;
    }
    .airmap-stat .l {
      font-size: 10px;
      color: var(--text-gray);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .airmap-stat .v {
      font-family: var(--font-display);
      font-size: 22px;
      color: #fff;
      letter-spacing: 0.04em;
    }

    .airmap-actions {
      display: flex; gap: 12px; flex-wrap: wrap;
    }
    .airmap-actions .btn {
      flex: 1;
      min-width: 140px;
      padding: 12px 18px;
      border-radius: 10px;
      font-family: var(--font-ui);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid rgba(0, 234, 255, 0.4);
      background: rgba(5, 10, 20, 0.85);
      color: #00eaff;
      transition: background 0.18s, transform 0.12s;
    }
    .airmap-actions .btn:hover { background: rgba(0, 234, 255, 0.12); }
    .airmap-actions .btn.primary {
      background: var(--orange);
      color: #0a0a0a;
      border-color: var(--orange);
    }
    .airmap-actions .btn.primary:hover { background: #ff8453; }

    /* Full-screen Flare Map modal */
    .airmap-modal {
      display: none;
      position: fixed; inset: 0;
      z-index: 9000;
      background: rgba(0, 0, 0, 0.95);
    }
    .airmap-modal.active { display: flex; flex-direction: column; }
    .airmap-modal-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(0, 234, 255, 0.25);
      background: rgba(5, 10, 20, 0.92);
    }
    .airmap-modal-title {
      font-family: var(--font-display);
      font-size: 22px;
      letter-spacing: 0.06em;
      color: #00eaff;
    }
    .airmap-modal-close {
      background: transparent;
      border: 1px solid rgba(0, 234, 255, 0.45);
      color: #00eaff;
      width: 38px; height: 38px;
      border-radius: 50%;
      font-size: 22px;
      cursor: pointer;
      line-height: 1;
    }
    #airFlareMap { flex: 1; width: 100%; background: #020308; }
    #airFlareMap .map-base-pane { filter: url(#airTronify) brightness(1.25) contrast(1.55) saturate(1.15); }
    #airFlareMap .map-labels-pane { filter: url(#airTronifyLabels) brightness(1.55) contrast(1.25); mix-blend-mode: screen; }

    @media (max-width: 640px) {
      .airmap-section { padding: 48px 16px 28px; }
      #airInlineMap { height: 320px; }
      .airmap-actions .btn { font-size: 11px; padding: 11px 14px; }
    }

    /* ─── Responsive line-break utilities ──────── */
    .nowrap { white-space: nowrap; }

    /* Show these <br> tags only on mobile (≤768px).
       On desktop the words flow inline naturally. */
    @media (min-width: 769px) {
      .br-mobile { display: none; }
    }

    /* Show these <br> tags only on desktop. */
    @media (max-width: 768px) {
      .br-desktop { display: none; }
    }
