    /* ═══════════════════════════════════════
       TOKENS
    ═══════════════════════════════════════ */
    :root {
      --bg:         #080c14;
      --bg-2:       #0e1520;
      --bg-3:       #141e2e;
      --border:     #1e2d42;
      --border-2:   #2a3f5c;

      --text-1:  #eef2ff;
      --text-2:  #7b92b2;
      --text-3:  #3d5270;

      --pulse:   #ff4d1c;
      --pulse-2: #ff7a45;
      --green:   #1de685;
      --amber:   #f5bc30;
      --blue:    #3b9eff;

      --font-display: 'Bebas Neue', sans-serif;
      --font-body:    'Instrument Sans', sans-serif;

      --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text-1);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════
       GRAIN TEXTURE OVERLAY
    ═══════════════════════════════════════ */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-size: 200px;
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ═══════════════════════════════════════
       NAV
    ═══════════════════════════════════════ */
    .fp-nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(20px, 5vw, 60px);
      height: 64px;
      background: rgba(8,12,20,0.9);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

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

    .fp-logo-wordmark {
      height: 26px;
      width: auto;
      max-width: min(220px, 52vw);
      object-fit: contain;
      object-position: left center;
      display: block;
    }

    @media (max-width: 575.98px) {
      .fp-logo-wordmark {
        height: 22px;
        max-width: min(200px, 58vw);
      }
    }

    .fp-nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .fp-nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-2);
      text-decoration: none;
      transition: color 0.2s;
    }
    .fp-nav-links a:hover { color: var(--text-1); }
    .fp-nav-links a.active { color: var(--pulse); }

    .fp-nav-cta {
      background: var(--pulse);
      color: white;
      border: none;
      border-radius: 8px;
      padding: 8px 20px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .fp-nav-cta:hover { background: var(--pulse-2); color: white; transform: translateY(-1px); }

    /* ═══════════════════════════════════════
       HERO
    ═══════════════════════════════════════ */
    .hero {
      padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Big radial glow behind hero */
    .hero::before {
      content: '';
      position: absolute;
      top: -40%;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(255,77,28,0.12) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,77,28,0.1);
      border: 1px solid rgba(255,77,28,0.3);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--pulse-2);
      margin-bottom: 28px;
      animation: fadeUp 0.6s 0.1s var(--ease-out-expo) both;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(72px, 11vw, 160px);
      line-height: 0.9;
      letter-spacing: 2px;
      color: var(--text-1);
      animation: fadeUp 0.6s 0.2s var(--ease-out-expo) both;
      position: relative;
    }

    .hero-title .accent {
      color: var(--pulse);
      display: block;
    }

    /* Ruled lines behind the big text */
    .hero-title::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: min(900px, 95vw);
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .hero-sub {
      margin-top: 28px;
      font-size: clamp(16px, 2vw, 20px);
      color: var(--text-2);
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.65;
      animation: fadeUp 0.6s 0.3s var(--ease-out-expo) both;
    }

    /* Billing toggle */
    .billing-toggle {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 6px;
      margin-top: 40px;
      animation: fadeUp 0.6s 0.4s var(--ease-out-expo) both;
    }

    .toggle-option {
      padding: 7px 20px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      color: var(--text-3);
      user-select: none;
    }
    .toggle-option.active {
      background: var(--pulse);
      color: white;
    }

    .save-badge {
      font-size: 11px;
      font-weight: 700;
      background: rgba(29,230,133,0.15);
      color: var(--green);
      border: 1px solid rgba(29,230,133,0.3);
      border-radius: 100px;
      padding: 2px 8px;
      margin-left: -6px;
    }

    /* ═══════════════════════════════════════
       CONSUMER PLANS
    ═══════════════════════════════════════ */
    .section-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 58px);
      letter-spacing: 1px;
      color: var(--text-1);
      margin-bottom: 8px;
    }

    .section-sub {
      font-size: 16px;
      color: var(--text-2);
      margin-bottom: 48px;
      max-width: 520px;
    }

    /* ── Consumer Cards ── */
    .plan-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 36px 32px;
      position: relative;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      height: 100%;
      animation: fadeUp 0.7s var(--ease-out-expo) both;
    }

    .plan-card:hover {
      border-color: var(--border-2);
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.4);
    }

    .plan-card.featured {
      background: linear-gradient(145deg, #0f1a2e, #111f38);
      border-color: var(--pulse);
      box-shadow: 0 0 0 1px var(--pulse), 0 24px 60px rgba(255,77,28,0.15);
    }

    .plan-card.featured:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 0 1px var(--pulse-2), 0 32px 80px rgba(255,77,28,0.25);
    }

    .plan-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--pulse);
      color: white;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 14px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .plan-name {
      font-family: var(--font-display);
      font-size: 28px;
      letter-spacing: 1px;
      color: var(--text-1);
      margin-bottom: 6px;
    }

    .plan-tagline {
      font-size: 13px;
      color: var(--text-2);
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
      margin-bottom: 4px;
    }

    .price-currency {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-2);
      margin-bottom: 4px;
    }

    .price-amount {
      font-family: var(--font-display);
      font-size: 64px;
      line-height: 1;
      color: var(--text-1);
      letter-spacing: -1px;
    }

    .price-period {
      font-size: 14px;
      color: var(--text-3);
    }

    .price-annual-note {
      font-size: 12.5px;
      color: var(--green);
      margin-bottom: 28px;
      min-height: 18px;
    }

    .plan-divider {
      height: 1px;
      background: var(--border);
      margin: 24px 0;
    }

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

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.4;
    }

    .plan-features li.included { color: var(--text-1); }
    .plan-features li.excluded { color: var(--text-3); text-decoration: line-through; text-decoration-color: var(--text-3); }

    .feat-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .feat-icon.yes { background: rgba(29,230,133,0.15); color: var(--green); }
    .feat-icon.no  { background: rgba(61,82,112,0.3);   color: var(--text-3); }
    .feat-icon.partial { background: rgba(245,188,48,0.15); color: var(--amber); }

    .plan-btn {
      display: block;
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 700;
      text-align: center;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      border: none;
    }

    .plan-btn-primary {
      background: var(--pulse);
      color: white;
    }
    .plan-btn-primary:hover { background: var(--pulse-2); color: white; transform: translateY(-1px); }

    .plan-btn-outline {
      background: transparent;
      color: var(--text-1);
      border: 1px solid var(--border-2);
    }
    .plan-btn-outline:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--text-3);
      color: var(--text-1);
    }

    /* ═══════════════════════════════════════
       B2B SECTION
    ═══════════════════════════════════════ */
    .b2b-section {
      padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
      position: relative;
    }

    /* Diagonal accent line */
    .b2b-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border) 30%, var(--border) 70%, transparent 100%);
    }

    /* B2B tier card — horizontal on desktop */
    .b2b-card {
      background: var(--bg-2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 48px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
      margin-bottom: 20px;
    }

    .b2b-card:hover {
      border-color: var(--border-2);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .b2b-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      border-radius: 4px 0 0 4px;
    }

    .b2b-card.station::before { background: var(--amber); }
    .b2b-card.fleet::before   { background: var(--blue); }
    .b2b-card.api::before     { background: var(--green); }

    .b2b-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
      flex-shrink: 0;
    }
    .b2b-card.station .b2b-card-icon { background: rgba(245,188,48,0.12); }
    .b2b-card.fleet   .b2b-card-icon { background: rgba(59,158,255,0.12); }
    .b2b-card.api     .b2b-card-icon { background: rgba(29,230,133,0.12); }

    .b2b-card-name {
      font-family: var(--font-display);
      font-size: 30px;
      letter-spacing: 1px;
      color: var(--text-1);
      margin-bottom: 6px;
    }

    .b2b-card-tagline {
      font-size: 14px;
      color: var(--text-2);
      margin-bottom: 20px;
      line-height: 1.55;
      max-width: 420px;
    }

    .b2b-price-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 24px;
    }

    .b2b-price-chip {
      background: var(--bg-3);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 18px;
    }

    .b2b-chip-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-3);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .b2b-chip-price {
      font-family: var(--font-display);
      font-size: 22px;
      color: var(--text-1);
      letter-spacing: 0.5px;
    }

    .b2b-features-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .b2b-feature-tag {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 5px 12px;
      font-size: 12.5px;
      color: var(--text-2);
    }
    .b2b-feature-tag i { font-size: 12px; color: var(--text-3); }

    .b2b-card-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .b2b-btn-primary {
      padding: 12px 28px;
      background: var(--pulse);
      color: white;
      border: none;
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .b2b-btn-primary:hover { background: var(--pulse-2); color: white; transform: translateY(-1px); }

    .b2b-btn-ghost {
      padding: 12px 24px;
      background: transparent;
      color: var(--text-2);
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .b2b-btn-ghost:hover {
      border-color: var(--border-2);
      color: var(--text-1);
    }

    /* B2B ROI callout */
    .roi-callout {
      background: linear-gradient(135deg, rgba(59,158,255,0.08), rgba(29,230,133,0.06));
      border: 1px solid rgba(59,158,255,0.2);
      border-radius: 16px;
      padding: 28px 32px;
      margin-top: 12px;
    }

    .roi-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
    }

    .roi-text {
      font-size: 15px;
      color: var(--text-2);
      line-height: 1.7;
    }

    .roi-text strong { color: var(--text-1); }
    .roi-text .roi-num { color: var(--green); font-weight: 700; }

    /* ═══════════════════════════════════════
       COMPARISON TABLE
    ═══════════════════════════════════════ */
    .compare-section {
      padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 60px);
      background: var(--bg-2);
      position: relative;
    }

    .compare-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 14px;
    }

    .compare-table th {
      padding: 16px 20px;
      text-align: center;
      font-family: var(--font-display);
      font-size: 18px;
      letter-spacing: 1px;
      color: var(--text-1);
      border-bottom: 1px solid var(--border);
    }

    .compare-table th:first-child {
      text-align: left;
      font-size: 13px;
      font-family: var(--font-body);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-3);
    }

    .compare-table th.featured-col {
      background: rgba(255,77,28,0.06);
      border-radius: 14px 14px 0 0;
      border-left: 1px solid rgba(255,77,28,0.3);
      border-right: 1px solid rgba(255,77,28,0.3);
      border-top: 1px solid rgba(255,77,28,0.3);
      color: var(--pulse);
    }

    .compare-table td {
      padding: 14px 20px;
      text-align: center;
      color: var(--text-2);
      border-bottom: 1px solid rgba(30,45,66,0.5);
    }

    .compare-table td:first-child {
      text-align: left;
      color: var(--text-2);
      font-size: 13.5px;
    }

    .compare-table td.featured-col {
      background: rgba(255,77,28,0.04);
      border-left: 1px solid rgba(255,77,28,0.15);
      border-right: 1px solid rgba(255,77,28,0.15);
    }

    .compare-table tr:last-child td.featured-col {
      border-radius: 0 0 14px 14px;
      border-bottom: 1px solid rgba(255,77,28,0.3);
    }

    .compare-table .check { color: var(--green); font-size: 16px; }
    .compare-table .cross { color: var(--text-3); font-size: 14px; }
    .compare-table .partial { color: var(--amber); font-size: 13px; font-weight: 600; }

    .compare-table .cat-row td {
      background: var(--bg-3);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-3);
      border-bottom: 1px solid var(--border);
      padding: 10px 20px;
    }
    .compare-table .cat-row td.featured-col {
      background: rgba(255,77,28,0.06);
    }

    /* ═══════════════════════════════════════
       COMMITMENT STRIP
    ═══════════════════════════════════════ */
    .commitment-strip {
      padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
      position: relative;
    }

    .commitment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
    }

    .commitment-item {
      background: var(--bg);
      padding: 32px 28px;
      transition: background 0.2s;
    }
    .commitment-item:hover { background: var(--bg-2); }

    .commitment-icon {
      font-size: 26px;
      margin-bottom: 14px;
      display: block;
    }

    .commitment-title {
      font-family: var(--font-display);
      font-size: 20px;
      letter-spacing: 0.5px;
      color: var(--text-1);
      margin-bottom: 8px;
    }

    .commitment-text {
      font-size: 13.5px;
      color: var(--text-2);
      line-height: 1.6;
    }

    /* ═══════════════════════════════════════
       FAQ
    ═══════════════════════════════════════ */
    .faq-section {
      padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 60px);
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 24px 0;
    }

    .faq-q {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-1);
      list-style: none;
      user-select: none;
    }

    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+';
      font-size: 22px;
      color: var(--pulse);
      flex-shrink: 0;
      line-height: 1;
      transition: transform 0.2s;
    }
    details[open] .faq-q::after { transform: rotate(45deg); }

    .faq-a {
      margin-top: 14px;
      font-size: 14.5px;
      color: var(--text-2);
      line-height: 1.75;
    }

    /* ═══════════════════════════════════════
       CTA BANNER
    ═══════════════════════════════════════ */
    .cta-banner {
      margin: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
      background: linear-gradient(135deg, #1a0d08, #200f0a);
      border: 1px solid rgba(255,77,28,0.3);
      border-radius: 24px;
      padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 80px);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -60%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(255,77,28,0.15), transparent 70%);
      pointer-events: none;
    }

    .cta-banner-title {
      font-family: var(--font-display);
      font-size: clamp(42px, 6vw, 80px);
      letter-spacing: 1px;
      color: var(--text-1);
      margin-bottom: 16px;
      position: relative;
    }

    .cta-banner-sub {
      font-size: 16px;
      color: var(--text-2);
      max-width: 500px;
      margin: 0 auto 36px;
      line-height: 1.65;
      position: relative;
    }

    .cta-banner-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
    }

    .cta-btn-primary {
      background: var(--pulse);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 15px 36px;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .cta-btn-primary:hover { background: var(--pulse-2); color: white; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,77,28,0.4); }

    .cta-btn-secondary {
      background: rgba(255,255,255,0.06);
      color: var(--text-1);
      border: 1px solid var(--border-2);
      border-radius: 12px;
      padding: 15px 32px;
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }
    .cta-btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--text-1); }

    /* ═══════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════ */
    .fp-footer {
      border-top: 1px solid var(--border);
      padding: 32px clamp(20px, 5vw, 60px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .fp-footer-copy {
      font-size: 13px;
      color: var(--text-3);
    }

    .fp-footer-links {
      display: flex;
      gap: 24px;
    }

    .fp-footer-links a {
      font-size: 13px;
      color: var(--text-3);
      text-decoration: none;
      transition: color 0.2s;
    }
    .fp-footer-links a:hover { color: var(--text-2); }

    /* ═══════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .animate-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
    }
    .animate-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delays */
    .delay-1 { transition-delay: 0.05s; }
    .delay-2 { transition-delay: 0.12s; }
    .delay-3 { transition-delay: 0.20s; }
    .delay-4 { transition-delay: 0.28s; }

    /* ═══════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════ */
    @media (max-width: 768px) {
      .fp-nav-links { display: none; }
      .plan-card { padding: 28px 22px; }
      .b2b-card  { padding: 28px 24px; }
      .compare-table { font-size: 12px; }
      .compare-table th, .compare-table td { padding: 10px 12px; }
    }

    /* Pay status banner (pricing checkout feedback) */
    .fp-pay-banner {
      display: none;
      margin: 0 clamp(20px, 5vw, 60px) 0;
      padding: 12px 18px;
      border-radius: 10px;
      border: 1px solid var(--border);
      background: var(--bg-2);
      font-size: 14px;
      color: var(--text-2);
      align-items: center;
      gap: 10px;
    }
    .fp-pay-banner.visible { display: flex; }
    .fp-pay-banner.success { border-color: rgba(29,230,133,0.35); background: rgba(29,230,133,0.08); color: var(--text-1); }
    .fp-pay-banner.err { border-color: rgba(255,77,28,0.35); background: rgba(255,77,28,0.08); color: #ffc9b8; }

    /* Launch pricing chip */
    .fp-launch-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      background: rgba(59,158,255,0.12);
      border: 1px solid rgba(59,158,255,0.35);
      color: var(--blue);
    }

    /* Subpages (fleets / stations): slightly tighter hero */
    .sub-hero {
      padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 60px) clamp(40px, 6vw, 72px);
      text-align: center;
      position: relative;
    }
    .sub-hero .hero-title { font-size: clamp(48px, 8vw, 100px); }
    /* Profile (and similar) sub-hero CTAs — match default .btn weight, not btn-sm */
    .sub-hero .fp-profile-hero-actions .btn {
      min-height: 44px;
      padding-left: 1.15rem;
      padding-right: 1.15rem;
    }
    .sub-section {
      padding: 0 clamp(20px, 5vw, 60px) clamp(56px, 8vw, 96px);
      max-width: 1100px;
      margin: 0 auto;
    }
    .sub-prose {
      font-size: 16px;
      color: var(--text-2);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .sub-prose strong { color: var(--text-1); }

    /* Contact page */
    .fp-contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 40px;
    }
    .fp-contact-card {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: linear-gradient(165deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.85) 100%);
      padding: 22px 22px 24px;
    }
    .fp-contact-card-icon {
      font-size: 1.5rem;
      color: var(--pulse-2);
      margin-bottom: 10px;
    }
    .fp-contact-card-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      letter-spacing: 0.5px;
      color: var(--text-1);
      margin: 0 0 8px;
    }
    .fp-contact-mailto {
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--green);
      text-decoration: none;
      word-break: break-all;
    }
    .fp-contact-mailto:hover { color: #4af5a8; }
    .fp-contact-topics {
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.15);
      background: rgba(14, 21, 32, 0.6);
      padding: 22px 24px;
    }
    .fp-contact-topics-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-3);
      margin: 0 0 14px;
    }
    .fp-contact-topic-list {
      margin: 0;
      padding-left: 1.2rem;
      color: var(--text-2);
      font-size: 15px;
      line-height: 1.7;
    }
    .fp-contact-topic-list li { margin-bottom: 8px; }
    .fp-contact-topic-list strong { color: var(--text-1); }

    /* Contact form */
    .fp-contact-form-section {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
      gap: 28px;
      align-items: start;
      margin-bottom: 40px;
    }
    @media (max-width: 991px) {
      .fp-contact-form-section { grid-template-columns: 1fr; }
    }
    .fp-contact-form { position: relative; }
    .fp-contact-form-panel {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: linear-gradient(165deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.85) 100%);
      padding: 24px 22px 28px;
    }
    .fp-contact-form-heading {
      font-family: var(--font-display);
      font-size: 1.5rem;
      letter-spacing: 0.5px;
      color: var(--text-1);
      margin: 0 0 6px;
    }
    .fp-contact-form .form-label {
      color: var(--text-2);
      font-size: 13px;
      font-weight: 600;
    }
    .fp-contact-input {
      background: rgba(8, 12, 20, 0.75) !important;
      border: 1px solid var(--border) !important;
      color: var(--text-1) !important;
      border-radius: 10px !important;
    }
    .fp-contact-input:focus {
      border-color: rgba(255, 122, 69, 0.45) !important;
      box-shadow: 0 0 0 3px rgba(255, 92, 58, 0.12) !important;
    }
    .fp-contact-input::placeholder { color: var(--text-3); opacity: 0.85; }
    .fp-contact-input option { background: var(--bg-2); color: var(--text-1); }
    .fp-contact-submit {
      font-weight: 600;
      border-radius: 10px;
      padding: 0.5rem 1.1rem;
      background: linear-gradient(135deg, rgba(255, 92, 58, 0.95), rgba(225, 60, 40, 0.95));
      border: 1px solid rgba(255, 180, 150, 0.35);
      color: #fff !important;
    }
    .fp-contact-submit:hover:not(:disabled) { filter: brightness(1.05); color: #fff !important; }
    .fp-contact-submit:disabled { opacity: 0.55; }
    .fp-contact-or-inline { opacity: 0.85; }
    .fp-contact-alert {
      padding: 12px 14px;
      border-radius: 10px;
      font-size: 14px;
      line-height: 1.45;
    }
    .fp-contact-alert--ok {
      background: rgba(29, 230, 133, 0.1);
      border: 1px solid rgba(29, 230, 133, 0.28);
      color: #b6f5d6;
    }
    .fp-contact-alert--err {
      background: rgba(248, 113, 113, 0.1);
      border: 1px solid rgba(248, 113, 113, 0.28);
      color: #fecaca;
    }
    .fp-contact-form-notice {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 12px 14px;
      border-radius: 10px;
      border: 1px solid rgba(59, 158, 255, 0.28);
      background: rgba(59, 158, 255, 0.08);
      color: var(--text-2);
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 18px;
    }
    .fp-contact-form-notice i { flex-shrink: 0; margin-top: 2px; color: var(--blue); }
    .fp-hp {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .fp-contact-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Status page (Atlassian-style summary) */
    .fp-status-banner {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 12px;
      border: 1px solid var(--border);
      margin-bottom: 28px;
      max-width: 720px;
      margin-left: auto;
      margin-right: auto;
    }
    .fp-status-banner-icon {
      font-size: 1.75rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .fp-status-banner-title {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-1);
      margin-bottom: 4px;
    }
    .fp-status-banner-sub {
      font-size: 14px;
      color: var(--text-2);
      line-height: 1.45;
    }
    .fp-status-banner--loading {
      background: rgba(59, 158, 255, 0.08);
      border-color: rgba(59, 158, 255, 0.25);
      color: var(--blue);
    }
    .fp-status-banner--loading .fp-status-banner-icon { color: var(--blue); }
    .fp-status-banner--ok {
      background: rgba(29, 230, 133, 0.1);
      border-color: rgba(29, 230, 133, 0.28);
    }
    .fp-status-banner--ok .fp-status-banner-icon { color: var(--green); }
    .fp-status-banner--degraded {
      background: rgba(245, 188, 48, 0.1);
      border-color: rgba(245, 188, 48, 0.3);
    }
    .fp-status-banner--degraded .fp-status-banner-icon { color: var(--amber); }
    .fp-status-banner--out {
      background: rgba(248, 113, 113, 0.1);
      border-color: rgba(248, 113, 113, 0.28);
    }
    .fp-status-banner--out .fp-status-banner-icon { color: #f87171; }
    @keyframes fp-status-spin {
      to { transform: rotate(360deg); }
    }
    .fp-status-spin {
      display: inline-block;
      animation: fp-status-spin 0.8s linear infinite;
    }
    .fp-status-panel {
      max-width: 720px;
      margin: 0 auto;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg-2);
      overflow: hidden;
    }
    .fp-status-panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
    }
    .fp-status-refresh {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-2);
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 8px;
      cursor: pointer;
    }
    .fp-status-refresh:hover { color: var(--text-1); border-color: var(--border-2); }
    .fp-status-list { padding: 0; }
    .fp-status-row {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }
    .fp-status-row:last-child { border-bottom: none; }
    .fp-status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      margin-top: 6px;
      flex-shrink: 0;
    }
    .fp-status-dot--ok { background: var(--green); box-shadow: 0 0 0 3px rgba(29, 230, 133, 0.2); }
    .fp-status-dot--warn { background: var(--amber); box-shadow: 0 0 0 3px rgba(245, 188, 48, 0.2); }
    .fp-status-dot--bad { background: #f87171; box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2); }
    .fp-status-dot--loading { background: var(--text-3); opacity: 0.5; }
    .fp-status-row-text {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .fp-status-name {
      font-weight: 600;
      color: var(--text-1);
      font-size: 15px;
    }
    .fp-status-pill {
      display: inline-block;
      align-self: flex-start;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 2px 8px;
      border-radius: 6px;
      background: rgba(148, 163, 184, 0.12);
      color: var(--text-3);
    }
    .fp-status-desc {
      font-size: 13px;
      color: var(--text-3);
      line-height: 1.4;
    }
    .fp-status-foot {
      padding: 10px 16px 14px;
      font-size: 12px;
      color: var(--text-3);
      margin: 0;
    }

    /* ── Full profile page (/profile) — card + Bobby history (mirrors map modal styles) ── */
    .fp-profile-page-wrap {
      max-width: 720px;
      margin: 0 auto;
    }
    .fp-profile-page-guest,
    .fp-profile-page-state {
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: linear-gradient(165deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.85) 100%);
      padding: 1.25rem 1.35rem;
    }
    .fp-profile-page-guest p {
      margin-bottom: 0.75rem;
    }
    .fp-profile-page-guest .fp-oauth-inline-wrap {
      margin-top: 0.75rem;
    }
    .fp-profile-page-guest #fpProfileOauthHint.alert-warning {
      background: rgba(234, 179, 8, 0.1);
      border-color: rgba(234, 179, 8, 0.35);
      color: #fbbf24;
    }
    .fp-profile-page-bobby {
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(148, 163, 184, 0.2);
    }
    .fp-profile-page-bobby .fp-profile-bobby-list {
      max-height: min(520px, 65vh);
    }
    .fp-profile-page-quota {
      font-size: 13px;
      color: var(--text-3);
      margin: 0 0 0.75rem;
    }
    .fp-profile-card {
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.2);
      background: linear-gradient(165deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
      overflow: hidden;
    }
    .fp-profile-card-head {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 14px 12px;
    }
    .fp-profile-card-avatar {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--ink-mid);
      border: 1px solid rgba(148, 163, 184, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 700;
      color: var(--text-1);
      font-family: var(--font-display);
    }
    .fp-profile-card-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .fp-profile-card-meta { min-width: 0; flex: 1; }
    .fp-profile-card-name {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-1);
      margin: 0 0 6px;
      line-height: 1.25;
      word-break: break-word;
    }
    .fp-profile-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }
    .fp-profile-badge {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      padding: 3px 8px;
      border-radius: 6px;
      background: rgba(34, 197, 94, 0.15);
      color: #86efac;
      border: 1px solid rgba(34, 197, 94, 0.25);
    }
    .fp-profile-badge.fp-profile-badge--trust {
      background: rgba(59, 130, 246, 0.12);
      color: #93c5fd;
      border-color: rgba(59, 130, 246, 0.22);
    }
    .fp-profile-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      padding: 0 14px 12px;
    }
    .fp-profile-stat {
      text-align: center;
      padding: 10px 6px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(148, 163, 184, 0.12);
    }
    .fp-profile-stat-val {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-1);
      font-variant-numeric: tabular-nums;
    }
    .fp-profile-stat-label {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-3);
      margin-top: 2px;
    }
    .fp-profile-breakdown {
      padding: 0 14px 12px;
      font-size: 12px;
      color: var(--text-3);
    }
    .fp-profile-breakdown strong { color: var(--text-2); font-weight: 600; }
    .fp-profile-next {
      margin: 0 14px 14px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(34, 197, 94, 0.08);
      border: 1px solid rgba(34, 197, 94, 0.15);
      font-size: 12px;
      color: var(--text-2);
    }
    .fp-profile-next .progress {
      height: 6px;
      margin-top: 8px;
      background: rgba(15, 23, 42, 0.8);
    }
    .fp-profile-foot {
      padding: 0 14px 14px;
      font-size: 11px;
      color: var(--text-3);
    }
    .fp-profile-sub {
      margin: 0 14px 14px;
      padding: 12px 12px;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid rgba(148, 163, 184, 0.18);
    }
    .fp-profile-sub-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .fp-profile-sub-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text-3);
      margin-bottom: 4px;
    }
    .fp-profile-sub-plan {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-1);
      line-height: 1.3;
    }
    .fp-profile-sub-meta {
      font-size: 12px;
      color: var(--text-3);
      margin-top: 2px;
      line-height: 1.35;
    }
    .fp-profile-upgrade-btn {
      flex-shrink: 0;
      font-weight: 600;
      border-radius: 8px;
      padding: 0.35rem 0.75rem;
      background: linear-gradient(135deg, rgba(255, 92, 58, 0.95), rgba(225, 60, 40, 0.95));
      border: 1px solid rgba(255, 180, 150, 0.35);
      color: #fff !important;
      text-decoration: none;
      white-space: nowrap;
    }
    .fp-profile-upgrade-btn:hover {
      filter: brightness(1.06);
      color: #fff !important;
    }
    .fp-profile-bobby-list {
      overflow-y: auto;
      text-align: left;
    }
    .fp-profile-bobby-date {
      display: flex;
      align-items: center;
      gap: 0.65rem;
      margin: 1rem 0 0.35rem;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-3, #9aa0a6);
    }
    .fp-profile-bobby-date::before,
    .fp-profile-bobby-date::after {
      content: '';
      flex: 1;
      min-width: 0;
      height: 1px;
      background: rgba(148, 163, 184, 0.22);
    }
    .fp-profile-bobby-list > .fp-profile-bobby-date:first-child {
      margin-top: 0;
    }
    .fp-profile-bobby-line {
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .fp-profile-bobby-line:last-child { border-bottom: none; }
    .fp-profile-bobby-who {
      font-weight: 600;
      color: var(--pulse-2, #ff8c42);
      margin-right: 8px;
    }
    .fp-profile-bobby-when {
      font-size: 0.7rem;
      color: var(--text-3, #9aa0a6);
    }
    .fp-profile-bobby-body {
      margin-top: 4px;
      color: var(--text-2, #c4c7c5);
      white-space: pre-wrap;
      word-break: break-word;
    }
