/* Override layout body font for landing route only */
body:has(#landing-root) {
  font-family: "Inter", system-ui, -apple-system, sans-serif !important;
  overflow-x: clip;
}

#landing-root {
  overflow-x: clip;
  max-width: 100%;
}

      @font-face {
        font-family: "Aeonik Soft";
        src: url("font/Aeonik Soft TRIAL/AeonikSoftTRIAL-Bold.otf") format("opentype");
        font-weight: 700;
        font-style: normal;
        font-display: swap;
      }

      @font-face {
        font-family: "Aeonik Soft";
        src: url("font/Aeonik Soft TRIAL/AeonikSoftTRIAL-Black.otf") format("opentype");
        font-weight: 900;
        font-style: normal;
        font-display: swap;
      }

      :root {
        --brand-primary: #ff3366;
        --brand-glow: rgba(255, 51, 102, 0.45);
        --brand-secondary: #ff6690;
        --brand-secondary-glow: rgba(255, 102, 144, 0.45);
        --brand-secondary-muted: rgba(255, 102, 144, 0.25);
        --bg: #000000;
        --surface: #111111;
        --surface-hover: #161616;
        --text: #ffffff;
        --sub: #dddddd;
        --muted: #dddddd;
        --faint: rgba(255, 255, 255, 0.35);
        --border: rgba(255, 255, 255, 0.1);
        --nav-bg: rgba(17, 17, 17, 0.55);
        --radius-lg: 20px;
        --radius-pill: 20px;
        --font: "Inter", system-ui, -apple-system, sans-serif;
        --font-aeonik: "Aeonik Soft", var(--font);
        --section-pad: clamp(4rem, 12vw, 7rem);
        --content: min(1120px, calc(100% - 2.5rem));
        --hero-label-size: calc(0.68rem + 4px);
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        min-height: 100vh;
        background: var(--bg);
        color: var(--text);
        font-family: var(--font);
        font-size: 15px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      a:hover {
        color: var(--brand-secondary);
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-family: inherit;
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 0.55rem 1rem;
        border-radius: var(--radius-pill);
        cursor: pointer;
        border: 1px solid transparent;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
      }

      .btn:focus-visible {
        outline: 2px solid var(--brand-secondary);
        outline-offset: 2px;
      }

      .btn-ghost {
        background: transparent;
        border-color: var(--border);
        color: var(--text);
      }

      .btn-ghost:hover {
        border-color: rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.04);
      }

      .btn-solid {
        background: var(--text);
        color: var(--bg);
        border-color: var(--text);
      }

      .btn-solid:hover {
        background: #e8e8e8;
        border-color: #e8e8e8;
      }

      .btn-accent-outline {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.35);
        color: var(--text);
      }

      .btn-accent-outline:hover {
        border-color: var(--brand-secondary);
        color: var(--brand-secondary);
        box-shadow: 0 0 24px var(--brand-secondary-glow);
      }

      main {
        padding-top: 0;
      }

      .section {
        padding: var(--section-pad) 0;
      }

      .wrap {
        width: var(--content);
        max-width: 100%;
        margin: 0 auto;
      }

      .label {
        font-family: var(--font-aeonik);
        font-size: var(--hero-label-size);
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: lowercase;
        color: var(--faint);
        margin: 0 0 1.25rem;
      }

      .section-head {
        outline: none;
        border-radius: 4px;
      }

      .section-head .label {
        transition: color 0.28s ease;
      }

      .section-head h1,
      .section-head h2 {
        transition: color 0.28s ease, text-shadow 0.28s ease;
      }

      .section-head.is-in-view .label,
      .section-head:hover .label {
        color: var(--brand-secondary);
      }

      .section-head.is-in-view h1,
      .section-head.is-in-view h2,
      .section-head:hover h1,
      .section-head:hover h2 {
        color: #ffffff;
        text-shadow: none;
      }

      .hero .section-head.is-in-view h1,
      .hero .section-head:hover h1,
      .waitlist-section .section-head.is-in-view h2,
      .waitlist-section .section-head:hover h2 {
        text-shadow:
          0 0 18px rgba(255, 255, 255, 0.5),
          0 0 36px rgba(255, 255, 255, 0.28),
          0 0 56px rgba(255, 255, 255, 0.12);
      }

      .hero {
        position: relative;
        text-align: center;
        /* Flush to viewport top so hero sits under the frosty nav */
        padding-top: calc(6.5rem + var(--section-pad));
        padding-bottom: 0;
        overflow: hidden;
      }

      /* Soft fade into next section (kiro-style) */
      .hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: min(42vh, 300px);
        pointer-events: none;
        z-index: 1;
        background: linear-gradient(
          to bottom,
          rgba(0, 0, 0, 0) 0%,
          rgba(0, 0, 0, 0.35) 42%,
          rgba(0, 0, 0, 0.82) 78%,
          #000000 100%
        );
      }

      .hero .wrap {
        position: relative;
        z-index: 2;
      }

      .hero h1 {
        font-family: var(--font-aeonik);
        font-size: clamp(2.1rem, 5.5vw, 3.35rem);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.02em;
        margin: 0 auto 1.25rem;
        max-width: 18ch;
      }

      .hero .section-head .label {
        text-transform: none;
        letter-spacing: 0.06em;
      }

      .hero-lead {
        margin: 0 auto 2rem;
        max-width: 36rem;
        color: var(--muted);
        font-size: clamp(1rem, 2vw, 1.125rem);
        line-height: 1.65;
      }

      .pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
      }

      .pill {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
        border-radius: var(--radius-pill);
        border: 1px solid rgba(255, 255, 255, 0.34);
        color: var(--muted);
      }

      .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
      }

      .hero-ctas .btn {
        font-family: var(--font-aeonik);
        font-size: calc(0.72rem + 4px);
        font-weight: 700;
        padding: 0.65rem 1.35rem;
        text-transform: none;
        letter-spacing: 0.02em;
      }

      .hero-ctas .btn-hero-light {
        background: #ffffff;
        color: var(--brand-primary);
        border-color: #ffffff;
      }

      .hero-ctas .btn-hero-light:hover {
        background: #f2f2f2;
        border-color: #f2f2f2;
        color: var(--brand-primary);
        box-shadow: none;
      }

      .hero-ctas .btn-hero-light:focus-visible {
        outline-color: var(--brand-primary);
      }

      .hero-ctas .btn-hero-accent {
        background: var(--brand-primary);
        color: #ffffff;
        border-color: var(--brand-primary);
      }

      .hero-ctas .btn-hero-accent:hover {
        background: #ff4d7a;
        border-color: #ff4d7a;
        color: #ffffff;
        box-shadow: 0 0 24px rgba(255, 51, 102, 0.35);
      }

      .hero-ctas .btn-hero-accent:focus-visible {
        outline-color: var(--brand-primary);
      }

      .hero-agent-panel {
        margin: clamp(2.2rem, 5vw, 3.5rem) auto 0;
        max-width: 920px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
      }

      .hero-agent-kicker {
        width: min(100%, 740px);
        margin: 0;
        font-family: var(--font-aeonik);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        color: var(--brand-primary);
      }

      .hero-agent-title {
        width: min(100%, 740px);
        margin: 0;
        font-family: var(--font-aeonik);
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        line-height: 1.05;
        letter-spacing: -0.02em;
        text-align: left;
      }

      .hero-agent-steps {
        width: min(100%, 740px);
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }

      .hero-agent-step {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 0.85rem 0;
      }

      .hero-agent-step + .hero-agent-step {
        border-top: 1px solid var(--border);
      }

      .hero-agent-step__num {
        display: inline-flex;
        width: 1.8rem;
        height: 1.8rem;
        align-items: center;
        justify-content: center;
        border-radius: 0.45rem;
        background: #ffffff;
        color: #000000;
        font-family: var(--font-aeonik);
        font-size: 0.85rem;
        font-weight: 700;
      }

      .hero-agent-step p {
        margin: 0;
        color: var(--muted);
        font-size: clamp(0.75rem, calc(1.8vw - 4px), calc(1.28rem - 4px));
        line-height: 1.45;
      }

      .hero-agent-step code {
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        color: var(--text);
      }

      .agent-build-marquee {
        width: 100%;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      }

      .agent-build-marquee__row {
        overflow: hidden;
        padding: 0.62rem 0;
      }

      .agent-build-marquee__row--strong,
      .agent-build-marquee__row--soft {
        background: transparent;
      }

      /**
       * Seamless infinite marquee: two identical `.agent-build-marquee__segment`
       * siblings. Each segment is one flex row (gap between phrases only — no
       * stray gap at the loop boundary). Animation is exactly -50% of the track
       * width so the first segment swaps invisibly for the second.
       */
      .agent-build-marquee__track {
        display: flex;
        width: max-content;
        flex-wrap: nowrap;
        gap: 0;
        animation: agent-build-marquee 68s linear infinite;
      }

      .agent-build-marquee__segment {
        display: flex;
        flex-wrap: nowrap;
        flex-shrink: 0;
        align-items: center;
        gap: 1.4rem;
        padding-inline-end: 1.4rem;
      }

      .agent-build-marquee__row--soft .agent-build-marquee__track {
        animation-direction: reverse;
        animation-duration: 84s;
      }

      .agent-build-marquee__segment span {
        white-space: nowrap;
        font-family: var(--font-aeonik);
        font-size: 1.125rem;
        font-weight: 700;
        color: var(--muted);
      }

      .agent-build-marquee__segment code {
        color: var(--text);
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      }

      .agent-build-marquee__segment .is-accent,
      .agent-build-marquee__segment .is-accent code {
        color: var(--brand-primary);
      }

      .hero-agent-row {
        width: min(100%, 740px);
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
        row-gap: 1.5rem;
      }

      .hero-agent-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
      }

      .hero-agent-col__label {
        font-family: var(--font-aeonik);
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
        margin: 0;
      }

      .btn-hero-agent {
        background: #000000;
        color: #ffffff;
        border: 1px solid #000000;
        border-radius: 12px;
        padding: 0.85rem 1.4rem;
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        cursor: pointer;
        font-family: var(--font-aeonik);
        font-size: calc(0.72rem + 4px);
        font-weight: 700;
        letter-spacing: 0.01em;
        transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
        min-width: 320px;
      }

      .btn-hero-agent:hover {
        background: #1a1a1a;
        color: #ffffff;
        border-color: #1a1a1a;
        transform: translateY(-1px);
      }

      .btn-hero-agent:focus-visible {
        outline: 2px solid var(--brand-primary);
        outline-offset: 2px;
      }

      .btn-hero-agent.is-copied {
        background: #1f9d55;
        border-color: #1f9d55;
        color: #ffffff;
      }

      .btn-hero-agent svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
      }

      .btn-hero-agent__label {
        flex: 1 1 auto;
        text-align: left;
      }

      .agent-icon-strip {
        display: inline-flex;
        align-items: center;
        gap: 1.5rem;
        height: 48px; /* match button height for visual baseline */
      }

      .agent-icon-strip img {
        height: 28px;
        width: auto;
        opacity: 0.9;
        filter: brightness(0); /* force solid black on light hero */
        transition: opacity 0.15s ease, transform 0.15s ease;
      }

      .agent-icon-strip img:hover {
        opacity: 1;
        transform: translateY(-1px);
      }

      /* Dark mode: invert icons to white so they read on dark bg */
      html:not(.landing-theme-light) .agent-icon-strip img {
        filter: brightness(0) invert(1);
        opacity: 0.85;
      }

      html:not(.landing-theme-light) .btn-hero-agent {
        background: #ffffff;
        color: #000000;
        border-color: #ffffff;
      }

      html:not(.landing-theme-light) .btn-hero-agent:hover {
        background: #f2f2f2;
        border-color: #f2f2f2;
        color: #000000;
      }

      html.landing-theme-light .hero-agent-step__num {
        background: #000000;
        color: #ffffff;
      }

      @media (max-width: 640px) {
        .hero-agent-row {
          gap: 1.5rem;
        }
        .hero-agent-col {
          align-items: center;
          width: 100%;
        }
        .btn-hero-agent {
          width: 100%;
          min-width: 0;
          justify-content: center;
        }
        .agent-icon-strip {
          gap: 1rem;
        }
        .agent-icon-strip img {
          height: 24px;
        }
      }

      @keyframes agent-build-marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-50%);
        }
      }

      .video-teaser {
        padding-top: clamp(3.45rem, 8.5vw, 6.25rem);
        padding-bottom: clamp(3.45rem, 8.5vw, 6.25rem);
      }

      .video-teaser .wrap {
        max-width: min(400px, calc(100% - 2.5rem), calc((85vh - 10rem) * 9 / 16));
        margin-inline: auto;
      }

      .video-card {
        position: relative;
        display: block;
        width: 100%;
        aspect-ratio: 9 / 16;
        padding: 0;
        overflow: hidden;
        cursor: pointer;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        background: var(--surface);
        box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
        transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
      }

      .video-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 102, 144, 0.42);
        box-shadow: 0 28px 110px rgba(255, 51, 102, 0.18);
      }

      .video-card:focus-visible {
        outline: 2px solid var(--brand-primary);
        outline-offset: 3px;
      }

      .video-card img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .video-play {
        position: absolute;
        left: 50%;
        top: 50%;
        display: inline-flex;
        width: 3.25rem;
        height: 3.25rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(255, 51, 102, 0.92);
        color: #ffffff;
        transform: translate(-50%, -50%);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
      }

      .video-play svg {
        width: 1rem;
        height: 1rem;
        margin-left: 0.12rem;
      }

      .video-modal {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
        background: rgba(0, 0, 0, 0.78);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
      }

      .video-modal[hidden] {
        display: none;
      }

      .video-modal__panel {
        position: relative;
        /* Shorts are 9:16 — cap width so height never exceeds ~85vh on short phones */
        width: min(92vw, 420px, calc((85vh - 3rem) * 9 / 16));
        max-width: 100%;
        isolation: isolate;
      }

      .video-modal__frame {
        position: relative;
        z-index: 0;
        aspect-ratio: 9 / 16;
        width: 100%;
        overflow: hidden;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
        background: #000000;
        box-shadow: 0 28px 120px rgba(0, 0, 0, 0.6);
        /* Kill stray gap under replaced content (iframe) */
        line-height: 0;
      }

      /* Mount fills frame so the iframe can stretch to Shorts aspect ratio */
      .video-modal__frame [data-video-frame-mount] {
        position: absolute;
        inset: 0;
        line-height: 0;
      }

      .video-modal__frame iframe {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 100%;
        border: 0;
      }

      .video-modal button.video-modal__close {
        position: absolute;
        z-index: 2;
        top: calc(0.65rem - 25px);
        right: calc(0.65rem - 25px);
        display: inline-flex;
        width: calc(2.35rem - 4px);
        height: calc(2.35rem - 4px);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        border-radius: 999px;
        background: #ffffff;
        color: #111111;
        font-size: 1.2rem;
        line-height: 1;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35) !important;
        outline: none;
        margin: 0;
        padding: 0;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
        --tw-ring-shadow: 0 0 #0000;
        --tw-ring-offset-shadow: 0 0 #0000;
      }

      .video-modal button.video-modal__close:focus-visible {
        outline: 2px solid rgba(0, 0, 0, 0.55);
        outline-offset: 2px;
        --tw-ring-shadow: 0 0 #0000 !important;
        --tw-ring-offset-shadow: 0 0 #0000 !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35) !important;
      }

      body.is-video-modal-open {
        overflow: hidden;
      }

      html.landing-theme-light .video-card {
        background: #ffffff;
        box-shadow: 0 24px 90px rgba(24, 24, 27, 0.12);
      }

      h2 {
        font-family: var(--font-aeonik);
        font-size: clamp(1.5rem, 3vw, 1.75rem);
        font-weight: 700;
        letter-spacing: -0.02em;
        margin: 0 0 1rem;
      }

      .prose-muted {
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.75;
        margin: 0 0 2rem;
        max-width: 52rem;
      }

      .stat-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
      }

      .stat-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 1.35rem 1.25rem;
        transition: border-color 0.2s ease, background 0.2s ease;
      }

      .stat-card:hover {
        background: var(--surface-hover);
        border-color: var(--brand-secondary-muted);
      }

      .stat-card strong {
        display: block;
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.35rem;
      }

      .stat-card span {
        font-size: 0.8125rem;
        color: var(--muted);
        line-height: 1.5;
      }

      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-top: 2rem;
      }

      .feature-grid h3 {
        font-size: 0.8125rem;
        font-weight: 600;
        margin: 0 0 0.4rem;
      }

      .feature-grid p {
        font-size: 0.8125rem;
        color: var(--muted);
        margin: 0 0 1.25rem;
        line-height: 1.65;
      }

      .feature-grid p:last-child {
        margin-bottom: 0;
      }

      .how-title-block {
        text-align: center;
        margin-bottom: 3rem;
      }

      .how-title-block .sub {
        font-size: 0.75rem;
        color: #dddddd;
        margin: 0.5rem 0 0;
      }

      .how-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
      }

      .how-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 1.75rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .how-card:hover {
        border-color: rgba(255, 102, 144, 0.35);
        box-shadow: 0 0 40px rgba(255, 102, 144, 0.1);
      }

      .how-card-visual {
        min-height: 120px;
        border-radius: 14px;
        background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }

      .how-card-visual svg {
        width: 48px;
        height: 48px;
        color: var(--brand-secondary);
        filter: drop-shadow(0 0 12px var(--brand-secondary-glow));
      }

      .how-card h3 {
        font-size: 1.05rem;
        font-weight: 600;
        margin: 0 0 0.5rem;
      }

      .how-card p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.65;
      }

      .steps {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 0.5rem;
      }

      .step {
        display: flex;
        gap: 1.25rem;
        align-items: flex-start;
        padding-bottom: 2rem;
      }

      .step:last-child {
        padding-bottom: 0;
      }

      .step-num {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        color: var(--muted);
        background: var(--bg);
        flex-shrink: 0;
      }

      .step h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0.15rem 0 0.35rem;
      }

      .step p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.65;
      }

      .compare {
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
      }

      .compare-head,
      .compare-row {
        display: grid;
        grid-template-columns: 1fr 72px 72px 72px;
        gap: 0.5rem;
        align-items: center;
        padding: 0.65rem 1rem;
        font-size: 0.8125rem;
      }

      .compare-head {
        background: var(--surface);
        color: var(--faint);
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 0.65rem;
      }

      .compare-head span:nth-child(4) {
        color: var(--brand-secondary);
      }

      .compare-row {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--muted);
      }

      .compare-row span:first-child {
        color: var(--sub);
      }

      .compare-row span:not(:first-child) {
        display: flex;
        justify-content: center;
      }

      .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 auto;
        display: block;
      }

      .dot-yes {
        background: var(--brand-secondary);
        box-shadow: 0 0 10px var(--brand-secondary-glow);
      }

      .dot-no {
        background: rgba(255, 255, 255, 0.12);
      }

      .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 0.75rem;
      }

      .tech-card {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 1.25rem;
      }

      .tech-card .tag {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--faint);
        margin: 0 0 0.5rem;
      }

      .tech-card h3 {
        font-size: 0.95rem;
        margin: 0 0 0.35rem;
      }

      .tech-card p {
        margin: 0;
        font-size: 0.8125rem;
        color: var(--muted);
        line-height: 1.55;
      }

      .audience-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }

      .audience-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        align-items: start;
      }

      .audience-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--surface);
        border: 1px solid var(--border);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-secondary);
      }

      .audience-icon svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        filter: drop-shadow(0 0 5px rgba(255, 102, 144, 0.45));
      }

      .audience-item h3 {
        font-size: 0.95rem;
        margin: 0 0 0.35rem;
      }

      .audience-item p {
        margin: 0;
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.65;
      }

      .waitlist-section {
        text-align: center;
      }

      .waitlist-section h2 {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
      }

      .waitlist-form {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
        justify-content: center;
        align-items: stretch;
        max-width: 480px;
        margin: 2rem auto 0;
      }

      .waitlist-form input[type="email"] {
        flex: 1 1 220px;
        min-height: 48px;
        padding: 0 1.1rem;
        border-radius: var(--radius-pill);
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text);
        font-family: inherit;
        font-size: calc(0.9rem - 4px);
      }

      .waitlist-form input::placeholder {
        color: var(--faint);
      }

      .waitlist-form input:focus {
        outline: none;
        border-color: var(--brand-secondary);
        box-shadow: 0 0 0 3px rgba(255, 102, 144, 0.22);
      }

      .waitlist-form .btn-solid {
        flex: 0 0 auto;
        min-height: 48px;
        padding: 0.65rem 1.35rem;
        font-family: var(--font-aeonik);
        font-size: calc(0.72rem + 4px);
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: none;
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        color: #ffffff;
      }

      .waitlist-form .btn-solid:hover {
        background: #ff4d7a;
        border-color: #ff4d7a;
        color: #ffffff;
        box-shadow: 0 0 24px rgba(255, 51, 102, 0.35);
      }

      .waitlist-form .btn-solid:focus-visible {
        outline-color: var(--brand-primary);
      }

      .form-status {
        margin-top: 1rem;
        font-size: 0.875rem;
        min-height: 1.5em;
      }

      .form-status.ok {
        color: var(--brand-primary);
      }

      .form-status.err {
        color: #ff6b6b;
      }

      .waitlist-block {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
      }

      .waitlist-block .wl-counter {
        justify-content: center;
        margin-top: 1.75rem;
      }

      .wl-counter {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        margin: 1.75rem 0 0.35rem;
        text-align: left;
      }

      .wl-counter-bulb {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0;
        background: var(--brand-secondary);
        box-shadow: 0 0 10px var(--brand-secondary-glow);
        animation: wl-bulb-pulse 1.6s ease-in-out infinite;
      }

      @keyframes wl-bulb-pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
          box-shadow: 0 0 6px var(--brand-secondary-glow);
        }
        50% {
          opacity: 0.88;
          transform: scale(1.35);
          box-shadow: 0 0 16px rgba(255, 102, 144, 0.65);
        }
      }

      .wl-counter-line {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 0.2em 0.35em;
        margin: 0;
        font-family: var(--font-aeonik);
        font-size: calc(var(--hero-label-size) - 4px);
        font-weight: 700;
        letter-spacing: 0.04em;
        color: var(--text);
        line-height: 1.3;
      }

      .wl-counter-plus {
        display: inline-block;
        color: var(--brand-secondary);
        margin-right: 0.06em;
      }

      .waitlist-section.is-wl-focused .wl-counter-plus {
        animation: wl-plus-pop 0.75s ease;
      }

      @keyframes wl-plus-pop {
        0% {
          transform: scale(1);
        }
        35% {
          transform: scale(1.45);
        }
        100% {
          transform: scale(1);
        }
      }

      .wl-counter-num {
        font-variant-numeric: tabular-nums;
        margin-right: 0.15em;
      }

      .toast-host {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 200;
        width: min(380px, calc(100% - 2rem));
        padding: 0 0 1.25rem;
        display: flex;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0.5rem;
        pointer-events: none;
      }

      .site-toast {
        pointer-events: auto;
        margin: 0 auto;
        width: 100%;
        padding: 0.8rem 1.1rem;
        border-radius: 14px;
        font-size: 0.875rem;
        line-height: 1.45;
        text-align: center;
        border: 1px solid var(--border);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
        animation: site-toast-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
      }

      .site-toast--ok {
        background: rgba(26, 26, 26, 0.96);
        color: var(--sub);
        border-color: rgba(255, 102, 144, 0.35);
      }

      .site-toast--err {
        background: rgba(32, 18, 18, 0.96);
        color: #ffc9c9;
        border-color: rgba(255, 80, 80, 0.4);
      }

      @keyframes site-toast-in {
        from {
          opacity: 0;
          transform: translateY(calc(100% + 20px));
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .site-toast.is-out {
        animation: site-toast-out 0.3s ease forwards;
      }

      @keyframes site-toast-out {
        to {
          opacity: 0;
          transform: translateY(12px);
        }
      }

      .site-footer {
        padding: 3rem 0 4rem;
        text-align: center;
        color: #bbbbbb;
        font-size: 0.75rem;
      }

      .site-footer__copy {
        margin: 0;
      }

      .site-footer__origin {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0.75rem 0 0;
        color: #a1a1aa;
      }

      .site-footer a {
        color: #dddddd;
      }

      html.landing-theme-light .site-footer {
        color: #52525b;
        font-size: 0.8125rem;
      }

      html.landing-theme-light .site-footer a {
        color: #18181b;
        font-weight: 600;
        text-decoration: underline;
        text-decoration-color: rgba(255, 51, 102, 0.35);
        text-underline-offset: 3px;
      }

      html.landing-theme-light .site-footer a:hover {
        color: var(--brand-primary);
        text-decoration-color: var(--brand-primary);
      }

      html.landing-theme-light .site-footer__origin {
        color: #71717a;
      }

      /* Light palette (static landing only) — nav removed; unified SiteHeader */
      html.landing-theme-light {
        --bg: #ececef;
        --surface: #ffffff;
        --surface-hover: #e4e4e9;
        --text: #0a0a0a;
        --sub: #3f3f46;
        --muted: #52525b;
        --faint: rgba(10, 10, 12, 0.45);
        --border: rgba(0, 0, 0, 0.12);
      }

      /* Light theme: headings stay dark (base rules force white when in-view) */
      html.landing-theme-light .section-head.is-in-view h1,
      html.landing-theme-light .section-head.is-in-view h2,
      html.landing-theme-light .section-head:hover h1,
      html.landing-theme-light .section-head:hover h2 {
        color: var(--text);
        text-shadow: none;
      }

      /* Hero bottom fade into light page bg (not black) */
      html.landing-theme-light .hero::after {
        background: linear-gradient(
          to bottom,
          rgba(236, 236, 239, 0) 0%,
          rgba(236, 236, 239, 0.35) 42%,
          rgba(236, 236, 239, 0.88) 78%,
          #ececef 100%
        );
      }

      /* Benchmark table: row dividers + “off” dots (base styles use light-on-dark tints) */
      html.landing-theme-light .compare-row {
        border-top-color: var(--border);
      }

      html.landing-theme-light .dot-no {
        background: #a1a1aa;
        box-shadow: none;
      }
      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* Blog prose + cards */
      .prose-invert h1 {
        font-family: var(--font-aeonik);
        font-size: 2.5rem;
        line-height: 1.1;
        margin: 0 0 1rem;
      }
      .prose-invert h2 {
        font-size: 1.6rem;
        margin: 2rem 0 0.75rem;
      }
      .prose-invert h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.5rem;
      }
      .prose-invert p,
      .prose-invert li {
        line-height: 1.7;
        color: var(--sub);
      }
      .prose-invert a {
        color: var(--brand-primary);
        text-decoration: underline;
        text-underline-offset: 3px;
      }
      .prose-invert code {
        background: var(--surface);
        padding: 0.1em 0.4em;
        border-radius: 4px;
        font-family: var(--font-mono, monospace);
        font-size: 0.9em;
      }
      .prose-invert pre {
        background: var(--surface);
        padding: 1rem;
        border-radius: 8px;
        overflow-x: auto;
      }
      .prose-invert blockquote {
        border-left: 3px solid var(--brand-primary);
        padding-left: 1rem;
        color: var(--muted);
      }
      .prose-invert ul,
      .prose-invert ol {
        padding-left: 1.5rem;
      }
      .post-tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin: 1rem 0;
      }
      .post-tag {
        background: var(--surface);
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        font-size: 0.75rem;
        color: var(--sub);
      }
      .blog-card {
        display: block;
        padding: 1.5rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        transition: background 200ms;
      }
      .blog-card:hover {
        background: var(--surface-hover);
      }
      .blog-card-date {
        font-size: 0.8rem;
        color: var(--faint);
      }
      .blog-card-title {
        font-family: var(--font-aeonik);
        font-size: 1.5rem;
        margin: 0.5rem 0;
      }

      /* App theme (next-themes): blog routes use landing tokens; header uses data-theme */
      html[data-theme="light"] {
        --bg: #ececef;
        --surface: #ffffff;
        --surface-hover: #e4e4e9;
        --text: #0a0a0a;
        --sub: #3f3f46;
        --muted: #52525b;
        --faint: rgba(10, 10, 12, 0.5);
        --border: rgba(0, 0, 0, 0.14);
        --nav-bg: rgba(255, 255, 255, 0.78);
      }

      html[data-theme="light"] .section-head.is-in-view h1,
      html[data-theme="light"] .section-head.is-in-view h2,
      html[data-theme="light"] .section-head:hover h1,
      html[data-theme="light"] .section-head:hover h2 {
        color: var(--text);
        text-shadow: none;
      }

      html[data-theme="light"] .blog-card-title {
        color: var(--text);
      }

      html[data-theme="light"] .prose-invert h1,
      html[data-theme="light"] .prose-invert h2,
      html[data-theme="light"] .prose-invert h3 {
        color: var(--text);
      }

      html[data-theme="light"] .prose-invert blockquote {
        color: var(--muted);
      }

      html[data-theme="light"] #landing-root article.wrap h1:first-of-type {
        color: var(--text);
      }

      /* Pink theme: align blog surface with pink chrome */
      html[data-theme="pink"] {
        --bg: #1c0a12;
        --surface: #2a1420;
        --surface-hover: #361a2a;
        --text: #fafafa;
        --sub: rgba(255, 255, 255, 0.88);
        --muted: rgba(255, 255, 255, 0.72);
        --faint: rgba(255, 255, 255, 0.42);
        --border: rgba(255, 102, 144, 0.28);
        --nav-bg: rgba(26, 10, 18, 0.85);
      }

      html[data-theme="pink"] .section-head.is-in-view h1,
      html[data-theme="pink"] .section-head.is-in-view h2,
      html[data-theme="pink"] .section-head:hover h1,
      html[data-theme="pink"] .section-head:hover h2 {
        color: var(--text);
        text-shadow: none;
      }

      html[data-theme="pink"] .blog-card-title {
        color: var(--text);
      }

      html[data-theme="pink"] .prose-invert h1,
      html[data-theme="pink"] .prose-invert h2,
      html[data-theme="pink"] .prose-invert h3 {
        color: var(--text);
      }

      html[data-theme="pink"] #landing-root article.wrap h1:first-of-type {
        color: var(--text);
      }

      /* —— New landing sections (stack, GDPR, deploy flow, carousel, automation, pricing, CTA) —— */

      :root {
        --radius-landing: 8px;
      }

      .landing-stack__head,
      .landing-deploy-flow__head,
      .landing-features__head,
      .landing-automation__head,
      .landing-pricing__head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .landing-stack {
        padding-top: clamp(2.5rem, 6vw, 4rem);
      }

      .landing-stack__head h2 {
        margin: 0;
      }

      .stack-panel {
        margin-top: 2rem;
        padding: clamp(1.5rem, 4vw, 2.25rem);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        background: var(--surface);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
      }

      html.landing-theme-light .stack-panel {
        background: #ffffff;
      }

      .stack-panel__main {
        padding-bottom: 1.75rem;
        margin-bottom: 1.75rem;
        border-bottom: 1px solid var(--border);
        text-align: center;
      }

      .stack-panel__label {
        margin: 0 0 1rem;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--brand-secondary);
      }

      .stack-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin: 0;
      }

      .stack-pill {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 0.9rem;
        border-radius: var(--radius-landing);
        border: 1px solid var(--border);
        background: var(--bg);
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      }

      html.landing-theme-light .stack-pill {
        background: #f4f4f6;
      }

      .stack-pill:hover {
        border-color: rgba(255, 102, 144, 0.35);
        box-shadow: 0 0 18px rgba(255, 102, 144, 0.1);
      }

      .stack-groups {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem 1.5rem;
      }

      .stack-group {
        text-align: center;
      }

      .stack-group__title {
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--faint);
        margin: 0 0 0.75rem;
      }

      .stack-pills--sm {
        justify-content: center;
      }

      .stack-foot {
        text-align: center;
        margin: 2rem 0 0;
        font-size: 0.85rem;
        color: var(--muted);
      }

      .stack-foot a {
        color: var(--brand-primary);
        font-weight: 600;
      }

      /* Gray band sections — GDPR + final CTA (theme-aware) */
      .landing-band {
        background: var(--surface-hover);
        color: var(--text);
        padding: clamp(4rem, 10vw, 6rem) 0;
        text-align: center;
      }

      html.landing-theme-light .landing-band {
        background: #e4e4e9;
      }

      html:not(.landing-theme-light) .landing-band {
        background: var(--surface);
      }

      .landing-gdpr__kicker {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--brand-secondary);
        margin: 0 0 1rem;
      }

      .landing-gdpr__inner {
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
      }

      .landing-gdpr__title {
        font-family: var(--font-aeonik);
        font-size: clamp(1.65rem, 4vw, 2.5rem);
        font-weight: 700;
        line-height: 1.25;
        margin: 0 0 1.25rem;
        color: var(--text);
      }

      .landing-band .landing-gdpr__title,
      .landing-band .landing-final-cta h2 {
        color: var(--text);
      }

      .landing-gdpr__highlight {
        color: var(--brand-primary);
        text-shadow: 0 0 24px var(--brand-glow);
      }

      .landing-gdpr__line2 {
        display: block;
        margin-top: 0.35em;
        font-size: 0.92em;
        font-weight: 600;
        color: var(--muted);
        line-height: 1.35;
      }

      .landing-gdpr__meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.75rem 1rem;
      }

      .landing-gdpr__host {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--sub);
      }

      .landing-gdpr__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #22c55e;
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.45);
      }

      .landing-gdpr__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-landing);
        border: 1px solid var(--border);
        background: var(--surface);
        font-size: 0.8rem;
        color: var(--muted);
      }

      html.landing-theme-light .landing-gdpr__badge {
        background: #ffffff;
      }

      .landing-gdpr__badge svg {
        width: 14px;
        height: 14px;
        color: #22c55e;
        flex-shrink: 0;
      }

      .landing-deploy-flow {
        background: var(--surface);
      }

      html.landing-theme-light .landing-deploy-flow {
        background: #f4f4f6;
      }

      .landing-deploy-flow__head .sub {
        margin-top: 0.5rem;
        color: var(--muted);
      }

      .flow-step {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 4rem);
        align-items: center;
        margin-top: clamp(3rem, 8vw, 5rem);
      }

      .flow-step__copy,
      .flow-step__visual {
        min-width: 0;
      }

      .flow-step--reverse .flow-step__copy {
        order: 2;
      }

      .flow-step--reverse .flow-step__visual {
        order: 1;
      }

      .flow-step__badge {
        display: inline-block;
        margin: 0 0 0.75rem;
        padding: 0.3rem 0.65rem;
        border-radius: var(--radius-landing);
        background: rgba(255, 51, 102, 0.12);
        color: var(--brand-primary);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .flow-step__copy h3 {
        font-family: var(--font-aeonik);
        font-size: clamp(1.35rem, 3vw, 1.85rem);
        margin: 0 0 0.75rem;
      }

      .flow-step__copy p {
        margin: 0;
        color: var(--muted);
        font-size: 0.95rem;
        line-height: 1.65;
        max-width: 32rem;
      }

      .flow-mock {
        border-radius: var(--radius-landing);
        border: 1px solid var(--border);
        background: var(--bg);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
        overflow: hidden;
      }

      html.landing-theme-light .flow-mock {
        background: #fff;
      }

      .flow-mock--repos {
        padding: 1.25rem;
      }

      .flow-mock__title {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--faint);
        margin: 0 0 1rem;
      }

      .flow-mock--repos ul {
        list-style: none;
        margin: 0;
        padding: 0;
      }

      .flow-mock--repos li {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        margin-bottom: 0.35rem;
      }

      .flow-mock--repos li.is-selected {
        background: rgba(255, 51, 102, 0.1);
      }

      .flow-mock__radio {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        border: 2px solid var(--brand-primary);
        flex-shrink: 0;
        background: var(--brand-primary);
        box-shadow: inset 0 0 0 3px var(--surface);
      }

      .flow-mock--repos li:not(.is-selected) .flow-mock__radio {
        background: transparent;
        box-shadow: none;
      }

      .flow-mock--repos strong {
        display: block;
        font-size: 0.85rem;
      }

      .flow-mock--repos small {
        font-size: 0.7rem;
        color: var(--faint);
      }

      .flow-mock--terminal .flow-mock__bar {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin: 0;
        padding: 0.65rem 1rem;
        font-size: 0.7rem;
        color: var(--faint);
        border-bottom: 1px solid var(--border);
      }

      .flow-mock--terminal .flow-mock__bar span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--faint);
      }

      .flow-mock--terminal pre {
        margin: 0;
        padding: 1rem 1.1rem;
        font-size: 0.78rem;
        line-height: 1.55;
      }

      .flow-mock--terminal .t-dim {
        color: #60a5fa;
      }

      .flow-mock--terminal .t-accent {
        color: #c084fc;
      }

      .flow-mock--terminal .t-ok {
        color: #34d399;
      }

      .flow-mock--browser {
        display: flex;
        flex-direction: column;
        padding: 0;
        text-align: center;
        overflow: hidden;
      }

      .flow-mock--browser .flow-mock__bar--browser {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin: 0;
        padding: 0.6rem 0.9rem;
        font-size: 0;
        line-height: 0;
        color: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: #1a1a1a;
      }

      html.landing-theme-light .flow-mock--browser .flow-mock__bar--browser {
        background: #e8e8ec;
        border-bottom-color: var(--border);
      }

      .flow-mock--browser .flow-mock__dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        flex-shrink: 0;
        display: inline-block;
      }

      .flow-mock--browser .flow-mock__dot--close {
        background: #ff5f57;
      }

      .flow-mock--browser .flow-mock__dot--min {
        background: #febc2e;
      }

      .flow-mock--browser .flow-mock__dot--max {
        background: #28c840;
      }

      .flow-mock--browser .flow-mock__address {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        margin: 0;
        padding: 0.55rem 0.85rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: #141414;
      }

      html.landing-theme-light .flow-mock--browser .flow-mock__address {
        background: #f4f4f6;
        border-bottom-color: var(--border);
      }

      .flow-mock--browser .flow-mock__lock {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        color: #22c55e;
      }

      .flow-mock--browser .flow-mock__hostname {
        display: inline-block;
        padding: 0.35rem 0.75rem;
        border-radius: var(--radius-landing);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: #0a0a0a;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        font-size: 0.72rem;
        font-weight: 500;
        color: #e4e4e7;
        line-height: 1.3;
        box-shadow: none;
      }

      html.landing-theme-light .flow-mock--browser .flow-mock__hostname {
        border-color: var(--border);
        background: #ffffff;
        color: var(--text);
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
      }

      .flow-mock--browser .flow-mock__live {
        padding: 1.5rem 1.25rem 1.35rem;
        background: #000000;
      }

      html.landing-theme-light .flow-mock--browser .flow-mock__live {
        background: #ffffff;
      }

      html:not(.landing-theme-light) .flow-mock--browser {
        background: #0d0d0d;
        border-color: rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      }

      html:not(.landing-theme-light) .flow-mock--browser .flow-mock__live strong {
        color: #ffffff;
      }

      html:not(.landing-theme-light) .flow-mock--browser .flow-mock__live small {
        color: rgba(255, 255, 255, 0.45);
      }

      .flow-mock__check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--brand-primary);
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
      }

      .flow-mock__live strong {
        display: block;
        font-size: 1rem;
      }

      .flow-mock__live small {
        color: var(--faint);
        font-size: 0.75rem;
      }

      .feature-carousel-shell {
        margin-top: 2rem;
        max-width: 100%;
        overflow: hidden;
      }

      .feature-carousel__viewport {
        overflow: hidden;
        max-width: 100%;
        mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, #000 2%, #000 98%, transparent);
      }

      .feature-carousel__track {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0.25rem;
        padding: 0.5rem 0.5rem 1.25rem 0.75rem;
        -webkit-overflow-scrolling: touch;
      }

      .feature-carousel__track::-webkit-scrollbar {
        height: 6px;
      }

      .feature-carousel__track::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 3px;
      }

      .feature-card {
        flex: 0 0 min(280px, 78vw);
        scroll-snap-align: start;
        padding: 1.35rem;
        border-radius: var(--radius-landing);
        border: 1px solid var(--border);
        background: var(--surface);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .feature-card:hover {
        border-color: rgba(255, 102, 144, 0.35);
        box-shadow: 0 0 40px rgba(255, 102, 144, 0.12);
      }

      .feature-card__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: var(--radius-landing);
        background: rgba(255, 51, 102, 0.12);
        border: 1px solid rgba(255, 102, 144, 0.2);
        color: var(--brand-secondary);
        margin-bottom: 1rem;
      }

      .feature-card__icon svg {
        width: 20px;
        height: 20px;
        filter: drop-shadow(0 0 8px var(--brand-secondary-glow));
        transition: filter 0.2s ease;
      }

      .feature-card:hover .feature-card__icon svg {
        filter: drop-shadow(0 0 14px var(--brand-secondary-glow));
      }

      .feature-card h3 {
        font-size: 1rem;
        margin: 0 0 0.5rem;
      }

      .feature-card p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.6;
      }

      .feature-carousel__controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        margin-top: 0.5rem;
      }

      .feature-carousel__hint {
        margin: 0;
        font-size: 0.75rem;
        color: var(--faint);
      }

      .feature-carousel__btn {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-landing);
        border: 1px solid var(--border);
        background: var(--surface);
        color: var(--text);
        cursor: pointer;
        font-size: 1rem;
      }

      .feature-carousel__btn:hover {
        border-color: rgba(255, 102, 144, 0.45);
        color: var(--brand-primary);
        box-shadow: 0 0 20px rgba(255, 102, 144, 0.15);
      }

      .landing-automation__tag {
        display: inline-block;
        margin-bottom: 0.5rem;
      }

      .auto-card {
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        background: var(--surface);
        padding: 1.5rem;
        margin-top: 1.25rem;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .auto-card:hover {
        border-color: rgba(255, 102, 144, 0.35);
        box-shadow: 0 0 40px rgba(255, 102, 144, 0.1);
      }

      .auto-card--lg {
        position: relative;
        padding: 1.75rem;
      }

      .auto-card__pill {
        display: inline-block;
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.25rem 0.55rem;
        border-radius: 6px;
        margin-bottom: 0.75rem;
      }

      .auto-card__pill--green {
        background: rgba(52, 211, 153, 0.15);
        color: #059669;
      }

      .auto-card__pill--brand {
        background: rgba(255, 51, 102, 0.12);
        color: var(--brand-primary);
      }

      .auto-card__pill--amber {
        background: rgba(251, 191, 36, 0.15);
        color: #b45309;
      }

      .auto-card__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        align-items: start;
      }

      .auto-card h3 {
        font-family: var(--font-aeonik);
        font-size: 1.15rem;
        margin: 0 0 0.5rem;
      }

      .auto-card p {
        margin: 0 0 0.75rem;
        font-size: 0.9rem;
        color: var(--muted);
        line-height: 1.55;
      }

      .auto-card ul {
        margin: 0;
        padding-left: 1.1rem;
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.6;
      }

      .auto-card__mock {
        border-radius: 12px;
        background: #0f172a;
        color: #e2e8f0;
        padding: 1rem;
        font-size: 0.78rem;
        line-height: 1.5;
      }

      .auto-card__mock code {
        display: block;
        margin-top: 0.5rem;
        color: #a5b4fc;
        word-break: break-all;
      }

      .auto-card__mock-status {
        color: #34d399;
        font-weight: 600;
      }

      .auto-card__mock-label {
        color: var(--faint);
        font-size: 0.65rem;
        margin: 0 0 0.5rem;
      }

      .auto-card__mock .t-dim {
        color: #94a3b8;
      }

      .auto-card__mock .t-accent {
        color: #f472b6;
      }

      .auto-card-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1rem;
      }

      .auto-snippet {
        margin: 0.75rem 0 0;
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
        background: #0f172a;
        color: #cbd5e1;
        font-size: 0.72rem;
        overflow-x: auto;
      }

      .landing-automation__foot {
        text-align: center;
        margin-top: 2rem;
        font-size: 0.9rem;
      }

      .landing-automation__foot a {
        color: var(--brand-primary);
        font-weight: 600;
      }

      .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-top: 2rem;
      }

      .pricing-card {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        background: var(--surface);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
      }

      .pricing-card:hover {
        border-color: rgba(255, 102, 144, 0.3);
        box-shadow: 0 0 36px rgba(255, 102, 144, 0.08);
      }

      .pricing-card--popular {
        border-color: var(--brand-primary);
        box-shadow: 0 0 0 1px var(--brand-primary);
      }

      .pricing-card__badge {
        position: absolute;
        top: -0.65rem;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.2rem 0.65rem;
        border-radius: 999px;
        background: var(--brand-primary);
        color: #fff;
        font-size: 0.65rem;
        font-weight: 700;
      }

      .pricing-card h3 {
        font-family: var(--font-aeonik);
        font-size: 1.25rem;
        margin: 0.5rem 0 0;
      }

      .pricing-card__price {
        font-family: var(--font-aeonik);
        font-size: 2rem;
        font-weight: 700;
        margin: 0.75rem 0 1rem;
      }

      .pricing-card__price span {
        font-size: 0.9rem;
        font-weight: 400;
        opacity: 0.6;
      }

      .pricing-card ul {
        list-style: none;
        margin: 0 0 1.25rem;
        padding: 0;
        flex: 1;
        font-size: 0.85rem;
        line-height: 1.65;
        color: var(--muted);
      }

      .pricing-card li {
        padding-left: 1.25rem;
        position: relative;
        margin-bottom: 0.35rem;
      }

      .pricing-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--brand-primary);
        font-weight: 700;
      }

      .pricing-card__cta {
        text-align: center;
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        color: #fff;
        text-transform: none;
        letter-spacing: 0.02em;
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
      }

      .pricing-card__cta:hover {
        background: #ff4d7a;
        color: #fff;
      }

      .pricing-card:not(.pricing-card--popular) .pricing-card__cta {
        background: transparent;
        border: 1px solid var(--border);
        color: var(--text);
      }

      .landing-pricing__foot {
        text-align: center;
        margin-top: 1.5rem;
      }

      .landing-pricing__foot a {
        color: var(--brand-primary);
        font-weight: 600;
      }

      .landing-pricing__fine {
        text-align: center;
        margin: 1rem auto 0;
        max-width: 36rem;
        font-size: 0.75rem;
        color: var(--faint);
      }

      .landing-final-cta h2 {
        font-family: var(--font-aeonik);
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin: 0 0 0.5rem;
      }

      .landing-final-cta p {
        margin: 0 0 1.5rem;
        color: var(--muted);
        font-size: 1rem;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
      }

      .landing-final-cta__btn {
        background: var(--brand-primary);
        border-color: var(--brand-primary);
        color: #fff;
        text-transform: none;
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        letter-spacing: 0.02em;
      }

      .landing-final-cta__btn:hover {
        background: #ff4d7a;
        color: #fff;
      }

      @media (max-width: 900px) {
        .auto-card__grid,
        .auto-card-row,
        .pricing-grid {
          grid-template-columns: 1fr;
        }
      }

      @media (max-width: 768px) {
        .flow-step,
        .flow-step--reverse {
          grid-template-columns: 1fr;
        }

        .flow-step--reverse .flow-step__copy,
        .flow-step--reverse .flow-step__visual {
          order: unset;
        }

        .stack-groups {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .compare-row {
          grid-template-columns: minmax(0, 1fr) 54px 54px 54px;
          gap: 0.35rem;
          font-size: 0.75rem;
        }

        .compare-head {
          grid-template-columns: minmax(0, 1fr) 54px 54px 54px;
          gap: 0.35rem;
          font-size: calc(0.65rem - 4px);
          letter-spacing: 0.04em;
        }

        .compare-head span:not(:first-child) {
          text-align: center;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }

        .flow-mock--terminal pre {
          font-size: 0.7rem;
          white-space: pre-wrap;
          word-break: break-word;
        }

        .flow-mock__hostname {
          max-width: 100%;
          overflow-wrap: anywhere;
        }
      }

      @media (max-width: 480px) {
        .stack-groups {
          grid-template-columns: 1fr;
        }

        .compare-head {
          grid-template-columns: minmax(0, 1fr) 50px 50px 50px;
          padding-inline: 0.65rem;
        }

        .compare-row {
          grid-template-columns: minmax(0, 1fr) 50px 50px 50px;
          padding-inline: 0.65rem;
        }
      }
