:root {
    --navy-1: #02163a;
    --navy-2: #03285a;
    --navy-3: #0a3978;
    --teal: #2ea4a3;
    --teal-2: #6ddedc;
    --teal-soft: #d6efee;
    --gold: #f5b800;
    --ink: #0a2540;
    --ink-2: #475569;
    --bg: #fbfbfa;
    --bg-soft: #f4f6f9;
    --line: #e6eaf0;
  }

  * { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink-2);
    background: var(--bg);
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: "Inter Tight", sans-serif;
    color: var(--ink);
    letter-spacing: -.02em;
    font-weight: 500;
  }
  .serif-i {
    font-family: "Inter Tight", sans-serif;
    font-style: normal;
    font-weight: inherit;
    letter-spacing: -.01em;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* ---- Stub chrome ---- */
  .stub-nav, .stub-footer {
    background: #fff; border-bottom: 1px solid #e5e7eb;
    padding: 14px 0; font-size: 14px;
  }
  .stub-footer { background: #060b1a; color: #cbd5e1; border: 0; border-top: 1px solid #1f2937; padding: 22px 0; }
  .stub-nav .brand { font-weight: 800; color: #0a2540; letter-spacing: -.5px; font-size: 20px; }
  .stub-pill { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6b7280; background: #f3f4f6; padding: 4px 10px; border-radius: 999px; }

  /* ============== Reveal animations ============== */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-2 { transition-delay: .12s; }
  .reveal-3 { transition-delay: .24s; }
  .reveal-4 { transition-delay: .36s; }

  /* ============== HERO ============== */
  .hero {
    position: relative;
    background: radial-gradient(120% 80% at 50% 0%, #053069 0%, #02163a 55%, #01102a 100%);
    color: #fff;
    overflow: hidden;
    padding: 80px 0 48px;
    isolation: isolate;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 22% 18%, rgba(46,164,163,.30) 0%, transparent 35%),
      radial-gradient(circle at 78% 70%, rgba(13,110,253,.32) 0%, transparent 40%);
    z-index: -1;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, #000 60%, transparent 95%);
    z-index: -1;
    animation: gridDrift 30s linear infinite;
  }
  @keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 64px 64px, 64px 64px; } }

  /* Floating ambient particles */
  .hero .particle {
    position: absolute; border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 18px rgba(46,164,163,.7);
    pointer-events: none;
    z-index: 0;
    animation: floatY 9s ease-in-out infinite;
  }
  @keyframes floatY {
    0%, 100% { transform: translateY(0) }
    50% { transform: translateY(-22px) }
  }
  .hero .gold-spark {
    position: absolute; width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(245,184,0,.7);
    pointer-events: none;
    animation: floatY 7s ease-in-out infinite;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(46,164,163,.14);
    border: 1px solid rgba(46,164,163,.45);
    color: var(--teal-2);
    padding: 8px 18px; border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  }
  .hero-eyebrow .pulse {
    width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
    box-shadow: 0 0 0 0 rgba(46,164,163,.7); animation: ping 2s ease-out infinite;
  }
  @keyframes ping {
    0% { box-shadow: 0 0 0 0 rgba(46,164,163,.7) }
    70% { box-shadow: 0 0 0 14px rgba(46,164,163,0) }
    100% { box-shadow: 0 0 0 0 rgba(46,164,163,0) }
  }

  .hero-title {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: clamp(3rem, 7.5vw, 6.6rem);
    line-height: .98;
    letter-spacing: -.035em;
    margin: 26px 0 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .25em;
  }
  .hero-title .word { position: relative; display: inline-block; }
  .hero-title .accent {
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-family: "Inter Tight", sans-serif; font-style: normal; font-weight: 500;
    letter-spacing: -.03em;
    font-size: 1em;
  }
  .hero-title .underline-anim {
    position: absolute; left: 0; right: 0; bottom: -.1em;
    height: 6px;
    border-radius: 4px;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    transform-origin: left center;
    animation: underlineDraw 1.4s cubic-bezier(.6,.1,.2,1) .9s both;
  }
  @keyframes underlineDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  /* === Stacked editorial tagline === */
  .hero-tagline {
    position: relative;
    margin: 32px 0 24px;
    padding-left: 22px;
    border-left: 2px solid var(--teal);
  }
  .hero-tagline em {
    display: block;
    font-family: "Inter Tight", sans-serif; font-style: normal; font-weight: 500;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -.01em;
  }
  .hero-tagline strong {
    display: block;
    font-family: "Inter Tight", sans-serif; font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -.012em;
    margin-top: 4px;
  }
  .hero-tagline .gold { color: var(--gold); }

  .hero p.lead {
    color: rgba(255,255,255,.78);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 520px;
  }
  .hero p.lead em {
    font-family: "Inter Tight", sans-serif; font-style: normal; font-weight: 600;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-size: 1em;
  }

  /* Magnetic buttons */
  .btn-magnetic {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 30px; border-radius: 999px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    transition: transform .12s ease, box-shadow .25s ease;
    position: relative; will-change: transform;
  }
  .btn-magnetic.primary {
    background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
    color: #1b1300; box-shadow: 0 10px 30px rgba(245,184,0,.35);
  }
  .btn-magnetic.primary:hover { box-shadow: 0 16px 40px rgba(245,184,0,.5); color: #1b1300; }
  .btn-magnetic.ghost {
    background: rgba(255,255,255,.06); color: #fff;
    border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(10px);
  }
  .btn-magnetic.ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); }

  /* === CTA row === */
  .hero-ctas {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 22px;
    margin-bottom: 36px;
  }

  /* Demo "play" button — sits next to the primary CTA */
  .btn-demo {
    display: inline-flex; align-items: center; gap: 14px;
    color: #fff; text-decoration: none;
    transition: opacity .2s, transform .2s;
  }
  .btn-demo:hover { color: #fff; transform: translateX(3px); }
  .btn-demo .play {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; backdrop-filter: blur(10px);
    position: relative; transition: background .25s, border-color .25s;
  }
  .btn-demo:hover .play { background: rgba(46,164,163,.25); border-color: var(--teal); }
  .btn-demo .play::after {
    content: "";
    position: absolute; inset: -3px; border-radius: 50%;
    border: 1px solid var(--teal); opacity: .45;
    animation: ping 2.4s ease-out infinite;
  }
  .btn-demo .play svg { width: 14px; height: 14px; margin-left: 2px; }
  .btn-demo .copy { display: flex; flex-direction: column; line-height: 1.15; }
  .btn-demo .copy strong {
    font-family: "Inter Tight", sans-serif; font-weight: 600;
    font-size: .98rem; letter-spacing: -.005em;
  }
  .btn-demo .copy em {
    font-family: "Inter Tight", sans-serif; font-style: normal;
    font-size: .78rem; color: rgba(255,255,255,.55);
    margin-top: 3px; font-weight: 500;
    letter-spacing: .01em;
  }

  /* === Live stats strip === */
  .live-strip {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    align-items: center;
    gap: 22px;
    padding: 18px 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    backdrop-filter: blur(14px);
    max-width: 560px;
  }
  .live-tag {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .68rem; letter-spacing: .22em;
    text-transform: uppercase; font-weight: 700;
    color: #22c55e;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .live-tag .dot {
    width: 7px; height: 7px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: ping 2s ease-out infinite;
  }
  .live-stat { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .live-stat .value {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700; font-size: 1.3rem; color: #fff;
    letter-spacing: -.02em; line-height: 1;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }
  .live-stat .value small { font-size: .68em; opacity: .75; margin-left: 1px; font-weight: 600; }
  .live-stat .value .currency { color: var(--gold); margin-right: 1px; font-weight: 600; }
  .live-stat .value.gold { color: var(--gold); }
  .live-stat .label {
    font-size: .68rem; letter-spacing: .12em;
    text-transform: uppercase; color: rgba(255,255,255,.55);
    font-weight: 600;
  }

  @media (max-width: 576px) {
    .live-strip { grid-template-columns: auto 1fr 1fr; gap: 16px; padding: 14px 18px; }
    .live-strip .live-stat:last-child { display: none; }
    .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-title .line-b { padding-left: .5em; }
  }

  /* ============== HERO VISUAL: Apollo + Live Demo + Staff ============== */
  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 984px;
    margin-left: auto;
    aspect-ratio: 1 / 1;
  }
  .hero-visual::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 70% 50%, rgba(46,164,163,.32) 0%, transparent 55%),
      radial-gradient(circle at 25% 70%, rgba(13,110,253,.22) 0%, transparent 50%);
    filter: blur(40px);
    z-index: 0;
  }

  /* Apollo terminal — the centerpiece, screens render INSIDE its display */
  .apollo-anchor {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    aspect-ratio: 1/1;
    z-index: 2;
    animation: deviceFloat 8s ease-in-out infinite;
  }
  .apollo-anchor img {
    width: 100%; height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)) drop-shadow(0 10px 24px rgba(46,164,163,.22));
  }
  @keyframes deviceFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50%      { transform: translate(-50%, calc(-50% - 8px)); }
  }

  /* The actual product UI runs on the Apollo's dark display area */
  .apollo-screen {
    position: absolute;
    left: 36.44%; top: 28.56%;
    width: 27.12%; height: 40.32%;
    border-radius: 2px;
    overflow: hidden;
    background: #004a78;
    z-index: 3;
    font-family: "Lato", -apple-system, sans-serif;
    color: #fff;
  }

  /* Live badge floats above the device */
  .live-badge {
    position: absolute;
    top: 4%; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, #ffaa00 100%);
    color: #1b1300;
    padding: 5px 14px; border-radius: 999px;
    font-size: .65rem; letter-spacing: .16em;
    text-transform: uppercase; font-weight: 800;
    z-index: 12;
    box-shadow: 0 8px 18px rgba(245,184,0,.5);
    display: inline-flex; align-items: center; gap: 7px;
    white-space: nowrap;
  }
  .live-badge .pulse-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #b94c00;
    animation: ping 1.6s ease-out infinite;
  }

  .scene {
    position: absolute; inset: 0;
    opacity: 0; pointer-events: none;
    transition: opacity .45s ease;
    padding: 7% 6%;
    display: flex; flex-direction: column;
  }
  .scene.active { opacity: 1; z-index: 2; }

  /* SCENE: Welcome */
  .scene-welcome { justify-content: space-between; }
  .scene-welcome .cards-row {
    display: flex; gap: 5%;
  }
  .scene-welcome .credit-card {
    flex: 1; aspect-ratio: 1.586/1;
    background: linear-gradient(145deg, #c8ccd0 0%, #9aa0a6 100%);
    border-radius: 4px;
    padding: 6%;
    display: flex; flex-direction: column; justify-content: space-between;
    font-family: ui-monospace, monospace;
    color: rgba(255,255,255,.9);
  }
  .scene-welcome .brand-mark {
    align-self: flex-end;
    display: flex; align-items: center;
  }
  .scene-welcome .brand-mark .o1, .scene-welcome .brand-mark .o2 {
    width: 7px; height: 7px; border-radius: 50%;
  }
  .scene-welcome .brand-mark .o1 { background: #eb001b; }
  .scene-welcome .brand-mark .o2 { background: #f79e1b; margin-left: -3px; }
  .scene-welcome .brand-mark.visa {
    font-family: "Lato", sans-serif; font-weight: 900; font-size: .42rem;
    color: #fff; letter-spacing: .04em; background: #1a1f71;
    padding: 1px 3px; border-radius: 2px;
  }
  .scene-welcome .cardholder { font-size: .38rem; letter-spacing: .03em; }
  .scene-welcome .pan { font-size: .38rem; letter-spacing: .12em; opacity: .85; }
  .scene-welcome .welcome-text {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -.02em;
  }
  .scene-welcome .bottom-row {
    display: flex; align-items: center; gap: 7px;
  }
  .scene-welcome .start-btn {
    flex: 1;
    background: #f0f3f5;
    color: #0a2540;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    padding: 7px 0;
    border-radius: 5px;
  }
  .scene-welcome .lang-flag {
    width: 22px; height: 16px;
    border-radius: 2px; overflow: hidden;
    position: relative;
    background: #00247d;
    flex-shrink: 0;
  }
  .scene-welcome .lang-flag::before {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(45deg, transparent 46%, #fff 46% 54%, transparent 54%),
      linear-gradient(-45deg, transparent 46%, #fff 46% 54%, transparent 54%);
  }
  .scene-welcome .lang-flag::after {
    content: "";
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, transparent 44%, #cf142b 44% 56%, transparent 56%),
      linear-gradient(0deg, transparent 44%, #cf142b 44% 56%, transparent 56%);
  }

  /* SCENE: Options */
  .scene-options { padding-top: 8%; }
  .scene-options .opt-title {
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    margin-bottom: 5%;
  }
  .scene-options .opt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    flex: 1;
  }
  .scene-options .opt-cell {
    background: #f0f3f5;
    color: #0a2540;
    border-radius: 5px;
    padding: 0 7%;
    display: flex; align-items: center; gap: 2px;
    font-weight: 700;
    font-size: .8rem;
    transition: all .25s ease;
  }
  .scene-options .opt-cell .eur {
    font-size: .8rem; color: #6b6b6b;
    font-weight: 700;
    letter-spacing: 0;
  }
  .scene-options .opt-cell.selected {
    background: var(--teal);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px var(--teal), 0 4px 10px rgba(46,164,163,.5);
  }
  .scene-options .opt-cell.selected .eur { color: rgba(255,255,255,.85); }

  /* SCENE: Present card */
  .scene-present { align-items: center; padding-top: 22%; }
  .scene-present .card-anim {
    position: absolute; left: 5%; right: 5%; top: 2%;
    height: 14%;
    background: #f0f3f5;
    border-radius: 0 0 50% 50% / 0 0 40% 40%;
    box-shadow: 0 4px 12px rgba(0,0,0,.18);
    display: flex; align-items: flex-start; justify-content: center;
    padding-top: 6%;
    animation: cardBob 2.4s ease-in-out infinite;
  }
  @keyframes cardBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
  }
  .scene-present .card-anim::after {
    content: "";
    width: 16%; aspect-ratio: 1.3/1;
    background: linear-gradient(135deg, #c8b47c 0%, #a89765 100%);
    border-radius: 2px;
  }
  .scene-present .present-amount {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex; align-items: baseline; gap: 4px;
  }
  .scene-present .present-amount .eur {
    font-size: 1rem; opacity: .95; font-weight: 800;
  }
  .scene-present .nfc-illu {
    width: 60%; aspect-ratio: 1.6/1;
    margin-top: 4%;
    background-image: url('nfc-icon.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: .65;
    animation: nfcPulse 1.6s ease-in-out infinite;
  }
  @keyframes nfcPulse {
    0%, 100% { opacity: .5;  transform: scale(.96); }
    50%      { opacity: .85; transform: scale(1.03); }
  }
  .scene-present .present-title {
    font-weight: 700;
    font-size: .8rem;
    text-align: center;
    margin-top: 4%;
  }
  .scene-present .present-sub {
    font-size: .56rem;
    text-align: center;
    margin-top: 2%;
    color: rgba(240,243,245,.65);
  }

  /* SCENE: Processing */
  .scene-processing { align-items: center; padding-top: 14%; }
  .scene-processing .proc-amount {
    font-weight: 700;
    font-size: 1.05rem;
    display: flex; align-items: baseline; gap: 4px;
  }
  .scene-processing .proc-amount .eur { font-size: 1rem; opacity: .7; font-weight: 800; }
  .scene-processing .proc-bottom {
    margin-top: auto;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .scene-processing .proc-dots { display: flex; gap: 6px; }
  .scene-processing .proc-dots span {
    width: 7px; height: 7px; border-radius: 50%;
    background: #fff;
    animation: procPulse 1.3s ease-in-out infinite;
  }
  .scene-processing .proc-dots span:nth-child(2) { animation-delay: .18s; }
  .scene-processing .proc-dots span:nth-child(3) { animation-delay: .36s; }
  @keyframes procPulse {
    0%, 80%, 100% { opacity: .3; transform: scale(.8); }
    40%           { opacity: 1;  transform: scale(1.15); }
  }
  .scene-processing .proc-label {
    font-weight: 700;
    font-size: .78rem;
  }

  /* SCENE: Success */
  .scene-success { align-items: center; padding-top: 8%; }
  .scene-success .ok-title {
    font-weight: 700;
    font-size: .82rem;
    text-align: center;
  }
  .scene-success .ok-sub {
    font-size: .5rem;
    text-align: center;
    color: rgba(240,243,245,.7);
    margin-top: 3%;
    line-height: 1.3;
  }
  .scene-success .ok-card {
    background: #f0f3f5;
    border-radius: 6px;
    padding: 6% 4%;
    margin-top: 5%;
    width: 100%;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .scene-success .ok-check {
    width: 36%; aspect-ratio: 1;
    border: 2.5px solid #22c55e;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    animation: checkPop .55s cubic-bezier(.5,1.4,.5,1) both;
  }
  @keyframes checkPop {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
  }
  .scene-success .ok-check svg {
    width: 65%; color: #22c55e;
  }
  .scene-success .ok-approved {
    font-weight: 700;
    font-size: .92rem;
    color: #22c55e;
  }

  /* Staff roster — small cards on far right */
  .staff-roster {
    position: absolute;
    right: -10%; top: 18%;
    width: 31.2%;
    display: flex; flex-direction: column;
    gap: 10px;
    z-index: 5;
  }
  .staff-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex; align-items: center; gap: 10px;
    transition: all .35s cubic-bezier(.2,.7,.2,1);
    opacity: .55;
  }
  .staff-card.lit {
    opacity: 1;
    background: rgba(46,164,163,.14);
    border-color: rgba(46,164,163,.4);
    transform: translateX(-6px);
    box-shadow: 0 14px 28px rgba(46,164,163,.32);
  }
  .staff-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: .68rem;
    font-family: "Inter Tight", sans-serif;
  }
  .staff-info { min-width: 0; flex: 1; }
  .staff-name {
    font-family: "Inter Tight", sans-serif;
    font-size: .72rem; font-weight: 700;
    color: #fff;
    line-height: 1.1;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .staff-role {
    font-size: .54rem; letter-spacing: .08em;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    margin-top: 1px;
    font-weight: 600;
  }
  .staff-earned {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
  }

  /* Flying receipt */
  .receipt-fly {
    position: absolute;
    z-index: 8;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .72rem; font-weight: 700;
    font-family: "Inter Tight", sans-serif;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 12px 24px rgba(34,197,94,.45);
    opacity: 0;
    pointer-events: none;
    will-change: transform, left, top, opacity;
  }
  .receipt-fly svg { width: 12px; height: 12px; }

  /* Confetti */
  .confetti {
    position: absolute; pointer-events: none;
    width: 8px; height: 14px;
    will-change: transform, opacity;
    z-index: 6;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .hero-visual { margin: 30px auto 0; max-width: 720px; }
    .apollo-anchor { width: 110%; }
  }
  @media (max-width: 768px) {
    .staff-roster { width: 36%; }
  }
  @media (max-width: 576px) {
    .staff-roster { display: none; }
    .apollo-anchor { width: 120%; }
  }

  /* ============== Payment acceptance strip ============== */
  .pay-strip {
    position: relative;
    background:
      radial-gradient(80% 100% at 50% 0%, rgba(46,164,163,.06) 0%, transparent 60%),
      linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 56px 0 64px;
    overflow: hidden;
  }
  .pay-strip::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(2,22,58,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(2,22,58,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 70%);
    pointer-events: none;
  }
  .pay-strip .container { position: relative; }

  .pay-head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
  .pay-head .display-eyebrow { color: var(--teal); }
  .pay-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin: 14px 0 14px;
    color: var(--ink);
  }
  .pay-head h2 em {
    font-family: "Inter Tight", sans-serif; font-style: normal; font-weight: 500;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .pay-head p {
    font-size: 1.02rem;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
  }

  .pay-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    padding: 6px 0;
  }
  .pay-marquee + .pay-marquee { margin-top: 14px; }
  .pay-track {
    display: flex; gap: 14px; align-items: stretch;
    width: max-content;
    animation: payScroll 48s linear infinite;
  }
  .pay-track.reverse { animation: payScrollRev 56s linear infinite; }
  .pay-marquee:hover .pay-track { animation-play-state: paused; }
  @keyframes payScroll    { to { transform: translateX(calc(-50% - 7px)); } }
  @keyframes payScrollRev { from { transform: translateX(calc(-50% - 7px)); } to { transform: translateX(0); } }

  .pay-chip {
    display: inline-flex; align-items: center; gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 20px 14px 14px;
    min-width: 196px;
    box-shadow: 0 1px 0 rgba(2,22,58,.02), 0 12px 28px -22px rgba(2,22,58,.18);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, border-color .3s;
    white-space: nowrap;
  }
  .pay-chip:hover {
    transform: translateY(-3px);
    border-color: rgba(46,164,163,.5);
    box-shadow: 0 1px 0 rgba(2,22,58,.02), 0 22px 40px -22px rgba(46,164,163,.35);
  }

  .pay-glyph {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: linear-gradient(160deg, #f7f9fc 0%, #eef2f7 100%);
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--navy-2);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }
  .pay-glyph.teal { background: linear-gradient(160deg, #e8f6f6 0%, #d6efee 100%); border-color: rgba(46,164,163,.3); color: #086a69; }
  .pay-glyph.navy { background: linear-gradient(160deg, #02163a 0%, #03285a 100%); border-color: transparent; color: #fff; }
  .pay-glyph.gold { background: linear-gradient(160deg, #fff5d6 0%, #ffe89a 100%); border-color: rgba(245,184,0,.4); color: #8a6500; }

  .pay-glyph .mark {
    font-family: "Inter Tight", sans-serif;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: -.02em;
    line-height: 1;
  }
  .pay-glyph .mark.serif {
    font-family: "Instrument Serif", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: -.01em;
  }
  .pay-glyph .mark.mono {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .04em;
  }

  /* NFC wave glyph — concentric arcs (allowed: circles cropped) */
  .pay-glyph .nfc {
    position: relative; width: 22px; height: 22px;
  }
  .pay-glyph .nfc span {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    border: 2px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: transparent;
    opacity: .35;
  }
  .pay-glyph .nfc span:nth-child(1) { width: 8px;  height: 8px;  opacity: 1; }
  .pay-glyph .nfc span:nth-child(2) { width: 14px; height: 14px; opacity: .7; }
  .pay-glyph .nfc span:nth-child(3) { width: 20px; height: 20px; opacity: .45; }

  /* QR glyph — 3x3 grid of squares (allowed: squares) */
  .pay-glyph .qr {
    display: grid;
    grid-template-columns: repeat(3, 6px);
    grid-template-rows: repeat(3, 6px);
    gap: 2px;
  }
  .pay-glyph .qr i {
    background: currentColor;
    border-radius: 1px;
    display: block;
  }
  .pay-glyph .qr i.o { opacity: 0; }

  /* EMV chip glyph — rectangle with horizontal lines (allowed) */
  .pay-glyph .chip {
    width: 22px; height: 18px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    position: relative;
  }
  .pay-glyph .chip::before, .pay-glyph .chip::after {
    content: "";
    position: absolute; left: 2px; right: 2px;
    height: 1.2px; background: currentColor;
  }
  .pay-glyph .chip::before { top: 5px; }
  .pay-glyph .chip::after  { bottom: 5px; }

  /* RFID glyph — concentric circles outlined (allowed) */
  .pay-glyph .rfid {
    width: 22px; height: 22px;
    position: relative;
  }
  .pay-glyph .rfid::before, .pay-glyph .rfid::after, .pay-glyph .rfid > i {
    content: ""; position: absolute;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
  }
  .pay-glyph .rfid::before { width: 6px;  height: 6px;  background: currentColor; }
  .pay-glyph .rfid::after  { width: 14px; height: 14px; opacity: .65; }
  .pay-glyph .rfid > i     { width: 22px; height: 22px; opacity: .4; display: block; }

  .pay-chip .pay-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; line-height: 1.1; }
  .pay-chip .pay-name {
    font-family: "Inter Tight", sans-serif;
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: -.012em;
    color: var(--ink);
  }
  .pay-chip .pay-name.serif {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-weight: 400; font-size: 1.12rem; letter-spacing: -.005em;
  }
  .pay-chip .pay-cat {
    font-size: .66rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
  }

  /* Compliance row */
  .pay-foot {
    margin-top: 40px;
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 8px 26px;
    padding-top: 26px;
    border-top: 1px dashed var(--line);
  }
  .pay-cert {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-2);
    font-weight: 700;
  }
  .pay-cert .tick {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(46,164,163,.14);
    color: var(--teal);
    display: grid; place-items: center;
    border: 1px solid rgba(46,164,163,.3);
  }
  .pay-cert .tick::before {
    content: "";
    width: 5px; height: 2.5px;
    border-left: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg) translate(0px, -1px);
  }

  @media (max-width: 576px) {
    .pay-strip { padding: 40px 0 48px; }
    .pay-chip { min-width: 170px; padding: 12px 16px 12px 12px; gap: 12px; }
    .pay-glyph { width: 38px; height: 38px; }
  }

  /* ============== Big stats ============== */
  .stats {
    padding: 100px 0 90px;
    background: var(--bg);
    position: relative;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat {
    padding: 36px 28px;
    border-right: 1px solid var(--line);
    position: relative;
  }
  .stat:last-child { border-right: 0; }
  @media (max-width: 768px) {
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  }
  .stat .num {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700; letter-spacing: -.04em;
    line-height: 1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .stat .num .unit { color: var(--teal); font-size: .65em; vertical-align: super; margin-left: 4px; font-weight: 600; }
  .stat .num.gold { color: var(--gold); }
  .stat .label {
    margin-top: 14px;
    font-size: .92rem; line-height: 1.45;
    color: var(--ink-2);
    max-width: 220px;
  }
  .stat .label strong { color: var(--ink); }

  /* ============== Editorial section ============== */
  .editorial { padding: 72px 0 72px; }
  .editorial .lead-quote {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.1;
    color: var(--ink);
    font-style: normal;
    font-weight: 500;
    letter-spacing: -.025em;
  }
  .editorial .lead-quote em {
    font-style: normal;
    font-weight: 600;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .editorial .lead-quote .small { font-style: normal; font-family: "Inter Tight", sans-serif; }

  .pull-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; }
  @media (max-width: 768px) { .pull-cards { grid-template-columns: 1fr; } }
  .pull-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 32px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
  }
  .pull-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(2,22,58,.08); border-color: rgba(46,164,163,.4); }
  .pull-card .tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--teal); font-weight: 700; margin-bottom: 14px;
  }
  .pull-card .tag .dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
  .pull-card.green .tag { color: #2ea44f; }
  .pull-card.green .tag .dot { background: #2ea44f; }
  .pull-card h3 {
    font-size: 1.4rem; font-weight: 700; color: var(--ink); margin-bottom: 12px;
    letter-spacing: -.015em;
  }
  .pull-card p { line-height: 1.6; margin: 0; }

  /* Staff quote variant */
  .pull-quote-card {
    position: relative;
    background: linear-gradient(165deg, #fbfbfa 0%, #ffffff 100%);
  }
  .pull-quote-card .quote-mark {
    position: absolute;
    top: 14px; right: 26px;
    font-family: "Inter Tight", sans-serif;
    font-size: 6rem; line-height: 1;
    font-weight: 500;
    color: transparent;
    background: linear-gradient(135deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text;
    opacity: .22;
    pointer-events: none;
  }
  .pull-quote {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 1.32rem;
    line-height: 1.4;
    color: var(--ink);
    letter-spacing: -.015em;
    margin: 6px 0 24px;
    max-width: 460px;
    border: 0;
    padding: 0;
  }
  .pull-quote-card .attribution {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px; border-top: 1px solid var(--line);
  }
  .pull-quote-card .avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, #5b4dff 0%, #22d3d8 100%);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-size: .82rem;
    letter-spacing: .04em;
    flex-shrink: 0;
  }
  .pull-quote-card .name {
    font-weight: 600; font-size: 1rem; color: var(--ink); letter-spacing: -.01em;
  }
  .pull-quote-card .role {
    font-size: .78rem; color: var(--ink-2);
    margin-top: 2px;
  }

  /* Operator outcomes variant */
  .pull-ops-card .tag { color: var(--gold); }
  .pull-ops-card .tag .dot { background: var(--gold); }
  .pull-ops-card h3 { margin-bottom: 22px; }
  .pull-ops-card .ops-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .pull-ops-card .ops-stat {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 18px;
  }
  .pull-ops-card .ops-val {
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -.03em;
    color: transparent;
    background: linear-gradient(120deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text;
    font-variant-numeric: tabular-nums;
    display: flex; align-items: baseline; gap: 4px;
  }
  .pull-ops-card .ops-unit {
    font-size: .82rem; font-weight: 600;
    letter-spacing: 0;
    color: var(--ink-2);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
  .pull-ops-card .ops-lbl {
    font-size: .86rem;
    line-height: 1.4;
    color: var(--ink-2);
  }
  .pull-ops-card .ops-foot {
    font-size: .76rem;
    color: #94a3b8;
    margin-top: 16px;
    letter-spacing: .01em;
  }

  /* ============== Live tip feed ============== */
  .feed-section {
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #f4f6f9 0%, #fbfbfa 100%);
    overflow: hidden;
  }
  .feed-section .container { position: relative; }
  .feed-eyebrow { color: var(--teal); }
  .feed-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 32px;
  }
  @media (max-width: 992px) { .feed-grid { grid-template-columns: 1fr; gap: 32px; } }
  .feed-grid h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 18px;
  }
  .feed-grid h2 em {
    font-style: normal;
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .live-feed {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 30px 60px rgba(2,22,58,.08);
    max-height: 420px;
    overflow: hidden;
    position: relative;
  }
  .live-feed::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
    background: linear-gradient(180deg, transparent 0%, #fff 100%);
    pointer-events: none;
  }
  .feed-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
  }
  .feed-header .title { font-weight: 700; color: var(--ink); font-size: .95rem; letter-spacing: -.01em; }
  .feed-header .live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    color: #22c55e; font-weight: 700;
  }
  .feed-header .live .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; animation: ping 2s ease-out infinite; }
  .feed-list { list-style: none; padding: 0; margin: 0; }
  .feed-item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 10px;
    border-radius: 10px;
    transition: background .3s;
    animation: feedSlideIn .5s ease-out;
  }
  @keyframes feedSlideIn {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .feed-item:hover { background: var(--bg-soft); }
  .feed-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; font-size: .85rem;
    flex-shrink: 0;
  }
  .feed-body { flex: 1; min-width: 0; }
  .feed-body .name { font-weight: 600; color: var(--ink); font-size: .92rem; }
  .feed-body .meta { font-size: .78rem; color: #94a3b8; margin-top: 1px; }
  .feed-amount {
    font-weight: 800; color: var(--teal); font-size: 1rem; font-variant-numeric: tabular-nums;
  }

  /* ============== Bento Capabilities ============== */
  .bento-section {
    padding: 64px 0 80px;
    background: linear-gradient(180deg, #02163a 0%, #03285a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .bento-section::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(46,164,163,.18) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(13,110,253,.18) 0%, transparent 50%);
  }
  .bento-section .container { position: relative; }
  .bento-section h2 { color: #fff; }
  .bento-section .display-eyebrow { color: var(--teal-2); }
  .bento-section .lead { color: rgba(255,255,255,.7); }

  .bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
  }
  @media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .bento { grid-template-columns: 1fr; } }

  .bento-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 20px 20px 22px;
    position: relative; overflow: hidden;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), background .3s, border-color .3s;
    display: flex; flex-direction: column;
    min-height: 168px;
  }
  .bento-card:hover {
    transform: translateY(-3px);
    background: rgba(46,164,163,.10);
    border-color: rgba(46,164,163,.35);
  }
  .bento-card h3 {
    color: #fff; font-size: 1.02rem; font-weight: 600; letter-spacing: -.01em;
    margin: 12px 0 6px;
    line-height: 1.2;
  }
  .bento-card p {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
  }
  .bento-card .icon {
    width: 34px; height: 34px; border-radius: 9px;
    background: rgba(46,164,163,.18);
    color: var(--teal-2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .bento-card .icon svg { width: 18px; height: 18px; }

  .b-tap    { background: linear-gradient(135deg, rgba(46,164,163,.18) 0%, rgba(46,164,163,.04) 100%); border-color: rgba(46,164,163,.35); }
  .b-people { background: linear-gradient(135deg, rgba(245,184,0,.10) 0%, rgba(245,184,0,.02) 100%); border-color: rgba(245,184,0,.25); }
  .b-people .icon { background: rgba(245,184,0,.18); color: var(--gold); }

  .bento-card .method-chips {
    display: flex; flex-wrap: wrap; gap: 5px;
    margin-top: 12px;
  }
  .method-chip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 5px;
    padding: 3px 8px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: rgba(255,255,255,.78);
  }

  /* ============== Comparison — dual cards ============== */
  .compare-section { padding: 72px 0 80px; }

  .compare-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 36px;
  }
  @media (max-width: 900px) {
    .compare-cards { grid-template-columns: 1fr; }
  }

  .compare-card {
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .compare-card:hover { transform: translateY(-4px); }

  /* Left/recommended card — dark navy */
  .compare-card.recommended {
    background: linear-gradient(160deg, #02163a 0%, #04274d 60%, #02163a 100%);
    color: #fff;
    box-shadow: 0 30px 60px rgba(2,22,58,.18);
  }
  .compare-card.recommended::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 90% 10%, rgba(46,164,163,.18) 0%, transparent 45%),
      radial-gradient(circle at 0% 100%, rgba(13,110,253,.12) 0%, transparent 45%);
    pointer-events: none;
  }

  /* Right/alternative card — light */
  .compare-card.alternative {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink-2);
    box-shadow: 0 30px 60px rgba(2,22,58,.06);
  }

  .compare-card .card-header {
    display: flex; align-items: center; gap: 16px;
    position: relative;
    margin-bottom: 32px;
  }
  .compare-card .card-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .compare-card.recommended .card-icon {
    background: linear-gradient(135deg, #2ea4a3 0%, #0a3978 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(46,164,163,.35);
  }
  .compare-card.alternative .card-icon {
    background: #f4f6f9;
    color: #94a3b8;
  }
  .compare-card .card-title-block { flex: 1; min-width: 0; }
  .compare-card .card-eyebrow {
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .compare-card.recommended .card-eyebrow { color: var(--teal-2); }
  .compare-card.alternative .card-eyebrow { color: #94a3b8; }
  .compare-card h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: 1.5rem; font-weight: 700;
    letter-spacing: -.015em; line-height: 1.1;
    margin: 0;
  }
  .compare-card.recommended h3 { color: #fff; }
  .compare-card.alternative h3 { color: var(--ink); }
  .compare-card .status-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; border-radius: 999px;
    font-size: .75rem; font-weight: 600;
    flex-shrink: 0;
  }
  .compare-card.recommended .status-pill {
    background: rgba(46,164,163,.14);
    border: 1px solid rgba(46,164,163,.4);
    color: var(--teal-2);
  }
  .compare-card.recommended .status-pill .dot {
    width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.6);
    animation: ping 2s ease-out infinite;
  }
  .compare-card.alternative .status-pill {
    background: #f4f6f9;
    border: 1px solid var(--line);
    color: #64748b;
  }

  .compare-rows { display: flex; flex-direction: column; gap: 22px; }
  .compare-row {
    display: flex; gap: 16px; align-items: flex-start;
    position: relative;
  }
  .row-icon {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .compare-card.recommended .row-icon {
    background: rgba(34,197,94,.16);
    color: #22c55e;
    border: 1px solid rgba(34,197,94,.3);
  }
  .compare-card.alternative .row-icon {
    background: #f4f6f9;
    color: #94a3b8;
    border: 1px solid var(--line);
  }
  .compare-row .row-content { flex: 1; min-width: 0; }
  .compare-row .row-label {
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .compare-card.recommended .row-label { color: var(--teal-2); }
  .compare-card.alternative .row-label { color: #94a3b8; }
  .compare-row .row-desc {
    font-size: 1rem; font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.005em;
  }
  .compare-card.recommended .row-desc { color: #fff; }
  .compare-card.alternative .row-desc { color: var(--ink); font-weight: 500; }

  .compare-cta {
    margin-top: 28px;
    background: linear-gradient(135deg, var(--navy-2) 0%, #04274d 100%);
    color: #fff;
    padding: 24px 32px;
    border-radius: 18px;
    display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
    box-shadow: 0 24px 50px rgba(2,22,58,.10);
  }
  .compare-cta p { margin: 0; font-weight: 500; font-size: 1.05rem; }
  .compare-cta p strong { font-weight: 700; color: #fff; }
  .compare-cta a {
    color: var(--gold); text-decoration: none; font-weight: 700;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .compare-cta a:hover { color: #fff; }

  /* ============== Orbital deployment timeline ============== */
  .orbital-section {
    padding: 64px 0 80px;
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
  }

  .orbital-stage {
    position: relative;
    margin-top: 36px;
    border-radius: 32px;
    background:
      radial-gradient(circle at 50% 40%, #053069 0%, #02163a 50%, #010c20 100%);
    box-shadow: 0 50px 100px rgba(2,22,58,.32);
    overflow: hidden;
    padding: 64px 24px 28px;
    text-align: center;
  }
  .orbital-stage::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      radial-gradient(1.5px 1.5px at 18% 22%, rgba(255,255,255,.5), transparent 60%),
      radial-gradient(1px 1px at 76% 18%, rgba(255,255,255,.4), transparent 60%),
      radial-gradient(2px 2px at 62% 70%, rgba(46,164,163,.5), transparent 60%),
      radial-gradient(1px 1px at 32% 78%, rgba(255,255,255,.35), transparent 60%),
      radial-gradient(1.5px 1.5px at 88% 52%, rgba(245,184,0,.45), transparent 60%),
      radial-gradient(1px 1px at 8% 60%, rgba(255,255,255,.3), transparent 60%);
    pointer-events: none;
    animation: starDrift 60s linear infinite;
  }
  @keyframes starDrift {
    from { background-position: 0 0; }
    to   { background-position: 100px 100px; }
  }

  .orbital-stage .stage-header { position: relative; z-index: 10; max-width: 560px; margin: 0 auto 12px; }
  .orbital-stage h3 {
    color: #fff; font-size: 1.4rem; font-weight: 700;
    letter-spacing: -.01em; margin-bottom: 8px;
  }
  .orbital-stage .sub {
    color: rgba(255,255,255,.55); font-size: .95rem; margin: 0 0 24px;
  }

  .orbital-canvas {
    position: relative;
    width: 100%;
    height: 760px;
    display: flex; align-items: center; justify-content: center;
  }

  .orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .orbit-ring.r1 { width: 280px; height: 280px; border: 1px dashed rgba(255,255,255,.08); }
  .orbit-ring.r2 { width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.06); }
  .orbit-ring.r3 { width: 680px; height: 680px; border: 1px dashed rgba(255,255,255,.04); }

  /* Central hub — Paygasus logo */
  .orbital-hub {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 0 60px rgba(46,164,163,.55), 0 0 140px rgba(13,110,253,.3);
    animation: hubBreathe 4s ease-in-out infinite;
    transition: opacity .45s ease;
  }
  /* When a node panel is centered, fade the hub so it doesn't compete */
  .orbital-canvas.has-active .orbital-hub {
    opacity: 0;
    pointer-events: none;
  }
  @keyframes hubBreathe {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50%      { transform: translate(-50%, -50%) scale(1.06); }
  }
  .orbital-hub::before, .orbital-hub::after {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(110,222,220,.45);
    animation: hubRing 3.4s ease-out infinite;
    pointer-events: none;
  }
  .orbital-hub::after { animation-delay: 1.7s; }
  @keyframes hubRing {
    0%   { inset: 0;     opacity: .9; }
    100% { inset: -36px; opacity: 0; }
  }
  /* Rotating dotted halo around the logo */
  .orbital-hub .hub-orbit {
    position: absolute; inset: -14px;
    border-radius: 50%;
    border: 1px dashed rgba(110,222,220,.35);
    animation: hubSpin 18s linear infinite;
  }
  .orbital-hub .hub-orbit::before,
  .orbital-hub .hub-orbit::after {
    content: "";
    position: absolute;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal-2);
    box-shadow: 0 0 10px var(--teal);
  }
  .orbital-hub .hub-orbit::before { left: -3px; top: 50%; transform: translateY(-50%); }
  .orbital-hub .hub-orbit::after  { right: -3px; top: 50%; transform: translateY(-50%); background: var(--gold); box-shadow: 0 0 10px var(--gold); }
  @keyframes hubSpin { to { transform: rotate(360deg); } }

  .orbital-hub .hub-disc {
    width: 96px; height: 96px;
    border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 -8px 20px rgba(2,22,58,.08), 0 6px 20px rgba(0,0,0,.25);
    position: relative; z-index: 2;
  }
  .orbital-hub .hub-disc img {
    width: 58px; height: 58px; object-fit: contain;
    animation: hubFloat 4s ease-in-out infinite;
  }
  @keyframes hubFloat {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50%      { transform: translateY(-3px) rotate(1.5deg); }
  }

  /* Orbital nodes */
  .orbit-track {
    position: absolute;
    left: 50%; top: 50%;
    width: 0; height: 0;
    z-index: 5;
  }
  .orbital-node {
    position: absolute;
    left: 0; top: 0;
    width: 48px; height: 48px;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .7s, z-index 0s linear .2s;
    cursor: pointer;
  }
  .node-pulse {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .orbital-node.related .node-pulse {
    background: radial-gradient(circle, rgba(46,164,163,.4) 0%, transparent 70%);
    animation: relPulse 1.6s ease-out infinite;
  }
  @keyframes relPulse {
    0%, 100% { opacity: .9; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: .4; transform: translate(-50%, -50%) scale(1.15); }
  }
  .node-dot {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(2,22,58,.85);
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2;
    backdrop-filter: blur(8px);
    transition: all .3s ease;
  }
  .orbital-node:hover .node-dot {
    border-color: var(--teal-2);
    transform: scale(1.12);
  }
  .orbital-node.expanded .node-dot {
    background: #fff;
    border-color: #fff;
    color: #02163a;
    transform: scale(1.45);
    box-shadow: 0 0 40px rgba(255,255,255,.45);
  }
  .orbital-node.related .node-dot {
    background: rgba(255,255,255,.55);
    border-color: #fff;
    color: #02163a;
  }
  .node-label {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    color: rgba(255,255,255,.72);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    transition: all .3s;
    pointer-events: none;
  }
  .orbital-node.expanded .node-label {
    color: #fff;
    transform: translateX(-50%) scale(1.18);
  }

  /* Expanded popover card */
  .node-card {
    position: absolute;
    top: calc(100% + 38px);
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: rgba(2,22,58,.94);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    z-index: 300;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    text-align: left;
    animation: cardIn .35s cubic-bezier(.2,.7,.2,1);
  }
  @keyframes cardIn {
    from { opacity: 0; transform: translateX(-50%) translateY(8px) scale(.95); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  }
  .node-card::before {
    content: ""; position: absolute;
    left: 50%; top: -10px; transform: translateX(-50%);
    width: 1px; height: 10px; background: rgba(255,255,255,.35);
  }

  /* Centered variant — appears in the middle of the canvas, hub fades */
  .node-card.is-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    padding: 22px 22px 20px;
    background: rgba(2,22,58,.95);
    border: 1px solid rgba(110,222,220,.25);
    box-shadow:
      0 30px 80px rgba(0,0,0,.55),
      0 0 60px rgba(46,164,163,.25),
      inset 0 1px 0 rgba(255,255,255,.08);
    animation: centerCardIn .45s cubic-bezier(.2,.7,.2,1);
    z-index: 400;
  }
  .node-card.is-center::before { display: none; }
  @keyframes centerCardIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(.9); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  }
  .node-card .card-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
  }
  .status-tag {
    font-size: .62rem; padding: 4px 9px;
    border-radius: 4px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    border: 1px solid;
  }
  .status-tag.completed { color: #ffffff; background: rgba(34,197,94,.18); border-color: #22c55e; }
  .status-tag.in-progress { color: #ffd34d; background: rgba(245,184,0,.14); border-color: var(--gold); }
  .status-tag.pending { color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
  .node-card .date {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: .68rem; color: rgba(255,255,255,.45);
    letter-spacing: .04em;
  }
  .node-card h4 {
    color: #fff; font-size: .98rem; font-weight: 700;
    margin: 6px 0 4px; letter-spacing: -.01em;
  }
  .node-card .desc {
    color: rgba(255,255,255,.78);
    font-size: .82rem; line-height: 1.55;
    margin: 0 0 14px;
  }
  .node-card .energy-block {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 12px; margin-top: 4px;
  }
  .node-card .energy-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .7rem; color: rgba(255,255,255,.78);
    margin-bottom: 6px; font-weight: 600;
  }
  .node-card .energy-row .label {
    display: inline-flex; align-items: center; gap: 5px;
    letter-spacing: .04em;
  }
  .node-card .energy-row .val {
    font-family: ui-monospace, "SF Mono", monospace;
    color: var(--teal-2);
  }
  .node-card .energy-bar {
    width: 100%; height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 2px; overflow: hidden;
  }
  .node-card .energy-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
    transition: width .8s cubic-bezier(.4,.1,.2,1);
  }
  .node-card .links {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 12px; margin-top: 14px;
  }
  .node-card .links-title {
    font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.6); margin-bottom: 8px; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
  }
  .node-card .link-chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .link-chip {
    font-size: .7rem; padding: 4px 10px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85);
    cursor: pointer;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 4px;
    border-radius: 4px; font-weight: 600;
  }
  .link-chip:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
  .link-chip svg { width: 9px; height: 9px; opacity: .7; }

  /* Controls hint */
  .orbital-controls {
    position: relative;
    margin-top: -16px;
    z-index: 10;
    display: inline-flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,.55);
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    font-weight: 700;
  }
  .orbital-controls .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 0 rgba(46,164,163,.7);
    animation: ping 2s ease-out infinite;
  }

  /* Legend */
  .orbital-legend {
    position: relative; z-index: 10;
    margin-top: 22px;
    display: inline-flex; gap: 18px; flex-wrap: wrap;
    justify-content: center;
    font-size: .68rem; color: rgba(255,255,255,.55);
    letter-spacing: .08em; text-transform: uppercase; font-weight: 600;
  }
  .orbital-legend span {
    display: inline-flex; align-items: center; gap: 6px;
  }
  .orbital-legend .swatch {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .orbital-legend .deployed { background: #22c55e; }
  .orbital-legend .rolling  { background: var(--gold); }
  .orbital-legend .coming   { background: rgba(255,255,255,.4); }

  @media (max-width: 768px) {
    .orbital-stage { padding: 36px 12px 20px; }
    .orbital-canvas { height: 560px; }
    .orbit-ring.r3 { width: 440px; height: 440px; }
    .orbit-ring.r2 { width: 320px; height: 320px; }
    .orbit-ring.r1 { width: 180px; height: 180px; }
    .orbital-hub { width: 88px; height: 88px; }
    .orbital-hub .hub-disc { width: 70px; height: 70px; }
    .orbital-hub .hub-disc img { width: 42px; height: 42px; }
    .node-card { width: 240px; }
  }

  /* ============== FAQ ============== */
  .faq-section { padding: 72px 0 80px; }
  .faq-list { max-width: 880px; margin: 40px auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
  }
  .faq-q {
    width: 100%;
    background: transparent; border: 0;
    text-align: left;
    padding: 24px 0;
    font-family: "Inter Tight", sans-serif;
    font-weight: 600; font-size: 1.15rem; color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px;
    letter-spacing: -.01em;
  }
  .faq-q .plus {
    width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    transition: all .25s ease;
    color: var(--ink);
  }
  .faq-item.open .faq-q .plus { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height .45s cubic-bezier(.2,.7,.2,1);
  }
  .faq-a-inner { padding: 0 0 28px; color: var(--ink-2); line-height: 1.65; max-width: 720px; }
  .faq-item.open .faq-a { max-height: 320px; }

  /* ============== Final CTA ============== */
  .final-cta {
    padding: 88px 0 96px;
    background: radial-gradient(120% 90% at 50% 0%, #053069 0%, #02163a 60%, #01102a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 20% 50%, rgba(46,164,163,.25) 0%, transparent 40%),
      radial-gradient(circle at 80% 50%, rgba(245,184,0,.18) 0%, transparent 40%);
  }
  .final-cta::after {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, #000 0%, transparent 75%);
  }
  .final-cta .container { position: relative; z-index: 2; }
  .final-cta h2 {
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 20px;
    font-weight: 800;
  }
  .final-cta h2 .accent {
    font-family: "Inter Tight", sans-serif; font-style: normal; font-weight: 500;
    background: linear-gradient(90deg, #5b4dff 0%, #9d5ee8 55%, #22d3d8 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .final-cta p {
    color: rgba(255,255,255,.78);
    max-width: 640px; margin: 0 auto 36px;
    font-size: 1.1rem; line-height: 1.6;
  }

  .impact-line {
    display: inline-flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-top: 32px;
  }
  .impact-line .impact { color: var(--gold); font-weight: 700; }

  .display-eyebrow {
    display: inline-block;
    color: var(--teal);
    font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 14px;
  }

  /* ============== Responsive hero ============== */
  @media (max-width: 992px) {
    .hero { padding: 56px 0 40px; }
    .terminal-stage { margin: 40px auto 0; }
    .hero p.lead { max-width: 100%; }
  }
