    [hidden] { display: none !important; }
    /* Legacy x-cloak guard for embedded fragments that may still include it. */
    [x-cloak] { display: none !important; }
    /* Page overlay modal — explicit positioning so the absolute backdrop child + relative modal
       child both anchor to a known box. Without this, the empty-class wrapper has no position
       and the absolute backdrop escaped to the viewport, sitting above all content (incl. the
       footer) on mobile when overlay state went out of sync.
       z-index must clear the cookie banner (999999) because the cookie banner has a
       "Privacy policy" link that opens this overlay — otherwise the overlay renders behind it. */
    .page-overlay-modal { position: fixed; inset: 0; z-index: 1000000; }

    /* ═══ MintFolder — Linear-style Editorial Dark 2026 ═══ */
    :root {
      /* Canvas — layered dark with depth */
      --bg:           #0A0D14;
      --bg-subtle:    #0E1220;
      --bg-muted:     #14182A;
      --bg-card:      #11162A;
      --bg-elevated:  #181E36;
      --bg-glass:     rgba(20, 24, 42, 0.72);

      /* Text — pure white primary, brighter secondaries while keeping hierarchy */
      --text:           #FFFFFF;
      --text-secondary: #D8DDEC;
      --text-muted:     #8B93AD;
      --text-dim:       #5A6080;
      --text-inverse:   #0A0D14;

      /* Brand — Mint as LEAD, not accent */
      --mint:        #00E5AB;
      --mint-bright: #14F4BC;
      --mint-glow:   rgba(0, 229, 171, 0.45);
      --mint-soft:   rgba(0, 229, 171, 0.10);
      --mint-line:   rgba(0, 229, 171, 0.22);

      /* Secondary — violet for contrast accents */
      --violet:      #8B5CF6;
      --violet-glow: rgba(139, 92, 246, 0.45);
      --violet-soft: rgba(139, 92, 246, 0.10);

      /* Tertiary — preserved for status chips & legacy refs */
      --blue:        #5EBDFF;
      --blue-dark:   #3B9CE0;
      --blue-light:  rgba(94, 189, 255, 0.12);
      --blue-glow:   rgba(94, 189, 255, 0.40);
      --green:       #00E5AB;
      --green-light: rgba(0, 229, 171, 0.12);
      --violet-light:rgba(139, 92, 246, 0.12);
      --orange:      #F5B547;

      /* Borders — hairlines on dark, never solid */
      --border:        rgba(255, 255, 255, 0.06);
      --border-strong: rgba(255, 255, 255, 0.12);
      --border-mint:   rgba(0, 229, 171, 0.22);

      /* Shadows — colored glow not gray */
      --shadow-xs:    0 1px 2px rgba(0,0,0,0.40);
      --shadow-sm:    0 2px 4px rgba(0,0,0,0.40), 0 1px 2px rgba(0,0,0,0.30);
      --shadow-md:    0 8px 16px rgba(0,0,0,0.45), 0 2px 6px rgba(0,0,0,0.35);
      --shadow-lg:    0 24px 48px rgba(0,0,0,0.50), 0 8px 16px rgba(0,0,0,0.30);
      --shadow-xl:    0 40px 80px rgba(0,0,0,0.55), 0 16px 32px rgba(0,0,0,0.30);
      --shadow-2xl:   0 60px 120px rgba(0,0,0,0.65), 0 24px 48px rgba(0,0,0,0.40);
      --shadow-card:  0 0 0 1px var(--border), 0 8px 28px rgba(0,0,0,0.40);
      --shadow-float: 0 32px 80px rgba(0,0,0,0.55), 0 8px 20px rgba(0,0,0,0.30), 0 0 0 1px var(--border-strong);
      --shadow-mint:  0 0 0 1px var(--mint-line), 0 12px 40px rgba(0,229,171,0.25), 0 2px 8px rgba(0,229,171,0.15);
      --shadow-glow:  0 0 60px rgba(0,229,171,0.25), 0 0 120px rgba(0,229,171,0.10);
      --shadow-blue:  0 8px 32px rgba(94,189,255,0.20);

      /* Radius */
      --r-xs:   4px;
      --r-sm:   8px;
      --r-md:  10px;
      --r-lg:  14px;
      --r-xl:  18px;
      --r-2xl: 22px;
      --r-3xl: 28px;
      --r-full: 9999px;

      /* Typography */
      --font:        'Inter', system-ui, -apple-system, sans-serif;
      --font-mono:   'IBM Plex Mono', 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
      --font-display:'Inter', system-ui, sans-serif;

      /* Type scale — Linear-tier dramatic */
      --text-xs:      0.75rem;
      --text-sm:      0.875rem;
      --text-base:    1rem;
      --text-lg:      clamp(1rem, 2.4vw, 1.125rem);
      --text-xl:      clamp(1.0625rem, 3vw, 1.375rem);
      --text-2xl:     clamp(1.25rem, 3.5vw, 1.625rem);
      --text-3xl:     clamp(1.25rem, 3.5vw, 1.625rem);
      --text-4xl:     clamp(1.5rem, 4.5vw, 2rem);
      --text-5xl:     clamp(1.75rem, 5vw, 2.625rem);
      --text-hero:    clamp(2rem, 9vw, 4rem);
      --text-display: clamp(2.25rem, 7vw, 3.75rem);

      /* Section spacing — also reduced */
      --section-py: clamp(4.5rem, 7vw, 7rem);
      --page-max: 108rem;
      --page-pad: clamp(1.25rem, 4vw, 4.5rem);

      /* Motion */
      --ease:      cubic-bezier(0.16, 1, 0.3, 1);
      --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
      --ease-in:   cubic-bezier(0.4, 0, 1, 1);
      --ease-spring: cubic-bezier(0.34, 1.4, 0.5, 1);
      --fast:      150ms;
      --normal:    280ms;
      --slow:      460ms;
    }

    /* Force dark on landing — overrides any data-theme inheritance */
    html, html[data-theme] {
      color-scheme: dark;
    }

    /* ─── Reset ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html {
      scroll-behavior: auto; -webkit-text-size-adjust: 100%; text-rendering: optimizeLegibility;
      background: var(--bg);
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
      overscroll-behavior-x: none;
    }
    body {
      font-family: var(--font);
      font-size: var(--text-base);
      line-height: 1.55;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      position: relative;
      overscroll-behavior-x: none;
      touch-action: pan-y pinch-zoom;
      font-feature-settings: 'ss01', 'cv11', 'kern', 'calt';
      font-variant-ligatures: contextual common-ligatures;
    }
    @supports (overflow: clip) {
      html, body { overflow-x: clip; }
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
    input, textarea, select { font-family: inherit; }
    ::selection { background: var(--mint-soft); color: var(--mint-bright); }

    /* ─── Animations ─── */
    @keyframes float {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50%       { transform: translate3d(0, -10px, 0); }
    }
    @keyframes floatSm {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-6px); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translate3d(0, 24px, 0); }
      to   { opacity: 1; transform: translate3d(0, 0, 0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,171,0.45); }
      50%       { box-shadow: 0 0 0 8px rgba(0,229,171,0); }
    }
    @keyframes orbDrift1 {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      33%      { transform: translate3d(40px, -30px, 0) scale(1.05); }
      66%      { transform: translate3d(-20px, 20px, 0) scale(0.95); }
    }
    @keyframes orbDrift2 {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50%      { transform: translate3d(-50px, 30px, 0) scale(1.08); }
    }
    @keyframes mintLineGlow {
      0%, 100% { opacity: 0.6; box-shadow: 0 0 8px var(--mint-glow); }
      50%      { opacity: 1; box-shadow: 0 0 24px var(--mint-glow), 0 0 48px var(--mint-glow); }
    }
    @keyframes scanline {
      0%   { transform: translateY(-100%); opacity: 0; }
      8%   { opacity: 0.7; }
      92%  { opacity: 0.7; }
      100% { transform: translateY(2000%); opacity: 0; }
    }
    @keyframes blinkCursor {
      0%, 49%   { opacity: 1; }
      50%, 100% { opacity: 0; }
    }
    @keyframes typeWord {
      0%   { opacity: 0; transform: translateY(40%) scale(0.96); filter: blur(8px); letter-spacing: -0.02em; }
      60%  { filter: blur(0); letter-spacing: -0.04em; }
      100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); letter-spacing: -0.04em; }
    }
    @keyframes mintSweep {
      0%, 92% { background-position: -150% 0, 0 0; }
      100%    { background-position:  250% 0, 0 0; }
    }

    /* ─── Layout ─── */
    .container {
      width: 100%;
      max-width: min(var(--page-max), calc(100vw - 1rem));
      margin-inline: auto;
      padding-inline: var(--page-pad);
    }
    .section { padding-block: var(--section-py); position: relative; }

    .section-header { text-align: left; max-width: 760px; margin-bottom: 4.5rem; }
    .section-eyebrow,
    .section-label,
    .text-label {
      display: inline-flex; align-items: center; gap: 0.55rem;
      font-family: var(--font-mono);
      font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--mint); margin-bottom: 1.25rem;
    }
    .section-eyebrow::before,
    .section-label::before,
    .text-label::before { display: none; }
    .section-title {
      font-size: var(--text-5xl); font-weight: 700; line-height: 1.05;
      letter-spacing: -0.035em; color: var(--text); margin-bottom: 1.25rem;
    }
    .section-desc {
      font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.6; max-width: 560px;
    }

    /* Section header centered variant for sections that need it */
    .section-header.centered { text-align: center; max-width: 980px; margin-inline: auto; }
    .section-header.centered .section-desc { margin-inline: auto; }

    /* ─── Typography utilities ─── */
    .text-hero { font-size: var(--text-hero); font-weight: 700; letter-spacing: -0.045em; line-height: 0.98; }
    .text-display { font-size: var(--text-display); font-weight: 700; letter-spacing: -0.045em; line-height: 0.98; }
    .text-balance { text-wrap: balance; }

    /* Mint headline word — solid color + soft glow underneath, no busy gradient */
    .gradient-text, .text-gradient {
      position: relative;
      display: inline-block;
      color: var(--mint);
      background:
        linear-gradient(100deg, transparent 0%, transparent 38%, rgba(255,255,255,0.55) 50%, transparent 62%, transparent 100%),
        linear-gradient(180deg, var(--mint-bright) 0%, var(--mint) 100%);
      background-size: 220% 100%, 100% 100%;
      background-position: -150% 0, 0 0;
      background-repeat: no-repeat;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: mintSweep 6s var(--ease) infinite;
      animation-delay: 1.6s;
    }
    .gradient-text::after, .text-gradient::after {
      content: '';
      position: absolute; left: 0; right: 0; bottom: 6%;
      height: 18%;
      background: radial-gradient(ellipse at center, var(--mint-glow) 0%, transparent 75%);
      filter: blur(20px);
      opacity: 0.55;
      pointer-events: none; z-index: -1;
    }

    /* ─── Faint dot grid (Linear-style) ─── */
    .grid-bg {
      background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
      background-size: 32px 32px;
      -webkit-mask-image: radial-gradient(ellipse 100% 75% at 50% 30%, #000 40%, transparent 100%);
      mask-image: radial-gradient(ellipse 100% 75% at 50% 30%, #000 40%, transparent 100%);
    }
    /* Hero radial mesh — three drifting orbs */
    .hero-gradient {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .hero-gradient::before,
    .hero-gradient::after {
      content: '';
      position: absolute;
      width: 720px; height: 720px;
      border-radius: 50%;
      filter: blur(100px);
      will-change: transform;
    }
    .hero-gradient::before {
      top: -180px; left: -120px;
      background: radial-gradient(circle, rgba(0,229,171,0.32) 0%, transparent 65%);
      animation: orbDrift1 18s ease-in-out infinite;
    }
    .hero-gradient::after {
      top: -80px; right: -180px;
      background: radial-gradient(circle, rgba(139,92,246,0.22) 0%, transparent 65%);
      animation: orbDrift2 22s ease-in-out infinite;
    }
    /* ─── Navigation (kept; nav uses .nav-glass class from inline-style block below) ─── */
    .site-nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--bg-glass);
      backdrop-filter: blur(18px) saturate(160%);
      -webkit-backdrop-filter: blur(18px) saturate(160%);
      border-bottom: 1px solid var(--border);
      transition: box-shadow var(--normal) var(--ease);
    }
    .site-nav.scrolled { box-shadow: var(--shadow-sm); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 64px; max-width: min(var(--page-max), calc(100vw - 1rem)); margin-inline: auto;
      padding-inline: var(--page-pad);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 0.625rem;
      font-weight: 700; font-size: var(--text-lg); letter-spacing: -0.02em; color: var(--text);
    }
    .nav-logo-mark {
      width: 30px; height: 30px; border-radius: var(--r-sm);
      background: linear-gradient(135deg, var(--mint-bright) 0%, var(--mint) 100%);
      display: flex; align-items: center; justify-content: center;
      color: var(--bg); font-weight: 900; font-size: 0.875rem;
      box-shadow: 0 0 16px var(--mint-glow);
    }
    .nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
    .nav-links a {
      display: block; padding: 0.375rem 0.75rem;
      font-size: var(--text-sm); font-weight: 500; color: var(--text-secondary);
      border-radius: var(--r-sm);
      transition: color var(--fast), background var(--fast);
    }
    .nav-links a:hover { color: var(--text); background: var(--bg-muted); }
    .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

    /* ─── Buttons — Linear-tier dark ─── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
      font-size: var(--text-sm); font-weight: 600; line-height: 1; letter-spacing: -0.01em;
      border-radius: var(--r-md); padding: 0.6875rem 1.125rem;
      transition: all var(--fast) var(--ease);
      white-space: nowrap; cursor: pointer; border: none; outline: none;
      font-family: var(--font);
    }
    .btn:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }
    .btn-primary {
      background: var(--mint); color: var(--bg);
      font-weight: 700;
      box-shadow:
        0 0 0 1px var(--mint-bright),
        0 8px 24px rgba(0,229,171,0.30),
        inset 0 1px 0 rgba(255,255,255,0.30);
    }
    .btn-primary:hover {
      background: var(--mint-bright);
      box-shadow:
        0 0 0 1px var(--mint-bright),
        0 12px 36px rgba(0,229,171,0.45),
        inset 0 1px 0 rgba(255,255,255,0.35);
      transform: translate3d(0,-1px,0);
    }
    .btn-primary:active { transform: none; box-shadow: var(--shadow-xs); }
    .btn-secondary {
      background: var(--bg-card); color: var(--text);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xs);
    }
    .btn-secondary:hover { background: var(--bg-subtle); border-color: var(--border-strong); transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--text-secondary); }
    .btn-ghost:hover { background: var(--bg-muted); color: var(--text); }
    .btn-sm { padding: 0.4375rem 0.875rem; font-size: var(--text-xs); border-radius: var(--r-sm); }
    .btn-lg { padding: 0.8125rem 1.625rem; font-size: var(--text-base); border-radius: var(--r-lg); }
    .btn-xl { padding: 1rem 2rem; font-size: var(--text-lg); border-radius: var(--r-lg); }

    /* Auth buttons (legacy, kept for compatibility) */
    .btn-google {
      background: var(--bg-card); color: var(--text); font-weight: 500;
      border: 1px solid var(--border-strong);
    }
    .btn-google:hover { background: var(--bg-elevated); transform: translateY(-1px); }
    .btn-apple { background: #000; color: #fff; border: 1px solid #1A1A1A; }
    .btn-apple:hover { background: #1A1A1A; transform: translateY(-1px); }
    .btn-email { background: var(--bg-subtle); color: var(--text); border: 1px solid var(--border-strong); }
    .btn-email:hover { background: var(--bg-muted); transform: translateY(-1px); }

    /* ─── Hero — Editorial Linear-tier dark ─── */
    .hero {
      position: relative; overflow: hidden;
      /* +30% top spacing — eyebrow was sitting too close to the nav, especially
         on mid-size desktop viewports where 12vw still resolved to ~120px and
         the floating nav cropped the eyebrow's top edge. */
      padding-top: clamp(6.5rem, 15.5vw, 14rem);
      padding-bottom: clamp(3rem, 9vw, 8rem);
      background: var(--bg);
    }
    .hero::after {
      /* Bottom hairline fade — separates hero from next section */
      content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border-strong) 30%, var(--border-strong) 70%, transparent 100%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
    }
    @media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
    .hero-content { position: relative; z-index: 1; }
    /* Editorial monospace eyebrow — tag instead of pill */
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.625rem;
      padding: 0; background: transparent; border: 0;
      font-family: var(--font-mono);
      font-size: 0.75rem; font-weight: 500; color: var(--mint);
      letter-spacing: 0.10em; text-transform: uppercase;
      margin-bottom: 1.75rem;
      animation: fadeUp 0.6s var(--ease) both;
    }
    .hero-eyebrow svg { display: none; }
    .hero-eyebrow::before { display: none; }
    .hero-eyebrow::after { display: none; }
    .hero-title {
      font-size: var(--text-hero);
      font-weight: 700;
      line-height: 0.96;
      letter-spacing: -0.045em;
      color: var(--text);
      margin-bottom: 1.875rem;
      max-width: 18ch;
    }
    .hero-title .hero-word {
      display: inline-block;
      opacity: 0;
      animation: typeWord 0.85s var(--ease) both;
      will-change: transform, opacity, filter;
    }
    .hero-title .hero-word:nth-child(1) { animation-delay: 0.20s; }
    .hero-title .hero-word:nth-child(2) { animation-delay: 0.32s; }
    .hero-title .hero-word:nth-child(3) { animation-delay: 0.44s; }
    .hero-title .hero-word:nth-child(4) { animation-delay: 0.56s; }
    .hero-title .hero-word.text-gradient {
      animation: typeWord 0.85s var(--ease) both,
                 mintSweep 6s var(--ease) infinite;
      animation-delay: 0.44s, 1.8s;
    }

    /* ─── Per-word color variants — Scan (blue) → Name (violet) → Archive (mint) ─── */
    .hero-word--blue {
      background: linear-gradient(180deg, #8FD0FF 0%, #5EBDFF 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 24px rgba(94,189,255,0.18));
    }
    .hero-word--violet {
      background: linear-gradient(180deg, #C4B5FD 0%, #A78BFA 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 24px rgba(167,139,250,0.18));
    }
    /* Hero tagline — 4th line of H1 carrying the compliance + speed promise.
       Smaller weight and mint color so it reads as a sub-claim, not as a
       fourth verb. Animates in after the three verbs land. */
    .hero-title .hero-tagline {
      display: block;
      margin-top: 1rem;
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      font-weight: 500;
      letter-spacing: 0;
      line-height: 1.35;
      color: var(--mint);
      font-feature-settings: "tnum" 1;
      opacity: 0;
      animation: fadeUp 0.6s 0.78s var(--ease) both;
    }
    /* GoBD support chip — primary trust claim directly under the H1.
       Mint outline, single-row badge that collapses its sub-text on small
       screens to keep the CTA above the fold. */
    .hero-gobd-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      max-width: 100%;
      padding: 0.5rem 0.875rem;
      margin: -0.5rem 0 1.5rem;
      background: linear-gradient(180deg, rgba(0, 229, 171, 0.10), rgba(0, 229, 171, 0.04));
      border: 1px solid rgba(0, 229, 171, 0.32);
      border-radius: 12px;
      color: var(--mint);
      font-size: 0.875rem;
      line-height: 1.2;
      opacity: 0;
      animation: fadeUp 0.6s 0.95s var(--ease) both;
    }
    .hero-gobd-chip svg {
      width: 18px; height: 18px;
      flex-shrink: 0;
      color: var(--mint);
    }
    .hero-gobd-chip strong {
      font-weight: 600;
      letter-spacing: 0.005em;
    }
    .hero-gobd-chip .hero-gobd-sub {
      color: rgba(220, 231, 255, 0.70);
      font-family: var(--font-mono);
      font-size: 0.75rem;
      letter-spacing: 0.04em;
      padding-inline-start: 0.625rem;
      border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
      white-space: nowrap;
    }
    @media (max-width: 540px) {
      .hero-gobd-chip { font-size: 0.8125rem; padding: 0.4375rem 0.75rem; gap: 0.5rem; }
      .hero-gobd-chip .hero-gobd-sub { display: none; }
    }
    /* KI-VO Art. 50 transparency chip — mandatory disclosure from 2026-08-02.
       Blue accent to distinguish from the mint GoBD chip. */
    .hero-aiact-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      max-width: 100%;
      padding: 0.45rem 0.85rem;
      margin: 0 0 0.75rem;
      background: linear-gradient(180deg, rgba(94, 189, 255, 0.10), rgba(94, 189, 255, 0.04));
      border: 1px solid rgba(94, 189, 255, 0.30);
      border-radius: 12px;
      color: #5EBDFF;
      font-size: 0.84rem;
      line-height: 1.25;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.6s 1.05s var(--ease) both;
    }
    .hero-aiact-chip svg { width: 16px; height: 16px; flex-shrink: 0; color: #5EBDFF; }
    .hero-aiact-chip strong { font-weight: 600; letter-spacing: 0.005em; }
    .hero-aiact-chip .hero-aiact-body {
      color: rgba(220, 231, 255, 0.78);
      font-size: 0.78rem;
      font-family: var(--font-mono);
      letter-spacing: 0.02em;
      padding-inline-start: 0.5rem;
      border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
    }
    .hero-aiact-chip .hero-aiact-link {
      color: #5EBDFF;
      font-size: 0.78rem;
      font-weight: 500;
      text-decoration: none;
      padding-inline-start: 0.5rem;
      border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
      transition: color var(--fast) var(--ease);
    }
    .hero-aiact-chip .hero-aiact-link:hover { color: #ffffff; }
    .hero-aiact-chip .hero-aiact-link:focus-visible {
      outline: 2px solid #5EBDFF;
      outline-offset: 2px;
      border-radius: 4px;
    }
    @media (max-width: 540px) {
      .hero-aiact-chip { font-size: 0.78rem; padding: 0.4rem 0.7rem; gap: 0.4rem; }
      .hero-aiact-chip .hero-aiact-body { display: none; }
    }
    .hero-aiact-chip--hero-disclosure {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      justify-content: initial;
      column-gap: 0.625rem;
      row-gap: 0.25rem;
      width: min(100%, 760px);
      max-width: calc(100vw - 32px);
      padding: 0.75rem 0.95rem;
      margin: 0.65rem auto 1.25rem;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
        rgba(6, 20, 27, 0.72);
      border: 1px solid rgba(94, 189, 255, 0.24);
      border-radius: 16px;
      box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(18px) saturate(135%);
      text-align: left;
    }
    .hero-aiact-chip--hero-disclosure svg {
      grid-row: 1 / span 2;
      align-self: start;
      margin-top: 0.1rem;
      width: 17px;
      height: 17px;
      color: #5EBDFF;
      opacity: 0.95;
    }
    .hero-aiact-chip--hero-disclosure strong {
      min-width: 0;
      color: rgba(238, 247, 255, 0.92);
      font-size: 0.82rem;
      line-height: 1.15;
      letter-spacing: 0.005em;
    }
    .hero-aiact-chip--hero-disclosure .hero-aiact-body {
      min-width: 0;
      padding: 0;
      border: 0;
      color: rgba(220, 231, 255, 0.72);
      font-family: var(--font);
      font-size: 0.8125rem;
      line-height: 1.3;
      letter-spacing: 0;
    }
    .hero-aiact-chip--hero-disclosure .hero-aiact-link {
      grid-column: 3;
      grid-row: 1 / span 2;
      align-self: center;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 0.75rem;
      border: 1px solid rgba(94, 189, 255, 0.28);
      border-radius: 999px;
      background: rgba(94, 189, 255, 0.08);
      color: #B9D5FF;
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .hero-aiact-chip--hero-disclosure .hero-aiact-link:hover {
      color: #ffffff;
      border-color: rgba(94, 189, 255, 0.45);
      background: rgba(94, 189, 255, 0.14);
    }
    @media (max-width: 720px) {
      .hero-aiact-chip--hero-disclosure {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 0.7rem 0.8rem;
      }
      .hero-aiact-chip--hero-disclosure .hero-aiact-link {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        min-height: 30px;
        margin-top: 0.15rem;
      }
    }
    @media (max-width: 540px) {
      .hero-aiact-chip--hero-disclosure .hero-aiact-body {
        display: block;
        font-size: 0.76rem;
      }
    }
    html[dir="rtl"] .hero-aiact-chip--hero-disclosure {
      text-align: right;
    }
    /* E-Rechnung readiness chip — §14 UStG receive obligation since 2025-01-01.
       Violet accent so the three hero chips read as mint / blue / violet
       (GoBD support / AI transparency / fiscal interoperability). */
    .hero-einvoice-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      max-width: 100%;
      padding: 0.45rem 0.85rem;
      margin: 0 0 1.5rem;
      background: linear-gradient(180deg, rgba(196, 181, 253, 0.10), rgba(196, 181, 253, 0.04));
      border: 1px solid rgba(196, 181, 253, 0.30);
      border-radius: 12px;
      color: #C4B5FD;
      font-size: 0.84rem;
      line-height: 1.25;
      opacity: 0;
      animation: fadeUp 0.6s 1.15s var(--ease) both;
    }
    .hero-einvoice-chip svg { width: 16px; height: 16px; flex-shrink: 0; color: #C4B5FD; }
    .hero-einvoice-chip span {
      color: rgba(220, 231, 255, 0.88);
      font-weight: 500;
    }
    @media (max-width: 540px) {
      .hero-einvoice-chip { font-size: 0.78rem; padding: 0.4rem 0.7rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-aiact-chip, .hero-einvoice-chip { animation: none; opacity: 1; }
    }
    .hero-desc {
      font-size: var(--text-xl); color: var(--text-secondary); line-height: 1.55;
      margin-bottom: 2.75rem; max-width: 480px;
      font-weight: 400;
      animation: fadeUp 0.7s 0.85s var(--ease) both;
    }
    .hero-auth {
      position: relative;
      z-index: 12;
      display: flex; flex-direction: column; gap: 0.625rem;
      max-width: 360px; margin-bottom: clamp(2rem, 4vw, 3rem);
      padding: 0.75rem;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(9, 16, 30, 0.82), rgba(7, 12, 23, 0.64));
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow:
        0 24px 70px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.10);
      isolation: isolate;
      animation: fadeUp 0.7s 1.0s var(--ease) both;
    }
    .hero-auth-or {
      font-family: var(--font-mono);
      font-size: 0.7rem; color: rgba(220,231,255,0.72);
      text-align: center; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 0.375rem 0; position: relative;
    }
    .hero-auth-or::before, .hero-auth-or::after {
      content: ''; position: absolute; top: 50%; width: 32%; height: 1.5px;
      background: linear-gradient(90deg, transparent, rgba(0,229,171,0.55));
    }
    .hero-auth-or::after { background: linear-gradient(90deg, rgba(94,189,255,0.42), transparent); }
    .hero-auth-or::before { left: 0; }
    .hero-auth-or::after  { right: 0; }
    .hero-auth-btn {
      display: flex; align-items: center; justify-content: center; gap: 0.6875rem;
      width: 100%; height: 52px; border-radius: var(--r-md);
      font-size: var(--text-base); font-weight: 500; letter-spacing: -0.005em;
      transition: all var(--fast) var(--ease);
      cursor: pointer; border: none; font-family: var(--font);
    }
    .hero-auth-btn:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }
    .hero-auth-btn:hover { transform: translate3d(0,-1px,0); }
    .hero-auth-btn-google {
      background: var(--bg-card); color: var(--text);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xs);
    }
    .hero-auth-btn-google:hover {
      background: var(--bg-elevated);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .hero-auth-btn-apple {
      background: linear-gradient(180deg, #1A1F2E 0%, #11162A 100%);
      color: #F5F7FA;
      border: 1px solid var(--border-strong);
    }
    .hero-auth-btn-apple:hover {
      background: linear-gradient(180deg, #21283A 0%, #161C32 100%);
      box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    }
    .hero-auth-btn-email {
      background: linear-gradient(180deg, rgba(20,31,55,0.98), rgba(11,18,34,0.98));
      color: #F2F7FF;
      border: 1.5px solid rgba(148,163,184,0.30);
      box-shadow:
        0 12px 30px rgba(0,0,0,0.30),
        inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .hero-auth-btn-email:hover {
      background: linear-gradient(180deg, rgba(27,42,72,1), rgba(15,25,45,1));
      color: var(--text);
      border-color: rgba(0,229,171,0.45);
      box-shadow:
        0 16px 38px rgba(0,0,0,0.38),
        0 0 28px rgba(0,229,171,0.10),
        inset 0 1px 0 rgba(255,255,255,0.16);
    }
    /* Collapsible "more sign-in options" — semantic <details>/<summary>
       so it works without JS, is keyboard accessible, and screen-reader
       friendly. Telegram + Apple live inside; Google + Email stay as the
       primary path so the user is not faced with four equal-weight CTAs. */
    .hero-auth-more {
      margin-top: 0.25rem;
      padding-top: 0.5rem;
      border-top: 1px dashed rgba(255,255,255,0.10);
    }
    .hero-auth-more[open] { padding-bottom: 0.25rem; }
    .hero-auth-more-toggle {
      display: flex; align-items: center; justify-content: center;
      gap: 0.4375rem;
      list-style: none;
      cursor: pointer;
      padding: 0.5rem 0.75rem;
      font-family: var(--font-mono);
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.10em; text-transform: uppercase;
      color: rgba(220,231,255,0.62);
      border-radius: var(--r-sm);
      transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
      user-select: none;
    }
    .hero-auth-more-toggle::-webkit-details-marker { display: none; }
    .hero-auth-more-toggle::marker { content: ''; }
    .hero-auth-more-toggle:hover {
      color: var(--text);
      background: rgba(255,255,255,0.04);
    }
    .hero-auth-more-toggle:focus-visible {
      outline: 2px solid var(--mint);
      outline-offset: 2px;
    }
    .hero-auth-more-chevron {
      transition: transform var(--fast) var(--ease);
      color: rgba(220,231,255,0.55);
    }
    .hero-auth-more[open] .hero-auth-more-chevron {
      transform: rotate(180deg);
    }
    .hero-auth-more-panel {
      display: flex; flex-direction: column; gap: 0.625rem;
      margin-top: 0.5rem;
      animation: fadeUp 0.3s var(--ease) both;
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-auth-more-chevron { transition: none; }
      .hero-auth-more-panel { animation: none; }
    }
    /* Telegram button — visually identical to .hero-auth-btn-google, with the
       official Telegram Login Widget iframe overlaid invisibly so clicks still
       hit the real auth flow. The Telegram brand wants its mark in #229ED9. */
    .hero-auth-btn-telegram {
      background: var(--bg-card); color: var(--text);
      border: 1px solid var(--border-strong);
      box-shadow: var(--shadow-xs);
      position: relative; overflow: hidden;
    }
    .hero-auth-btn-telegram:hover {
      background: var(--bg-elevated);
      border-color: rgba(255,255,255,0.18);
      box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    }
    .hero-auth-btn-telegram.telegram-loading {
      cursor: progress;
      border-color: rgba(34,158,217,0.45);
    }
    .hero-auth-btn-telegram .tg-icon { color: #229ED9; }
    .hero-auth-btn-telegram #tg-login-wrap {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .hero-auth-btn-telegram #tg-login-wrap iframe {
      position: absolute !important;
      inset: 0 !important;
      width: 100% !important;
      height: 100% !important;
      min-height: 100% !important;
      opacity: 0 !important;
      border: 0 !important;
      cursor: pointer;
    }
    .hero-auth-sep {
      display: flex; align-items: center; gap: 0.75rem;
      color: var(--text-muted); font-size: var(--text-sm); font-weight: 500;
    }
    .hero-auth-sep::before, .hero-auth-sep::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    /* Mobile hero overrides — placed AFTER all .hero-* base rules so the cascade picks them up at <=640px */
    @media (max-width: 640px) {
      .hero-grid { gap: 2rem; }
      .hero-eyebrow { margin-bottom: 1rem; font-size: 0.6875rem; letter-spacing: 0.08em; }
      .hero-title { line-height: 1.02; margin-bottom: 1.125rem; max-width: none; }
      .hero-desc { margin-bottom: 1.75rem; max-width: none; }
      .hero-auth { max-width: none; margin-bottom: 1rem; }
      /* Hero-word glows clipped by .hero { overflow: hidden } on narrow viewports — shrink the halo */
      .hero-word--blue { filter: drop-shadow(0 0 8px rgba(94,189,255,0.18)); }
      .hero-word--violet { filter: drop-shadow(0 0 8px rgba(167,139,250,0.18)); }
      /* Footer brand-section internals — explicit mobile spacing. */
      .lp-footer-tagline { margin-bottom: 0.75rem !important; }
      .lp-footer-status { margin-bottom: 0.75rem !important; }
      .lp-footer-app-badges { margin-bottom: 0.75rem !important; }
    }
    /* ═══════════════════════════════════════════════════════════════════════
       Trust band — rebuilt 2026-05-05 with FLAT, fully saturated colours.
       Every chip / platform tile uses one solid hex value — no
       gradients-of-darkness, no rgba() fades, no nth-child shenanigans.
       Each item carries an explicit modifier class for clarity, and every
       colour is brand-true: Google Blue / Google Play multicolor SVG /
       Telegram blue / Apple monochrome / mint / amber / violet.
       ═══════════════════════════════════════════════════════════════════════ */
    .trust-band {
      margin: 4.5rem auto 0;
      max-width: 980px;
      width: 100%;
      padding: 1.75rem 2rem;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-2xl);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      position: relative; overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: border-color var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
    }
    .trust-band:hover { border-color: var(--border-strong); box-shadow: var(--shadow-float); }
    .trust-band-row {
      display: flex; align-items: center; gap: 1rem;
      padding: 0.625rem 0;
    }
    .trust-band-credibility {
      padding-inline-end: 1.5rem;
      border-inline-end: 1px solid var(--border);
    }
    .trust-band-platforms { padding-inline-start: 1.5rem; }

    .trust-band-label {
      flex-shrink: 0;
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 600;
      color: var(--text);
      letter-spacing: 0.14em; text-transform: uppercase;
      min-width: 4.5rem;
    }
    /* Pin the trailing-dot affordance off on these labels — older versions
       attached an animated mint pulse to .trust-band-label::after, and
       leaving this `display: none` defends against a future regression. */
    .trust-band-label::after,
    .trust-band-divider { display: none; }

    .trust-band-list {
      list-style: none;
      display: flex; align-items: center; gap: 0.5rem;
      flex-wrap: wrap; flex: 1;
    }

    /* ── Credibility chips — flat solid colour, dark text on bright fill,
       bright text on dark fill. No gradients, no transparency. ── */
    .trust-band-item {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 0.875rem;
      border-radius: var(--r-sm);
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      transition: transform var(--fast) var(--ease),
                  filter var(--fast) var(--ease);
      cursor: default;
    }
    .trust-band-item:hover {
      transform: translate3d(0, -2px, 0);
      filter: brightness(1.10);
    }
    .trust-band-item svg {
      width: 12px; height: 12px;
      flex-shrink: 0;
    }
    /* Mint — credits chip */
    .trust-chip--mint {
      background: #00E5AB;
      color: #00261E;
      border: 1.5px solid #14F4BC;
    }
    .trust-chip--mint svg { color: #00261E; }
    /* Blue — Gemini AI. Tailwind blue-600 (#2563EB) instead of #4285F4 so
       white text clears WCAG AA (5:1 vs 3.6:1 with the Google brand value). */
    .trust-chip--blue {
      background: #2563EB;
      color: #FFFFFF;
      border: 1.5px solid #60A5FA;
    }
    .trust-chip--blue svg { color: #FFFFFF; }
    /* Violet — TLS / Made in Germany. Tailwind violet-600 (#7C3AED) so
       white text clears WCAG AA (5.4:1 vs 4.2:1 with violet-500). */
    .trust-chip--violet {
      background: #7C3AED;
      color: #FFFFFF;
      border: 1.5px solid #A78BFA;
    }
    .trust-chip--violet svg { color: #FFFFFF; }
    /* Amber — DSGVO compliance */
    .trust-chip--amber {
      background: #F5B547;
      color: #3A2206;
      border: 1.5px solid #FCD686;
    }
    .trust-chip--amber svg { color: #3A2206; }

    /* ── Platform tiles — flat solid coloured icon on a flat dark wrapper. ── */
    .trust-band-actions {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.5rem;
      flex: 1;
      align-items: stretch;
    }
    .trust-pill {
      display: inline-flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 0.875rem 0.75rem 0.75rem;
      background: #141D39;
      border: 1.5px solid #31406A;
      border-radius: var(--r-md);
      transition: transform var(--fast) var(--ease),
                  border-color var(--fast) var(--ease),
                  background var(--fast) var(--ease);
      text-decoration: none;
    }
    .trust-pill:hover {
      transform: translate3d(0, -2px, 0);
      background: #19244A;
      border-color: var(--mint-bright);
    }
    .trust-pill:active { transform: translate3d(0, 0, 0); transition-duration: 80ms; }
    .trust-pill-icon {
      width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      border-radius: var(--r-sm);
      flex-shrink: 0;
      transition: transform var(--fast) var(--ease);
    }
    .trust-pill:hover .trust-pill-icon { transform: scale(1.06); }
    .trust-pill-icon svg { width: 17px; height: 17px; }

    .trust-pill--telegram .trust-pill-icon {
      background: #229ED9;
      color: #FFFFFF;
    }
    .trust-pill--telegram .trust-pill-icon svg path { fill: #FFFFFF; }
    .trust-pill--telegram:hover { border-color: #229ED9; }

    .trust-pill--install .trust-pill-icon {
      background: #00E5AB;
      color: #00261E;
    }
    .trust-pill--install .trust-pill-icon svg {
      stroke: #00261E;
      width: 17px; height: 17px;
    }
    .trust-pill--install:hover { border-color: #00E5AB; }

    .trust-pill--ios .trust-pill-icon {
      background: #FFFFFF;
    }
    .trust-pill--ios .trust-pill-icon svg { width: 16px; height: 18px; }
    .trust-pill--ios .trust-pill-icon svg path { fill: #18181B; }
    .trust-pill--ios:hover { border-color: #FFFFFF; }

    .trust-pill--android .trust-pill-icon {
      background: #FFFFFF;
    }
    .trust-pill--android .trust-pill-icon svg { width: 18px; height: 18px; }
    .trust-pill--android:hover { border-color: #34A853; }

    .trust-pill-text {
      display: flex; flex-direction: column; line-height: 1.2;
      text-align: start;
    }
    .trust-pill-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.6rem; font-weight: 600;
      color: #C2CDE8;
      letter-spacing: 0.10em; text-transform: uppercase;
      margin-bottom: 2px;
    }
    .trust-pill-title {
      font-family: var(--font-mono);
      font-size: 0.86rem; font-weight: 600;
      color: #FFFFFF;
      letter-spacing: -0.005em;
    }
    .trust-pill-arrow {
      width: 14px; height: 14px;
      color: #99A9CD;
      transition: transform var(--fast) var(--ease), color var(--fast);
      margin-inline-start: 0.125rem;
    }
    .trust-pill:hover .trust-pill-arrow {
      color: var(--mint-bright);
      transform: translateX(3px);
    }
    html[dir="rtl"] .trust-pill:hover .trust-pill-arrow { transform: translateX(-3px); }
    .trust-pill--install:hover .trust-pill-arrow { transform: translateY(3px); }

    /* ── Responsive ── */
    @media (max-width: 960px) {
      .trust-band {
        margin-top: 3rem;
        grid-template-columns: 1fr;
      }
      .trust-band-credibility {
        padding-inline-end: 0;
        padding-bottom: 1.125rem;
        border-inline-end: 0;
        border-bottom: 1px solid var(--border);
      }
      .trust-band-platforms {
        padding-inline-start: 0;
        padding-top: 1.125rem;
      }
    }
    @media (max-width: 640px) {
      .trust-band {
        padding: 1.25rem 1.125rem;
        margin-top: 2.5rem;
        border-radius: var(--r-lg);
      }
      .trust-band-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.25rem 0;
      }
      .trust-band-label { font-size: 0.625rem; min-width: 0; }
      .trust-band-list,
      .trust-band-actions { width: 100%; }
      .trust-band-list { gap: 0.4rem; }
      .trust-band-item { padding: 0.4375rem 0.7rem; font-size: 0.65rem; }
      .trust-pill { padding: 0.625rem 0.875rem 0.625rem 0.625rem; }
    }
    @media (max-width: 480px) {
      .trust-band-actions { grid-template-columns: 1fr; }
    }


    /* ─── Product Mockup — Glass terminal card ─── */
    .hero-visual {
      position: relative; z-index: 1;
      animation: fadeUp 0.85s 0.7s var(--ease) both;
    }
    /* Mobile/tablet: hero-visual stays AFTER hero-content (natural HTML order) — older versions used order:-1 which felt backwards on phones */
    .hero-visual::before {
      /* Halo glow behind mockup */
      content: '';
      position: absolute;
      inset: -10% -8% -12% -8%;
      background:
        radial-gradient(ellipse 65% 55% at 50% 50%, rgba(0,229,171,0.30) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 75% 70%, rgba(139,92,246,0.18) 0%, transparent 65%);
      filter: blur(50px);
      z-index: 0; pointer-events: none;
      animation: pulseDot 6s ease-in-out infinite;
    }
    .hero-visual > * { position: relative; z-index: 1; }
    .product-mockup {
      background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
      border: 1px solid var(--border-strong);
      border-radius: var(--r-2xl);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        var(--shadow-2xl),
        0 0 80px rgba(0,229,171,0.08);
      overflow: hidden;
      animation: float 8s ease-in-out infinite;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }
    .mockup-bar {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0.875rem 1.125rem;
      background: rgba(0,0,0,0.20);
      border-bottom: 1px solid var(--border);
    }
    .mockup-dots { display: flex; gap: 0.4375rem; }
    .mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
    .mockup-dots .d-r { background: rgba(255,95,87,0.85); }
    .mockup-dots .d-y { background: rgba(254,188,46,0.85); }
    .mockup-dots .d-g { background: rgba(40,200,64,0.85); }
    .mockup-title {
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500;
      color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase;
    }
    .mockup-badge {
      display: flex; align-items: center; gap: 0.4rem;
      font-family: var(--font-mono);
      font-size: 0.625rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
      padding: 0.25rem 0.55rem; border-radius: var(--r-sm);
      background: var(--mint-soft); color: var(--mint);
      border: 1px solid var(--mint-line);
    }
    .mockup-body { padding: 1.125rem; display: flex; flex-direction: column; gap: 0.625rem; }
    .doc-row {
      display: flex; align-items: center; gap: 0.875rem;
      padding: 0.875rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      background: rgba(0,0,0,0.20);
      transition: all var(--fast) var(--ease);
    }
    .doc-row:hover {
      border-color: var(--border-strong);
      background: rgba(255,255,255,0.025);
      transform: translate3d(0,-1px,0);
    }
    .doc-icon-wrap {
      width: 36px; height: 36px; border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; flex-shrink: 0;
      filter: saturate(0.85);
    }
    .doc-meta { flex: 1; min-width: 0; }
    .doc-filename {
      font-family: var(--font-mono);
      font-size: 0.78rem; font-weight: 500; color: var(--text);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      letter-spacing: -0.005em;
    }
    .doc-detail {
      font-size: 0.7rem; color: var(--text-muted); margin-top: 2px;
      letter-spacing: 0.01em;
    }
    .doc-status {
      font-family: var(--font-mono);
      font-size: 0.625rem; font-weight: 600;
      padding: 0.275rem 0.55rem; border-radius: var(--r-xs);
      flex-shrink: 0; letter-spacing: 0.06em; text-transform: uppercase;
      border: 1px solid;
    }
    .status-green { background: rgba(0,229,171,0.10); color: var(--mint); border-color: var(--mint-line); }
    .status-blue  { background: rgba(94,189,255,0.10); color: var(--blue); border-color: rgba(94,189,255,0.22); }
    .status-violet{ background: rgba(139,92,246,0.10); color: var(--violet); border-color: rgba(139,92,246,0.22); }
    .mockup-ai-row {
      display: flex; align-items: center; gap: 0.875rem;
      padding: 0.875rem 1rem; border-radius: var(--r-md);
      background:
        linear-gradient(135deg, rgba(0,229,171,0.08) 0%, rgba(139,92,246,0.06) 100%);
      border: 1px solid var(--mint-line);
      margin-top: 0.375rem;
      position: relative; overflow: hidden;
    }
    .mockup-ai-row::before {
      /* Scanning line */
      content: ''; position: absolute; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--mint) 50%, transparent 100%);
      animation: scanline 3s linear infinite;
      pointer-events: none;
    }
    .ai-pulse {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--mint-bright), var(--mint));
      display: flex; align-items: center; justify-content: center;
      animation: pulseDot 2s ease-in-out infinite;
      box-shadow: 0 0 16px var(--mint-glow);
    }
    .ai-text {
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500; color: var(--mint);
      letter-spacing: 0.04em;
    }
    .ai-text::after {
      content: '_';
      animation: blinkCursor 0.9s steps(1, end) infinite;
      margin-left: 2px;
    }
    .ai-sub {
      font-size: 0.7rem; color: var(--text-secondary);
      margin-top: 2px; line-height: 1.45;
    }
    /* Mobile mockup overrides — placed AFTER all mockup base rules so the cascade picks them up at <=480px */
    @media (max-width: 480px) {
      .mockup-body { padding: 0.75rem; gap: 0.5rem; }
      .doc-row { padding: 0.625rem 0.75rem; gap: 0.625rem; }
      .doc-icon-wrap { width: 28px; height: 28px; font-size: 0.875rem; }
      .doc-filename { font-size: 0.7rem; }
      .doc-detail { font-size: 0.625rem; }
      .doc-status { font-size: 0.55rem; padding: 0.2rem 0.4rem; }
      .mockup-bar { padding: 0.625rem 0.875rem; }
      .mockup-title { font-size: 0.625rem; }
      .mockup-badge { font-size: 0.55rem; padding: 0.2rem 0.4rem; }
      .mockup-ai-row { padding: 0.625rem 0.75rem; }
    }

    /* ─── Stats bar ─── */
    .stats-bar {
      background: transparent;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .stats-bar::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(0,229,171,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .stats-bar-inner {
      display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
      gap: 0; max-width: min(var(--page-max), calc(100vw - 1rem)); margin-inline: auto;
      padding: 2.75rem var(--page-pad);
      position: relative; z-index: 1;
    }
    .stat-block {
      flex: 1; min-width: 140px; text-align: center;
      padding: 1rem 1.5rem; position: relative;
    }
    .stat-block + .stat-block::before {
      content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
      width: 1px; background: var(--border);
    }
    .stat-num {
      font-size: clamp(2.25rem, 4.5vw, 3rem); font-weight: 700;
      letter-spacing: -0.045em; color: var(--text); line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-num .accent { color: var(--mint); }
    .stat-lbl {
      font-family: var(--font-mono);
      font-size: 0.7rem; color: var(--text-muted); font-weight: 500;
      letter-spacing: 0.10em; text-transform: uppercase;
    }

    /* ─── Features — Editorial bento, glass cards ─── */
    .features {
      background: var(--bg);
      position: relative;
    }
    .features::before {
      content: ''; position: absolute; top: 20%; right: -10%;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 60%);
      filter: blur(80px); pointer-events: none;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: clamp(1rem, 1.35vw, 1.4rem);
      position: relative; z-index: 1;
    }
    @media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(6, 1fr); } }
    @media (max-width: 560px) { .bento-grid { grid-template-columns: 1fr; } }
    .bento-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: clamp(1.75rem, 2.1vw, 2.6rem);
      transition: border-color var(--normal) var(--ease), transform var(--normal) var(--ease), box-shadow var(--normal) var(--ease);
      position: relative; overflow: hidden;
    }
    .bento-card::after {
      /* Subtle inner top highlight */
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
      pointer-events: none;
    }
    .bento-card:hover {
      transform: translate3d(0,-3px,0);
      border-color: var(--border-strong);
      box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--mint-line);
    }
    .bento-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--mint) 50%, transparent 100%);
      opacity: 0; transition: opacity var(--normal);
    }
    .bento-card:hover::before { opacity: 1; }
    .bento-7  { grid-column: span 7; }
    .bento-5  { grid-column: span 5; }
    .bento-4  { grid-column: span 4; }
    .bento-8  { grid-column: span 8; }
    .bento-6  { grid-column: span 6; }
    .bento-12 { grid-column: span 12; }
    @media (max-width: 900px) {
      .bento-7, .bento-5, .bento-4, .bento-8, .bento-6 { grid-column: span 6; }
      .bento-12 { grid-column: span 6; }
    }
    @media (max-width: 560px) {
      .bento-7, .bento-5, .bento-4, .bento-8, .bento-6 { grid-column: span 1; }
      .bento-12 { grid-column: span 1; }
    }
    .bento-card-center { text-align: center; }
    .bento-card-center .bento-icon { margin-inline: auto; }
    .bento-card-center .bento-desc { max-width: 640px; margin-inline: auto; }
    .bento-icon {
      width: 44px; height: 44px; border-radius: var(--r-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      border: 1px solid var(--border);
    }
    .bento-icon-blue   { background: rgba(94,189,255,0.10); }
    .bento-icon-green  { background: rgba(0,229,171,0.10); border-color: var(--mint-line); }
    .bento-icon-violet { background: rgba(139,92,246,0.10); }
    .bento-icon-mint   { background: rgba(0,229,171,0.10); border-color: var(--mint-line); }
    .bento-icon-orange { background: rgba(245,181,71,0.10); }
    .bento-icon-rose   { background: rgba(244,63,94,0.10); border-color: rgba(244,63,94,0.22); }
    .bento-icon-indigo { background: rgba(99,102,241,0.10); border-color: rgba(99,102,241,0.22); }
    .bento-title {
      font-size: var(--text-xl); font-weight: 600; color: var(--text);
      margin-bottom: 0.625rem; letter-spacing: -0.025em; line-height: 1.25;
    }
    .bento-desc {
      font-size: 0.95rem; color: var(--text-secondary);
      line-height: 1.6; max-width: 50ch;
    }
    /* Bento chips at the bottom of cards */
    .bento-chips {
      display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem;
    }
    .bento-chip {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.3rem 0.7rem;
      border-radius: var(--r-full);
      font-family: var(--font-mono);
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      border: 1px solid;
    }
    .bento-chip--blue   { color: #B3DDFF; background: rgba(94,189,255,0.10);  border-color: rgba(94,189,255,0.30); }
    .bento-chip--mint   { color: #14F4BC; background: rgba(0,229,171,0.10);   border-color: rgba(0,229,171,0.30); }
    .bento-chip--violet { color: #C4B5FD; background: rgba(139,92,246,0.10);  border-color: rgba(139,92,246,0.30); }
    .bento-chip--orange { color: #FCD686; background: rgba(245,181,71,0.10);  border-color: rgba(245,181,71,0.30); }

    /* Before → After demo (inside Smart Naming card) */
    .bento-demo {
      display: flex; align-items: stretch;
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      background: rgba(0,0,0,0.30);
      overflow: hidden;
      margin-top: 1.25rem;
    }
    .bento-demo-side {
      flex: 1; min-width: 0;
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.875rem 1rem;
    }
    .bento-demo-side + .bento-demo-side {
      border-inline-start: 1px solid var(--border);
      background: rgba(0,229,171,0.025);
    }
    .bento-demo-icon {
      width: 32px; height: 32px; flex-shrink: 0;
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid;
    }
    .bento-demo-icon--before { background: rgba(244,63,94,0.08);  border-color: rgba(244,63,94,0.18);   color: #FB7185; }
    .bento-demo-icon--after  { background: rgba(0,229,171,0.10);  border-color: var(--mint-line);       color: var(--mint); }
    .bento-demo-meta { min-width: 0; }
    .bento-demo-label {
      font-family: var(--font-mono);
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.10em; text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 2px;
    }
    .bento-demo-side + .bento-demo-side .bento-demo-label { color: rgba(0,229,171,0.65); }
    .bento-demo-file {
      font-family: var(--font-mono);
      font-size: 0.78rem; font-weight: 500;
      color: var(--text-secondary);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .bento-demo-side + .bento-demo-side .bento-demo-file { color: rgba(0,229,171,0.85); font-weight: 600; }
    .bento-demo-arrow {
      flex-shrink: 0; width: 30px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,229,171,0.04);
      border-inline: 1px solid var(--border);
      color: var(--mint);
    }
    @media (max-width: 560px) {
      .bento-demo { flex-direction: column; }
      .bento-demo-side + .bento-demo-side { border-inline-start: 0; border-block-start: 1px solid var(--border); }
      .bento-demo-arrow { display: none; }
    }

    /* PDF tool grid (12 small chips, 3 cols).
       minmax(0,1fr) + min-width:0 lets chips shrink below their content size,
       and overflow-wrap:anywhere breaks long German words (ZUSAMMENFÜHREN,
       KOMPRIMIEREN) instead of bursting out of the card. */
    .bento-toolgrid {
      display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.4rem; margin-top: 1.125rem;
    }
    .bento-tool {
      display: flex; align-items: center; justify-content: center; gap: 0.35rem;
      padding: 0.5rem 0.4rem;
      border-radius: var(--r-sm);
      background: rgba(94,189,255,0.06);
      border: 1px solid rgba(94,189,255,0.10);
      font-family: var(--font-mono);
      font-size: 0.62rem; font-weight: 600;
      color: rgba(179,221,255,0.75);
      letter-spacing: 0.04em; text-transform: uppercase;
      min-width: 0;
      text-align: center;
      overflow-wrap: anywhere;
      hyphens: auto;
    }
    .bento-tool svg { width: 12px; height: 12px; color: rgba(94,189,255,0.55); flex-shrink: 0; }
    /* In the 901–1200px range the PDF card is only span-4 (~33% viewport).
       Three chips of long German text overflow the card boundary and bleed
       into the neighbouring Image card. Drop to two columns in that range. */
    @media (min-width: 901px) and (max-width: 1200px) {
      .bento-toolgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    .bento-toolgrid-count {
      text-align: center; margin-top: 0.875rem;
      font-family: var(--font-mono);
      font-size: 0.65rem; font-weight: 700; color: rgba(94,189,255,0.45);
      letter-spacing: 0.20em; text-transform: uppercase;
    }

    /* Mini info chip cards (used in Image AI) */
    .bento-info-chips {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .bento-info-chip {
      display: inline-flex; align-items: center; gap: 0.55rem;
      padding: 0.625rem 0.875rem;
      border-radius: var(--r-md);
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--border);
      font-size: 0.82rem;
      color: var(--text-secondary);
    }
    .bento-info-chip svg { width: 14px; height: 14px; color: rgba(94,189,255,0.7); flex-shrink: 0; }

    /* ─── Product Story — visual "what it does" panel ─── */
    .product-story {
      position: relative;
      overflow: hidden;
      padding-block: clamp(1.4rem, 3vw, 2.8rem);
      background:
        radial-gradient(ellipse 44% 54% at 17% 42%, rgba(0,229,171,0.11), transparent 72%),
        radial-gradient(ellipse 42% 48% at 84% 48%, rgba(94,189,255,0.10), transparent 70%),
        linear-gradient(180deg, rgba(4,9,17,0), rgba(9,15,29,0.86) 48%, rgba(4,9,17,0));
      border-block: 1px solid rgba(255,255,255,0.055);
    }
    .product-story::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(120,248,218,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120,248,218,0.045) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
      opacity: 0.45;
      pointer-events: none;
    }
    .product-story-container {
      position: relative;
      z-index: 1;
    }
    .product-story svg {
      flex-shrink: 0;
    }
    .product-story-heading {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
      gap: 0.75rem clamp(1rem, 3vw, 3rem);
      align-items: center;
      margin-bottom: clamp(0.85rem, 1.6vw, 1.25rem);
      padding: clamp(0.85rem, 1.3vw, 1.1rem) clamp(1rem, 2vw, 1.35rem);
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
        rgba(5,12,24,0.58);
      border: 1px solid rgba(255,255,255,0.09);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .product-story-heading .section-label {
      grid-column: 1 / -1;
      margin-bottom: 0;
      font-size: 0.62rem;
    }
    .product-story-title {
      color: var(--text);
      font-size: clamp(1.45rem, 2.35vw, 2.7rem);
      line-height: 1.02;
      letter-spacing: 0;
      max-width: 18ch;
      text-wrap: balance;
    }
    .product-story-copy {
      color: rgba(226,232,240,0.76);
      font-size: clamp(0.92rem, 1vw, 1.05rem);
      line-height: 1.55;
      max-width: 56ch;
      margin-bottom: 0;
    }
    .product-story-shell {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(0.85rem, 1.6vw, 1.35rem);
      align-items: stretch;
      padding: clamp(0.8rem, 1.4vw, 1.1rem);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(20,29,53,0.94), rgba(9,17,32,0.96) 48%, rgba(9,43,47,0.86)),
        linear-gradient(90deg, rgba(255,255,255,0.06), transparent 50%, rgba(0,229,171,0.06));
      border: 1px solid rgba(0,229,171,0.28);
      box-shadow:
        0 34px 100px rgba(0,0,0,0.44),
        inset 0 1px 0 rgba(255,255,255,0.10);
    }
    .story-stage {
      min-width: 0;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: 0.9rem;
      padding: clamp(1rem, 1.6vw, 1.35rem);
      border-radius: 22px;
      background: rgba(3,9,19,0.50);
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    }
    .story-stage-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.11em;
      color: rgba(226,232,240,0.78);
      font-size: 0.68rem;
      font-weight: 800;
    }
    .story-stage-head span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(0,229,171,0.12);
      border: 1px solid rgba(0,229,171,0.26);
      color: var(--mint);
    }
    .story-phone {
      align-self: stretch;
      display: grid;
      align-content: end;
      gap: 0.75rem;
      min-height: clamp(240px, 18vw, 320px);
      padding: 1rem;
      border-radius: 26px;
      background:
        radial-gradient(circle at 50% 0%, rgba(94,189,255,0.16), transparent 52%),
        linear-gradient(180deg, #111a2f, #07101f);
      border: 1px solid rgba(255,255,255,0.10);
      position: relative;
      overflow: hidden;
    }
    .story-phone-top {
      position: absolute;
      top: 13px;
      left: 50%;
      width: 78px;
      height: 7px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: rgba(255,255,255,0.13);
    }
    .story-chat-bubble,
    .story-clean-file {
      display: grid;
      grid-template-columns: auto minmax(0,1fr);
      align-items: center;
      gap: 0.75rem;
      min-width: 0;
    }
    .story-chat-bubble {
      padding: 0.78rem;
      border-radius: 18px;
      background: rgba(255,255,255,0.065);
      border: 1px solid rgba(255,255,255,0.10);
    }
    .story-chat-bubble--pdf {
      margin-inline-start: 1.5rem;
      background: rgba(94,189,255,0.08);
    }
    .story-chat-bubble strong,
    .story-clean-file strong {
      display: block;
      color: #fff;
      font-family: var(--font-mono);
      font-size: 0.82rem;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .story-chat-bubble small,
    .story-clean-file small {
      display: block;
      margin-top: 0.2rem;
      color: rgba(226,232,240,0.56);
      font-size: 0.76rem;
      line-height: 1.35;
    }
    .story-file-thumb {
      width: 48px;
      height: 58px;
      border-radius: 10px;
      background:
        linear-gradient(150deg, rgba(255,255,255,0.84), rgba(213,226,245,0.92)),
        linear-gradient(90deg, transparent 36%, rgba(0,0,0,0.08) 37% 38%, transparent 39%);
      border: 1px solid rgba(255,255,255,0.26);
      box-shadow: 0 10px 28px rgba(0,0,0,0.28);
      position: relative;
      overflow: hidden;
    }
    .story-file-thumb::before,
    .story-file-thumb::after {
      content: '';
      position: absolute;
      left: 9px;
      right: 9px;
      height: 3px;
      border-radius: 999px;
      background: rgba(15,23,42,0.28);
    }
    .story-file-thumb::before { top: 18px; box-shadow: 0 9px 0 rgba(15,23,42,0.18), 0 18px 0 rgba(15,23,42,0.12); }
    .story-file-thumb::after { bottom: 8px; width: 44%; right: auto; background: rgba(0,229,171,0.55); }
    .story-file-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 13px;
      background: rgba(244,63,94,0.12);
      border: 1px solid rgba(244,63,94,0.22);
      color: #fb7185;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 900;
    }
    .story-ai-node {
      min-width: 0;
      align-self: center;
      min-height: clamp(240px, 18vw, 320px);
      display: grid;
      place-items: center;
      align-content: center;
      gap: 1rem;
      border-radius: 26px;
      background:
        radial-gradient(circle at 50% 40%, rgba(0,229,171,0.22), transparent 48%),
        rgba(4,10,20,0.34);
      border: 1px solid rgba(0,229,171,0.16);
      position: relative;
      overflow: hidden;
    }
    .story-ai-orbit {
      position: absolute;
      inset: 18px;
      border-radius: 999px;
      border: 1px dashed rgba(0,229,171,0.20);
    }
    .story-ai-orbit span {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 0 0 16px rgba(0,229,171,0.8);
    }
    .story-ai-orbit span:nth-child(1) { top: 12%; left: 20%; }
    .story-ai-orbit span:nth-child(2) { top: 48%; right: 8%; background: #5ebdff; box-shadow: 0 0 16px rgba(94,189,255,0.72); }
    .story-ai-orbit span:nth-child(3) { bottom: 8%; left: 50%; transform: translateX(-50%); background: #a78bfa; box-shadow: 0 0 16px rgba(167,139,250,0.68); }
    .story-ai-core {
      width: 88px;
      height: 88px;
      display: grid;
      place-items: center;
      border-radius: 28px;
      color: #041612;
      background: linear-gradient(135deg, #00e5ab, #5ebdff);
      border: 1px solid rgba(255,255,255,0.42);
      box-shadow: 0 26px 60px rgba(0,229,171,0.28), inset 0 1px 0 rgba(255,255,255,0.54);
      position: relative;
      z-index: 1;
    }
    .story-ai-core svg {
      width: 42px !important;
      height: 42px !important;
      max-width: 42px !important;
      max-height: 42px !important;
    }
    .story-ai-copy {
      position: relative;
      z-index: 1;
      text-align: center;
      padding-inline: 1rem;
    }
    .story-ai-copy strong {
      display: block;
      color: #fff;
      font-size: 1rem;
      letter-spacing: -0.02em;
    }
    .story-ai-copy span {
      display: block;
      margin-top: 0.35rem;
      color: rgba(226,232,240,0.56);
      font-family: var(--font-mono);
      font-size: 0.62rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.5;
    }
    .story-archive-window {
      align-self: stretch;
      min-height: clamp(240px, 18vw, 320px);
      padding: 0.9rem;
      border-radius: 22px;
      background:
        linear-gradient(180deg, rgba(10,18,34,0.94), rgba(5,11,21,0.96));
      border: 1px solid rgba(94,189,255,0.16);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .story-window-bar {
      display: flex;
      align-items: center;
      gap: 0.42rem;
      margin-bottom: 1rem;
      min-width: 0;
      color: rgba(226,232,240,0.50);
      font-family: var(--font-mono);
      font-size: 0.68rem;
    }
    .story-window-bar span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.22);
      flex-shrink: 0;
    }
    .story-window-bar span:nth-child(1) { background: #fb7185; }
    .story-window-bar span:nth-child(2) { background: #fcd686; }
    .story-window-bar span:nth-child(3) { background: #00e5ab; }
    .story-window-bar em {
      margin-inline-start: auto;
      font-style: normal;
      min-width: 0;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .story-clean-file {
      padding: 1rem;
      border-radius: 18px;
      background:
        linear-gradient(135deg, rgba(0,229,171,0.13), rgba(94,189,255,0.06)),
        rgba(255,255,255,0.045);
      border: 1px solid rgba(0,229,171,0.24);
    }
    .story-clean-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      background: rgba(0,229,171,0.12);
      border: 1px solid rgba(0,229,171,0.24);
      color: var(--mint);
    }
    .story-clean-icon svg {
      width: 24px !important;
      height: 24px !important;
      max-width: 24px !important;
      max-height: 24px !important;
    }
    .story-metadata-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      margin-top: 0.8rem;
    }
    .story-metadata-grid span {
      display: grid;
      gap: 0.3rem;
      min-width: 0;
      padding: 0.72rem;
      border-radius: 14px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.075);
      color: rgba(226,232,240,0.52);
      font-family: var(--font-mono);
      font-size: 0.58rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }
    .story-metadata-grid strong {
      color: #fff;
      font-size: 0.76rem;
      letter-spacing: 0;
      text-transform: none;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
    .product-story-outcomes {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.65rem;
      margin-top: 1rem;
    }
    .product-story-outcomes span {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      min-height: 36px;
      padding: 0.48rem 0.78rem;
      border-radius: 999px;
      background: rgba(0,229,171,0.08);
      border: 1px solid rgba(0,229,171,0.18);
      color: rgba(207,251,243,0.92);
      font-family: var(--font-mono);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.075em;
      text-transform: uppercase;
    }
    .product-story-outcomes span::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--mint);
      box-shadow: 0 0 12px rgba(0,229,171,0.72);
    }
    @media (max-width: 1180px) {
      .product-story-heading {
        grid-template-columns: 1fr;
        gap: 0.85rem;
      }
      .product-story-title {
        max-width: 14ch;
      }
      .product-story-shell {
        grid-template-columns: 1fr;
      }
      .story-ai-node {
        min-height: 220px;
      }
    }
    @media (max-width: 640px) {
      .product-story { padding-block: 1.25rem 2rem; }
      .product-story-title {
        font-size: clamp(1.65rem, 8vw, 2.55rem);
      }
      .product-story-shell {
        border-radius: 22px;
        padding: 0.65rem;
      }
      .story-stage,
      .story-archive-window {
        border-radius: 18px;
      }
      .story-phone,
      .story-archive-window {
        min-height: 240px;
      }
      .story-metadata-grid {
        grid-template-columns: 1fr;
      }
      .story-chat-bubble--pdf {
        margin-inline-start: 0;
      }
    }

    /* Large card accent bg-num — subtle outline */
    .bento-bg-text {
      position: absolute; bottom: -1.5rem; right: 1rem;
      font-size: 8rem; font-weight: 700; line-height: 1; letter-spacing: -0.06em;
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,0.06);
      pointer-events: none; user-select: none;
    }

    /* ─── How It Works — Linear chapter style ─── */
    .hiw {
      background: var(--bg-subtle);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .hiw-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
      position: relative;
    }
    @media (max-width: 700px) { .hiw-grid { grid-template-columns: 1fr; gap: 1rem; } }
    .hiw-connector {
      display: none;
      position: absolute; top: 3rem;
      left: calc(16.66% + 1.5rem); right: calc(16.66% + 1.5rem);
      height: 1px; pointer-events: none;
      background: linear-gradient(90deg, transparent 0%, var(--border-strong) 15%, var(--border-strong) 85%, transparent 100%);
    }
    @media (min-width: 700px) { .hiw-connector { display: block; } }
    .step-card {
      background: linear-gradient(180deg, #1A2035 0%, #131A2C 100%);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: var(--r-xl);
      padding: 1.75rem 1.75rem 1.75rem;
      position: relative; overflow: hidden;
      isolation: isolate;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 8px 24px rgba(0,0,0,0.40);
      transition: border-color var(--normal), transform var(--normal) var(--ease), box-shadow var(--normal);
    }
    .step-card::before {
      /* Top mint accent line — subtle but present */
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, currentColor 50%, transparent 100%);
      opacity: 0.55;
      color: var(--step-accent, var(--mint));
    }
    .step-card--mint   { --step-accent: #00E5AB; }
    .step-card--blue   { --step-accent: #5EBDFF; }
    .step-card--violet { --step-accent: #A78BFA; }
    .step-card:hover {
      transform: translate3d(0,-4px,0);
      border-color: var(--step-accent, var(--mint));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        0 16px 40px rgba(0,0,0,0.50),
        0 0 32px color-mix(in srgb, var(--step-accent, var(--mint)) 24%, transparent);
    }
    .step-bg-num {
      position: absolute; top: 1rem; right: 1.5rem;
      font-size: 4.5rem; font-weight: 700; line-height: 0.85;
      color: transparent;
      -webkit-text-stroke: 1.5px color-mix(in srgb, var(--step-accent, var(--mint)) 30%, transparent);
      letter-spacing: -0.04em;
      pointer-events: none; user-select: none;
      z-index: 0;
    }
    html[dir="rtl"] .step-bg-num { right: auto; left: 1.5rem; }
    /* Keep content above the bg numeral */
    .step-card > *:not(.step-bg-num) { position: relative; z-index: 1; }
    .step-icon {
      width: 52px; height: 52px; border-radius: var(--r-md);
      margin: 0 0 1.25rem;
      display: flex; align-items: center; justify-content: center;
      background: color-mix(in srgb, var(--step-accent, var(--mint)) 14%, transparent);
      border: 1px solid color-mix(in srgb, var(--step-accent, var(--mint)) 35%, transparent);
      color: var(--step-accent, var(--mint));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 0 16px color-mix(in srgb, var(--step-accent, var(--mint)) 20%, transparent);
    }
    /* Inline accents inside translation strings — Tailwind arbitrary classes
       may not be JIT-scanned, so we ship explicit fallback rules. */
    .step-desc .text-\[\#2AABEE\]\/80,
    .step-desc [class*="text-[#2AABEE]"] {
      color: rgba(94,189,255,0.95);
      font-weight: 600;
    }
    .step-title {
      font-size: var(--text-lg); font-weight: 600; color: var(--text);
      letter-spacing: -0.02em; margin-bottom: 0.5rem;
      text-align: left; line-height: 1.3;
    }
    .step-desc {
      font-size: 0.9rem; color: var(--text-secondary);
      line-height: 1.6; text-align: left;
    }

    /* ─── Pricing — Linear Dark price grid ─── */
    .pricing { background: var(--bg); }
    /* Two-line pricing headline — always white on top, mint accent below.
       text-wrap:balance keeps each phrase tidy across viewport widths. */
    .pricing-h2 { text-wrap: balance; margin-bottom: 1.25rem; }
    .pricing-h2 .pricing-h2-line { display: block; }
    .pricing-h2 .pricing-h2-line + .pricing-h2-line { margin-top: 0.15em; }
    /* Pricing header polish — centered hierarchy, smaller body, real chips */
    .pricing-rule {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-top: 1rem;
      margin-inline: auto;
      max-width: 640px;
    }
    .pricing-badges {
      list-style: none;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }
    .pricing-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 0.875rem;
      border-radius: var(--r-full);
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: #FFFFFF;
      text-shadow: 0 1px 2px rgba(0,0,0,0.35);
      transition: filter var(--fast) var(--ease), transform var(--fast) var(--ease);
    }
    .pricing-badge svg {
      width: 13px; height: 13px;
      flex-shrink: 0;
      filter: drop-shadow(0 0 4px rgba(255,255,255,0.4));
    }
    .pricing-badge--mint {
      background: linear-gradient(180deg, #00A57E 0%, #006B53 100%);
      border: 1.5px solid rgba(0,229,171,0.85);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 4px 12px rgba(0,229,171,0.35), 0 0 20px rgba(0,229,171,0.25);
    }
    .pricing-badge--mint svg { color: #14F4BC; }
    .pricing-badge--blue {
      background: linear-gradient(180deg, #2D7CB0 0%, #1A5680 100%);
      border: 1.5px solid rgba(94,189,255,0.85);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 4px 12px rgba(94,189,255,0.35), 0 0 20px rgba(94,189,255,0.25);
    }
    .pricing-badge--blue svg { color: #8FD0FF; }
    .pricing-badge--orange {
      background: linear-gradient(180deg, #C8881C 0%, #8B5F1A 100%);
      border: 1.5px solid rgba(245,181,71,0.85);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.20), 0 4px 12px rgba(245,181,71,0.35), 0 0 20px rgba(245,181,71,0.25);
    }
    .pricing-badge--orange svg { color: #FCD686; }
    .pricing-badge:hover {
      transform: translate3d(0,-1px,0);
      filter: brightness(1.15);
    }

    /* Inclusivity banner — refined glass card */
    .pricing-inclusive {
      max-width: 720px;
      margin: 2.5rem auto 2.5rem;
      padding: 1.125rem 1.625rem;
      border-radius: var(--r-lg);
      background: linear-gradient(180deg, rgba(94,189,255,0.10) 0%, rgba(94,189,255,0.04) 100%);
      border: 1px solid rgba(94,189,255,0.30);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
      text-align: center;
      position: relative; overflow: hidden;
    }
    .pricing-inclusive::before {
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(94,189,255,0.50) 50%, transparent 100%);
    }
    .pricing-inclusive-title {
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 700;
      color: #8FD0FF;
      letter-spacing: 0.08em; text-transform: uppercase;
      margin-bottom: 0.375rem;
    }
    .pricing-inclusive-sub {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.35vw, 1.4rem); align-items: stretch;
    }
    @media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 580px)  { .pricing-grid { grid-template-columns: 1fr; } }
    .price-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 2rem 1.5rem 1.75rem;
      display: flex; flex-direction: column; position: relative;
      transition: border-color var(--normal), transform var(--normal) var(--ease);
    }
    .price-card:hover {
      border-color: var(--border-strong);
      transform: translate3d(0,-3px,0);
      box-shadow: 0 16px 32px rgba(0,0,0,0.4);
    }
    .price-card-featured {
      background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
      border: 1px solid var(--mint-line);
      box-shadow: 0 0 0 1px var(--mint-line), 0 16px 48px rgba(0,229,171,0.18);
    }
    .price-card-featured::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(180deg, rgba(0,229,171,0.6) 0%, transparent 50%);
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
              mask-composite: exclude;
      pointer-events: none;
    }
    .price-card-featured:hover { transform: translate3d(0,-4px,0); }
    .price-badge-wrap {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
      background: var(--mint); color: var(--bg);
      font-family: var(--font-mono);
      font-size: 0.625rem; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
      padding: 0.3125rem 0.875rem; border-radius: 0 0 var(--r-xs) var(--r-xs); white-space: nowrap;
      box-shadow: 0 4px 16px var(--mint-glow);
    }
    .price-plan {
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500; color: var(--mint);
      letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 0.5rem;
    }
    .price-tagline { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
    .price-amount-row {
      display: flex; align-items: flex-end; justify-content: flex-end;
      flex-direction: row-reverse;   /* German DIN 5008: 29,99 € — symbol AFTER number, group anchored left */
      gap: 0.375rem;
      margin-bottom: 0.375rem;
    }
    /* Centered cards (Pricing section is centered) — keep amount-row left-aligned naturally;
       flex-direction reversal above flips visually so Euro lands on the right of the number. */
    .price-currency {
      font-size: var(--text-xl); font-weight: 500;
      color: var(--text-secondary); line-height: 1.5;
      align-self: flex-end;
      padding-bottom: 0.4rem; /* baseline tweak vs price-amount large size */
    }
    .price-amount { font-size: 3rem; font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -0.045em; }
    .price-vat-note {
      align-self: flex-end;
      max-width: 8rem;
      padding-bottom: 0.5rem;
      font-size: 0.68rem;
      font-weight: 600;
      line-height: 1.15;
      color: var(--text-muted);
    }
    .price-period { font-size: 0.75rem; color: var(--text-muted); padding-bottom: 0.25rem; }
    .price-note {
      font-family: var(--font-mono);
      font-size: 0.7rem; color: var(--text-muted);
      letter-spacing: 0.04em; min-height: 1.25rem; margin-bottom: 1.5rem;
    }
    .price-divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; flex: 1; margin-bottom: 1.5rem; }
    .price-feature {
      display: flex; align-items: flex-start; gap: 0.625rem;
      font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5;
    }
    .price-feature svg { color: var(--mint); flex-shrink: 0; margin-top: 0.1875rem; opacity: 0.85; }
    .price-feature.dim { color: var(--text-muted); }
    .price-feature.dim svg { color: var(--border-strong); opacity: 0.6; }
    .price-packs-title {
      font-family: var(--font-mono);
      font-size: 0.625rem; font-weight: 500; color: var(--text-muted);
      margin-bottom: 0.625rem; text-transform: uppercase; letter-spacing: 0.10em;
    }
    .price-packs-row { display: flex; flex-direction: column; gap: 0.5rem; }
    /* Caption rendered directly under each pack-option button — concrete
       answer to "what does a credit get me?" */
    .pack-equivalence {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.68rem;
      letter-spacing: 0.06em;
      color: rgba(0, 229, 171, 0.78);
      text-align: center;
      padding: 0 0.25rem;
      line-height: 1.3;
    }
    /* Section-level credit explainer — collapsible <details>; shows the
       equivalence as a chip, expands a fuller explanation. Sits between
       pricing-badges and the inclusivity banner. */
    .pricing-credit-explainer {
      display: flex; flex-direction: column;
      max-width: 540px; margin: 1.25rem auto 0;
    }
    .pricing-credit-explainer[open] { padding-bottom: 0.25rem; }
    .pricing-credit-summary {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 0.5rem;
      list-style: none;
      cursor: pointer;
      padding: 0.5rem 0.875rem;
      background: linear-gradient(180deg, rgba(0, 229, 171, 0.08), rgba(0, 229, 171, 0.04));
      border: 1px solid rgba(0, 229, 171, 0.28);
      border-radius: var(--r-full);
      color: rgba(220, 231, 255, 0.92);
      font-size: 0.85rem;
      transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
      user-select: none;
    }
    .pricing-credit-summary::-webkit-details-marker { display: none; }
    .pricing-credit-summary::marker { content: ''; }
    .pricing-credit-summary:hover {
      border-color: rgba(0, 229, 171, 0.50);
      background: linear-gradient(180deg, rgba(0, 229, 171, 0.12), rgba(0, 229, 171, 0.06));
    }
    .pricing-credit-summary:focus-visible {
      outline: 2px solid var(--mint);
      outline-offset: 2px;
    }
    .pricing-credit-summary strong {
      font-weight: 600;
      color: var(--mint);
      letter-spacing: 0.005em;
    }
    .pricing-credit-icon {
      width: 16px; height: 16px;
      flex-shrink: 0;
      color: var(--mint);
    }
    .pricing-credit-chevron {
      color: rgba(220, 231, 255, 0.58);
      transition: transform var(--fast) var(--ease);
    }
    .pricing-credit-explainer[open] .pricing-credit-chevron {
      transform: rotate(180deg);
    }
    .pricing-credit-body {
      margin-top: 0.875rem;
      padding: 1rem 1.125rem;
      background: rgba(11, 17, 33, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--r-md);
      animation: fadeUp 0.3s var(--ease) both;
    }
    .pricing-credit-body-title {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.7rem; font-weight: 500;
      color: var(--mint);
      letter-spacing: 0.10em; text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .pricing-credit-body p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.55;
      color: var(--text-secondary);
    }
    @media (prefers-reduced-motion: reduce) {
      .pricing-credit-chevron { transition: none; }
      .pricing-credit-body { animation: none; }
    }
    /* Pack pricing — clear hierarchy: mono uppercase label / bold price / arrow */
    .pack-option {
      width: 100%;
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 0.875rem;
      background: rgba(0,0,0,0.25);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      cursor: pointer;
      font-family: var(--font);
      transition: background var(--fast) var(--ease),
                  border-color var(--fast) var(--ease),
                  transform var(--fast) var(--ease);
      text-align: start;
    }
    .pack-option:hover {
      background: rgba(0,229,171,0.10);
      border-color: var(--mint-line);
      transform: translate3d(0,-1px,0);
    }
    .pack-option:active { transform: translate3d(0,0,0); transition-duration: 80ms; }
    .pack-amount {
      flex: 1; min-width: 0;
      font-family: var(--font-mono);
      font-size: 0.68rem; font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.10em; text-transform: uppercase;
      white-space: nowrap;
    }
    .pack-option:hover .pack-amount { color: var(--text-secondary); }
    .pack-price {
      font-family: var(--font-mono);
      font-size: 1.0625rem; font-weight: 700;
      color: var(--text);
      letter-spacing: -0.015em;
      line-height: 1;
      white-space: nowrap;
    }
    .pack-vat-note {
      display: block;
      margin-top: 0.2rem;
      font-family: var(--font);
      /* 0.68rem matches .price-vat-note / .mf26-vat-note to keep the PAngV
         §3 MwSt notice above ~7.5pt; see landing-light-2026.css for the
         BGH / OLG-Frankfurt rationale (#880). */
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.05;
      color: var(--text-muted);
      text-align: end;
    }
    .pack-option:hover .pack-price { color: var(--mint-bright); }
    .pack-arrow {
      width: 14px; height: 14px; flex-shrink: 0;
      color: var(--text-muted);
      transition: transform var(--fast) var(--ease), color var(--fast) var(--ease);
    }
    .pack-option:hover .pack-arrow {
      color: var(--mint-bright);
      transform: translateX(3px);
    }
    html[dir="rtl"] .pack-option:hover .pack-arrow { transform: translateX(-3px); }

    /* ─── FAQ — Dark hairline accordion ─── */
    .faq {
      background: var(--bg-subtle);
      border-top: 1px solid var(--border);
    }
    .faq-list { max-width: 1040px; margin-inline: auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-btn {
      display: flex; justify-content: space-between; align-items: center;
      width: 100%; padding: 1.5rem 0; gap: 1rem;
      font-size: 1.0625rem; font-weight: 500; color: var(--text);
      cursor: pointer; background: none; border: none; text-align: left;
      font-family: var(--font); transition: color var(--fast);
      letter-spacing: -0.01em;
    }
    .faq-btn:hover { color: var(--mint); }
    .faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); transition: transform var(--normal) var(--ease), color var(--fast); }
    .faq-item.open .faq-btn { color: var(--mint); }
    .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--mint); }
    .faq-answer { overflow: hidden; max-height: 0; transition: max-height var(--slow) var(--ease); }
    .faq-item.open .faq-answer { max-height: 480px; }
    .faq-answer-body {
      padding-bottom: 1.5rem; font-size: 0.95rem;
      color: var(--text-secondary); line-height: 1.7;
      max-width: 64ch;
    }

    /* ─── CTA — Final mint-charged section ─── */
    .cta-section {
      background: var(--bg);
      border-top: 1px solid var(--border);
      position: relative; overflow: hidden;
      padding-block: clamp(6rem, 11vw, 10rem);
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(0,229,171,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 90% 110%, rgba(139,92,246,0.10) 0%, transparent 60%);
    }
    .cta-section::after {
      content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--mint-line) 30%, var(--mint-line) 70%, transparent 100%);
    }
    .cta-inner { position: relative; z-index: 1; text-align: center; max-width: 980px; margin-inline: auto; }
    .cta-title {
      font-size: var(--text-5xl); font-weight: 700; color: var(--text);
      letter-spacing: -0.045em; line-height: 1; margin-bottom: 1.5rem;
    }
    .cta-desc { font-size: var(--text-lg); color: var(--text-secondary); line-height: 1.55; margin-bottom: 3rem; max-width: 580px; margin-inline: auto; }
    .cta-actions {
      display: flex; justify-content: center; align-items: center;
      gap: 0.75rem; flex-wrap: wrap;
    }
    /* Polish: secondary button on CTA — clear with mint hover */
    .cta-actions .btn-ghost {
      color: var(--text-secondary) !important;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.14);
      padding-inline: 1.5rem;
      transition: all var(--fast) var(--ease);
    }
    .cta-actions .btn-ghost:hover {
      color: var(--text) !important;
      background: rgba(255,255,255,0.08);
      border-color: var(--mint-line);
      transform: translate3d(0,-1px,0);
    }
    .cta-btn-primary {
      display: inline-flex; align-items: center; gap: 0.625rem;
      padding: 1rem 2.25rem; border-radius: var(--r-md);
      font-size: 1rem; font-weight: 700;
      background: var(--mint); color: var(--bg);
      border: none; cursor: pointer; font-family: var(--font);
      transition: all var(--fast) var(--ease);
      box-shadow: 0 0 0 1px var(--mint-bright), 0 12px 40px rgba(0,229,171,0.30), inset 0 1px 0 rgba(255,255,255,0.30);
    }
    .cta-btn-primary:hover {
      background: var(--mint-bright);
      transform: translate3d(0,-2px,0);
      box-shadow: 0 0 0 1px var(--mint-bright), 0 16px 48px rgba(0,229,171,0.50), inset 0 1px 0 rgba(255,255,255,0.40);
    }
    /* CTA trust strip — matched both HTML class names (.cta-trust used in markup) */
    .cta-trust,
    .cta-trust-row {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.625rem;
      flex-wrap: wrap;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
      width: 100%;
    }
    .cta-trust-item {
      display: inline-flex; align-items: center; gap: 0.4375rem;
      padding: 0.4375rem 0.75rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--r-full);
      font-family: var(--font-mono);
      font-size: 0.68rem; font-weight: 500;
      color: var(--text-secondary);
      letter-spacing: 0.10em; text-transform: uppercase;
      transition: border-color var(--fast), color var(--fast), background var(--fast);
    }
    .cta-trust-item:hover {
      border-color: var(--mint-line);
      color: var(--text);
      background: rgba(0,229,171,0.06);
    }
    .cta-trust-item svg {
      width: 12px; height: 12px;
      color: var(--mint); opacity: 1;
      flex-shrink: 0;
    }
    /* ─── Footer 2026 — Linear/Vercel-tier modern ─── */
    .lp-footer {
      background: var(--bg) !important;
      border-top: 1px solid var(--border) !important;
      margin-top: 0 !important;
      position: relative !important;
      overflow: hidden !important;
    }
    /* Animated mint accent line at top */
    .lp-footer::before {
      content: '' !important;
      position: absolute !important;
      top: 0 !important; left: 0 !important; right: 0 !important;
      height: 1px !important;
      background: linear-gradient(90deg, transparent 0%, var(--mint-line) 25%, var(--mint) 50%, var(--mint-line) 75%, transparent 100%) !important;
      z-index: 2 !important;
      box-shadow: 0 1px 8px rgba(0,229,171,0.30) !important;
    }
    /* Centered mint glow halo */
    .lp-footer::after {
      content: '' !important;
      position: absolute !important;
      bottom: -240px !important;
      left: 50% !important; transform: translateX(-50%) !important;
      width: 800px !important; height: 480px !important;
      background: radial-gradient(ellipse at center, rgba(0,229,171,0.10) 0%, transparent 65%) !important;
      filter: blur(60px) !important;
      pointer-events: none !important;
      z-index: 0 !important;
    }
    .lp-footer-glow { display: none !important; }
    .lp-footer-inner { position: relative !important; z-index: 1 !important; }

    /* ── Main grid: brand column (1.4fr) + 3 nav cols (1fr each) ── */
    .lp-footer-top {
      display: grid !important;
      grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
      gap: 3rem 2.5rem !important;
      padding: 5rem 2.5rem 4rem !important;
      max-width: min(var(--page-max), calc(100vw - 1rem)) !important;
      margin: 0 auto !important;
      box-sizing: border-box !important;
      border: none !important;
      background: transparent !important;
    }
    .lp-footer-col {
      display: flex !important;
      flex-direction: column !important;
      gap: 0 !important;
      background: transparent !important;
      border: none !important;
    }

    /* ── Brand column ── */
    .lp-footer-brand-section { padding: 0 !important; max-width: 320px !important; }
    .lp-footer-brand {
      display: flex !important;
      align-items: center !important;
      gap: 0.625rem !important;
      margin-bottom: 1.25rem !important;
    }
    .lp-footer-brand-txt {
      font-size: 1.25rem !important;
      font-weight: 700 !important;
      letter-spacing: -0.02em !important;
    }
    .lp-footer .logo-mint   { color: var(--mint) !important; }
    .lp-footer .logo-folder { color: var(--text) !important; font-weight: 700 !important; }
    .lp-footer .logo-ai-tag {
      font-family: var(--font-mono) !important;
      color: var(--mint) !important;
      background: var(--mint-soft) !important;
      border: 1px solid var(--mint-line) !important;
      font-size: 0.55rem !important;
      font-weight: 600 !important;
      padding: 2px 5px !important;
      border-radius: 4px !important;
      letter-spacing: 0.12em !important;
    }
    .lp-footer-tagline {
      color: var(--text-secondary) !important;
      font-size: 0.95rem !important;
      line-height: 1.65 !important;
      max-width: 320px !important;
      margin: 0 0 1.5rem 0 !important;
    }

    /* Status indicator (Linear/Vercel-style) */
    .lp-footer-status {
      display: inline-flex !important;
      align-items: center !important;
      gap: 0.5rem !important;
      margin-bottom: 1.75rem !important;
      padding: 0.4rem 0.75rem !important;
      background: rgba(0,229,171,0.08) !important;
      border: 1px solid var(--mint-line) !important;
      border-radius: var(--r-full) !important;
      font-family: var(--font-mono) !important;
      font-size: 0.65rem !important;
      font-weight: 600 !important;
      color: var(--mint) !important;
      letter-spacing: 0.10em !important;
      text-transform: uppercase !important;
      text-decoration: none !important;
      transition: border-color var(--fast), background var(--fast) !important;
    }
    .lp-footer-status:hover {
      background: rgba(0,229,171,0.14) !important;
      border-color: rgba(0,229,171,0.45) !important;
    }
    .lp-footer-status::before {
      content: '' !important;
      width: 6px !important; height: 6px !important;
      border-radius: 50% !important;
      background: var(--mint) !important;
      box-shadow: 0 0 8px var(--mint), 0 0 14px rgba(0,229,171,0.5) !important;
      animation: pulseDot 2.4s ease-in-out infinite !important;
    }

    /* Social icons — refined glass + mint hover (now in bottom bar) */
    .lp-footer-social {
      display: flex !important;
      gap: 0.5rem !important;
      flex-wrap: wrap !important;
      align-items: center !important;
    }
    .lp-footer-social-btn {
      width: 40px !important; height: 40px !important;
      display: inline-flex !important;
      align-items: center !important; justify-content: center !important;
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid var(--border-strong) !important;
      border-radius: 10px !important;
      color: var(--text-secondary) !important;
      text-decoration: none !important;
      transition: transform var(--fast) var(--ease-spring),
                  border-color var(--fast),
                  background var(--fast),
                  color var(--fast),
                  box-shadow var(--fast) !important;
    }
    .lp-footer-social-btn:hover {
      transform: translate3d(0,-2px,0) !important;
      border-color: var(--mint-line) !important;
      background: rgba(0,229,171,0.08) !important;
      color: var(--mint) !important;
      box-shadow: 0 8px 20px rgba(0,0,0,0.40), 0 0 16px rgba(0,229,171,0.20) !important;
    }
    /* Brand-color hover variants — keep but mint baseline */
    .lp-footer-social-btn[data-platform="telegram"]:hover  { color: #5EBDFF !important; border-color: rgba(94,189,255,0.50) !important; box-shadow: 0 8px 20px rgba(0,0,0,0.40), 0 0 16px rgba(94,189,255,0.30) !important; }
    .lp-footer-social-btn[data-platform="facebook"]:hover  { color: #5EBDFF !important; border-color: rgba(24,119,242,0.50) !important; }
    .lp-footer-social-btn[data-platform="instagram"]:hover { color: #FB7185 !important; border-color: rgba(244,63,94,0.50) !important; }
    .lp-footer-social-btn[data-platform="linkedin"]:hover  { color: #5EBDFF !important; border-color: rgba(10,102,194,0.50) !important; }

    /* App store buttons — modern glass */
    .lp-footer-app-badges {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.625rem !important;
      max-width: 220px !important;
    }
    .lp-store-soon {
      width: 100% !important;
      min-height: 34px !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.5rem !important;
      padding: 0.42rem 0.72rem !important;
      border-radius: 999px !important;
      background:
        linear-gradient(180deg, rgba(0,229,171,0.14), rgba(0,229,171,0.055)) !important;
      border: 1px solid rgba(0,229,171,0.30) !important;
      color: rgba(207,251,243,0.96) !important;
      font-family: var(--font-mono) !important;
      font-size: 0.64rem !important;
      font-weight: 800 !important;
      letter-spacing: 0.12em !important;
      text-transform: uppercase !important;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 0 24px rgba(0,229,171,0.10) !important;
    }
    .lp-store-soon-dot {
      width: 7px !important;
      height: 7px !important;
      flex: 0 0 auto !important;
      border-radius: 999px !important;
      background: var(--mint) !important;
      box-shadow: 0 0 10px rgba(0,229,171,0.80) !important;
    }
    .lp-store-btn {
      display: inline-flex !important;
      align-items: center !important;
      gap: 0.75rem !important;
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)) !important;
      border: 1px solid var(--border-strong) !important;
      color: var(--text) !important;
      border-radius: 12px !important;
      padding: 0.75rem 1rem !important;
      text-decoration: none !important;
      transition: transform var(--fast) var(--ease-spring),
                  border-color var(--fast),
                  background var(--fast),
                  box-shadow var(--fast) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 12px rgba(0,0,0,0.30) !important;
    }
    .lp-store-btn:hover {
      background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)) !important;
      border-color: var(--mint-line) !important;
      transform: translate3d(0,-2px,0) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 12px 24px rgba(0,0,0,0.40), 0 0 16px rgba(0,229,171,0.20) !important;
    }
    .lp-store-btn.is-disabled,
    .lp-store-btn.is-disabled:hover {
      cursor: default !important;
      opacity: 0.72 !important;
      transform: none !important;
      border-color: rgba(255,255,255,0.12) !important;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 4px 12px rgba(0,0,0,0.30) !important;
    }
    .lp-store-btn-text  { display: flex !important; flex-direction: column !important; line-height: 1.2 !important; text-align: start !important; }
    .lp-store-btn-small {
      font-family: var(--font-mono) !important;
      font-size: 0.55rem !important; font-weight: 500 !important;
      color: var(--text-muted) !important;
      text-transform: uppercase !important;
      letter-spacing: 0.10em !important;
    }
    .lp-store-btn-title { font-size: 0.875rem !important; font-weight: 600 !important; color: var(--text) !important; }

    /* Column heads — mono with mint dot prefix */
    .lp-footer-head {
      font-family: var(--font-mono) !important;
      font-size: 0.625rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.14em !important;
      text-transform: uppercase !important;
      color: var(--mint) !important;
      margin-bottom: 1.25rem !important;
      padding: 0 !important;
      border: 0 !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 0.4rem !important;
      background: transparent !important;
    }
    .lp-footer-head::before {
      content: '' !important;
      display: inline-block !important;
      width: 4px !important; height: 4px !important;
      border-radius: 50% !important;
      background: var(--mint) !important;
      box-shadow: 0 0 8px var(--mint-glow) !important;
    }
    .lp-footer-head::after { display: none !important; content: none !important; }

    /* Links — clean with mint hover */
    .lp-footer-link {
      font-size: 0.875rem !important;
      color: var(--text-secondary) !important;
      font-weight: 450 !important;
      padding: 0.4rem 0 !important;
      transition: color var(--fast), transform var(--fast) var(--ease-spring) !important;
      display: flex !important;
      align-items: center !important;
      gap: 0.4rem !important;
      text-decoration: none !important;
      background: transparent !important;
      border: none !important;
      width: 100% !important;
    }
    .lp-footer-link:hover { color: var(--mint) !important; transform: translateX(4px) !important; }
    html[dir="rtl"] .lp-footer-link:hover { transform: translateX(-4px) !important; }
    .lp-footer-link-icon  { gap: 0.4rem !important; }

    /* Bottom bar — social (left) · copyright (center) · badges (right) */
    .lp-footer-bottom {
      border-top: 1px solid var(--border) !important;
      background: rgba(0,0,0,0.30) !important;
      padding: 1.25rem 2.5rem !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      flex-wrap: wrap !important;
      gap: 1rem !important;
      max-width: 100% !important;
    }
    .lp-footer-copy {
      font-family: var(--font-mono) !important;
      color: var(--text-muted) !important;
      font-size: 0.7rem !important;
      font-weight: 500 !important;
      letter-spacing: 0.06em !important;
    }
    .lp-footer-badges { display: flex !important; gap: 0.375rem !important; align-items: center !important; }
    .lp-footer-badge {
      display: inline-flex !important;
      align-items: center !important;
      gap: 0.4rem !important;
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid var(--border) !important;
      color: var(--text-secondary) !important;
      border-radius: var(--r-full) !important;
      padding: 4px 10px !important;
      font-family: var(--font-mono) !important;
      font-size: 0.6rem !important;
      font-weight: 600 !important;
      letter-spacing: 0.12em !important;
      transition: all var(--fast) var(--ease) !important;
    }
    .lp-footer-badge:hover {
      border-color: var(--mint-line) !important;
      color: var(--mint) !important;
      background: var(--mint-soft) !important;
    }
    .lp-footer-badge svg {
      color: var(--mint) !important;
      opacity: 0.85 !important;
      width: 11px !important; height: 11px !important;
    }

    @media (max-width: 1024px) {
      .lp-footer-top {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 2.5rem 1.5rem !important;
        padding: 4rem 2rem 3rem !important;
      }
      .lp-footer-brand-section { grid-column: span 3 !important; max-width: 100% !important; }
    }
    @media (max-width: 640px) {
      .lp-footer-top { grid-template-columns: 1fr !important; gap: 0 !important; padding: 2.5rem 1.5rem 2rem !important; }
      .lp-footer-brand-section { grid-column: 1 !important; padding-bottom: 1.5rem !important; }
      .lp-footer-col {
        border-bottom: 1px solid var(--border) !important;
        padding: 1.25rem 0 !important;
      }
      .lp-footer-col:last-of-type { border-bottom: 0 !important; }
      .lp-footer-head { margin-bottom: 0.75rem !important; }
      .lp-footer-link { padding: 0.55rem 0 !important; }
      .lp-footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        padding: 1rem 1.5rem !important;
        gap: 0.75rem !important;
        text-align: center !important;
      }
      .lp-footer-copy { font-size: 0.65rem !important; }
    }


    /* Footer responsive 2026 shell */
    .lp-footer-inner {
      position: relative !important;
      z-index: 1 !important;
      width: 100% !important;
      max-width: min(var(--page-max), calc(100vw - clamp(24px, 5vw, 96px))) !important;
      margin-inline: auto !important;
      padding-inline: 0 !important;
      box-sizing: border-box !important;
    }
    .lp-footer-top {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      /* HTML has 2 children: .lp-footer-brand-section and .lp-footer-nav.
         The older 4-col template (1.35fr + 3×0.85fr) left columns 3 and 4
         empty and squeezed the nav into one narrow column. Use 2 columns
         that actually match the markup: cap the brand at its natural width
         and let the nav take the remaining space. */
      grid-template-columns: minmax(260px, 380px) minmax(0, 1fr) !important;
      gap: clamp(2rem, 4vw, 5rem) !important;
      padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.75rem, 5vw, 4.5rem) !important;
    }
    .lp-footer-brand-section {
      max-width: 360px !important;
      min-width: 0 !important;
    }
    .lp-footer-brand-txt { letter-spacing: 0 !important; }
    .lp-footer-tagline { max-width: 360px !important; }
    .lp-footer-col {
      min-width: 0 !important;
      overflow: visible !important;
    }
    .lp-footer-col > summary.lp-footer-head {
      list-style: none !important;
      cursor: default !important;
      pointer-events: none !important;
    }
    .lp-footer-col > summary.lp-footer-head::-webkit-details-marker { display: none !important; }
    .lp-footer-col > summary.lp-footer-head::marker { content: '' !important; }
    .lp-footer-col > summary.lp-footer-head:focus-visible {
      outline: 2px solid var(--mint) !important;
      outline-offset: 4px !important;
      border-radius: 8px !important;
    }
    /* Footer bottom: all children grouped and centered horizontally.
       Previously a 3-column grid pushed copy to the left and badges to the
       right with a big empty middle. The user asked for everything centered,
       so use flex with justify-content:center and let items wrap on narrow
       screens. */
    .lp-footer-bottom {
      width: 100% !important;
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 0.75rem 2rem !important;
      margin: 0 auto !important;
      padding: clamp(1rem, 2vw, 1.35rem) 0 !important;
      text-align: center !important;
    }
    .lp-footer-bottom .lp-footer-social { justify-content: center !important; }
    .lp-footer-copy {
      text-align: center !important;
      min-width: 0 !important;
    }
    .lp-footer-badges { justify-content: center !important; }
    html[dir="rtl"] .lp-footer-bottom .lp-footer-social { justify-content: center !important; }
    html[dir="rtl"] .lp-footer-badges { justify-content: center !important; }
    @media (min-width: 1600px) {
      .lp-footer-inner { max-width: min(var(--page-max), calc(100vw - 112px)) !important; }
    }
    @media (max-width: 1180px) {
      .lp-footer-inner { max-width: calc(100vw - clamp(32px, 5vw, 72px)) !important; }
      /* Stack brand above the nav block AND centre every element so the
         stacked layout doesn't end up flush-left on the page. The nav
         block keeps its 3-column layout from .lp-footer-nav. */
      .lp-footer-top {
        grid-template-columns: 1fr !important;
        gap: 2.25rem 2rem !important;
        justify-items: center !important;
      }
      .lp-footer-brand-section {
        grid-column: auto !important;
        max-width: 560px !important;
        align-items: center !important;
        text-align: center !important;
        margin-inline: auto !important;
      }
      .lp-footer-brand { justify-content: center !important; }
      .lp-footer-tagline {
        text-align: center !important;
        margin-inline: auto !important;
        max-width: 460px !important;
      }
      .lp-footer-status { align-self: center !important; }
      .lp-footer-social { justify-content: center !important; }
      .lp-footer-app-badges {
        flex-direction: row !important;
        max-width: none !important;
        justify-content: center !important;
      }
      .lp-footer-nav {
        text-align: center !important;
        justify-items: center !important;
        margin-inline: auto !important;
      }
      .lp-footer-col { align-items: center !important; text-align: center !important; }
      /* No accordion — every link stays visible on every stacked viewport.
         Summary is just a centred heading; tapping does nothing special. */
      .lp-footer-col > summary.lp-footer-head {
        cursor: default !important;
        pointer-events: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        width: max-content !important;
        margin: 0 auto !important;
        text-align: center !important;
      }
      .lp-footer-col > summary.lp-footer-head::after {
        content: none !important;
        display: none !important;
      }
      .lp-footer-col > .lp-footer-link { display: block !important; }
      .lp-footer-link { text-align: center !important; align-self: center !important; }
    }
    @media (max-width: 760px) {
      .lp-footer-inner { max-width: calc(100vw - 32px) !important; }
      .lp-footer-top {
        grid-template-columns: 1fr !important;
        padding: 2.75rem 0 1.5rem !important;
        gap: 0 !important;
      }
      .lp-footer-brand-section {
        grid-column: 1 !important;
        padding-bottom: 1.5rem !important;
        align-items: center !important;
        text-align: center !important;
        margin-inline: auto !important;
      }
      html[dir="rtl"] .lp-footer-brand-section { align-items: center !important; }
      .lp-footer-brand { justify-content: center !important; }
      .lp-footer-tagline {
        text-align: center !important;
        max-width: 100% !important;
        margin-inline: auto !important;
      }
      .lp-footer-status { align-self: center !important; }
      .lp-footer-social { justify-content: center !important; }
      .lp-footer-app-badges {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 260px !important;
        margin-inline: auto !important;
        align-items: center !important;
      }
      .lp-footer-col {
        display: block !important;
        border-top: 1px solid var(--border) !important;
        border-bottom: 0 !important;
        padding: 0 !important;
      }
      /* Mobile: same "no accordion" treatment as the ≤1180 block. Heading
         stays as a centred non-interactive label, all links stay visible. */
      .lp-footer-col > summary.lp-footer-head {
        cursor: default !important;
        pointer-events: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.4rem !important;
        width: max-content !important;
        margin: 0 auto !important;
        padding: 0 !important;
      }
      .lp-footer-col > summary.lp-footer-head::after {
        content: none !important;
        display: none !important;
      }
      .lp-footer-col > .lp-footer-link {
        display: block !important;
        min-height: 44px !important;
        padding: 0.65rem 0 !important;
      }
      .lp-footer-bottom {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        padding: 1.25rem 0 1.5rem !important;
      }
      .lp-footer-bottom .lp-footer-social,
      .lp-footer-badges { justify-content: center !important; }
      .lp-footer-copy { font-size: 0.65rem !important; }
    }
    @media (max-width: 380px) {
      .lp-footer-inner { max-width: calc(100vw - 24px) !important; }
      .lp-footer-brand-txt { font-size: 1.05rem !important; }
      .lp-footer-badges { gap: 0.25rem !important; }
      .lp-footer-badge { padding-inline: 8px !important; }
    }


    /* Accordion is now active on every stacked viewport (≤1180px), so
       the "kill the accordion" override must only fire on the true
       side-by-side desktop layout (>1180px). */
    @media (min-width: 1181px) {
      .lp-footer-col > summary.lp-footer-head {
        display: inline-flex !important;
        width: max-content !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.4rem !important;
        pointer-events: none !important;
      }
      .lp-footer-col > summary.lp-footer-head::after {
        content: none !important;
        display: none !important;
      }
    }
    body.pwa-install-visible .lp-footer {
      padding-bottom: 92px !important;
    }

    /* ─── Cookie Banner 2026 — AI trust console ─── */
    .ck-banner {
      position: fixed;
      bottom: 18px;
      inset-inline-end: 18px;
      z-index: 999999;
      max-width: 432px;
      width: calc(100% - 36px);
    }
    .ck-card {
      position: relative;
      padding: 1.25rem;
      background:
        radial-gradient(circle at 18% 0%, rgba(0,229,171,0.16), transparent 34%),
        linear-gradient(180deg, rgba(18,25,42,0.98), rgba(12,17,30,0.99));
      border: 1px solid rgba(0,229,171,0.30);
      border-radius: 18px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.10),
        0 22px 54px rgba(0,0,0,0.48),
        0 0 0 1px rgba(96,165,250,0.10);
      isolation: isolate;
      overflow: hidden;
    }
    .ck-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 26px 26px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 70%);
      pointer-events: none;
    }

    /* Eyebrow with icon */
    .ck-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      margin-bottom: 0.7rem;
      font-family: var(--font-mono);
      font-size: 0.68rem; font-weight: 700;
      color: var(--mint);
      letter-spacing: 0.14em; text-transform: uppercase;
    }
    .ck-eyebrow svg {
      width: 15px; height: 15px;
      filter: drop-shadow(0 0 6px rgba(0,229,171,0.55));
    }
    .ck-eyebrow--inline { margin: 0; flex: 1; }

    .ck-desc {
      font-size: 0.84rem;
      line-height: 1.55;
      color: rgba(229,236,246,0.82);
      margin: 0 0 0.75rem;
    }
    .ck-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin: 0 0 0.85rem;
    }
    .ck-trust-row span {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(0,229,171,0.08);
      border: 1px solid rgba(0,229,171,0.18);
      color: rgba(168,255,230,0.90);
      font-family: var(--font-mono);
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .ck-meta {
      font-family: var(--font-mono);
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      margin: 0 0 0.95rem;
    }
    .ck-link {
      color: var(--mint);
      text-decoration: none;
      border-bottom: 1px dotted var(--mint-line);
      transition: color var(--fast), border-color var(--fast);
    }
    .ck-link:hover {
      color: var(--mint-bright);
      border-bottom-color: var(--mint);
    }

    /* Action buttons */
    .ck-actions {
      display: flex; gap: 0.55rem;
      margin-bottom: 0.5rem;
    }
    .ck-actions--triple { flex-wrap: wrap; }
    .ck-btn {
      flex: 1;
      padding: 0.7rem 0.9rem;
      border-radius: 10px;
      font-family: var(--font);
      font-size: 0.8rem; font-weight: 600;
      cursor: pointer;
      transition: all var(--fast) var(--ease);
      border: 1px solid transparent;
      text-align: center;
      white-space: nowrap;
    }
    .ck-btn--primary {
      background: linear-gradient(135deg, var(--mint-bright), var(--mint));
      color: #031712;
      border-color: rgba(255,255,255,0.24);
      font-weight: 700;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.30),
        0 10px 24px rgba(0,229,171,0.24);
    }
    .ck-btn--primary:hover {
      background: linear-gradient(135deg, #7fffe0, var(--mint-bright));
      transform: translate3d(0,-1px,0);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.40),
        0 12px 28px rgba(0,229,171,0.34);
    }
    .ck-btn--ghost {
      background: rgba(255,255,255,0.055);
      color: rgba(229,236,246,0.86);
      border-color: rgba(255,255,255,0.16);
    }
    .ck-btn--ghost:hover {
      background: rgba(255,255,255,0.08);
      color: var(--text);
      border-color: var(--mint-line);
    }
    .ck-btn-link {
      width: 100%;
      padding: 0.45rem 0.5rem 0.2rem;
      background: transparent;
      border: 0;
      cursor: pointer;
      font-family: var(--font-mono);
      font-size: 0.65rem; font-weight: 500;
      color: var(--text-muted);
      letter-spacing: 0.10em; text-transform: uppercase;
      transition: color var(--fast);
    }
    .ck-btn-link:hover { color: var(--mint); }

    /* Settings layer */
    .ck-settings-head {
      display: flex; align-items: center; gap: 0.625rem;
      margin-bottom: 1rem;
    }
    .ck-back {
      width: 28px; height: 28px;
      display: inline-flex; align-items: center; justify-content: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--r-sm);
      cursor: pointer;
      color: var(--text-secondary);
      transition: all var(--fast) var(--ease);
    }
    .ck-back svg { width: 14px; height: 14px; }
    .ck-back:hover {
      background: rgba(0,229,171,0.08);
      border-color: var(--mint-line);
      color: var(--mint);
    }
    html[dir="rtl"] .ck-back svg { transform: scaleX(-1); }

    /* Category rows */
    .ck-row {
      display: flex; align-items: center; gap: 0.875rem;
      padding: 0.75rem 0.875rem;
      background: rgba(0,0,0,0.20);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      margin-bottom: 0.5rem;
      transition: border-color var(--fast);
    }
    .ck-row:hover { border-color: rgba(255,255,255,0.14); }
    .ck-row-text { flex: 1; min-width: 0; }
    .ck-row-title {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.005em;
    }
    .ck-row-desc {
      font-size: 0.7rem;
      color: var(--text-muted);
      line-height: 1.45;
      margin-top: 0.125rem;
    }
    .ck-pill-active {
      flex-shrink: 0;
      padding: 0.25rem 0.55rem;
      background: var(--mint-soft);
      border: 1px solid var(--mint-line);
      border-radius: var(--r-xs);
      font-family: var(--font-mono);
      font-size: 0.6rem; font-weight: 600;
      color: var(--mint);
      letter-spacing: 0.10em; text-transform: uppercase;
      white-space: nowrap;
    }

    /* iOS-style toggle (mint when on) */
    .ck-toggle {
      position: relative;
      width: 38px; height: 22px;
      flex-shrink: 0;
      cursor: pointer;
      isolation: isolate;
    }
    .ck-toggle input {
      position: absolute; opacity: 0;
      width: 100%; height: 100%;
      margin: 0; cursor: pointer; z-index: 2;
    }
    .ck-toggle-track {
      position: absolute; inset: 0;
      border-radius: 11px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.14);
      transition: background var(--fast), border-color var(--fast);
    }
    .ck-toggle-dot {
      position: absolute;
      top: 2px;
      inset-inline-start: 2px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: #94A3B8;
      box-shadow: 0 1px 2px rgba(0,0,0,0.30);
      transition: transform var(--fast) var(--ease-spring), background var(--fast);
    }
    /* When checked (controlled by JS adding .ck-on or via attribute) */
    .ck-toggle input:checked ~ .ck-toggle-track {
      background: linear-gradient(180deg, var(--mint-bright), var(--mint));
      border-color: var(--mint);
      box-shadow: 0 0 12px rgba(0,229,171,0.30);
    }
    .ck-toggle input:checked ~ .ck-toggle-dot {
      transform: translateX(16px);
      background: #FFFFFF;
    }
    html[dir="rtl"] .ck-toggle input:checked ~ .ck-toggle-dot { transform: translateX(-16px); }

    /* Mobile */
    @media (max-width: 640px) {
      /* Bottom-sheet style on phones — full-width, anchored to viewport bottom, never overlaps the
         footer. The previous floating-card layout (bottom-right, calc(100% - 24px)) covered the
         lower ~250px of the screen at z-index 999999, blocking footer link taps. */
      .ck-banner {
        position: fixed;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        inset-inline-end: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        max-height: 50vh;
        overflow-y: auto;
        border-radius: 12px 12px 0 0;
        z-index: 999999;
      }
      .ck-card { padding: 1.125rem 1.125rem 1rem; border-radius: 12px 12px 0 0; }
      .ck-actions { flex-direction: column; }
      .ck-trust-row span { font-size: 0.55rem; }
    }

    /* ─── Scroll effects disabled (requested): show all content immediately ─── */
    .reveal, .lp-reveal { opacity: 1; transform: none; transition: none; }
    .reveal.visible, .lp-reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }

    /* ─── Utilities ─── */
    .w-full { width: 100%; }
    .text-center { text-align: center; }

    /* ─── Reduced motion ─── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
        transition-duration: 0.15s !important; scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
    }

    /* B2C FOOTER AI CONSOLE - final responsive override */
    .lp-footer,
    .lp-footer * {
      box-sizing: border-box !important;
    }

    .lp-footer {
      --footer-panel: rgba(10, 17, 28, 0.82);
      --footer-panel-strong: rgba(13, 23, 36, 0.94);
      --footer-line: rgba(120, 248, 218, 0.18);
      --footer-line-strong: rgba(120, 248, 218, 0.34);
      --footer-cyan: #6bd3ff;
      --footer-violet: #a78bfa;
      position: relative !important;
      overflow: hidden !important;
      margin-top: 0 !important;
      color: var(--text) !important;
      border-top: 1px solid var(--footer-line) !important;
      background:
        linear-gradient(115deg, rgba(0, 229, 171, 0.11), transparent 28%, rgba(111, 86, 255, 0.10) 72%, transparent),
        linear-gradient(180deg, #070b12 0%, #08111b 48%, #05080d 100%) !important;
    }

    .lp-footer::before {
      content: '' !important;
      position: absolute !important;
      inset: 0 auto auto 0 !important;
      width: 100% !important;
      height: 1px !important;
      background: linear-gradient(90deg, transparent, rgba(0, 229, 171, 0.82), rgba(107, 211, 255, 0.72), transparent) !important;
      box-shadow: 0 0 24px rgba(0, 229, 171, 0.26) !important;
      z-index: 2 !important;
    }

    .lp-footer::after {
      content: '' !important;
      position: absolute !important;
      inset: 0 !important;
      width: auto !important;
      height: auto !important;
      transform: none !important;
      background-image:
        linear-gradient(rgba(120, 248, 218, 0.075) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 248, 218, 0.06) 1px, transparent 1px) !important;
      background-size: 42px 42px !important;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%) !important;
      filter: none !important;
      opacity: 0.36 !important;
      pointer-events: none !important;
      z-index: 0 !important;
    }

    .lp-footer-glow {
      display: none !important;
    }

    .lp-footer-inner {
      position: relative !important;
      z-index: 1 !important;
      width: min(100% - clamp(28px, 6vw, 96px), 1180px) !important;
      max-width: 1180px !important;
      margin-inline: auto !important;
      padding: clamp(2.5rem, 5vw, 4rem) 0 0 !important;
    }

    /* Baseline grid matches the real DOM: two direct children — the brand
       section and the .lp-footer-nav wrapper (which owns its own 3-column
       grid for the link columns). The previous 4-column template with a
       :has() switchover assumed four direct children and broke in any
       browser lacking :has() support (Firefox <121 etc). The 2-column
       baseline below is correct everywhere; the .lp-footer-nav rule
       further down handles the inner 3-column link layout. */
    .lp-footer-top {
      width: 100% !important;
      max-width: none !important;
      display: grid !important;
      grid-template-columns: minmax(270px, 0.95fr) minmax(0, 2.05fr) !important;
      gap: clamp(0.9rem, 2vw, 1.25rem) !important;
      align-items: stretch !important;
      justify-items: stretch !important;
      margin: 0 !important;
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
    }

    .lp-footer-nav {
      width: 100% !important;
      min-width: 0 !important;
      justify-self: stretch !important;
      display: grid !important;
      grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      gap: clamp(0.9rem, 2vw, 1.25rem) !important;
      align-items: stretch !important;
    }

    .lp-footer-brand-section,
    .lp-footer-col {
      width: 100% !important;
      justify-self: stretch !important;
      min-width: 0 !important;
      max-width: none !important;
      min-height: 100% !important;
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
        var(--footer-panel) !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 18px 48px rgba(0, 0, 0, 0.24) !important;
      border-radius: 16px !important;
    }

    .lp-footer-brand-section {
      display: flex !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 1rem !important;
      padding: clamp(1.1rem, 2vw, 1.35rem) !important;
    }

    .lp-footer-brand {
      display: flex !important;
      align-items: center !important;
      gap: 0.7rem !important;
      margin: 0 !important;
    }

    .lp-footer-logo {
      box-shadow: 0 0 0 1px rgba(120, 248, 218, 0.16), 0 14px 34px rgba(0, 229, 171, 0.18) !important;
    }

    .lp-footer-brand-txt {
      font-size: 1.28rem !important;
      line-height: 1 !important;
      letter-spacing: 0 !important;
    }

    .lp-footer .logo-ai-tag {
      border-color: rgba(0, 229, 171, 0.35) !important;
      background: rgba(0, 229, 171, 0.12) !important;
      color: var(--mint) !important;
    }

    .lp-footer-tagline {
      margin: 0 !important;
      max-width: 34ch !important;
      color: rgba(226, 232, 240, 0.78) !important;
      font-size: 0.94rem !important;
      line-height: 1.62 !important;
    }

    .lp-footer-status {
      width: fit-content !important;
      margin: 0 !important;
      padding: 0.5rem 0.78rem !important;
      border-color: rgba(0, 229, 171, 0.36) !important;
      background: rgba(0, 229, 171, 0.10) !important;
      color: var(--mint) !important;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    }

    .lp-footer-app-badges {
      width: 100% !important;
      max-width: 250px !important;
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 0.65rem !important;
      margin-top: auto !important;
    }

    .lp-store-btn {
      width: 100% !important;
      min-width: 0 !important;
      min-height: 52px !important;
      padding: 0.68rem 0.85rem !important;
      justify-content: flex-start !important;
      border-radius: 12px !important;
      border-color: rgba(255, 255, 255, 0.12) !important;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)) !important;
    }

    .lp-store-btn-text,
    .lp-store-btn-title,
    .lp-store-btn-small {
      min-width: 0 !important;
    }

    .lp-store-btn-title {
      white-space: normal !important;
      line-height: 1.1 !important;
    }

    .lp-footer-col {
      display: flex !important;
      flex-direction: column !important;
      gap: 0.1rem !important;
      padding: clamp(1rem, 2vw, 1.2rem) !important;
      overflow: hidden !important;
    }

    .lp-footer-col > .lp-footer-head {
      list-style: none !important;
      width: 100% !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 0.55rem !important;
      margin: 0 0 0.75rem !important;
      padding: 0 !important;
      color: var(--mint) !important;
      font-family: var(--font-mono) !important;
      font-size: 0.63rem !important;
      font-weight: 700 !important;
      letter-spacing: 0.14em !important;
      text-transform: uppercase !important;
      cursor: default !important;
      pointer-events: none !important;
      border: 0 !important;
      background: transparent !important;
    }

    .lp-footer-col > summary.lp-footer-head {
      list-style: none !important;
      width: 100% !important;
      margin: 0 0 0.75rem !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 0.55rem !important;
      cursor: default !important;
      pointer-events: none !important;
    }

    .lp-footer-col > summary.lp-footer-head::-webkit-details-marker {
      display: none !important;
    }

    .lp-footer-col > summary.lp-footer-head::marker {
      content: '' !important;
    }

    .lp-footer-col > .lp-footer-head::before {
      content: '' !important;
      display: inline-block !important;
      width: 6px !important;
      height: 6px !important;
      flex: 0 0 auto !important;
      border-radius: 999px !important;
      background: currentColor !important;
      box-shadow: 0 0 14px rgba(0, 229, 171, 0.58) !important;
    }

    .lp-footer-col > .lp-footer-head::after {
      content: '' !important;
      display: block !important;
      flex: 1 1 auto !important;
      height: 1px !important;
      min-width: 20px !important;
      background: linear-gradient(90deg, rgba(0, 229, 171, 0.30), transparent) !important;
    }

    .lp-footer-link {
      width: 100% !important;
      min-width: 0 !important;
      display: flex !important;
      align-items: center !important;
      gap: 0.45rem !important;
      padding: 0.58rem 0.6rem !important;
      border: 1px solid transparent !important;
      border-radius: 10px !important;
      color: rgba(226, 232, 240, 0.78) !important;
      background: transparent !important;
      font-size: 0.9rem !important;
      line-height: 1.35 !important;
      text-decoration: none !important;
      overflow-wrap: anywhere !important;
      word-break: normal !important;
      transition: color var(--fast), border-color var(--fast), background var(--fast) !important;
      transform: none !important;
    }

    .lp-footer-link:hover,
    html[dir="rtl"] .lp-footer-link:hover {
      color: #ffffff !important;
      border-color: rgba(0, 229, 171, 0.18) !important;
      background: rgba(0, 229, 171, 0.075) !important;
      transform: none !important;
    }

    .lp-footer-link-icon svg {
      flex: 0 0 auto !important;
    }

    /* .lp-footer-bottom layout: the canonical rule lives earlier in this
       file (centred flex with wrap, per founder request "اعملهن بالمنتصف
       تماما"). The old 3-column grid override that previously sat here
       was removed because it contradicted the centred-flex intent and
       only added dead, also-!important rules. Only the cosmetic top
       border + spacing are kept here, scoped so they don't fight the
       layout. */
    .lp-footer-bottom {
      max-width: none !important;
      margin: clamp(1rem, 2.5vw, 1.4rem) 0 0 !important;
      padding: 1rem 0 1.25rem !important;
      border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
      background: transparent !important;
    }

    .lp-footer-social {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 0.5rem !important;
    }

    .lp-footer-social-btn {
      width: 40px !important;
      height: 40px !important;
      border-radius: 12px !important;
      background: rgba(255, 255, 255, 0.055) !important;
      border-color: rgba(255, 255, 255, 0.11) !important;
      color: rgba(226, 232, 240, 0.82) !important;
    }

    .lp-footer-copy {
      justify-self: center !important;
      max-width: 100% !important;
      min-width: 0 !important;
      color: rgba(148, 163, 184, 0.9) !important;
      font-size: 0.7rem !important;
      line-height: 1.6 !important;
      letter-spacing: 0.06em !important;
      overflow-wrap: anywhere !important;
    }

    .lp-footer-badges {
      justify-self: end !important;
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: flex-end !important;
      gap: 0.4rem !important;
    }

    .lp-footer-badge {
      border-color: rgba(255, 255, 255, 0.11) !important;
      background: rgba(255, 255, 255, 0.055) !important;
      color: rgba(226, 232, 240, 0.82) !important;
      border-radius: 999px !important;
      white-space: nowrap !important;
    }

    @media (max-width: 1120px) {
      .lp-footer-inner {
        width: min(100% - clamp(24px, 5vw, 64px), 900px) !important;
      }

      .lp-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        justify-items: stretch !important;
      }

      .lp-footer-top:has(.lp-footer-nav) {
        grid-template-columns: 1fr !important;
      }

      .lp-footer-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
      }

      .lp-footer-brand-section {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        column-gap: 1.2rem !important;
      }

      .lp-footer-tagline {
        max-width: 52ch !important;
      }

      .lp-footer-app-badges {
        grid-row: 1 / span 3 !important;
        grid-column: 2 !important;
        width: 220px !important;
        margin-top: 0 !important;
      }

      .lp-footer-bottom {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        gap: 0.8rem !important;
      }

      .lp-footer-bottom:not(:has(.lp-footer-social)) {
        grid-template-columns: 1fr !important;
      }

      .lp-footer-bottom:not(:has(.lp-footer-social)) .lp-footer-copy {
        justify-self: center !important;
        text-align: center !important;
      }

      .lp-footer-social,
      .lp-footer-badges {
        justify-self: center !important;
        justify-content: center !important;
      }
    }

    @media (max-width: 900px) {
      .lp-footer-inner {
        width: min(100% - 24px, 760px) !important;
      }

      .lp-footer-top,
      .lp-footer-top:has(.lp-footer-nav) {
        grid-template-columns: 1fr !important;
        justify-items: stretch !important;
        gap: 0.85rem !important;
      }

      .lp-footer-nav {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
      }

      .lp-footer-brand-section {
        display: flex !important;
        align-items: flex-start !important;
        text-align: start !important;
        gap: 1rem !important;
      }

      .lp-footer-brand,
      .lp-footer-social,
      .lp-footer-badges {
        justify-content: flex-start !important;
      }

      .lp-footer-tagline {
        max-width: none !important;
        text-align: start !important;
        margin-inline: 0 !important;
      }

      .lp-footer-status {
        align-self: flex-start !important;
      }

      .lp-footer-app-badges {
        grid-row: auto !important;
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        margin-top: 0 !important;
      }

      .lp-footer-col {
        width: 100% !important;
        min-height: auto !important;
        align-items: stretch !important;
        text-align: start !important;
      }

      .lp-footer-col > .lp-footer-head {
        justify-content: flex-start !important;
      }

      .lp-footer-col > summary.lp-footer-head {
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 0.5rem !important;
        justify-content: flex-start !important;
        text-align: start !important;
      }

      .lp-footer-link {
        justify-content: flex-start !important;
        text-align: start !important;
      }

      .lp-footer-bottom {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        gap: 0.85rem !important;
        text-align: center !important;
      }

      .lp-footer-social,
      .lp-footer-badges,
      .lp-footer-copy {
        justify-self: center !important;
      }

      .lp-footer-copy {
        width: 100% !important;
        text-align: center !important;
      }

      .lp-footer-badges {
        justify-content: center !important;
      }
    }

    @media (max-width: 720px) {
      .lp-footer-inner {
        width: min(100% - 24px, 520px) !important;
        padding-top: 2rem !important;
      }

      .lp-footer-top {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
      }

      .lp-footer-nav {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
      }

      .lp-footer-brand-section {
        grid-column: auto !important;
        display: flex !important;
        align-items: stretch !important;
        text-align: start !important;
        width: 100% !important;
      }

      .lp-footer-brand {
        justify-content: flex-start !important;
      }

      .lp-footer-tagline {
        max-width: none !important;
      }

      .lp-footer-status {
        align-self: flex-start !important;
      }

      .lp-footer-app-badges {
        grid-row: auto !important;
        grid-column: auto !important;
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr !important;
      }

      .lp-footer-col {
        width: 100% !important;
        min-height: auto !important;
        padding: 0.95rem !important;
        border-radius: 14px !important;
      }

      .lp-footer-col > .lp-footer-head {
        margin-bottom: 0.5rem !important;
        width: 100% !important;
      }

      .lp-footer-col > summary.lp-footer-head {
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 0.5rem !important;
        justify-content: flex-start !important;
        text-align: start !important;
      }

      .lp-footer-link {
        min-height: 44px !important;
        padding: 0.58rem 0.5rem !important;
      }

      .lp-footer-bottom {
        margin-top: 0.85rem !important;
        padding-bottom: 1rem !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
      }

      .lp-footer-badges {
        width: 100% !important;
        max-width: 100% !important;
        justify-content: center !important;
      }
    }

    @media (max-width: 390px) {
      .lp-footer-inner {
        width: min(100% - 18px, 360px) !important;
      }

      .lp-footer-brand-section,
      .lp-footer-col {
        border-radius: 12px !important;
      }

      .lp-footer-brand-txt {
        font-size: 1.12rem !important;
      }

      .lp-store-btn {
        padding-inline: 0.72rem !important;
      }

      .lp-footer-badge {
        padding-inline: 8px !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .lp-footer,
      .lp-footer *,
      .lp-footer::before,
      .lp-footer::after {
        animation: none !important;
        transition: none !important;
      }
    }

    /* B2C FOOTER GRID5 - stable card layout */
    .lp-footer .lp-footer-inner {
      width: min(100% - clamp(24px, 5vw, 88px), var(--page-max)) !important;
      max-width: var(--page-max) !important;
    }

    .lp-footer .lp-footer-top {
      display: grid !important;
      grid-template-columns:
        minmax(260px, 1.15fr)
        minmax(168px, 0.72fr)
        minmax(215px, 0.9fr)
        minmax(168px, 0.72fr) !important;
      gap: clamp(0.85rem, 1.4vw, 1.15rem) !important;
      align-items: stretch !important;
      justify-items: stretch !important;
    }

    .lp-footer .lp-footer-brand-section,
    .lp-footer .lp-footer-col {
      grid-column: auto !important;
      width: 100% !important;
      max-width: none !important;
      min-height: auto !important;
      align-items: stretch !important;
      text-align: start !important;
    }

    .lp-footer .lp-footer-brand {
      justify-content: flex-start !important;
    }

    .lp-footer .lp-footer-tagline {
      max-width: 34ch !important;
      margin-inline: 0 !important;
      text-align: start !important;
    }

    .lp-footer .lp-footer-status {
      align-self: flex-start !important;
    }

    .lp-footer .lp-footer-app-badges {
      width: 100% !important;
      max-width: 260px !important;
      grid-row: auto !important;
      grid-column: auto !important;
      grid-template-columns: 1fr !important;
    }

    .lp-footer .lp-footer-col > .lp-footer-head,
    .lp-footer .lp-footer-col > summary.lp-footer-head {
      width: 100% !important;
      max-width: none !important;
      margin: 0 0 0.65rem !important;
      justify-content: flex-start !important;
      text-align: start !important;
    }

    .lp-footer .lp-footer-link {
      justify-content: flex-start !important;
      text-align: start !important;
    }

    @media (max-width: 1180px) {
      .lp-footer .lp-footer-inner {
        width: min(100% - 32px, 900px) !important;
      }

      .lp-footer .lp-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }

      .lp-footer .lp-footer-brand-section {
        grid-column: auto !important;
        display: flex !important;
      }

      .lp-footer .lp-footer-app-badges {
        max-width: none !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      }
    }

    @media (max-width: 720px) {
      .lp-footer .lp-footer-inner {
        width: min(100% - 24px, 520px) !important;
      }

      .lp-footer .lp-footer-top {
        grid-template-columns: 1fr !important;
      }

      .lp-footer .lp-footer-app-badges {
        grid-template-columns: 1fr !important;
      }
    }

    /* Performance mode — requested 2026-05-15.
       Disable decorative motion site-wide so the landing page paints faster
       and stays calm on every viewport. Functional show/hide still works. */
    html:focus-within {
      scroll-behavior: auto !important;
    }
    *, *::before, *::after {
      animation: none !important;
      transition-duration: 0s !important;
      transition-delay: 0s !important;
    }
    .hero-title .hero-word,
    .hero-eyebrow,
    .hero-gobd-chip,
    .hero-aiact-chip,
    .hero-einvoice-chip,
    .hero-auth,
    .hero-visual,
    .reveal,
    .lp-reveal {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
    }
