
    :root {
      --ink: #1e2634;
      --soft-ink: #647185;
      --blue: #0a84ff;
      --blue-dark: #0567cb;
      --blue-pale: #e9f3ff;
      --surface: #ffffff;
      --canvas: #f4f5fa;
      --canvas-2: #eceff7;
      --line: rgba(26, 42, 66, .11);
      --shadow: 0 28px 58px rgba(35, 52, 82, .16), 0 4px 15px rgba(35, 52, 82, .08);
      --shadow-soft: 0 18px 42px rgba(32, 48, 74, .10);
      --radius-xl: 42px;
      --radius-lg: 28px;
      --radius-md: 20px;
      --content: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-width: 320px;
      color: var(--ink);
      background: var(--canvas);
      font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      font-size: 16px;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .wrap { width: min(var(--content), calc(100% - 44px)); margin: 0 auto; }
    .skip-link { position: fixed; left: 14px; top: -70px; z-index: 99; padding: 11px 14px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-soft); font-weight: 700; }
    .skip-link:focus { top: 14px; }
    .scroll-progress {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 90;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #0a84ff, #20a68a 52%, #7b61ff);
      box-shadow: 0 6px 18px rgba(10,132,255,.26);
      transform: scaleX(var(--scroll-progress, 0));
      transform-origin: left center;
      pointer-events: none;
    }
    .motion-toggle {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 85;
      display: flex;
      width: max-content;
      min-width: 46px;
      max-width: 46px;
      height: 46px;
      align-items: center;
      justify-content: flex-start;
      gap: 0;
      overflow: hidden;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: 999px;
      background: rgba(10,132,255,.94);
      color: #fff;
      box-shadow: 0 18px 34px rgba(10,132,255,.28), 0 4px 14px rgba(35,52,82,.14);
      backdrop-filter: blur(18px) saturate(1.16);
      cursor: pointer;
      white-space: nowrap;
      font: inherit;
      transition: max-width .32s cubic-bezier(.2, .74, .24, 1), transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .motion-toggle:hover,
    .motion-toggle:focus-visible {
      max-width: min(280px, calc(100vw - 28px));
      transform: translateY(-2px);
      background: var(--blue-dark);
      box-shadow: 0 22px 42px rgba(10,132,255,.34), 0 4px 14px rgba(35,52,82,.16);
      outline: none;
    }
    .motion-toggle-icon {
      position: relative;
      display: grid;
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      place-items: center;
    }
    .motion-toggle-label {
      display: block;
      flex: 0 0 auto;
      max-width: 0;
      margin-left: 0;
      overflow: hidden;
      opacity: 0;
      color: currentColor;
      font-size: 12px;
      font-weight: 780;
      letter-spacing: 0;
      transform: translateX(5px);
      transition: max-width .3s cubic-bezier(.2, .74, .24, 1), margin-left .3s ease, opacity .2s ease, transform .3s ease;
    }
    .motion-toggle:hover .motion-toggle-label,
    .motion-toggle:focus-visible .motion-toggle-label,
    .motion-toggle.is-docked .motion-toggle-label {
      max-width: 220px;
      margin-left: 9px;
      opacity: 1;
      transform: translateX(0);
    }
    .motion-pause,
    .motion-pause::before,
    .motion-pause::after {
      display: block;
      width: 5px;
      height: 15px;
      border-radius: 999px;
      background: currentColor;
    }
    .motion-pause { position: relative; background: transparent; }
    .motion-pause::before,
    .motion-pause::after { content: ""; position: absolute; top: 1px; }
    .motion-pause::before { left: 3px; }
    .motion-pause::after { right: 3px; }
    .motion-play {
      display: none;
      width: 0;
      height: 0;
      margin-left: 3px;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 12px solid currentColor;
    }
    .motion-toggle.is-paused {
      background: rgba(30,38,52,.92);
      color: #fff;
      border-color: rgba(255,255,255,.16);
    }
    .motion-toggle.is-paused .motion-pause { display: none; }
    .motion-toggle.is-paused .motion-play { display: block; }
    .motion-toggle.is-docked {
      position: relative;
      right: auto;
      bottom: auto;
      z-index: 2;
      width: max-content;
      max-width: 100%;
      background: rgba(8,64,146,.54);
      border-color: rgba(255,255,255,.3);
      box-shadow: 0 14px 30px rgba(0,50,120,.2);
      transform: none;
    }
    .motion-toggle.is-docked:hover,
    .motion-toggle.is-docked:focus-visible { max-width: 100%; transform: none; }
    .motion-toggle.is-docked.is-paused { background: rgba(23,39,68,.72); }
    .motion-toggle.is-relocating,
    .motion-toggle.is-relocating .motion-toggle-label { transition: none !important; }
    .motion-toggle[hidden] { display: none; }

    .nav {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(255,255,255,.62);
      background: rgba(244,245,250,.76);
      backdrop-filter: blur(18px) saturate(1.18);
    }
    .nav-inner { display: flex; min-height: 74px; align-items: center; justify-content: space-between; gap: 26px; }
    .brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 820; letter-spacing: -.05em; }
    .brand-mark { width: 30px; height: 30px; display: grid; place-items: center; }
    .brand-mark svg { width: 21px; height: 21px; }
    .nav-links { display: flex; align-items: center; gap: 24px; color: #536278; font-size: 13px; font-weight: 720; }
    .nav-links a { color: #536278; text-decoration: none; }
    .nav-links a:hover { color: var(--blue); }
    .nav-links .contact { padding: 10px 14px; border: 1px solid rgba(10,132,255,.18); border-radius: 12px; background: rgba(255,255,255,.72); color: var(--blue-dark); }

    .hero {
      --hero-screen-back-x: 0px;
      --hero-screen-back-y: 0px;
      --hero-screen-front-x: 0px;
      --hero-screen-front-y: 0px;
      position: relative;
      overflow: hidden;
      padding: 94px 0 76px;
    }
    .hero::before {
      content: ""; position: absolute; width: 700px; height: 700px; left: -390px; top: -390px; border-radius: 50%;
      background: radial-gradient(circle, rgba(10,132,255,.23), rgba(10,132,255,0) 67%);
    }
    .hero::after {
      content: ""; position: absolute; width: 720px; height: 560px; right: -210px; bottom: -290px; border-radius: 50%;
      background: radial-gradient(circle, rgba(139, 112, 245, .18), rgba(139, 112, 245, 0) 66%);
    }
    .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr); align-items: center; gap: 56px; }
    .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: #1b72d2; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(10,132,255,.12); }
    h1 { max-width: 610px; margin: 0; font-size: clamp(48px, 6.1vw, 78px); line-height: .995; letter-spacing: -.071em; font-weight: 820; }
    .hero-copy { max-width: 555px; margin: 24px 0 0; color: var(--soft-ink); font-size: 18px; line-height: 1.68; }
    .hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-direction: column; align-items: flex-start; }
    .store-badges { display: flex; align-items: center; gap: 10px; }
    .button { --magnet-x: 0px; --magnet-y: 0px; display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px; padding: 0 18px; border-radius: 15px; font-size: 14px; font-weight: 780; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
    .button:hover { transform: translate(var(--magnet-x), calc(var(--magnet-y) - 2px)); }
    .button-primary { color: #fff; background: var(--blue); box-shadow: 0 15px 26px rgba(10,132,255,.28); }
    .button-primary:hover { background: var(--blue-dark); }
    .button-secondary { color: #2b3a4f; border: 1px solid rgba(30,38,52,.12); background: rgba(255,255,255,.72); min-width: 200px; }
    .button-tertiary {
      --magnet-x: 0px;
      --magnet-y: 0px;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border-radius: 12px;
      line-height: 0;
      outline: none;
      transition: transform .2s ease, filter .2s ease;
      z-index: 10;
    }
    .button-tertiary img {
      height: 50px;
      border-radius: 9px;
      transition: transform .2s ease, opacity .2s ease, filter .2s ease, box-shadow .2s ease;
    }
    .button-tertiary:hover,
    .button-tertiary:focus-visible {
      transform: translate(var(--magnet-x), calc(var(--magnet-y) - 2px));
    }
    .button-tertiary.interaction-disabled:hover,
    .button-tertiary.interaction-disabled:focus-visible {
      transform: translateY(0px);
    }
    .button-tertiary:hover img,
    .button-tertiary:focus-visible img {
      opacity: .92;
      filter: brightness(1.06) saturate(1.05);
      box-shadow: 0 14px 24px rgba(35,52,82,.18);
    }
    .button-tertiary.interaction-disabled {
      cursor: not-allowed;
    }
    .button-tertiary.interaction-disabled img {
      opacity: .58;
      filter: grayscale(.22) saturate(.82);
      box-shadow: none;
    }
    .button.interaction-disabled {
      cursor: not-allowed;
      color: #7b8798;
      border-color: rgba(30,38,52,.1);
      background: rgba(232,236,242,.82);
      box-shadow: none;
    }
    .button.interaction-disabled:hover,
    .button.interaction-disabled:focus-visible { transform: none; background: rgba(232,236,242,.82); }
    .tooltip-text {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 12px);
      z-index: 30;
      width: max-content;
      max-width: min(280px, calc(100vw - 48px));
      padding: 10px 12px;
      border-radius: 13px;
      background: rgba(30,38,52,.94);
      color: #fff;
      box-shadow: var(--shadow-soft);
      font-size: 12px;
      font-weight: 720;
      line-height: 1.35;
      text-align: center;
      white-space: normal;
      opacity: 0;
      visibility: hidden;
      transform: translate(calc(-50% + var(--tooltip-shift, 0px)), 6px);
      pointer-events: none;
      backdrop-filter: blur(14px);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    }
    .tooltip-text::after {
      content: "";
      position: absolute;
      left: calc(50% - var(--tooltip-shift, 0px));
      top: 100%;
      width: 10px;
      height: 10px;
      background: rgba(30,38,52,.94);
      transform: translate(-50%, -5px) rotate(45deg);
    }
    .button-tertiary:hover .tooltip-text,
    .button-tertiary:focus-visible .tooltip-text,
    .button:hover .tooltip-text,
    .button:focus-visible .tooltip-text {
      opacity: 1;
      visibility: visible;
      transform: translate(calc(-50% + var(--tooltip-shift, 0px)), 0);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
    }
    .testflight-qr-button { position: relative; }
    .testflight-qr-tooltip {
      position: absolute;
      left: 50%;
      bottom: calc(100% + 14px);
      z-index: 40;
      width: 180px;
      padding: 10px;
      border: 1px solid rgba(30, 38, 52, .1);
      border-radius: 16px;
      background: #fff;
      box-shadow: 0 18px 44px rgba(30, 38, 52, .2);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 6px);
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
    }
    .testflight-qr-tooltip::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 100%;
      width: 12px;
      height: 12px;
      border-right: 1px solid rgba(30, 38, 52, .1);
      border-bottom: 1px solid rgba(30, 38, 52, .1);
      background: #fff;
      transform: translate(-50%, -6px) rotate(45deg);
    }
    .testflight-qr-tooltip img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .testflight-qr-button:hover .testflight-qr-tooltip,
    .testflight-qr-button:focus-visible .testflight-qr-tooltip {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
    }
    .button svg { width: 18px; height: 18px; }
    .hero-note { margin: 18px 0 0; color: #8792a3; font-size: 12px; }

    .hero-visual { position: relative; min-height: 624px; perspective: 1100px; transform-style: preserve-3d; }
    .screen-surface {
      position: relative;
      display: block;
      overflow: hidden;
      overflow: clip;
      border-radius: inherit;
      background: inherit;
      contain: paint;
      isolation: isolate;
      transform: translateZ(0);
      backface-visibility: hidden;
    }
    .screen-surface::before,
    .screen-surface::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }
    .screen-surface::before {
      background: radial-gradient(circle at var(--screen-glare-x, 50%) var(--screen-glare-y, 50%), rgba(255,255,255,.32), rgba(255,255,255,.08) 22%, transparent 48%);
      opacity: 0;
      transition: opacity .24s ease;
    }
    .screen-surface::after {
      background: linear-gradient(108deg, transparent 31%, rgba(255,255,255,.08) 40%, rgba(255,255,255,.38) 50%, rgba(255,255,255,.08) 60%, transparent 69%);
      opacity: 0;
      transform: translate3d(-130%, 0, 0) skewX(-11deg);
    }
    .screen-surface img { position: relative; z-index: 1; display: block; width: 100%; height: auto; }
    .phone-shot,
    .shot {
      --screen-base-x: 0px;
      --screen-base-y: 0px;
      --screen-base-z: 0px;
      --screen-base-rotate: 0deg;
      --screen-parallax-x: 0px;
      --screen-parallax-y: 0px;
      --screen-hover-y: 0px;
      --screen-hover-z: 0px;
      --screen-peer-x: 0px;
      --screen-peer-y: 0px;
      --screen-peer-z: 0px;
      --screen-tilt-x: 0deg;
      --screen-tilt-y: 0deg;
      --screen-peer-tilt-x: 0deg;
      --screen-peer-tilt-y: 0deg;
      --screen-glare-x: 50%;
      --screen-glare-y: 50%;
      transform:
        translate3d(
          calc(var(--screen-base-x) + var(--screen-parallax-x) + var(--screen-peer-x)),
          calc(var(--screen-base-y) + var(--screen-parallax-y) + var(--screen-hover-y) + var(--screen-peer-y)),
          calc(var(--screen-base-z) + var(--screen-hover-z) + var(--screen-peer-z))
        )
        rotateX(calc(var(--screen-tilt-x) + var(--screen-peer-tilt-x)))
        rotateY(calc(var(--screen-tilt-y) + var(--screen-peer-tilt-y)))
        rotateZ(var(--screen-base-rotate));
      transform-style: preserve-3d;
      backface-visibility: hidden;
    }
    .visual-halo { position: absolute; inset: 4% 6% 0; z-index: 0; border-radius: 50%; background: linear-gradient(135deg, rgba(197,220,252,.9), rgba(234,238,255,.42)); filter: blur(.1px); transform: translateZ(-28px); pointer-events: none; }
    .phone-shot { position: absolute; overflow: visible; border: 1px solid rgba(255,255,255,.7); border-radius: 35px; background: #eef0f7; box-shadow: var(--shadow); }
    .hero-history { --intro-opacity: .88; --screen-parallax-x: var(--hero-screen-back-x); --screen-parallax-y: var(--hero-screen-back-y); --screen-base-z: 20px; --screen-base-rotate: 7deg; width: 218px; right: 109px; bottom: 26px; z-index: 1; opacity: var(--intro-opacity); filter: saturate(.94) brightness(.99); box-shadow: 0 18px 34px rgba(35,52,82,.15), 0 2px 8px rgba(35,52,82,.08); }
    .hero-calendar { --screen-base-x: -50%; --screen-parallax-x: var(--hero-screen-front-x); --screen-parallax-y: var(--hero-screen-front-y); --screen-base-z: 56px; --screen-base-rotate: -2.4deg; width: 270px; left: 40%; top: 0; z-index: 4; box-shadow: 0 34px 72px rgba(35,52,82,.2), 0 8px 22px rgba(35,52,82,.12); }
    .float-pill,
    .mini-card,
    .receipt-float,
    .icon-badge {
      --label-depth: 92px;
      --label-base-rotate-x: 0deg;
      --label-shift-x: 0px;
      --label-shift-y: 0px;
      --label-follow-x: 0px;
      --label-follow-y: 0px;
      --label-hover-y: 0px;
      --label-tilt-x: 0deg;
      --label-tilt-y: 0deg;
      --label-follow-tilt-x: 0deg;
      --label-follow-tilt-y: 0deg;
      transform:
        translate3d(
          calc(var(--label-shift-x) + var(--label-follow-x)),
          calc(var(--label-shift-y) + var(--label-follow-y) + var(--label-hover-y)),
          var(--label-depth)
        )
        rotateX(calc(var(--label-base-rotate-x) + var(--label-tilt-x) + var(--label-follow-tilt-x)))
        rotateY(calc(var(--label-tilt-y) + var(--label-follow-tilt-y)));
      transform-style: preserve-3d;
      backface-visibility: hidden;
    }
    .float-pill { white-space: nowrap; max-width: 90vw;
      position: absolute; z-index: 9; display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.92); border-radius: 14px;
      background: rgba(255,255,255,.92); box-shadow: 0 24px 46px rgba(35,52,82,.18), 0 7px 18px rgba(10,132,255,.1); color: #42536a; font-size: 11px; font-weight: 780; backdrop-filter: blur(12px) saturate(1.12);
      isolation: isolate;
      transform-style: preserve-3d;
      transition: transform .3s cubic-bezier(.2, .74, .24, 1), box-shadow .3s ease;
    }
    .float-pill::before {
      content: "";
      position: absolute;
      inset: 14% 8% -26%;
      z-index: -1;
      border-radius: inherit;
      background: rgba(30,38,52,.2);
      filter: blur(12px);
      opacity: .72;
      transform: translate3d(0, 14px, -54px) scale(.9);
      pointer-events: none;
    }
    .float-pill svg { width: 17px; height: 17px; color: var(--blue); }
    .pill-left { --label-depth: 112px; --label-base-rotate-x: -3deg; left: 0; top: 115px; }
    .pill-bottom { --label-depth: 126px; --label-base-rotate-x: -2deg; left: 54px; bottom: 142px; }

    .motion-ready .hero .eyebrow,
    .motion-ready .hero h1,
    .motion-ready .hero-copy,
    .motion-ready .hero-actions,
    .motion-ready .hero-note {
      animation: introTextIn .72s cubic-bezier(.2, .74, .24, 1) both;
    }
    .motion-ready .hero h1 { animation-delay: .06s; }
    .motion-ready .hero-copy { animation-delay: .12s; }
    .motion-ready .hero-actions { animation-delay: .18s; }
    .motion-ready .hero-note { animation-delay: .24s; }
    .motion-ready .hero .phone-shot,
    .motion-ready .hero .float-pill {
      animation: introVisualIn .78s cubic-bezier(.2, .74, .24, 1) both;
    }
    .motion-ready .hero-calendar { animation-delay: .16s; }
    .motion-ready .hero-history { animation-delay: .24s; }
    .motion-ready .pill-left { animation-delay: .32s; }
    .motion-ready .pill-bottom { animation-delay: .38s; }
    .motion-ready .visual-halo { animation: haloPulse 9s ease-in-out infinite; }
    .motion-ready .eyebrow::before { animation: signalPulse 2.8s ease-in-out infinite; }
    .motion-ready .button-primary { animation: primaryGlow 5.2s ease-in-out 1.4s infinite; }
    .phone-shot,
    .shot,
    .stage-blob,
    .mini-card,
    .receipt-float,
    .icon-badge,
    .quick-item,
    .quick-icon,
    .roadmap-visual {
      transition: transform .34s ease, box-shadow .34s ease, background .34s ease;
    }
    .phone-shot,
    .shot { transition: transform .22s cubic-bezier(.18, .72, .24, 1), box-shadow .3s ease; }
    .motion-ready .reveal-ready {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .66s ease, transform .66s cubic-bezier(.2, .74, .24, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }
    .motion-ready .reveal-ready.reveal-left { transform: translate3d(-28px, 18px, 0); }
    .motion-ready .reveal-ready.reveal-right { transform: translate3d(28px, 18px, 0); }
    .motion-ready .reveal-ready.reveal-pop { transform: translate3d(0, 14px, 0) scale(.96); }
    .motion-ready .reveal-ready.reveal-deep { transform: translate3d(0, 28px, 0) scale(.982); }
    .motion-ready .reveal-ready.reveal-visible {
      opacity: 1;
      transform: translateY(0);
      will-change: auto;
    }
    .motion-ready .shot-stage.reveal-ready,
    .motion-ready .receipt-stage.reveal-ready,
    .motion-ready .icons-stage.reveal-ready,
    .motion-ready .roadmap-visual.reveal-ready {
      transform: translateY(22px) scale(.985);
    }
    .motion-ready .shot-stage.reveal-ready.reveal-visible,
    .motion-ready .receipt-stage.reveal-ready.reveal-visible,
    .motion-ready .icons-stage.reveal-ready.reveal-visible,
    .motion-ready .roadmap-visual.reveal-ready.reveal-visible {
      transform: translateY(0) scale(1);
    }

    @keyframes introTextIn {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes introVisualIn {
      from { opacity: 0; filter: blur(5px) saturate(.94); }
      to { opacity: var(--intro-opacity, 1); filter: blur(0) saturate(1); }
    }
    @keyframes haloPulse {
      0%, 100% { transform: translate3d(0, 0, -28px) scale(1); opacity: 1; }
      50% { transform: translate3d(0, 8px, -28px) scale(1.035); opacity: .84; }
    }
    @keyframes screenSweep {
      0% { opacity: 0; transform: translate3d(-135%, 0, 0) skewX(-11deg); }
      28% { opacity: .76; }
      100% { opacity: 0; transform: translate3d(135%, 0, 0) skewX(-11deg); }
    }
    @keyframes signalPulse {
      0%, 100% { box-shadow: 0 0 0 5px rgba(10,132,255,.12); transform: scale(1); }
      50% { box-shadow: 0 0 0 9px rgba(10,132,255,.07); transform: scale(1.08); }
    }
    @keyframes primaryGlow {
      0%, 100% { box-shadow: 0 15px 26px rgba(10,132,255,.28); }
      50% { box-shadow: 0 18px 36px rgba(10,132,255,.36); }
    }
    @keyframes blobBreathe {
      0%, 100% { transform: translate3d(0, 0, -34px) scale(1) rotate(0deg); }
      50% { transform: translate3d(0, 7px, -34px) scale(1.026) rotate(.6deg); }
    }
    @keyframes glowDrift {
      0%, 100% { transform: translate3d(0, 0, -38px) scale(1); opacity: .92; }
      50% { transform: translate3d(-8px, 10px, -38px) scale(1.035); opacity: .76; }
    }
    @keyframes iconSettle {
      0% { transform: scale(.84) rotate(-5deg); }
      62% { transform: scale(1.08) rotate(2deg); }
      100% { transform: scale(1) rotate(0deg); }
    }
    @keyframes listItemIn {
      from { opacity: 0; transform: translate3d(0, 10px, 0); }
      to { opacity: 1; transform: translate3d(0, 0, 0); }
    }
    @keyframes presetSlide {
      from { opacity: 0; --shape-entry-x: -18px; }
      to { opacity: 1; --shape-entry-x: 0px; }
    }
    @keyframes barRise {
      from { opacity: .25; --shape-entry-scale: .18; }
      to { opacity: 1; --shape-entry-scale: 1; }
    }
    @keyframes languageSymbolIn {
      from {
        opacity: 0;
        --shape-entry-x: var(--language-entry-x, 0px);
        --shape-entry-y: var(--language-entry-y, 0px);
        --shape-entry-uniform-scale: .58;
        filter: blur(3px);
      }
      to {
        opacity: 1;
        --shape-entry-x: 0px;
        --shape-entry-y: 0px;
        --shape-entry-uniform-scale: 1;
        filter: blur(0);
      }
    }
    @property --budget-fill-angle {
      syntax: "<angle>";
      inherits: false;
      initial-value: 0deg;
    }
    @property --shape-pointer-x {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-pointer-y {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-pointer-z {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-entry-x {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-entry-y {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-entry-scale {
      syntax: "<number>";
      inherits: false;
      initial-value: 1;
    }
    @property --shape-entry-uniform-scale {
      syntax: "<number>";
      inherits: false;
      initial-value: 1;
    }
    @property --shape-ambient-x {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-ambient-y {
      syntax: "<length>";
      inherits: false;
      initial-value: 0px;
    }
    @property --shape-ambient-rotate {
      syntax: "<angle>";
      inherits: false;
      initial-value: 0deg;
    }
    @keyframes budgetRingFill {
      from { --budget-fill-angle: 0deg; }
      to { --budget-fill-angle: 258deg; }
    }
    @keyframes budgetLineFill {
      from { opacity: .55; transform: scaleX(0); }
      to { opacity: 1; transform: scaleX(1); }
    }
    @keyframes lineDraw {
      from { stroke-dashoffset: 360; }
      to { stroke-dashoffset: 0; }
    }
    @keyframes roadmapShapeDrift {
      0%, 100% {
        --shape-ambient-x: 0px;
        --shape-ambient-y: 0px;
      }
      50% {
        --shape-ambient-x: var(--shape-drift-x, 0px);
        --shape-ambient-y: var(--shape-drift-y, -2px);
      }
    }
    @keyframes roadmapShapeOrbit {
      0%, 100% {
        --shape-ambient-x: 0px;
        --shape-ambient-y: 0px;
        --shape-ambient-rotate: 0deg;
      }
      50% {
        --shape-ambient-x: var(--shape-drift-x, 1px);
        --shape-ambient-y: var(--shape-drift-y, -2px);
        --shape-ambient-rotate: var(--shape-rotate, 1.5deg);
      }
    }
    @keyframes roadmapLinkBreathe {
      0%, 100% { opacity: .72; }
      50% { opacity: 1; }
    }
    @keyframes androidOrbitSpin {
      from { --shape-ambient-rotate: 0deg; }
      to { --shape-ambient-rotate: 360deg; }
    }
    @keyframes androidStatusPulse {
      0%, 100% { box-shadow: 0 10px 22px rgba(32,104,57,.08); }
      50% { box-shadow: 0 14px 30px rgba(36,146,74,.18); }
    }

    .motion-ready .motion-in-view .stage-blob { animation: blobBreathe 8.5s ease-in-out infinite; }
    .motion-ready .motion-in-view .receipt-glow { animation: glowDrift 10.5s ease-in-out infinite; }
    .motion-ready .quick-item.motion-in-view .quick-icon { animation: iconSettle .66s cubic-bezier(.2, .74, .24, 1) both; }
    .motion-ready .copy.motion-in-view .feature-list li,
    .motion-ready .receipt-copy.motion-in-view .feature-list li {
      animation: listItemIn .48s cubic-bezier(.2, .74, .24, 1) both;
    }
    .motion-ready .motion-in-view .feature-list li:nth-child(2) { animation-delay: .08s; }
    .motion-ready .motion-in-view .feature-list li:nth-child(3) { animation-delay: .16s; }
    .motion-ready .roadmap-visual.motion-in-view .preset-row {
      animation:
        presetSlide .62s cubic-bezier(.2, .74, .24, 1) var(--entry-delay, 0s) both,
        roadmapShapeDrift var(--shape-duration, 7s) ease-in-out var(--shape-start, 1.15s) infinite;
    }
    .motion-ready .roadmap-visual.motion-in-view .preset-add {
      animation: roadmapShapeOrbit 8.2s ease-in-out .9s infinite;
    }
    .motion-ready .roadmap-visual.motion-in-view .stats-bar {
      animation:
        barRise .72s cubic-bezier(.2, .74, .24, 1) var(--entry-delay, 0s) both,
        roadmapShapeDrift var(--shape-duration, 7s) ease-in-out var(--shape-start, 1.1s) infinite;
      transform-origin: bottom center;
    }
    .motion-ready .budget-visual .budget-ring { --budget-fill-angle: 0deg; }
    .motion-ready .budget-visual.motion-in-view .budget-ring {
      animation:
        budgetRingFill 1.05s cubic-bezier(.2, .74, .24, 1) .1s both,
        roadmapShapeDrift 7.8s ease-in-out 1.4s infinite;
    }
    .motion-ready .budget-visual.motion-in-view .budget-line {
      animation: roadmapShapeDrift var(--shape-duration, 7s) ease-in-out var(--shape-start, 1.2s) infinite;
    }
    .motion-ready .budget-visual .budget-line::before {
      opacity: .55;
      transform: scaleX(0);
      transform-origin: left center;
    }
    .motion-ready .budget-visual.motion-in-view .budget-line::before {
      animation: budgetLineFill .72s cubic-bezier(.2, .74, .24, 1) both;
    }
    .motion-ready .budget-visual.motion-in-view .budget-line-wide::before { animation-delay: .38s; }
    .motion-ready .budget-visual.motion-in-view .budget-line-mid::before { animation-delay: .5s; }
    .motion-ready .budget-visual.motion-in-view .budget-line-short::before { animation-delay: .62s; }
    .motion-ready .roadmap-visual.motion-in-view .analysis-links path {
      stroke-dasharray: 360;
      stroke-dashoffset: 360;
      animation: lineDraw .9s ease-out both;
    }
    .motion-ready .roadmap-visual.motion-in-view .analysis-links path:nth-child(2) { animation-delay: .12s; }
    .motion-ready .roadmap-visual.motion-in-view .analysis-bubble {
      animation: roadmapShapeDrift var(--shape-duration, 7s) ease-in-out var(--shape-start, 1.1s) infinite;
    }
    .motion-ready .languages-visual .language-globe,
    .motion-ready .languages-visual .language-chip {
      opacity: 0;
      --shape-entry-x: var(--language-entry-x, 0px);
      --shape-entry-y: var(--language-entry-y, 0px);
      --shape-entry-uniform-scale: .58;
    }
    .motion-ready .roadmap-visual.motion-in-view .language-globe,
    .motion-ready .roadmap-visual.motion-in-view .language-chip {
      animation:
        languageSymbolIn .78s cubic-bezier(.18,.82,.24,1) var(--entry-delay, 0s) both,
        roadmapShapeDrift var(--shape-duration, 7s) ease-in-out var(--shape-start, 1.1s) infinite;
    }
    .motion-ready .roadmap-visual.motion-in-view .analysis-links {
      animation: roadmapLinkBreathe 7.4s ease-in-out 1.2s infinite;
    }
    .motion-ready .android-visual .android-mark,
    .motion-ready .android-visual .android-status,
    .motion-ready .android-visual .android-orbit {
      opacity: 0;
      --shape-entry-uniform-scale: .72;
    }
    .motion-ready .android-visual.motion-in-view .android-mark {
      animation:
        languageSymbolIn .72s cubic-bezier(.18,.82,.24,1) .08s both,
        roadmapShapeDrift 6.8s ease-in-out 1s infinite;
    }
    .motion-ready .android-visual.motion-in-view .android-status {
      animation:
        languageSymbolIn .72s cubic-bezier(.18,.82,.24,1) .22s both,
        roadmapShapeDrift 7.6s ease-in-out 1.1s infinite,
        androidStatusPulse 2.8s ease-in-out 1.1s infinite;
    }
    .motion-ready .android-visual.motion-in-view .android-orbit-a {
      animation:
        languageSymbolIn .68s ease-out .12s both,
        androidOrbitSpin 18s linear .8s infinite;
    }
    .motion-ready .android-visual.motion-in-view .android-orbit-b {
      animation:
        languageSymbolIn .68s ease-out .2s both,
        androidOrbitSpin 14s linear .8s reverse infinite;
    }
    .roadmap-shape-interactive {
      --shape-base-x: 0px;
      --shape-base-y: 0px;
      --shape-base-z: 0px;
      --shape-entry-x: 0px;
      --shape-entry-y: 0px;
      --shape-entry-scale: 1;
      --shape-entry-uniform-scale: 1;
      --shape-ambient-x: 0px;
      --shape-ambient-y: 0px;
      --shape-ambient-rotate: 0deg;
      --shape-pointer-x: 0px;
      --shape-pointer-y: 0px;
      --shape-pointer-z: 0px;
      --shape-pointer-rotate: 0deg;
      transform:
        translate3d(
          calc(var(--shape-base-x) + var(--shape-entry-x) + var(--shape-ambient-x) + var(--shape-pointer-x)),
          calc(var(--shape-base-y) + var(--shape-entry-y) + var(--shape-ambient-y) + var(--shape-pointer-y)),
          calc(var(--shape-base-z) + var(--shape-pointer-z))
        )
        rotateZ(var(--shape-ambient-rotate))
        scaleY(var(--shape-entry-scale))
        scale(var(--shape-entry-uniform-scale));
      rotate: var(--shape-pointer-rotate);
      transform-style: preserve-3d;
      backface-visibility: hidden;
      transition:
        --shape-pointer-x .5s cubic-bezier(.16, .8, .22, 1),
        --shape-pointer-y .5s cubic-bezier(.16, .8, .22, 1),
        --shape-pointer-z .5s cubic-bezier(.16, .8, .22, 1),
        rotate .5s cubic-bezier(.16, .8, .22, 1),
        filter .3s ease;
    }
    .roadmap-visual.roadmap-pointer-active .roadmap-shape-interactive {
      transition:
        --shape-pointer-x .16s ease-out,
        --shape-pointer-y .16s ease-out,
        --shape-pointer-z .16s ease-out,
        rotate .16s ease-out,
        filter .2s ease;
    }
    .tilt-ready {
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      --glare-x: 50%;
      --glare-y: 50%;
      transform-style: preserve-3d;
    }
    .tilt-ready::after {
      content: "";
      position: absolute;
      inset: 4% 0 0;
      z-index: 7;
      border-radius: 30px;
      background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255,255,255,.36), rgba(255,255,255,0) 38%);
      opacity: 0;
      pointer-events: none;
      transition: opacity .26s ease;
    }
    .roadmap-visual.tilt-ready::after { inset: 0; border-radius: 8px; }

    @media (hover: hover) and (pointer: fine) {
      .motion-ready .magnetic-ready:not(.button):not(.button-tertiary):not(.is-docked):hover {
        transform: translate(var(--magnet-x, 0px), var(--magnet-y, 0px));
      }
      .motion-ready .screen-interactive:hover {
        --screen-hover-y: -7px;
        --screen-hover-z: 18px;
        will-change: transform;
      }
      .motion-ready .layered-stage .screen-interactive:hover {
        --screen-hover-y: -4px;
        --screen-hover-z: 10px;
      }
      .motion-ready .screen-interactive:hover .screen-surface::before { opacity: .46; }
      .motion-ready .screen-interactive.screen-glint-active .screen-surface::after { animation: screenSweep .88s cubic-bezier(.2, .7, .2, 1) both; }
      .motion-ready .floating-interactive:hover {
        --label-hover-y: -4px;
        box-shadow: 0 30px 54px rgba(35,52,82,.21), 0 9px 22px rgba(10,132,255,.1);
        will-change: transform;
      }
      .motion-ready .roadmap-visual:hover .roadmap-shape-interactive { will-change: transform, rotate; }
      .motion-ready .tilt-ready.motion-in-view:hover {
        transform: perspective(980px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translateY(-2px);
      }
      .motion-ready .tilt-ready.motion-in-view:hover::after { opacity: .82; }
      .quick-item:hover { transform: translateY(-3px); background: rgba(255,255,255,.88); }
      .quick-item:hover .quick-icon { transform: scale(1.06); }
      .calendar-main.screen-interactive:hover { box-shadow: 0 32px 68px rgba(35,52,82,.2), 0 7px 20px rgba(35,52,82,.11); }
      .calendar-sheet.screen-interactive:hover { box-shadow: 0 42px 82px rgba(35,52,82,.25), 0 10px 26px rgba(35,52,82,.15); }
      .receipt-list-shot.screen-interactive:hover { box-shadow: 0 27px 58px rgba(0,0,0,.27), 0 6px 18px rgba(0,0,0,.15); }
      .receipt-detail-shot.screen-interactive:hover { box-shadow: 0 46px 84px rgba(0,0,0,.4), 0 12px 30px rgba(0,0,0,.21); }
      .roadmap-visual:hover { transform: translateY(-4px); box-shadow: 0 22px 46px rgba(32,48,74,.14); }
    }

    .quickbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.71); }
    .quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .quick-item { display: flex; min-height: 104px; align-items: center; gap: 13px; padding: 18px 24px; border-right: 1px solid var(--line); }
    .quick-item:first-child { border-left: 1px solid var(--line); }
    .quick-icon { display: grid; flex: 0 0 auto; width: 39px; height: 39px; place-items: center; border-radius: 13px; color: var(--blue); background: var(--blue-pale); }
    .quick-icon svg { width: 21px; height: 21px; }

    .launch-countdown {
      position: relative;
      overflow: hidden;
      padding: 54px 0;
      color: #fff;
      background: linear-gradient(121deg, #071d3a, #0b3f78 58%, #155ba3);
    }
    .launch-countdown::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -90px;
      top: -230px;
      border-radius: 50%;
      background: rgba(67,164,255,.18);
    }
    .countdown-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 64px; }
    .countdown-copy .section-label { color: #84c3ff; }
    .countdown-copy h2 { max-width: 660px; margin: 12px 0 10px; color: #fff; font-size: clamp(30px, 4vw, 48px); }
    .countdown-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; }
    .countdown-panel { display: flex; min-width: 410px; align-items: center; justify-content: center; }
    .countdown-units { display: flex; align-items: flex-start; justify-content: center; gap: 10px; }
    .countdown-unit { display: grid; min-width: 72px; justify-items: center; gap: 7px; }
    .countdown-unit strong { font-size: clamp(38px, 4.8vw, 58px); line-height: .9; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
    .countdown-unit span { color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; }
    .countdown-separator { padding-top: 2px; color: rgba(132,195,255,.68); font-size: 34px; line-height: 1; }
    .countdown-store-link[hidden], .countdown-units[hidden] { display: none; }
    .countdown-store-link img { height: 54px; }
    .quick-item strong { display: block; font-size: 13px; letter-spacing: -.02em; }
    .quick-item span { margin-top: 2px; color: var(--soft-ink); font-size: 12px; line-height: 1.35; }

    section { padding: 110px 0; }
    .section-head { max-width: 710px; margin-bottom: 42px; }
    .section-label { color: var(--blue-dark); font-size: 12px; font-weight: 830; letter-spacing: .095em; text-transform: uppercase; }
    h2 { margin: 9px 0 14px; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.06; letter-spacing: -.059em; }
    .section-head p { margin: 0; color: var(--soft-ink); font-size: 17px; line-height: 1.68; }

    .showcase { position: relative; display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 68px; }
    .showcase.reverse { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
    .copy h3 { margin: 0 0 14px; font-size: clamp(29px, 3.2vw, 42px); line-height: 1.1; letter-spacing: -.053em; }
    .copy p { margin: 0; color: var(--soft-ink); font-size: 16px; line-height: 1.7; }
    .feature-list { display: grid; gap: 12px; margin: 27px 0 0; padding: 0; list-style: none; }
    .feature-list li { display: flex; align-items: flex-start; gap: 10px; color: #45546a; font-size: 14px; line-height: 1.48; }
    .check { display: grid; flex: 0 0 auto; width: 20px; height: 20px; margin-top: 1px; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); }
    .check svg { width: 12px; height: 12px; }

    .shot-stage { position: relative; min-height: 670px; perspective: 1100px; transform-style: preserve-3d; }
    .stage-blob { position: absolute; inset: 4% 0 2%; z-index: 0; border-radius: 49% 51% 42% 58% / 50% 38% 62% 50%; background: linear-gradient(145deg, #e3efff, #f2f0ff); transform: translateZ(-34px); pointer-events: none; }
    .shot { position: absolute; overflow: visible; border: 1px solid rgba(255,255,255,.85); border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
    .calendar-main { --screen-base-z: 38px; --screen-base-rotate: -3deg; width: 290px; left: 55px; top: 0; z-index: 3; box-shadow: 0 30px 64px rgba(35,52,82,.18), 0 6px 18px rgba(35,52,82,.1); }
    .calendar-sheet { --screen-base-z: 78px; --screen-base-rotate: 4deg; width: 265px; right: 5px; bottom: 0; z-index: 5; box-shadow: 0 38px 76px rgba(35,52,82,.23), 0 9px 24px rgba(35,52,82,.14); }
    .history-stage { min-height: 648px; }
    .history-stage .stage-blob { border-radius: 51% 49% 62% 38% / 49% 51% 49% 51%; background: linear-gradient(145deg, #e8f5ff, #f3f3fc); }
    .history-screen { --screen-base-x: -50%; --screen-base-z: 36px; --screen-base-rotate: 2.2deg; width: 305px; left: 35%; top: 0; z-index: 2; }
    .mini-card { --label-depth: 96px; position: absolute; z-index: 8; padding: 13px 15px; border: 1px solid rgba(255,255,255,.76); border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); backdrop-filter: blur(14px); }
    .mini-card span { display: block; color: #718097; font-size: 11px; font-weight: 700; }
    .mini-card strong { display: block; margin-top: 2px; color: #25334a; font-size: 18px; letter-spacing: -.045em; }
    .history-card { left: 2px; top: 180px; }

    .receipts { overflow: hidden; color: #fff; background: #182132; }
    .receipts .section-label { color: #8dbdff; }
    .receipts .section-head p { color: #b7c2d6; }
    .receipt-layout { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); align-items: center; gap: 68px; }
    .receipt-copy h2 { color: #fff; }
    .receipt-copy h3 { margin: 0 0 14px; color: #fff; font-size: clamp(30px, 3.3vw, 43px); line-height: 1.1; letter-spacing: -.055em; }
    .receipt-copy p { margin: 0; color: #b7c2d6; font-size: 16px; line-height: 1.7; }
    .receipt-copy .feature-list li { color: #d5def0; }
    .receipt-copy .check { color: #193254; background: #96c4ff; }
    .receipt-stage { position: relative; min-height: 713px; perspective: 1100px; transform-style: preserve-3d; }
    .receipt-glow { position: absolute; inset: 5% -10% 0; z-index: 0; border-radius: 50%; background: radial-gradient(circle, rgba(50,132,255,.38), rgba(88,78,223,.08) 47%, transparent 70%); transform: translateZ(-38px); pointer-events: none; }
    .receipt-list-shot { --screen-base-z: 28px; --screen-base-rotate: -4.5deg; width: 275px; left: 0; top: 25px; z-index: 2; opacity: .94; filter: saturate(.96); box-shadow: 0 24px 52px rgba(0,0,0,.24), 0 5px 16px rgba(0,0,0,.13); }
    .receipt-detail-shot { --screen-base-z: 82px; --screen-base-rotate: 4.1deg; width: 305px; right: 0; bottom: 0; z-index: 5; box-shadow: 0 42px 78px rgba(0,0,0,.38), 0 11px 28px rgba(0,0,0,.2); }
    .receipt-float { --label-depth: 126px; position: absolute; z-index: 8; left: 140px; bottom: 196px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: #cce1ff; background: rgba(31,48,76,.75); box-shadow: 0 20px 30px rgba(0,0,0,.18); font-size: 11px; font-weight: 760; backdrop-filter: blur(14px); }

    .asset-section { background: linear-gradient(180deg, #f4f5fa 0%, #edf1fb 100%); }
    .asset-shot { --screen-base-x: -50%; --screen-base-z: 40px; --screen-base-rotate: -2.1deg; width: 310px; left: 50%; top: 0; z-index: 2; }
    .asset-card { right: 40px; top: 105px; }
    .asset-card strong { color: var(--blue); }

    .subscription-section { background: #fff; }
    .subscription-shot { --screen-base-x: -50%; --screen-base-z: 40px; --screen-base-rotate: 2deg; width: 310px; left: 50%; top: 0; z-index: 2; }
    .subscription-stage .stage-blob { background: linear-gradient(145deg, #e5efff, #eef8f7); }
    .sub-card { left: 44px; bottom: 186px; }
    .sub-card strong { color: #2f80e8; }

    .icons-section { padding-bottom: 118px; }
    .icons-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: 68px; }
    .icons-stage { position: relative; min-height: 680px; perspective: 1100px; transform-style: preserve-3d; }
    .icons-stage .stage-blob { inset: 2% 5% 1%; border-radius: 44% 56% 53% 47% / 48% 42% 58% 52%; background: linear-gradient(145deg, #f1edff, #edf6ff); }
    .icon-shot { --screen-base-x: -50%; --screen-base-z: 40px; --screen-base-rotate: -1.4deg; width: 310px; left: 50%; top: 0; z-index: 2; }
    .icon-badge { --label-depth: 102px; position: absolute; right: 12px; bottom: 145px; z-index: 8; display: flex; align-items: center; gap: 9px; padding: 12px 14px; border-radius: 15px; background: rgba(255,255,255,.91); box-shadow: var(--shadow-soft); color: #435168; font-size: 12px; font-weight: 760; backdrop-filter: blur(14px); }
    .icon-badge i { display: block; width: 13px; height: 13px; border-radius: 4px; background: linear-gradient(135deg, #1c90f2, #c13cea); }
    .mini-card,
    .receipt-float,
    .icon-badge {
      isolation: isolate;
      transform-style: preserve-3d;
      box-shadow: 0 26px 48px rgba(35,52,82,.18), 0 7px 18px rgba(35,52,82,.09);
    }
    .mini-card::before,
    .receipt-float::before,
    .icon-badge::before {
      content: "";
      position: absolute;
      inset: 16% 9% -30%;
      z-index: -1;
      border-radius: inherit;
      background: rgba(30,38,52,.2);
      filter: blur(12px);
      opacity: .68;
      transform: translate3d(0, 13px, -42px) scale(.9);
      pointer-events: none;
    }

    .roadmap-intro { padding-bottom: 46px; background: #f8faff; }
    .roadmap-head { max-width: 780px; margin-bottom: 0; }
    .roadmap-kicker {
      width: max-content;
      padding: 7px 12px;
      border: 1px solid rgba(10,132,255,.24);
      border-radius: 999px;
      background: rgba(10,132,255,.1);
      color: var(--blue-dark);
      box-shadow: 0 10px 24px rgba(10,132,255,.08);
    }
    .roadmap-feature { padding: 54px 0; }
    .roadmap-feature-presets, .roadmap-feature-stats, .roadmap-feature-languages { background: #f8faff; }
    .roadmap-feature-budget, .roadmap-feature-analysis, .roadmap-feature-android { background: #fff; }
    .roadmap-feature-layout {
      display: grid;
      grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
      align-items: center;
      gap: 58px;
    }
    .roadmap-feature-layout-reverse { grid-template-columns: minmax(0, 1.16fr) minmax(280px, .84fr); }
    .roadmap-feature-layout-reverse .roadmap-visual { order: 2; }
    .roadmap-copy { max-width: 610px; }
    .roadmap-badge {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: #0a84ff;
      color: #fff;
      box-shadow: 0 12px 24px rgba(10,132,255,.2);
      font-size: 12px;
      font-weight: 830;
      letter-spacing: 0;
    }
    .roadmap-copy h3 {
      margin: 16px 0 12px;
      color: var(--ink);
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.13;
      letter-spacing: 0;
    }
    .roadmap-copy p { margin: 0; color: #536278; font-size: 16px; line-height: 1.68; }
    .roadmap-visual {
      position: relative;
      display: grid;
      min-height: 292px;
      place-items: center;
      overflow: hidden;
      perspective: 920px;
      transform-style: preserve-3d;
      border: 1px solid rgba(26,42,66,.1);
      border-radius: 40px;
      background: #edf4ff;
      box-shadow: var(--shadow-soft);
    }
    .roadmap-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26,42,66,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,42,66,.045) 1px, transparent 1px);
      background-size: 24px 24px;
    }

    .preset-visual { background: #eef6ff; }
    .preset-window {
      position: relative;
      z-index: 1;
      display: grid;
      width: min(340px, 84%);
      gap: 12px;
      padding: 18px;
    }
    .preset-row {
      display: flex;
      height: 54px;
      align-items: center;
      gap: 13px;
      padding: 0 16px;
      border: 1px solid rgba(26,42,66,.1);
      border-radius: 8px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 13px 28px rgba(35,52,82,.1);
    }
    .preset-row i { display: block; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 7px; }
    .preset-row b { display: block; height: 9px; flex: 1; border-radius: 999px; background: #d8e3f2; }
    .preset-row-a { --entry-delay: 0s; --shape-drift-x: 1px; --shape-drift-y: -2px; --shape-duration: 7.2s; --shape-start: 1.2s; }
    .preset-row-a i { background: #0a84ff; }
    .preset-row-b { --entry-delay: .08s; --shape-drift-x: -1.5px; --shape-drift-y: 1px; --shape-duration: 8s; --shape-start: 1.55s; width: 88%; margin-left: auto; }
    .preset-row-b i { background: #20a68a; }
    .preset-row-c { --entry-delay: .16s; --shape-drift-x: 1px; --shape-drift-y: -1.5px; --shape-duration: 6.8s; --shape-start: 1.9s; width: 76%; }
    .preset-row-c i { background: #7b61ff; }
    .preset-add {
      --shape-drift-x: 2px;
      --shape-drift-y: -2px;
      --shape-rotate: 1.8deg;
      position: absolute;
      right: -6px;
      bottom: -10px;
      z-index: 2;
      display: grid;
      width: 58px;
      height: 58px;
      place-items: center;
      border: 4px solid #eef6ff;
      border-radius: 50%;
      background: var(--blue);
      color: #fff;
      box-shadow: 0 16px 28px rgba(10,132,255,.26);
    }
    .preset-add::before,
    .preset-add::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 22px;
      height: 4px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }
    .preset-add::after {
      width: 4px;
      height: 22px;
    }

    .budget-visual { background: #f2f8f4; }
    .budget-board {
      position: relative;
      z-index: 1;
      display: grid;
      width: min(330px, 84%);
      justify-items: center;
      gap: 20px;
    }
    .budget-ring {
      --budget-fill-angle: 258deg;
      --shape-drift-x: 1px;
      --shape-drift-y: -2px;
      position: relative;
      display: grid;
      width: 152px;
      height: 152px;
      place-items: center;
      border-radius: 50%;
      background: conic-gradient(#20a68a 0 var(--budget-fill-angle), #d9e9e4 var(--budget-fill-angle) 360deg);
      box-shadow: 0 18px 34px rgba(32,166,138,.16);
    }
    .budget-ring::before {
      content: "";
      position: absolute;
      width: 104px;
      height: 104px;
      border-radius: 50%;
      background: #fff;
    }
    .budget-ring span {
      position: relative;
      color: #1f735f;
      font-size: 17px;
      font-weight: 830;
      letter-spacing: 0;
    }
    .budget-lines { display: grid; width: 100%; gap: 10px; }
    .budget-line {
      display: block;
      height: 14px;
      border-radius: 999px;
      background: #d7e9e3;
      overflow: hidden;
    }
    .budget-line::before { content: ""; display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #20a68a, #32c9a7); transform-origin: left center; }
    .budget-line-wide { --shape-drift-x: 1px; --shape-drift-y: -1px; --shape-duration: 7.4s; --shape-start: 1.5s; }
    .budget-line-mid { --shape-drift-x: -1px; --shape-drift-y: 1px; --shape-duration: 8.2s; --shape-start: 1.8s; }
    .budget-line-short { --shape-drift-x: 1.5px; --shape-drift-y: -.5px; --shape-duration: 6.9s; --shape-start: 2.1s; }
    .budget-line-wide::before { width: 82%; }
    .budget-line-mid::before { width: 58%; }
    .budget-line-short::before { width: 36%; }

    .stats-visual { background: #f4f1ff; }
    .stats-frame {
      position: relative;
      z-index: 1;
      width: min(360px, 86%);
      height: 220px;
    }
    .stats-frame::before,
    .stats-frame::after {
      content: "";
      position: absolute;
      z-index: 1;
      background: rgba(26,42,66,.18);
    }
    .stats-frame::before {
      left: 24px;
      top: 20px;
      bottom: 22px;
      width: 2px;
    }
    .stats-frame::after {
      left: 24px;
      right: 18px;
      bottom: 22px;
      height: 2px;
    }
    .stats-bar {
      position: absolute;
      z-index: 2;
      bottom: 22px;
      display: block;
      width: 38px;
      border-radius: 8px 8px 0 0;
      background: linear-gradient(180deg, #7b61ff 0%, #8f78ff 100%);
      box-shadow: 0 14px 26px rgba(123,97,255,.18);
    }
    .stats-bar::after {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      top: 10px;
      height: 3px;
      border-radius: 999px;
      background: rgba(255,255,255,.42);
    }
    .stats-bar-a { --entry-delay: 0s; --shape-drift-x: -.8px; --shape-drift-y: -2px; --shape-duration: 6.8s; --shape-start: 1.1s; left: 58px; height: 70px; opacity: .74; }
    .stats-bar-b { --entry-delay: .06s; --shape-drift-x: 1px; --shape-drift-y: -1px; --shape-duration: 7.6s; --shape-start: 1.35s; left: 108px; height: 118px; opacity: .88; }
    .stats-bar-c { --entry-delay: .12s; --shape-drift-x: -1px; --shape-drift-y: -2.5px; --shape-duration: 6.9s; --shape-start: 1.6s; left: 158px; height: 92px; opacity: .78; }
    .stats-bar-d { --entry-delay: .18s; --shape-drift-x: .7px; --shape-drift-y: -1.5px; --shape-duration: 8.1s; --shape-start: 1.85s; left: 208px; height: 152px; }
    .stats-bar-e { --entry-delay: .24s; --shape-drift-x: -1.2px; --shape-drift-y: -2px; --shape-duration: 7.2s; --shape-start: 2.1s; left: 258px; height: 126px; opacity: .9; }

    .analysis-visual { background: #fff5ed; }
    .analysis-board {
      position: relative;
      z-index: 1;
      width: min(360px, 86%);
      height: 232px;
    }
    .analysis-bubble {
      position: absolute;
      z-index: 2;
      display: grid;
      place-items: center;
      border: 1px solid rgba(26,42,66,.1);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 16px 30px rgba(35,52,82,.12);
      font-weight: 830;
      letter-spacing: 0;
    }
    .bubble-question {
      --shape-base-x: -50%;
      --shape-drift-x: 1.5px;
      --shape-drift-y: -2px;
      --shape-duration: 7.2s;
      --shape-start: 1.1s;
      left: 50%;
      top: 12px;
      width: 74px;
      height: 74px;
      color: #d46b08;
      font-size: 0;
    }
    .bubble-question::before {
      content: "?";
      position: absolute;
      left: 50%;
      top: 50%;
      color: inherit;
      font-size: 34px;
      line-height: 1;
      transform: translate(-52%, -50%);
    }
    .bubble-keep {
      --shape-drift-x: -1px;
      --shape-drift-y: 1px;
      --shape-duration: 8.1s;
      --shape-start: 1.5s;
      left: 18px;
      bottom: 24px;
      width: 112px;
      height: 62px;
      color: #1f735f;
      font-size: 18px;
    }
    .bubble-review {
      --shape-drift-x: 1px;
      --shape-drift-y: .5px;
      --shape-duration: 7.6s;
      --shape-start: 1.9s;
      right: 18px;
      bottom: 24px;
      width: 112px;
      height: 62px;
      color: #b35400;
      font-size: 18px;
    }
    .analysis-links {
      position: absolute;
      z-index: 1;
      inset: 0;
      width: 100%;
      height: 100%;
      color: #f1a65b;
      overflow: visible;
      pointer-events: none;
    }
    .analysis-links path {
      stroke: currentColor;
      stroke-width: 4;
      stroke-linecap: round;
    }

    .languages-visual { background: #eef7fb; }
    .languages-board {
      position: relative;
      z-index: 1;
      width: min(360px, 86%);
      height: 232px;
    }
    .language-globe {
      --shape-base-x: -50%;
      --shape-base-y: -50%;
      --shape-base-z: 24px;
      --shape-drift-x: 1px;
      --shape-drift-y: -1.5px;
      --shape-duration: 7.6s;
      --shape-start: 1.2s;
      --entry-delay: .06s;
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 50%;
      display: block;
      width: 126px;
      height: 126px;
      border: 5px solid #1587a8;
      border-radius: 50%;
      background: rgba(255,255,255,.78);
      box-shadow: 0 18px 34px rgba(21,135,168,.16);
      transform: translate(-50%, -50%);
    }
    .language-globe::before,
    .language-globe::after,
    .language-globe i,
    .language-globe b {
      content: "";
      position: absolute;
      display: block;
    }
    .language-globe::before {
      left: 50%;
      top: -5px;
      width: 46px;
      height: 126px;
      border: 4px solid #1587a8;
      border-top: 0;
      border-bottom: 0;
      border-radius: 50%;
      transform: translateX(-50%);
    }
    .language-globe::after {
      left: 10px;
      right: 10px;
      top: 50%;
      height: 4px;
      border-radius: 999px;
      background: #1587a8;
      transform: translateY(-50%);
    }
    .language-globe i {
      left: 2px;
      right: 2px;
      top: 27px;
      height: 4px;
      border-radius: 50%;
      background: #1587a8;
    }
    .language-globe b {
      left: 2px;
      right: 2px;
      bottom: 27px;
      height: 4px;
      border-radius: 50%;
      background: #1587a8;
    }
    .language-chip {
      --language-spread-x: clamp(72px, 20vw, 135px);
      --language-spread-y: clamp(60px, 10vw, 70px);
      --shape-base-z: -12px;
      position: absolute;
      z-index: 1;
      left: 50%;
      top: 50%;
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      border: 1px solid rgba(26,42,66,.1);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 14px 28px rgba(35,52,82,.12);
      color: #176c86;
      font-size: 20px;
      font-weight: 830;
    }
    .language-chip-a { --shape-base-x: calc(-50% - var(--language-spread-x)); --shape-base-y: calc(-50% - var(--language-spread-y)); --language-entry-x: var(--language-spread-x); --language-entry-y: var(--language-spread-y); --entry-delay: .18s; --shape-drift-x: -1px; --shape-drift-y: -2px; --shape-duration: 7.2s; --shape-start: 1.4s; }
    .language-chip-b { --shape-base-x: calc(-50% + var(--language-spread-x)); --shape-base-y: calc(-50% - var(--language-spread-y)); --language-entry-x: calc(0px - var(--language-spread-x)); --language-entry-y: var(--language-spread-y); --entry-delay: .3s; --shape-drift-x: 1.5px; --shape-drift-y: 1px; --shape-duration: 8s; --shape-start: 1.7s; }
    .language-chip-c { --shape-base-x: calc(-50% - var(--language-spread-x)); --shape-base-y: calc(-50% + var(--language-spread-y)); --language-entry-x: var(--language-spread-x); --language-entry-y: calc(0px - var(--language-spread-y)); --entry-delay: .42s; --shape-drift-x: -1.5px; --shape-drift-y: 1px; --shape-duration: 7.7s; --shape-start: 2s; }
    .language-chip-more { --shape-base-x: calc(-50% + var(--language-spread-x)); --shape-base-y: calc(-50% + var(--language-spread-y)); --shape-base-z: -24px; --language-entry-x: calc(0px - var(--language-spread-x)); --language-entry-y: calc(0px - var(--language-spread-y)); --entry-delay: .54s; --shape-drift-x: 1px; --shape-drift-y: -1px; --shape-duration: 6.9s; --shape-start: 2.3s; z-index: 0; background: #1587a8; color: #fff; font-size: 0; }
    .language-chip-more::before,
    .language-chip-more::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 22px;
      height: 4px;
      border-radius: 999px;
      background: currentColor;
      transform: translate(-50%, -50%);
    }
    .language-chip-more::after { width: 4px; height: 22px; }
    .android-board {
      position: relative;
      display: grid;
      width: min(100%, 390px);
      min-height: 220px;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(49,173,94,.16);
      border-radius: 34px;
      background: linear-gradient(145deg, #f7fff9, #e8f8ed);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 24px 46px rgba(38,125,69,.1);
    }
    .android-mark { z-index: 1; color: #176e38; font-size: clamp(34px, 4.8vw, 56px); font-weight: 850; letter-spacing: -.055em; transition: color .24s ease, text-shadow .24s ease; }
    .android-status { position: absolute; z-index: 1; left: 0; right: 0; bottom: 38px; display: inline-flex; width: max-content; margin: auto; align-items: center; gap: 8px; padding: 9px 13px; border: 1px solid rgba(36,146,74,.15); border-radius: 999px; color: #39714c; background: rgba(255,255,255,.82); font-size: 12px; font-weight: 760; box-shadow: 0 10px 22px rgba(32,104,57,.08); }
    .android-status i { width: 8px; height: 8px; border-radius: 50%; background: #34c759; box-shadow: 0 0 0 5px rgba(52,199,89,.12); transition: transform .24s ease, box-shadow .24s ease; }
    .android-orbit { position: absolute; border: 1px dashed rgba(52,199,89,.28); border-radius: 50%; }
    .android-orbit-a { width: 260px; height: 260px; right: -104px; top: -120px; }
    .android-orbit-b { width: 170px; height: 170px; left: -64px; bottom: -92px; }
    @media (hover: hover) and (pointer: fine) {
      .motion-ready .android-visual:hover .android-mark { color: #10813a; text-shadow: 0 10px 26px rgba(52,199,89,.2); }
      .motion-ready .android-visual:hover .android-status i { transform: scale(1.2); box-shadow: 0 0 0 8px rgba(52,199,89,.14); }
    }
    .roadmap-disclaimer { padding: 32px 0 78px; background: #f8faff; }
    .roadmap-note {
      margin: 0;
      padding: 14px 16px;
      border: 1px solid rgba(26,42,66,.1);
      border-radius: 8px;
      background: rgba(255,255,255,.78);
      color: #6c798e;
      font-size: 13px;
      line-height: 1.55;
    }

    .test-program { padding: 76px 0; background: #fff; }
    .test-program-card {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      align-items: center;
      justify-items: center;
      gap: 32px;
      overflow: hidden;
      padding: 58px 64px;
      border: 1px solid rgba(10,132,255,.15);
      border-radius: 32px;
      background: linear-gradient(135deg, #f6fbff, #edf6ff 58%, #f6f3ff);
      box-shadow: 0 24px 60px rgba(28,80,140,.1);
      text-align: center;
    }
    .test-program-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -130px; top: -150px; border-radius: 50%; background: rgba(10,132,255,.1); }
    .test-program-copy { position: relative; z-index: 1; max-width: 760px; }
    .test-program-copy h2 { margin: 13px 0 14px; font-size: clamp(31px, 4.4vw, 50px); }
    .test-program-copy p { margin: 0; color: var(--soft-ink); font-size: 16px; line-height: 1.65; }
    .test-program-action { position: relative; z-index: 2; display: grid; width: 100%; justify-items: center; gap: 14px; }
    .test-program-buttons { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: nowrap; }
    .test-program-action > span { max-width: 250px; color: #75839a; font-size: 11px; line-height: 1.5; text-align: center; }
    .test-program-action .button { min-width: 214px; }
    .test-program-action svg { width: 18px; height: 18px; }
    .google-play-test { position: relative; }
    .google-play-mark { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 12px solid currentColor; opacity: .72; }

    .cta { position: relative; overflow: hidden; color: #fff; background: linear-gradient(121deg, #0a75d8, #0a84ff 56%, #6c78ef); padding: 20px 0; }
    .cta::after { content: ""; position: absolute; width: 480px; height: 480px; right: -140px; bottom: -230px; border-radius: 50%; background: rgba(255,255,255,.15); }
    .cta-box {
      position: relative;
      z-index: 1;
      display: grid;
      min-height: 280px;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 80px;
    }
    .cta-copy { max-width: 680px; padding: 90px 0; }
    .cta-side {
      display: flex;
      min-width: min(100%, 420px);
      align-self: stretch;
      justify-self: end;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 28px;
      padding: 76px 0 8px;
      flex-direction: column;
    }
    .cta-actions { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
    .cta-top-button { position: absolute; right: 0; top: 4px; min-height: 42px; padding: 0 15px; }
    .cta-top-arrow { font-size: 16px; line-height: 1; }
    .motion-dock {
      display: flex;
      width: 100%;
      min-height: 65px;
      align-items: flex-end;
      justify-content: flex-end;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.2);
    }
    .motion-dock[hidden] { display: none; }
    .cta h2 { max-width: 650px; margin: 0 0 13px; color: #fff; }
    .cta p { max-width: 600px; margin: 0; color: rgba(255,255,255,.85); font-size: 16px; line-height: 1.65; }
    .cta .button-primary { color: var(--blue-dark); background: #fff; box-shadow: 0 16px 30px rgba(0,50,120,.20); }
    .cta .button-secondary { color: #fff; border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.08); }
    .cta .cta-top-button:hover,
    .cta .cta-top-button:focus-visible { background: rgba(255,255,255,.16); }

    .cta-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

    footer { padding: 30px 0 34px; color: #9aa7bb; background: #131c2b; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; font-size: 12px; }
    .footer-brand { color: #fff; font-weight: 770; }
    .footer-links { display: flex; align-items: center; gap: 18px; }
    .footer-links a { color: #9aa7bb; text-decoration: none; }
    .footer-links a:hover { color: #fff; }
    .social-link {
      display: inline-grid;
      width: 30px;
      height: 30px;
      place-items: center;
      border: 1px solid rgba(154,167,187,.24);
      border-radius: 8px;
      transition: border-color .16s ease, background .16s ease, color .16s ease, transform .2s ease;
    }
    .social-link:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
    .social-icon { display: block; width: 15px; height: 15px; background: currentColor; }
    .social-icon-x {
      mask: url("/img/x.svg") center / contain no-repeat;
      -webkit-mask: url("/img/x.svg") center / contain no-repeat;
    }

    /* ── Language switcher ── */
    .lang-switch { position: relative; display: inline-flex; }
    .lang-trigger {
      display: inline-flex; align-items: center; gap: 5px;
      height: 36px; padding: 0 11px;
      border: 1px solid var(--line); border-radius: 11px;
      background: rgba(255,255,255,.72); color: #536278;
      font-size: 12px; font-weight: 780; font-family: inherit;
      letter-spacing: .04em; cursor: pointer;
      transition: border-color .16s, background .16s, color .16s, transform .2s ease;
      white-space: nowrap;
    }
    .lang-trigger:hover { border-color: rgba(10,132,255,.28); color: var(--blue-dark); background: rgba(255,255,255,.9); }
    .lang-globe { width: 13px; height: 13px; flex-shrink: 0; }
    .lang-chevron { width: 11px; height: 11px; flex-shrink: 0; transition: transform .2s ease; }
    .lang-switch.open .lang-chevron { transform: rotate(180deg); }
    .lang-menu {
      position: absolute; top: calc(100% + 8px); right: 0;
      min-width: 150px; padding: 5px;
      border: 1px solid var(--line); border-radius: 16px;
      background: rgba(255,255,255,.96);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(16px) saturate(1.2);
      opacity: 0; visibility: hidden; transform: translateY(-8px);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
      z-index: 40;
      display: grid;
      gap: 4px;
    }
    .lang-switch.open .lang-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
      transition: opacity .18s ease, transform .18s ease, visibility 0s linear 0s;
    }
    .lang-option {
      display: flex; align-items: center; gap: 9px;
      padding: 9px 12px; border-radius: 11px;
      color: var(--soft-ink); text-decoration: none; font-size: 13px;
      transition: background .12s, color .12s;
    }
    .lang-option:hover { background: var(--blue-pale); color: var(--ink); }
    .lang-option.lang-active { color: var(--blue-dark); background: var(--blue-pale); pointer-events: none; }
    .lang-code { font-size: 11px; font-weight: 820; letter-spacing: .06em; min-width: 20px; }
    .lang-name { font-weight: 600; }

    @media (max-width: 980px) {
      .wrap { width: min(100% - 100px, var(--content)); }
      .hero-grid, .showcase, .showcase.reverse, .receipt-layout, .icons-layout { grid-template-columns: 1fr; gap: 42px; }
      .hero-copy { max-width: 630px; }
      .hero-visual { width: min(100%, 580px); margin: 0 auto; }
      .showcase .copy { max-width: 650px; }
      .showcase.reverse .copy { order: -1; }
      .shot-stage, .receipt-stage, .icons-stage { width: min(100%, 580px); margin: 0 auto; }
      .receipt-copy { max-width: 650px; }
      .quick-grid { grid-template-columns: repeat(2, 1fr); }
      .quick-item:nth-child(3) { border-left: 1px solid var(--line); }
      .roadmap-feature-layout,
      .roadmap-feature-layout-reverse { grid-template-columns: 1fr; gap: 28px; }
      .roadmap-feature-layout-reverse .roadmap-visual { order: 0; }
      .roadmap-copy { max-width: 650px; }
      .roadmap-visual { width: min(100%, 580px); min-height: 260px; }
      .countdown-layout { grid-template-columns: 1fr; gap: 34px; }
      .countdown-panel { min-width: 0; justify-content: flex-start; }
      .test-program-card { gap: 30px; }
      .test-program-action { justify-items: center; }
      .test-program-action > span { text-align: center; }
      .cta-box { min-height: 260px; grid-template-columns: 1fr; align-items: center; gap: 30px; padding-top: 56px; }
      .cta-side { width: min(100%, 520px); min-width: 0; align-self: auto; justify-self: end; gap: 24px; padding: 12px 0 0; }
    }
    @media (max-width: 640px) {
      .wrap { width: min(100% - 100px, var(--content)); }
      .nav .wrap { width: min(100% - 24px, var(--content)); }
      .nav-inner { min-height: 62px; flex-wrap: nowrap; gap: 10px; }
      .brand { margin-bottom: 0; font-size: 18px; }
      .nav-links a:not(.contact) { display: none; }
      .nav-links { margin-left: auto; gap: 8px; }
      .nav-links .contact { padding: 9px 11px; font-size: 12px; }
      .lang-switch.open > .lang-menu > a:not(.contact) { display: flex; }
      .lang-trigger { height: 34px; padding: 0 10px; }
      .hero { padding: 60px 0 52px; }
      h1 { font-size: clamp(32px, 10.8vw, 46px); }
      h2 { font-size: clamp(28px, 8.8vw, 38px); line-height: 1.12; }
      .hero-copy { margin-top: 18px; font-size: 15px; line-height: 1.6; }
      .hero-actions { gap: 10px; margin-top: 26px; }
      .hero-actions .button { flex: 0 0 auto; max-width: 100%; white-space: nowrap; }
      .hero .hero-actions { flex-direction: column-reverse; align-items: center; }
      .hero .hero-actions .button { width: min(100%, 320px); }
      .hero .store-badges { width: 100%; justify-content: center; }
      .button { min-height: 46px; padding: 0 15px; font-size: 13px; }
      .button-tertiary img { height: 46px; }
      .tooltip-text { bottom: calc(100% + 10px); max-width: min(180px, calc(100vw - 28px)); font-size: 11px; }
      .hero-visual { min-height: 500px; margin-bottom: 0; transform: none; }
      .hero-calendar { width: min(64vw, 240px); }
      .hero-history { width: min(52vw, 180px); right: 0; bottom: 28px; }
      .float-pill { gap: 7px; padding: 8px 10px; font-size: 10px; max-width: 72vw; white-space: normal; line-height: 1.25; }
      .pill-left { left: auto; right: 0; top: 92px; bottom: auto; }
      .pill-bottom { left: 14px; bottom: 68px; }

      .launch-countdown { padding: 46px 0; }
      .countdown-layout { gap: 30px; }
      .countdown-copy h2 { font-size: clamp(27px, 8.5vw, 36px); }
      .countdown-panel { width: 100%; justify-content: center; }
      .countdown-units { width: 100%; gap: 3px; }
      .countdown-unit { flex: 1 1 0; min-width: 0; }
      .countdown-unit strong { font-size: clamp(30px, 10vw, 42px); }
      .countdown-separator { font-size: 25px; }

      .quick-grid { grid-template-columns: 1fr; max-width: 50%; }
      .quick-item, .quick-item:first-child, .quick-item:nth-child(3) {
        min-height: auto; padding: 14px 0; align-items: flex-start;
        border-left: 0; border-right: 0; border-bottom: 1px solid var(--line);
      }
      .quick-item:last-child { border-bottom: 0; }

      section { padding: 72px 0; }
      .section-head { margin-bottom: 26px; }
      .section-head p, .copy p, .receipt-copy p, .roadmap-copy p, .cta p { font-size: 15px; line-height: 1.62; }
      .copy h3, .receipt-copy h3 { font-size: clamp(24px, 8vw, 30px); }

      .shot-stage { min-height: 565px; margin-bottom: 0; transform: none; }
      .history-stage { min-height: 520px; }
      .receipt-stage { min-height: 580px; margin-bottom: 0; transform: none; }
      .icons-stage { min-height: 620px; margin-bottom: 0; transform: none; }

      .calendar-main { width: min(68vw, 240px); left: -48px; top: 0; }
      .calendar-sheet { width: min(61vw, 218px); right: -40px; bottom: 0; }
      .history-screen { width: min(69vw, 255px); }
      .history-card { left: -18px; top: 100px; }

      .receipt-list-shot { width: min(60vw, 220px); left: -60px; top: 18px; }
      .receipt-detail-shot { width: min(66vw, 248px); right: -50px; bottom: 0; }
      .receipt-float { left: 12px; bottom: 154px; padding: 9px 11px; font-size: 10px; }

      .asset-shot, .subscription-shot, .icon-shot { width: min(74vw, 260px); left: 35% }
      .asset-card { right: 6px; top: 82px; }
      .sub-card { left: -14px; bottom: 108px; }
      .icon-badge { right: -18px; bottom: 164px; padding: 10px 12px; font-size: 11px; }
      .roadmap-intro { padding: 68px 0 30px; }
      .roadmap-feature { padding: 34px 0; }
      .roadmap-feature-layout,
      .roadmap-feature-layout-reverse { gap: 22px; }
      .roadmap-visual { min-height: 222px; }
      .roadmap-copy h3 { margin-top: 14px; font-size: clamp(23px, 7.6vw, 30px); }
      .preset-window { width: min(330px, 88%); padding: 10px; }
      .preset-row { height: 38px; }
      .preset-row i { width: 20px; height: 20px;}
      .preset-add { right: 12px; bottom: -2px; width: 42px; height: 42px; }
      .preset-add::before { width: 20px; height: 4px; }
      .preset-add::after { width: 4px; height: 20px; }
      .budget-ring { width: 92px; height: 92px; }
      .budget-ring::before { width: 60px; height: 60px; }
      .budget-ring span { font-size: 12px; }
      .budget-line { height: 8px; }
      .stats-frame { width: min(100%, 300px); height: 190px; }
      .stats-frame::before { left: 30px; top: 28px; bottom: 20px; }
      .stats-frame::after { left: 30px; right: 34px; bottom: 20px; }
      .stats-bar { width: 25px; bottom: 20px; border-radius: 7px 7px 0 0; }
      .stats-bar::after { left: 7px; right: 7px; top: 8px; }
      .stats-bar-a { left: 44px; height: 58px; }
      .stats-bar-b { left: 86px; height: 100px; }
      .stats-bar-c { left: 128px; height: 76px; }
      .stats-bar-d { left: 170px; height: 130px; }
      .stats-bar-e { left: 212px; height: 108px; }
      .analysis-board { width: min(100%, 310px); height: 210px; }
      .bubble-question { width: 66px; height: 66px; top: 22px; }
      .bubble-question::before { font-size: 30px; }
      .bubble-keep, .bubble-review { width: 96px; height: 56px; font-size: 16px; bottom: 34px; }
      .roadmap-disclaimer { padding: 22px 0 58px; }
      .roadmap-note { font-size: 12px; }
      .language-chip { width: 40px; height: 40px; font-size: 16px; }
      .language-globe { width: 100px; height: 100px; }
      .language-globe::before { width: 36px; height: 100px; }

      .android-board { min-height: 170px; border-radius: 26px; width: 80%; }
      .android-status { bottom: 28px; }
      .test-program { padding: 58px 0; }
      .test-program-card { width: min(100% - 24px, var(--content)); gap: 28px; padding: 38px 16px; border-radius: 24px; }
      .test-program-copy h2 { font-size: clamp(27px, 8.5vw, 36px); }
      .test-program-action { width: 100%; justify-items: stretch; }
      .test-program-buttons { width: 100%; gap: 8px; }
      .test-program-action .button { flex: 1 1 0; width: auto; min-width: 0; padding: 0 9px; font-size: 11px; }
      .test-program-buttons .button > svg,
      .test-program-buttons .google-play-mark { display: none; }
      .test-program-action > span { max-width: none; text-align: center; }

      .cta { padding: 66px 0; }
      .cta-box { min-height: 0; gap: 28px; padding-top: 58px; }
      .cta-copy { max-width: 100%; padding: 40px 0; }
      .cta-side { width: 100%; align-items: flex-end; gap: 22px; padding-top: 4px; }
      .cta-actions { width: 100%; align-items: flex-end; flex-wrap: wrap; flex-direction: row; justify-content: center; }
      .cta-top-button { right: 0; top: 0; }
      .motion-dock { min-height: 58px; justify-content: center; padding-top: 14px; }
      .footer-inner { flex-direction: column; }
      .footer-links { flex-wrap: wrap; gap: 12px 16px; flex-direction: column; }
      .motion-toggle { right: 14px; bottom: 18px; width: max-content; min-width: 42px; max-width: 42px; height: 42px; padding: 0 12px; }
      .motion-toggle:hover,
      .motion-toggle:focus-visible { max-width: min(280px, calc(100vw - 28px)); }
      .motion-toggle.is-docked { max-width: 100%; }
    }
    html.motion-paused { scroll-behavior: auto; }
    .motion-paused *,
    .motion-paused *::before,
    .motion-paused *::after {
      animation: none !important;
      transition: none !important;
    }
    .motion-paused .reveal-ready {
      opacity: 1 !important;
      transform: none !important;
    }
    .motion-paused .screen-surface::before,
    .motion-paused .screen-surface::after,
    .motion-paused .tilt-ready::after {
      opacity: 0 !important;
    }
    .motion-paused .motion-toggle {
      transition: max-width .32s cubic-bezier(.2, .74, .24, 1), transform .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease !important;
    }
    .motion-paused .motion-toggle-label {
      transition: max-width .3s cubic-bezier(.2, .74, .24, 1), margin-left .3s ease, opacity .2s ease, transform .3s ease !important;
    }
    .motion-paused .motion-toggle.is-relocating,
    .motion-paused .motion-toggle.is-relocating .motion-toggle-label { transition: none !important; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }
    .language-flag { width: 20px; padding-top: 4px; }
