/* ==========================================================================
   Toimii marketing site stylesheet — HAND-MAINTAINED. Edit this file directly.

   History: this began as a near-verbatim port of the Rails app's landing.css,
   assembled by scripts/port_css.sh (now retired) which prepended an authored
   header to the marketing body of landing.css. Phase 4 deleted landing.css from
   Rails, so the port pipeline (port_css.sh + css_header.css) was removed and
   this file is now the sole source — there is nothing left to re-port from.

   Web-Awesome-free. The Rails stylesheet sat on top of Web Awesome's native.css
   + webawesome.css, which supplied a CSS reset, the --wa-* design tokens, and
   the brand/neutral color ramps. None of that ships here, so the header below
   re-establishes:
     1. a minimal reset (box-sizing, html/body),
     2. a flat shim of every --wa-* / --admin-* token the rules use,
     3. plain-HTML replacements for the marketing WA components (wa-button →
        .btn, wa-tag → .hero-tag, the rest native), plus the self-hosted
        @font-face and the inline-SVG .icon rules.
   Everything below the "PORTED VERBATIM" banner originated 1:1 from landing.css
   (minus the WA @imports, the admin :root, the FOUC guard, .cta-glow, and the
   wa-tab ::part overrides); it is now maintained here directly.
   ========================================================================== */

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

html,
body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--landing-font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Push the marketing footer to the bottom on short pages (it's the last flex
   child after <main>). */
main {
  flex: 1 0 auto;
}

a {
  color: var(--landing-accent, #c8962e);
  text-decoration: none;
}

:root {
  /* Body font — WA's native.css used to set this on <body>. */
  --landing-font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  /* ── Web Awesome design-token shim ───────────────────────────────────────
     Flat resolved values for the --wa-* tokens the ported CSS references.
     Default WA theme: space / radius / border / font-size scale all = 1;
     brand ramp = warm gold (wa-brand-yellow); neutral text = dark-theme heading. */
  --wa-space-3xs: 0.125rem;
  --wa-space-2xs: 0.25rem;
  --wa-space-xs: 0.5rem;
  --wa-space-s: 0.75rem;
  --wa-space-m: 1rem;
  --wa-space-l: 1.5rem;
  --wa-space-xl: 2rem;
  --wa-space-2xl: 2.5rem;
  --wa-space-3xl: 3rem;
  --wa-space-4xl: 4rem;
  --wa-border-radius-m: 0.375rem;
  --wa-border-radius-l: 0.75rem;
  --wa-border-width-s: 1px;
  --wa-font-size-xs: 0.75rem;
  --wa-font-size-s: 0.875rem;
  --wa-font-size-xl: 1.5625rem;
  --wa-font-size-2xl: 2rem;
  --wa-font-weight-semibold: 600;
  --wa-font-weight-bold: 700;
  --wa-font-family-code: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --wa-color-neutral-text-normal: #fafaf9;
  --wa-color-brand-600: #c8962e;
  --wa-color-brand-border-normal: rgba(200, 150, 46, 0.35);
  --wa-color-brand-fill-quiet: rgba(200, 150, 46, 0.1);

  /* ── Admin-dashboard tokens (dark values) ────────────────────────────────
     Only referenced by dead admin-only utility/panel rules carried over with
     the shared Rails stylesheet; defined so they resolve cleanly if rendered. */
  --admin-bg-page: #0c0a09;
  --admin-bg-surface: #1a1614;
  --admin-bg-surface-raised: #231f1c;
  --admin-bg-surface-muted: #2e2926;
  --admin-bg-header: rgba(12, 10, 9, 0.85);
  --admin-border: #3d3632;
  --admin-border-subtle: #2e2926;
  --admin-border-strong: #524a44;
  --admin-text-heading: #fafaf9;
  --admin-text-body: #d6d3d1;
  --admin-text-subtle: #a8a29e;
  --admin-text-muted: #78716c;
  --admin-accent: #c8962e;
  --admin-accent-gradient: linear-gradient(135deg, #c8962e, #b87333);
  --admin-accent-glow: rgba(200, 150, 46, 0.15);
  --admin-accent-quiet: rgba(200, 150, 46, 0.1);
  --admin-font-display: "Plus Jakarta Sans", sans-serif;
  --admin-shadow-s: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
  --admin-shadow-m: 0 4px 12px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons — replaces <wa-button> ─────────────────────────────────────────
   variant="warning"            → .btn-primary (gold gradient)
   appearance="outlined"/neutral → .btn-outline
   size small/medium/large       → .btn-sm / (default) / .btn-lg
   All marketing CTAs ship disabled until login launches (see cta-button.njk). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--landing-font-display, inherit);
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}
.btn.pill {
  border-radius: 999px;
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1.05rem;
}
.btn-primary {
  background: var(--landing-accent-gradient, linear-gradient(135deg, #c8962e, #b87333));
  color: #1a1208;
}
.btn-primary:hover:not(:disabled):not([aria-disabled="true"]) {
  filter: brightness(1.07);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--landing-border-strong, #524a44);
  color: var(--landing-text-body, #d6d3d1);
}
.btn-outline:hover:not(:disabled):not([aria-disabled="true"]) {
  border-color: var(--landing-text-subtle, #a8a29e);
  color: var(--landing-text-heading, #fafaf9);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: none;
  box-shadow: none;
  animation: none;
}

/* CTA glow — only animates while enabled (all CTAs ship disabled for now). */
.btn.cta-glow:not(:disabled):not([aria-disabled="true"]) {
  box-shadow: 0 0 20px rgba(200, 150, 46, 0.15);
  animation: glowPulse 3s ease-in-out infinite;
}

/* ── Hero badge — replaces <wa-tag variant="warning" pill> ──────────────── */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(200, 150, 46, 0.12);
  border: 1px solid rgba(200, 150, 46, 0.35);
  color: var(--landing-accent, #c8962e);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ── Native <details> locale switcher (replaces wa-popover trigger) ─────────
   The grouped grid inside reuses the ported .locale-group / .locale-card. */
.locale-switcher {
  position: relative;
}
.locale-switcher > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--landing-text-subtle, #a8a29e);
  font-size: 0.8125rem;
  white-space: nowrap;
}
.locale-switcher > summary::-webkit-details-marker {
  display: none;
}
.locale-switcher > summary:hover {
  color: var(--landing-text-heading, #fafaf9);
}
.locale-switcher .chevron {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.locale-switcher[open] .chevron {
  transform: rotate(180deg);
}
.locale-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 40;
  padding: var(--wa-space-s) var(--wa-space-m) var(--wa-space-m);
  width: 27rem;
  max-width: 86vw;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--landing-bg-raised, #231f1c);
  border: 1px solid var(--landing-border, #3d3632);
  border-radius: 0.85rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  color: var(--landing-text-body, #d6d3d1);
}

/* ── Self-hosted display font — replaces the Google Fonts <link> ─────────────
   One latin+latin-ext variable woff2 (wght 200–800) at /assets/fonts/, also
   reused by the OG image generator. latin-ext coverage is required for correct
   pl/lv/lt rendering (ą ł ż / ā ē ī / ė į ų). Preloaded in base.njk. */
@font-face {
  font-family: "Plus Jakarta Sans";
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-Variable.woff2") format("woff2");
}

/* ── Inline icons — replaces the Font Awesome kit <script> ───────────────────
   {{ "name" | icon }} emits <svg class="icon" …> with fill:currentColor, so the
   surrounding color/font-size (on the icon, an ancestor, or an inline style=)
   sizes and tints it exactly as the old <i class="fa-…"> did. The trailing rules
   re-establish the ported-body selectors that styled the old <i> *directly* (so
   <svg class="icon"> no longer matches): two FA-class selectors
   (.pricing-feature .fa-check, .reassurance-item .fa-solid) and two element
   selectors (.mockup-pricing-card i, .help-category-card i). */
.icon {
  display: inline-block;
  height: 1em;
  width: auto;
  vertical-align: -0.125em;
  fill: currentColor;
}
.pricing-feature .icon {
  color: var(--landing-accent);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.reassurance-item .icon {
  color: var(--landing-accent);
}
.mockup-pricing-card .icon {
  color: var(--landing-accent);
  font-size: 1.4rem;
}
.help-category-card .icon {
  color: var(--landing-accent);
  font-size: 1.5rem;
  /* The card is a flex column (align-items: stretch), which would stretch the
     width:auto svg to full width and center its glyph; the font <i> stayed left
     via text-align. flex-start restores the left alignment to match the title. */
  align-self: flex-start;
}

/* ==========================================================================
   PORTED VERBATIM from toimii/app/assets/stylesheets/landing.css (lines 99+)
   ========================================================================== */
/* ========================================
   Semantic CSS Classes (WA tokens only)
   ======================================== */

/* Page containers */
.page-container {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--wa-space-m);
  padding-block: var(--wa-space-xl);
}
@media (min-width: 640px) {
  .page-container { padding-inline: var(--wa-space-l); }
}

.page-container-narrow {
  max-width: 64rem;
  margin-inline: auto;
  padding-inline: var(--wa-space-m);
  padding-block: var(--wa-space-xl);
}
@media (min-width: 640px) {
  .page-container-narrow { padding-inline: var(--wa-space-l); }
}

.page-container-landing {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: var(--wa-space-m);
  padding-block: var(--wa-space-3xl);
}
@media (min-width: 640px) {
  .page-container-landing {
    padding-inline: var(--wa-space-l);
    padding-block: var(--wa-space-4xl);
  }
}

/* Typography */
.page-title {
  font-family: var(--admin-font-display);
  font-size: var(--wa-font-size-2xl);
  font-weight: var(--wa-font-weight-bold);
  color: var(--admin-text-heading);
  letter-spacing: -0.02em;
}

.page-subtitle {
  color: var(--admin-text-subtle);
  margin-block-start: var(--wa-space-2xs);
}

.section-title {
  font-family: var(--admin-font-display);
  font-size: var(--wa-font-size-xl);
  font-weight: var(--wa-font-weight-semibold);
  color: var(--admin-text-heading);
  letter-spacing: -0.01em;
}

.label {
  display: block;
  font-size: var(--wa-font-size-s);
  font-weight: var(--wa-font-weight-semibold);
  color: var(--admin-text-heading);
  margin-block-end: var(--wa-space-2xs);
}

.help-text {
  font-size: var(--wa-font-size-xs);
  color: var(--admin-text-subtle);
  margin-block-start: var(--wa-space-2xs);
}

.text-muted {
  font-size: var(--wa-font-size-s);
  color: var(--admin-text-subtle);
}

.text-subtle {
  font-size: var(--wa-font-size-xs);
  color: var(--admin-text-subtle);
}

/* Panels */
.panel {
  background: var(--admin-bg-surface);
  border: solid var(--wa-border-width-s) var(--admin-border);
  border-radius: var(--wa-border-radius-l);
  box-shadow: var(--admin-shadow-s);
  padding: var(--wa-space-l);
}

.panel-muted {
  background: var(--admin-bg-surface-muted);
  border-radius: var(--wa-border-radius-l);
  padding: var(--wa-space-l);
}

.panel-info {
  background: var(--wa-color-brand-fill-quiet);
  border: solid var(--wa-border-width-s) var(--wa-color-brand-border-normal);
  border-radius: var(--wa-border-radius-l);
  padding: var(--wa-space-l);
}
/* Utility classes */
.hidden {
  display: none;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Landing page header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(12, 10, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: solid var(--wa-border-width-s) rgba(61, 54, 50, 0.5);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: var(--wa-space-m);
}

.landing-nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--landing-text-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}

.landing-nav-link:hover {
  color: var(--landing-text-heading);
}

@media (max-width: 639px) {
  .landing-nav {
    display: none;
  }
}

/* Landing hero grid: 7/5 split on large screens */
.hero-grid {
  display: grid;
  gap: var(--wa-space-2xl);
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    align-items: center;
  }
}

/* Landing pricing grid: 2 columns centered */
.pricing-grid {
  display: grid;
  gap: var(--wa-space-l);
  max-width: 52rem;
  margin-inline: auto;
}

/* Landing hero title (responsive) */
.hero-title {
  font-family: var(--landing-font-display, inherit);
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  color: var(--wa-color-neutral-text-normal);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-title .accent {
  background: var(--landing-accent-gradient, linear-gradient(135deg, #C8962E, #B87333));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent::selection {
  -webkit-text-fill-color: #C8962E;
  background: highlight;
}

/* Landing section headings (responsive) */
.section-heading {
  font-family: var(--landing-font-display, inherit);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--wa-color-neutral-text-normal);
  letter-spacing: -0.025em;
}

/* Responsive two-column form grid */
.form-grid {
  display: grid;
  gap: var(--wa-space-m);
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive two-column card grid */
.card-grid {
  display: grid;
  gap: var(--wa-space-m);
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive content + sidebar layout */
.content-sidebar {
  display: grid;
  gap: var(--wa-space-l);
}
@media (min-width: 1024px) {
  .content-sidebar {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
/* Landing footer separator */
.footer-separator {
  border-top: solid var(--wa-border-width-s) rgba(61, 54, 50, 0.5);
  margin-block-start: var(--wa-space-2xl);
  padding-block-start: var(--wa-space-xl);
}

/* ========================================
   Locale Switcher Popover
   ======================================== */

.locale-group {
  margin-bottom: var(--wa-space-s);
}

.locale-group:last-child {
  margin-bottom: 0;
}

.locale-group-label {
  display: block;
  font-size: var(--wa-font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-bottom: var(--wa-space-2xs);
}

.locale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(8rem, 1fr));
  gap: var(--wa-space-3xs);
}

.locale-grid--featured {
  grid-template-columns: 1fr;
}

.locale-card {
  display: flex;
  align-items: center;
  gap: var(--wa-space-xs);
  padding: 0.5rem 0.625rem;
  min-block-size: 2.25rem;
  border: 1px solid transparent;
  border-radius: var(--wa-border-radius-m);
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: var(--wa-font-size-s);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.locale-card:hover {
  background: color-mix(in srgb, currentColor 8%, transparent);
}

.locale-card:focus-visible {
  outline: 2px solid var(--wa-color-brand-600, #C8962E);
  outline-offset: 2px;
}

.locale-card--active {
  border-color: var(--wa-color-brand-600, #C8962E);
  background: color-mix(in srgb, var(--wa-color-brand-600, #C8962E) 10%, transparent);
}

.locale-card-flag {
  width: 1.25rem;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

.locale-card-name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Landing page popover overrides */
.landing-dark .locale-card:hover {
  background: rgba(200, 150, 46, 0.1);
}

.landing-dark .locale-card--active {
  border-color: #C8962E;
  background: rgba(200, 150, 46, 0.12);
}

/* ========================================
   Landing Dark Theme
   ======================================== */

.landing-dark {
  --landing-font-display: 'Plus Jakarta Sans', sans-serif;

  /* Warm neutral palette */
  --landing-bg-deepest: #0C0A09;
  --landing-bg-default: #1A1614;
  --landing-bg-raised: #231F1C;
  --landing-bg-subtle: #2E2926;
  --landing-border: #3D3632;
  --landing-border-strong: #524A44;
  --landing-text-heading: #FAFAF9;
  --landing-text-body: #D6D3D1;
  --landing-text-subtle: #A8A29E;
  --landing-text-muted: #78716C;

  /* Accent */
  --landing-accent: #C8962E;
  --landing-accent-hover: #A87A1E;
  --landing-accent-gradient: linear-gradient(135deg, #C8962E, #B87333);
  --landing-glow: rgba(200, 150, 46, 0.15);

  background: var(--landing-bg-deepest);
  color: var(--landing-text-body);
}

/* Hero section */
.landing-hero {
  position: relative;
  overflow: hidden;
}

.landing-hero-content {
  animation: fadeInUp 0.8s ease-out both;
}

.landing-hero-illustration {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Gradient orbs for atmosphere */
.landing-hero::before,
.landing-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.landing-hero::before {
  width: 40rem;
  height: 40rem;
  top: -10rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(200, 150, 46, 0.12) 0%, transparent 70%);
}

.landing-hero::after {
  width: 30rem;
  height: 30rem;
  bottom: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
}

/* Dot grid texture overlay */
.landing-hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(168, 162, 158, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Hero description */
.hero-description {
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--landing-text-subtle);
}

/* Hero trust line */
.hero-trust {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
}


@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 150, 46, 0.15); }
  50% { box-shadow: 0 0 30px rgba(200, 150, 46, 0.3); }
}

/* Browser mockup */
.browser-mockup {
  background: var(--landing-bg-raised);
  border-radius: 12px;
  border: 1px solid var(--landing-border);
  box-shadow: 0 8px 40px rgba(200, 150, 46, 0.1), 0 0 0 1px rgba(200, 150, 46, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(200, 150, 46, 0.15), 0 0 0 1px rgba(200, 150, 46, 0.08);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--landing-bg-subtle);
  border-bottom: 1px solid var(--landing-border);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #C8962E; }
.browser-dots span:nth-child(3) { background: #22C55E; }

.browser-address {
  flex: 1;
  background: var(--landing-bg-default);
  border-radius: 6px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: var(--landing-text-muted);
  font-family: var(--wa-font-family-code);
}

.browser-content {
  padding: 1.5rem;
}

/* Code snippet inside mockup */
.mockup-code {
  background: var(--landing-bg-default);
  border-radius: 8px;
  padding: 1rem;
  font-family: var(--wa-font-family-code);
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--landing-text-subtle);
  border: 1px solid var(--landing-border);
  overflow-x: auto;
  white-space: nowrap;
}

.mockup-code .tag { color: #B87333; }
.mockup-code .attr { color: #C8962E; }
.mockup-code .string { color: #22C55E; }

/* Arrow between code and form */
.mockup-arrow {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0;
  color: var(--landing-text-muted);
  font-size: 1.25rem;
}

/* Mockup form fields */
.mockup-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mockup-field {
  height: 2.25rem;
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
}

.mockup-submit {
  height: 2.5rem;
  background: var(--landing-accent-gradient);
  border: none;
  border-radius: 6px;
  margin-top: 0.25rem;
}

/* How it Works section — background now owned by the .band zebra */
.landing-steps-section {
}

.steps-flow {
  display: grid;
  gap: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

/* Connector line between steps */
.steps-flow::before {
  display: none;
}

@media (min-width: 768px) {
  .steps-flow::before {
    content: '';
    display: block;
    position: absolute;
    top: 2.5rem;
    left: calc(16.67% + 2rem);
    right: calc(16.67% + 2rem);
    height: 1px;
    background: var(--landing-border);
    z-index: 0;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.step-badge {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--landing-accent);
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover .step-badge {
  border-color: var(--landing-accent);
  box-shadow: 0 0 20px var(--landing-glow);
}

.step-badge-number {
  position: absolute;
  top: -0.625rem;
  right: -0.625rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--landing-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--landing-font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: #0C0A09;
}

.step-title {
  font-family: var(--landing-font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--landing-text-heading);
}

.step-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--landing-text-subtle);
  max-width: 20rem;
}

/* Pricing section */
.pricing-card {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 2rem;
}

.pricing-card-featured {
  border-color: var(--landing-accent);
  box-shadow: 0 0 30px var(--landing-glow);
}

.pricing-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0C0A09;
  background: var(--landing-accent-gradient);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-family: var(--landing-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--landing-text-heading);
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--landing-text-subtle);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  margin-block: 1.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--landing-text-heading);
}

.pricing-number {
  font-family: var(--landing-font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--landing-text-heading);
}

.pricing-number-accent {
  background: var(--landing-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-number-accent::selection {
  -webkit-text-fill-color: #C8962E;
  background: highlight;
}

.pricing-period {
  font-size: 1rem;
  color: var(--landing-text-muted);
  margin-left: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  text-align: left;
  color: var(--landing-text-body);
}

.pricing-feature wa-icon,
.pricing-feature .fa-check {
  color: var(--landing-accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Pricing layout: main card + addon card */
.pricing-layout {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  max-width: 44rem;
  margin-inline: auto;
}

.pricing-card-main {
  flex: 0 1 22rem;
}

.pricing-addon-card {
  flex: 0 1 14rem;
  display: flex;
  flex-direction: column;
  border-color: var(--landing-border);
  opacity: 0.85;
  cursor: default;
}

.pricing-addon-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--landing-text-muted);
  text-align: center;
  margin-block-end: 0.75rem;
}

@media (max-width: 640px) {
  .pricing-layout {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card-main,
  .pricing-addon-card {
    flex: none;
    width: 100%;
    max-width: 22rem;
  }
}

/* Pricing-page card amount — V2-style: big number + superscript € + a stacked
   "/ month" + "+ ALV" label to the right. Scoped to .pricing-card so the home
   highlight (.pricing-amount-xl, below) keeps its own sizing. */
.pricing-card .pricing-amount {
  justify-content: center;
  margin-block: 1.25rem;
}

.pricing-card .pricing-number {
  font-size: 5rem;
}

.pricing-card .pricing-currency {
  font-size: 1.85rem;
  align-self: flex-start;
  margin-block-start: 0.4em;
  margin-inline-start: 0.1rem;
}

.pricing-addon-card .pricing-number {
  font-size: 3.25rem;
}

.pricing-addon-card .pricing-currency {
  font-size: 1.4rem;
}

.pricing-period-stack {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-end;
  align-items: flex-start;
  margin-inline-start: 0.4rem;
  margin-block-end: 0.65rem;
  line-height: 1.25;
  text-align: left;
}

.pricing-period-line {
  font-size: 1rem;
  color: var(--landing-text-subtle);
  white-space: nowrap;
}

.pricing-period-sub {
  font-size: 0.8125rem;
  color: var(--landing-text-muted);
}

/* Add-on card heading + description */
.pricing-addon-title {
  font-family: var(--landing-font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--landing-text-heading);
  text-align: center;
  margin-block: 0.25rem 0.5rem;
}

.pricing-addon-desc {
  text-align: center;
  color: var(--landing-text-muted);
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0;
}

/* "What counts as a location?" fine-print note under the cards */
.pricing-location-note {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  text-align: center;
}

.pricing-location-note strong {
  display: block;
  color: var(--landing-text-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-block-end: 0.375rem;
}

.pricing-location-note span {
  color: var(--landing-text-subtle);
  font-size: 0.8125rem;
  line-height: 1.65;
}

/* Home pricing highlight — oversized "10 €" (V2 redesign) */
.pricing-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--landing-text-muted);
}

.pricing-amount-xl {
  justify-content: center;
  margin-block: 0.5rem;
}

.pricing-amount-xl .pricing-number {
  font-size: clamp(4.5rem, 9vw + 1rem, 8rem);
  line-height: 0.95;
}

.pricing-amount-xl .pricing-currency {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  align-self: flex-start;
  margin-block-start: 0.2em;
}

.pricing-points-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--landing-border);
  border-radius: 999px;
  background: var(--landing-bg-raised);
  color: var(--landing-text-subtle);
  font-size: 0.9375rem;
}

/* Pricing reassurance row */
.pricing-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--landing-text-subtle);
}

.reassurance-item wa-icon,
.reassurance-item .fa-solid {
  color: var(--landing-accent);
}

/* Landing footer */
.landing-footer {
  border-top: 1px solid var(--landing-border);
  padding-block: var(--wa-space-l);
}

/* ========================================
   Content Pages (privacy, terms, contact, features)
   ======================================== */

/* Readable text column */
.content-page {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: var(--wa-space-m);
  padding-block: var(--wa-space-3xl);
}

@media (min-width: 640px) {
  .content-page {
    padding-inline: var(--wa-space-l);
    padding-block: var(--wa-space-4xl);
  }
}

.content-page h1 {
  font-family: var(--landing-font-display, inherit);
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 800;
  color: var(--landing-text-heading);
  letter-spacing: -0.025em;
  margin-block-end: 0.5rem;
}

.content-page .content-subtitle {
  font-size: 1.125rem;
  color: var(--landing-text-subtle);
  margin-block-end: 3rem;
}

.content-page h2 {
  font-family: var(--landing-font-display, inherit);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--landing-text-heading);
  margin-block-start: 2.5rem;
  margin-block-end: 1rem;
  letter-spacing: -0.015em;
}

.content-page h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--landing-text-heading);
  margin-block-start: 1.5rem;
  margin-block-end: 0.75rem;
}

.content-page p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--landing-text-body);
  margin-block-end: 1rem;
}

.content-page ul,
.content-page ol {
  padding-inline-start: 1.5rem;
  margin-block-end: 1rem;
}

.content-page li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--landing-text-body);
  margin-block-end: 0.375rem;
}

.content-page a {
  color: var(--landing-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-page a:hover {
  color: var(--landing-accent-hover);
}

.content-page .last-updated {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  margin-block-start: 3rem;
  padding-block-start: 1.5rem;
  border-top: 1px solid var(--landing-border);
}

/* Features page — component type cards */
.feature-card {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--landing-border-strong);
}

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: rgba(200, 150, 46, 0.1);
  border: 1px solid rgba(200, 150, 46, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--landing-accent);
  margin-block-end: 1rem;
}

.feature-card-title {
  font-family: var(--landing-font-display, inherit);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--landing-text-heading);
  margin-block-end: 0.5rem;
}

.feature-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--landing-text-subtle);
  margin-block-end: 1rem;
}

.feature-card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-card-badge-live {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.feature-card-badge-soon {
  color: var(--landing-text-muted);
  background: rgba(120, 113, 108, 0.1);
  border: 1px solid rgba(120, 113, 108, 0.2);
}

/* Features page — included features grid */
.feature-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
}

.feature-grid-icon {
  color: var(--landing-accent);
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.feature-grid-text {
  font-size: 0.9375rem;
  color: var(--landing-text-body);
  line-height: 1.5;
}

.feature-grid-text span {
  font-size: 0.8125rem;
  color: var(--landing-text-muted);
}

/* Features page — embed steps */
.embed-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.embed-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.embed-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--landing-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0C0A09;
  flex-shrink: 0;
}

.embed-step-content {
  flex: 1;
}

.embed-step-title {
  font-weight: 600;
  color: var(--landing-text-heading);
  margin-block-end: 0.25rem;
}

.embed-step-desc {
  font-size: 0.9375rem;
  color: var(--landing-text-subtle);
  line-height: 1.6;
}

.embed-code-block {
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  padding: 1rem;
  font-family: var(--wa-font-family-code);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--landing-text-subtle);
  margin-block-start: 0.75rem;
  overflow-x: auto;
}

.embed-code-block .tag { color: #B87333; }
.embed-code-block .attr { color: #C8962E; }
.embed-code-block .string { color: #22C55E; }
.embed-code-block .comment { color: var(--landing-text-muted); }

/* Platform logos row */
.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-block: 1.5rem;
}

.platform-logo {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--landing-text-muted);
  padding: 0.5rem 1rem;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
}

/* Embed guide page */
.guide-hero-code {
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-family: var(--wa-font-family-code);
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  line-height: 1.8;
  color: var(--landing-text-subtle);
  text-align: left;
  max-width: 36rem;
  margin: 2rem auto 0;
  overflow-x: auto;
  box-shadow: 0 0 40px rgba(200, 150, 46, 0.08);
}

.guide-hero-code .tag { color: #B87333; }
.guide-hero-code .attr { color: #C8962E; }
.guide-hero-code .string { color: #22C55E; }
.guide-hero-code .comment { color: var(--landing-text-muted); }

.guide-platform-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-block-start: 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(200, 150, 46, 0.08);
  border: 1px solid rgba(200, 150, 46, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--landing-text-subtle);
}

.guide-tip i {
  color: #C8962E;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.guide-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--landing-text-subtle);
}

.guide-note i {
  color: var(--landing-text-muted);
  margin-top: 0.1875rem;
  flex-shrink: 0;
}

/* Embed platform cards — hub page + cross-link strip on each per-platform page */
.embed-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1rem;
}

.embed-platform-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.embed-platform-card:hover {
  border-color: rgba(200, 150, 46, 0.5);
  transform: translateY(-2px);
}

.embed-platform-card-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.embed-platform-card-icon {
  font-size: 1.25rem;
  color: #C8962E;
  width: 1.5rem;
  text-align: center;
}

.embed-platform-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--landing-text-heading);
}

.embed-platform-card-summary {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--landing-text-subtle);
}

.embed-platform-card-cta {
  margin-block-start: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #C8962E;
}

/* Per-platform page blocks: reality / plan / gotchas */
.embed-reality-block,
.embed-plan-block,
.embed-gotchas-block {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.embed-reality-block p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-text-subtle);
}

.embed-reality-block p + p {
  margin-top: 0.75rem;
}

.embed-plan-block {
  border-color: rgba(200, 150, 46, 0.3);
  background: rgba(200, 150, 46, 0.05);
}

.embed-plan-block p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-text-subtle);
}

.embed-block-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C8962E;
  margin-block-end: 0.5rem;
}

.embed-gotchas-list {
  margin: 0;
  padding-inline-start: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.embed-gotchas-list li {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--landing-text-subtle);
}

/* --- Comparison pages (/vs/*) --- */
.vs-hero-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8962E;
}

.vs-what-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .vs-what-grid {
    grid-template-columns: 1fr;
  }
}

.vs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  background: var(--landing-bg-raised);
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--landing-text-subtle);
}

.vs-table th,
.vs-table td {
  text-align: left;
  padding: 0.875rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--landing-border);
}

.vs-table tbody tr:last-child th,
.vs-table tbody tr:last-child td {
  border-bottom: none;
}

.vs-table thead th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-text-heading);
  background: rgba(255, 255, 255, 0.02);
}

.vs-table tbody th {
  width: 28%;
  font-weight: 600;
  color: var(--landing-text-heading);
}

.vs-table tbody td:nth-of-type(1) {
  color: var(--landing-text-default, var(--landing-text-subtle));
  background: rgba(200, 150, 46, 0.05);
}

@media (max-width: 640px) {
  .vs-table {
    font-size: 0.875rem;
  }
  .vs-table th,
  .vs-table td {
    padding: 0.75rem 0.75rem;
  }
  .vs-table tbody th {
    width: 32%;
  }
}

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

.vs-diff-item {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.vs-diff-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--landing-text-heading);
}

.vs-diff-body {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--landing-text-subtle);
}

/* FAQ section */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-section details {
  border-bottom: 1px solid var(--landing-border);
}

.faq-section details:first-child {
  border-top: 1px solid var(--landing-border);
}

.faq-section summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--landing-text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--landing-text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-section details[open] summary::after {
  content: '−';
  color: var(--landing-accent);
}

.faq-section .faq-answer {
  padding-block-end: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--landing-text-subtle);
}

/* Contact page — two-column grid */
.contact-grid {
  display: grid;
  gap: var(--wa-space-2xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info-icon {
  color: var(--landing-accent);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
}

.contact-info-text {
  font-size: 1rem;
  color: var(--landing-text-body);
  line-height: 1.6;
}

.contact-info-text a {
  color: var(--landing-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-embed {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-embed-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--landing-accent);
  background: rgba(200, 150, 46, 0.1);
  border: 1px solid rgba(200, 150, 46, 0.2);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-block-end: 1.5rem;
}

/* --- Section band system ---
   One primitive per top-level <section> on a striped page. Tone alternates
   automatically via :nth-of-type — never hand-toggle a band color again. */
.band { padding-block: var(--wa-space-3xl); }
@media (min-width: 640px) { .band { padding-block: var(--wa-space-4xl); } }

/* Top-anchored zebra: page top is always black, then alternate.
   Footer is a distinct brand tone (below), so the last band always reads
   clean regardless of count — no parity tuning needed. */
.band:nth-of-type(odd)  { background: var(--landing-bg-deepest); }  /* #0C0A09 black */
.band:nth-of-type(even) { background: var(--landing-bg-default); }  /* #1A1614 gray  */

/* Tool showcase sections (alternating left/right layout) */
.tool-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wa-space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .tool-section {
    grid-template-columns: 1fr 1fr;
  }
  .tool-section-reversed .tool-section-text { order: 2; }
  .tool-section-reversed .tool-section-mockup { order: 1; }
}

.tool-section-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}

.tool-status-live {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.tool-status-soon {
  color: var(--landing-text-muted);
  background: rgba(120, 113, 108, 0.1);
  border: 1px solid rgba(120, 113, 108, 0.2);
}

.tool-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--landing-text-subtle);
  max-width: 32rem;
}

/* Tool mockup container */
.tool-mockup {
  background: var(--landing-bg-raised);
  border-radius: 12px;
  border: 1px solid var(--landing-border);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(200, 150, 46, 0.1), 0 0 0 1px rgba(200, 150, 46, 0.05);
}

/* Contact form mockup */
.mockup-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* Booking mockup — calendar */
.mockup-calendar-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--landing-text-heading);
  text-align: center;
  margin-block-end: 0.75rem;
}

.mockup-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.375rem;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--landing-text-muted);
  margin-block-end: 0.375rem;
}

.mockup-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.375rem;
  text-align: center;
}

.mockup-calendar-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--landing-text-subtle);
  margin-inline: auto;
}

.mockup-calendar-grid span.selected {
  background: var(--landing-accent) !important;
  color: #0C0A09 !important;
  font-weight: 700;
  border: none !important;
  box-shadow: none;
}

.mockup-time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 1rem;
}

.mockup-time-slot {
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--landing-text-subtle);
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
}

.mockup-time-slot.selected {
  background: var(--landing-accent) !important;
  color: #0C0A09 !important;
  font-weight: 700;
  border-color: var(--landing-accent) !important;
  box-shadow: none;
}

/* Reviews mockup */
.mockup-review-card {
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  padding: 1rem;
}

.mockup-review-card + .mockup-review-card {
  margin-block-start: 0.75rem;
}

.mockup-stars {
  display: flex;
  gap: 0.25rem;
  margin-block-end: 0.5rem;
}

.mockup-stars i {
  font-size: 0.75rem;
}

.mockup-stars .star-filled {
  color: var(--landing-accent);
}

.mockup-stars .star-empty {
  color: var(--landing-text-muted);
}

.mockup-review-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--landing-text-subtle);
  font-style: italic;
  margin-block-end: 0.5rem;
}

.mockup-review-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--landing-text-muted);
}

/* Feedback mockup */
.mockup-feedback-stars {
  display: flex;
  gap: 0.5rem;
  margin-block-end: 1rem;
}

.mockup-feedback-stars i {
  font-size: 1.25rem;
  cursor: default;
}

.mockup-feedback-textarea {
  height: 4rem;
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  margin-block-end: 0.75rem;
}

.mockup-feedback-submit {
  height: 2.25rem;
  width: 6rem;
  background: var(--landing-accent-gradient);
  border: none;
  border-radius: 6px;
}

/* NPS mockup */
.mockup-nps {
  text-align: center;
}

.mockup-nps-scale {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  margin-block: 1rem;
  flex-wrap: wrap;
}

.mockup-nps-number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--landing-text-subtle);
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
}

.mockup-nps-number.selected {
  background: var(--landing-accent) !important;
  color: #0C0A09 !important;
  border-color: var(--landing-accent) !important;
  box-shadow: none;
}

.mockup-nps-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  color: var(--landing-text-muted);
}

/* ========================================
   Pricing Calculator Mockup (features page)
   ======================================== */

.mockup-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 0;
}

/* Progress dots */
.mockup-pricing-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.25rem;
}
.mockup-pricing-dot {
  width: 24px; height: 24px;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
  background: rgba(255,255,255,0.08);
  color: var(--landing-text-subtle);
}
.mockup-pricing-dot.current {
  background: var(--landing-accent);
  color: #0C0A09;
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(200, 150, 46, 0.2);
}
.mockup-pricing-dot.done {
  background: var(--landing-accent);
  color: #0C0A09;
}
.mockup-pricing-dot.done::after { content: "✓"; }
.mockup-pricing-rule {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.1);
}
.mockup-pricing-rule.done { background: var(--landing-accent); }
.mockup-pricing-step-title {
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.6;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Wizard grid */
.mockup-pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 0.85rem;
  align-items: start;
}
@media (max-width: 480px) {
  .mockup-pricing-grid { grid-template-columns: 1fr; }
}
.mockup-pricing-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--landing-text-heading);
  margin-bottom: 0.15rem;
}
.mockup-pricing-subtitle {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 0.65rem;
}

/* Icon cards */
.mockup-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.mockup-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.7rem 0.4rem;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: var(--landing-bg-default);
  text-align: center;
}
.mockup-pricing-card i {
  font-size: 1.4rem;
  color: var(--landing-accent);
}
.mockup-pricing-card strong {
  font-size: 0.72rem;
  color: var(--landing-text-heading);
}
.mockup-pricing-card.selected {
  border-color: var(--landing-accent);
  background: rgba(200, 150, 46, 0.08);
}
.mockup-pricing-card-check {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  border-radius: 9999px;
  background: var(--landing-accent);
  color: #0C0A09;
  font-size: 0.6rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

/* Nav */
.mockup-pricing-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.mockup-pricing-btn-back, .mockup-pricing-btn-next {
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.mockup-pricing-btn-back {
  border: 1px solid var(--landing-border);
  color: var(--landing-text-subtle);
}
.mockup-pricing-btn-next {
  background: var(--landing-accent);
  color: #0C0A09;
}

/* Total card */
.mockup-pricing-total {
  padding: 0.75rem 0.65rem;
  background: linear-gradient(145deg, #C8962E 0%, #B87333 100%);
  color: #0C0A09;
  border-radius: 10px;
}
.mockup-pricing-total-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 0.15rem;
}
.mockup-pricing-total-value {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}
.mockup-pricing-total-disclaimer {
  font-size: 0.58rem;
  margin-top: 0.25rem;
  opacity: 0.75;
}

.tool-bullets {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tool-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--landing-text-subtle);
  line-height: 1.55;
}

.tool-bullets li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--landing-accent);
  font-weight: 700;
}

/* ============================================================
   Landing v2 polish — header / footer / final CTA / marquee
   ============================================================ */

/* --- Header layout --- */
.landing-header-inner {
  display: grid;
  /* logo + nav grouped at the left, all slack pooled in the trailing track so
     the actions sit flush right (no symmetric "logo moat" of a 1fr auto 1fr). */
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: var(--wa-space-m);
  padding-block: 0.875rem;
}

.landing-header-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.landing-header-logo {
  font-size: 1.5rem;
}

/* Brand wordmark (live text — Plus Jakarta Sans 800; ".io" gold).
   Size is set by the parent's font-size.
   Scoped to .landing-dark: this bundle is also loaded on the dashboard, and
   the --landing-* vars only exist under .landing-dark. Without the scope these
   bare rules would win the cascade on the dashboard (loaded after application
   .css), resolve --landing-* to nothing, and fall back to the link color. */
.landing-dark .wordmark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  color: var(--landing-text-heading);
}

.landing-dark .wordmark-io {
  color: var(--landing-accent);
}

.landing-header .landing-nav {
  justify-self: center;
  gap: 1.75rem;
}

.landing-header .landing-nav-link {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.landing-nav-link.is-active {
  color: var(--landing-text-heading);
}

.landing-header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

/* Keep header CTAs on one line so their full label reserves grid width
   (scoped to the header — the global .btn stays wrappable site-wide). */
.landing-header-actions .btn {
  white-space: nowrap;
}

.landing-header-form {
  margin: 0;
  display: inline-flex;
}

.landing-locale-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--landing-text-subtle);
  padding-inline-end: 2px;
}

@media (max-width: 1024px) {
  .landing-header-inner {
    grid-template-columns: auto 1fr;
  }
  .landing-header .landing-nav {
    grid-column: 1 / -1;
    justify-self: center;
    order: 3;
  }
  .landing-header-actions {
    justify-self: end;
  }
}

@media (max-width: 639px) {
  .landing-header .landing-nav {
    display: none;
  }
}

/* --- Footer layout --- */
/* Warm gold halo over a dark base + a hairline gold top edge. On-brand (matches
   the final-cta orb language), stays legible for light footer text, unmistakably
   "footer," and distinct from every band tone — so the last band never merges
   into it regardless of the zebra parity. */
.landing-footer {
  border-top: 1px solid var(--landing-accent);   /* gold brand line */
  padding-block: 3.5rem 1.75rem;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(200, 150, 46, 0.10), transparent 60%),
    var(--landing-bg-deepest);
}

.landing-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(5, 1fr);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1280px) {
  .landing-footer-grid {
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, 1fr);
    row-gap: 2.5rem;
  }
}

@media (max-width: 1100px) {
  .landing-footer-grid {
    grid-template-columns: minmax(220px, 1.4fr) repeat(2, 1fr);
    row-gap: 2.5rem;
  }
}

.landing-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 22rem;
}

.landing-footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.landing-footer-logo {
  font-size: 1.375rem;
  opacity: 0.9;
}

.landing-footer-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--landing-text-subtle);
}

.landing-footer-made-in {
  margin: 0;
  font-size: 0.75rem;
  color: var(--landing-text-muted);
  letter-spacing: 0.01em;
}

.landing-footer-col {
  display: flex;
  flex-direction: column;
}

.landing-footer-eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--landing-text-muted);
  font-weight: 600;
}

.landing-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.landing-footer-link {
  font-size: 0.875rem;
  color: var(--landing-text-subtle);
  text-decoration: none;
  transition: color 0.15s ease;
}

.landing-footer-link:hover {
  color: var(--landing-text-heading);
}

.landing-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--landing-border);
  font-size: 0.75rem;
  color: var(--landing-text-muted);
}

@media (max-width: 720px) {
  .landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .landing-footer-bottom {
    justify-content: flex-start;
  }
}

/* --- Closing CTA / "floating hero" --- */
.landing-final-cta {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  border-top: 1px solid var(--landing-border);
}

.landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.landing-orb-center {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(200, 150, 46, 0.14), transparent 55%);
}

.landing-final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.landing-final-cta-title {
  font-family: var(--landing-font-display, inherit);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--landing-text-heading);
  margin: 0 auto;
  max-width: 900px;
}

.landing-accent-gradient {
  background: var(--landing-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* background-clip:text + transparent fill renders invisible when selected.
   Restore a solid fill on selection (set both color and -webkit-text-fill-color
   for Firefox/WebKit). Any new gradient-text class needs its own ::selection
   rule — see also .hero-title .accent and .pricing-number-accent. */
.landing-accent-gradient::selection {
  color: #C8962E;
  -webkit-text-fill-color: #C8962E;
  background: highlight;
}

.landing-final-cta-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--landing-text-subtle);
  margin: 1.5rem auto 0;
  max-width: 540px;
}

.landing-final-cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.landing-final-cta-trust {
  font-size: 0.875rem;
  color: var(--landing-text-muted);
  margin-top: 1.125rem;
}

/* --- Echo wave SVG --- */
.landing-echo-waves {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.landing-echo-waves-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
}

/* --- Customer marquee --- */
.landing-customer-logos {
  padding: 1.75rem 0 2rem;
  background: var(--landing-bg-deepest);
  border-top: 1px solid var(--landing-border);
  border-bottom: 1px solid var(--landing-border);
}

.landing-customer-logos-eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--landing-text-muted);
  margin: 0 0 1.25rem;
}

.landing-customer-logos-track {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Marquee: two identical lists side by side; animate the wrapper by -50%
   so the second list lands exactly where the first started — seamless loop.
   `gap` between items lives inside each list (not on the wrapper) and each
   list adds matching `padding-right` so the spacing is preserved between
   the two copies and across the wrap-around. */
.landing-customer-logos-marquee {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: landingMarquee 40s linear infinite;
  will-change: transform;
}

.landing-customer-logos-list {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  margin: 0;
  list-style: none;
}

.landing-customer-logos-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--landing-text-muted);
  font-family: var(--landing-font-display, inherit);
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}

.landing-customer-logos-item i {
  color: var(--landing-border-strong);
  font-size: 1.125rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .landing-customer-logos-marquee {
    animation: none;
  }
}

/* ============================================================
   Hero v2 — bigger type + floating devices (phone, laptop, tablet)
   Scoped to .landing-hero-v2 so the legacy .hero-title rules
   for other pages stay intact.
   ============================================================ */

html { scroll-behavior: smooth; }

.landing-hero-v2 .hero-title {
  font-size: clamp(2.75rem, 5.5vw + 1rem, 5.75rem);
  line-height: 0.98;
  margin: 0;
}

.landing-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 5.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeInUp 0.8s ease-out both;
}

.landing-hero-text wa-tag { margin-bottom: 0.5rem; }

.hero-lede {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--landing-text-subtle);
  max-width: 36rem;
  margin: 0.5rem auto 0;
}

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

.hero-cta-form {
  margin: 0;
}

/* Device stack container */
.hero-device-stack {
  position: relative;
  z-index: 1;
  /* Everything inside is sized as a % of this container, so the whole
     cluster scales as one and the composition (overlap, tilt) is identical
     at every width. Height tracks the width the same way; the max-width is
     the single knob for how big the cluster gets on wide screens. The floor
     keeps the (fixed-height) laptop/NPS content from being clipped by the
     next section once the devices get small on narrow screens. */
  height: clamp(400px, 40vw, 44rem);
  max-width: 110rem;
  margin: 2.5rem auto 0;
  padding-bottom: 4.5rem;
  animation: fadeInUp 0.8s ease-out 0.32s both;
  -webkit-user-select: none;
  user-select: none;
}

/* ===== Phone (left, tilted -7deg, slow float, overlaps laptop) ===== */
.hero-phone {
  position: absolute;
  bottom: 4.5rem;
  left: 7%;
  width: 18%;
  aspect-ratio: 9 / 19;
  background: #0A0806;
  border: 8px solid #1C1917;
  border-radius: 30px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 3px;
  z-index: 2;
  overflow: hidden;
  transform: rotate(-7deg);
  animation: floatSlow 6s ease-in-out infinite;
}

.hero-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 12px;
  background: #0A0806;
  border-radius: 999px;
  z-index: 2;
}

.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--landing-bg-default);
  border-radius: 22px;
  padding: 22px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-phone-eyebrow {
  /* Fixed at the design size on desktop; scales down on narrow screens so
     the phone's text stays inside the shrinking frame (e.g. the email
     placeholder no longer clips at the screen edge). */
  font-size: min(0.625rem, 0.9vw);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--landing-text-muted);
  margin: 0 0 0 4px;
}

.hero-phone-form {
  flex: 1;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 10px;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-phone-lede {
  font-size: min(0.6875rem, 1vw);
  font-weight: 600;
  color: var(--landing-text-muted);
  margin: 0 0 2px;
}

.hero-phone-input {
  height: 26px;
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: min(0.6875rem, 1vw);
  color: var(--landing-text-subtle);
}

.hero-phone-textarea {
  flex: 1;
  min-height: 44px;
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  padding: 7px 8px;
  font-size: min(0.6875rem, 1vw);
  color: var(--landing-text-muted);
  font-style: italic;
}

.hero-phone-submit {
  margin-top: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--landing-accent);
  color: #1A1410;
  font-weight: 700;
  font-size: min(0.6875rem, 1vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Reason dropdown — same field as an input, with a chevron on the right. */
.hero-phone-select {
  justify-content: space-between;
  color: var(--landing-text-muted);
}
.hero-phone-select .icon {
  font-size: min(0.7rem, 1vw);
  opacity: 0.65;
}

/* Attached photo — thumbnail + filename + size + a confirmed check. Shows the
   form can take a photo, and fills the phone so it doesn't read as empty. */
.hero-phone-attach {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  background: var(--landing-bg-default);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
}
.hero-phone-attach-thumb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, #3d7f93 0%, #b98a37 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: min(0.6875rem, 1vw);
}
.hero-phone-attach-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: min(0.6875rem, 1vw);
  color: var(--landing-text-subtle);
}
.hero-phone-attach-size {
  flex-shrink: 0;
  font-size: min(0.5625rem, 0.82vw);
  color: var(--landing-text-muted);
}
.hero-phone-attach-check {
  flex-shrink: 0;
  font-size: min(0.75rem, 1.1vw);
  color: var(--landing-accent);
}

/* ===== Laptop (center, back, no float) ===== */
.hero-laptop {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 54.7%;
  max-width: 92%;
  z-index: 1;
  /* Scale the browser's inner content with the frame: children size in cqw
     (1cqw = 1% of the laptop width; the design is tuned for a 700px laptop,
     so 7px = 1cqw). max(design, …cqw) floors at the design size, so narrow
     laptops keep their sizing and only wide ones scale up — which fills the
     gap that opened between the pitch and the calendar when the laptop grew. */
  container-type: inline-size;
}

.hero-laptop-frame {
  background: #1C1917;
  border: 1px solid var(--landing-bg-subtle);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.65);
}

.hero-laptop-chrome {
  display: flex;
  align-items: center;
  gap: max(10px, 1.43cqw);
  padding: max(10px, 1.43cqw) max(14px, 2cqw);
  background: var(--landing-bg-subtle);
  border: 1px solid var(--landing-border);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

.hero-laptop-dots {
  display: flex;
  gap: 5px;
}

.hero-laptop-dots span {
  width: max(10px, 1.43cqw);
  height: max(10px, 1.43cqw);
  border-radius: 50%;
}
.hero-laptop-dots span:nth-child(1) { background: #e35c5c; }
.hero-laptop-dots span:nth-child(2) { background: #d9a441; }
.hero-laptop-dots span:nth-child(3) { background: #3ec37d; }

.hero-laptop-address {
  flex: 1;
  background: var(--landing-bg-default);
  border-radius: 6px;
  padding: max(4px, 0.57cqw) max(10px, 1.43cqw);
  font-size: max(0.6875rem, 1.57cqw);
  color: var(--landing-text-muted);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

.hero-laptop-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: max(16px, 2.29cqw);
  padding: max(22px, 3.14cqw);
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  min-height: max(240px, 34.29cqw);
}

.hero-laptop-pitch {
  display: flex;
  flex-direction: column;
  gap: max(10px, 1.43cqw);
  text-align: left;
}

.hero-laptop-eyebrow {
  font-size: max(0.625rem, 1.43cqw);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--landing-text-muted);
}

.hero-laptop-title {
  font-family: var(--landing-font-display, inherit);
  font-size: max(1.75rem, 4cqw);
  font-weight: 800;
  line-height: 1.02;
  color: var(--landing-text-heading);
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-laptop-lede {
  font-size: max(0.6875rem, 1.57cqw);
  color: var(--landing-text-subtle);
  margin: 0;
  max-width: max(14rem, 32cqw);
}

.hero-laptop-ctas {
  display: flex;
  gap: max(6px, 0.86cqw);
  margin-top: max(4px, 0.57cqw);
  flex-wrap: wrap;
}

.hero-laptop-cta {
  display: inline-flex;
  align-items: center;
  gap: max(4px, 0.57cqw);
  padding: max(7px, 1cqw) max(12px, 1.71cqw);
  border-radius: 999px;
  font-weight: 700;
  font-size: max(0.6875rem, 1.57cqw);
  line-height: 1;
}

.hero-laptop-cta-primary {
  background: var(--landing-accent);
  color: #1A1410;
}

.hero-laptop-cta-ghost {
  border: 1px solid var(--landing-border);
  color: var(--landing-text-subtle);
}

/* Booking calendar inside the laptop */
.hero-booking {
  position: relative;
  text-align: left;
}

.hero-booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: max(10px, 1.43cqw);
}

.hero-booking-month {
  font-size: max(0.6875rem, 1.57cqw);
  font-weight: 600;
  color: var(--landing-text-subtle);
}

.hero-booking-nav {
  display: flex;
  gap: max(6px, 0.86cqw);
  color: var(--landing-text-muted);
  font-size: max(0.625rem, 1.43cqw);
}

.hero-booking-day-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: max(3px, 0.43cqw);
  margin-bottom: max(6px, 0.86cqw);
}

.hero-booking-day-labels span {
  font-size: max(0.5625rem, 1.29cqw);
  color: var(--landing-text-muted);
  text-align: center;
}

.hero-booking-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: max(3px, 0.43cqw);
}

.hero-booking-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(0.625rem, 1.43cqw);
  font-weight: 500;
  color: var(--landing-text-subtle);
}

.hero-booking-cell.is-past {
  color: var(--landing-text-muted);
  opacity: 0.5;
}

.hero-booking-cell.is-active {
  background: var(--landing-accent);
  color: #1A1410;
  font-weight: 700;
}

.hero-booking-slots {
  margin-top: max(10px, 1.43cqw);
  display: flex;
  gap: max(4px, 0.57cqw);
  flex-wrap: wrap;
}

.hero-booking-slot {
  padding: max(3px, 0.43cqw) max(8px, 1.14cqw);
  font-size: max(0.625rem, 1.43cqw);
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--landing-border);
  color: var(--landing-text-subtle);
}

.hero-booking-slot.is-selected {
  border-color: var(--landing-accent);
  background: rgba(200, 150, 46, 0.1);
  color: var(--landing-accent);
}

.hero-laptop-base {
  height: 10px;
  background: linear-gradient(180deg, #2E2926, #0A0806);
  margin: 0 -20px;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.5);
}

.hero-laptop-foot {
  height: 3px;
  background: #14100E;
  width: 80px;
  margin: 0 auto;
  border-radius: 0 0 8px 8px;
}

/* ===== NPS tablet (right, tilted +8deg, fast float, overlaps laptop) ===== */
.hero-nps-card {
  position: absolute;
  bottom: 4.5rem;
  right: 8%;
  width: 18.7%;
  aspect-ratio: 3 / 4;
  background: #0A0806;
  border: 10px solid #1C1917;
  border-radius: 24px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 2;
  transform: rotate(8deg);
  animation: floatFast 7s ease-in-out infinite;
}

.hero-nps-screen {
  width: 100%;
  height: 100%;
  background: var(--landing-bg-default);
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.hero-nps-eyebrow {
  font-size: min(0.625rem, 0.9vw);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--landing-text-muted);
  margin: 0;
}

.hero-nps-question {
  font-family: var(--landing-font-display, inherit);
  font-size: min(0.8125rem, 1.18vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--landing-text-heading);
  margin: 0;
}

.hero-nps-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 3px;
}

.hero-nps-cell {
  min-width: 0;
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(0.5625rem, 0.82vw);
  font-weight: 700;
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  color: var(--landing-text-subtle);
}

.hero-nps-cell.is-selected {
  background: var(--landing-accent);
  border-color: var(--landing-accent);
  color: #1A1410;
}

.hero-nps-labels {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: min(0.5625rem, 0.82vw);
  line-height: 1.2;
  color: var(--landing-text-muted);
}

.hero-nps-labels span {
  flex: 1;
  max-width: 48%;
}

.hero-nps-labels span:last-child {
  text-align: right;
}

/* Follow-up question + a filled-in comment, so the survey reads as a real
   response instead of a mostly-empty card. */
.hero-nps-followup {
  margin: 2px 0 0;
  font-size: min(0.6875rem, 1vw);
  font-weight: 600;
  line-height: 1.25;
  color: var(--landing-text-subtle);
}
.hero-nps-comment {
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 6px;
  padding: 7px 8px;
  font-size: min(0.625rem, 0.9vw);
  line-height: 1.35;
  color: var(--landing-text-muted);
  font-style: italic;
}

.hero-nps-submit {
  margin-top: auto;
  height: 26px;
  border-radius: 999px;
  background: var(--landing-accent);
  color: #1A1410;
  font-weight: 700;
  font-size: min(0.625rem, 0.9vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Float animations ===== */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50%      { transform: translateY(-10px) rotate(-7deg); }
}
@keyframes floatFast {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50%      { transform: translateY(-8px) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone,
  .hero-nps-card,
  .landing-hero-text,
  .hero-device-stack {
    animation: none;
  }
}

/* The richer form/survey content only fits once the devices are big enough.
   Below ~1100px the shrunken phone/NPS can't hold it (the submit would clip),
   so drop the extra fields and fall back to the simpler mockups — which still
   fill nicely: the message box grows, the NPS keeps its score + labels. */
@media (max-width: 1099px) {
  .hero-phone-select,
  .hero-phone-attach,
  .hero-nps-followup,
  .hero-nps-comment {
    display: none;
  }
}

/* Responsive: hide phone + NPS card under 768px, scale + center the laptop */
@media (max-width: 767px) {
  .hero-phone,
  .hero-nps-card { display: none; }

  .hero-laptop {
    width: 100%;
    max-width: 480px;
    transform: translateX(-50%) scale(0.95);
  }

  .hero-device-stack {
    height: 340px;
    padding-bottom: 0;
  }

  .landing-hero-text {
    padding-block: 4rem 2rem;
  }
}

/* ========================================
   HELP CENTER (/help and /help/*)
   ======================================== */
.help-main {
  padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  min-height: calc(100vh - 12rem);
}

.help-shell {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .help-shell { grid-template-columns: minmax(0, 1fr); }
}

.help-sidebar {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  padding: 1.25rem 1rem;
  background: var(--landing-bg-card, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
  border-radius: 0.875rem;
}

@media (max-width: 900px) {
  .help-sidebar {
    position: static;
    padding: 1rem;
  }
}

.help-sidebar-nav { display: flex; flex-direction: column; gap: 1.25rem; }

.help-sidebar-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--landing-text-subtle);
  margin: 0;
}

.help-sidebar-list,
.help-sidebar-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.help-sidebar-sublist {
  margin-top: 0.25rem;
  margin-inline-start: 0.85rem;
  border-inline-start: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
  padding-inline-start: 0.85rem;
}

.help-sidebar-link,
.help-sidebar-sublink {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--landing-text-body);
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.help-sidebar-sublink { font-size: 0.85rem; padding: 0.35rem 0.6rem; }

.help-sidebar-link:hover,
.help-sidebar-sublink:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--landing-text);
}

.help-sidebar-link.is-active,
.help-sidebar-sublink.is-active {
  background: rgba(200, 150, 46, 0.12);
  color: var(--landing-accent, #C8962E);
  font-weight: 600;
}

.help-sidebar-contact {
  padding-top: 1rem;
  border-top: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.help-content {
  min-width: 0;
  max-width: 44rem;
}

.help-breadcrumb {
  margin-block-end: 1rem;
  font-size: 0.825rem;
  color: var(--landing-text-subtle);
}

.help-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.help-breadcrumb a {
  color: var(--landing-text-subtle);
  text-decoration: none;
}

.help-breadcrumb a:hover { color: var(--landing-text); }

.help-breadcrumb [aria-current="page"] { color: var(--landing-text); }

.help-breadcrumb-sep {
  color: var(--landing-text-subtle);
  opacity: 0.5;
}

.help-article-header { margin-block-end: 2rem; }

.help-article-title {
  font-family: "Plus Jakarta Sans", -apple-system, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.875rem, 3vw + 0.5rem, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--landing-text);
}

.help-article-intro {
  margin-block-start: 0.85rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--landing-text-subtle);
}

.help-article-body p { line-height: 1.7; }

.help-article-section {
  margin-block-start: 2.25rem;
}

.help-article-section > .section-heading {
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.625rem);
  margin-block-end: 0.85rem;
}

.help-article-subtle {
  color: var(--landing-text-subtle);
  margin-block-start: 0.5rem;
  line-height: 1.65;
}

.help-article-subhead {
  font-family: var(--landing-font-display, inherit);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--landing-text);
  margin: 1.5rem 0 0.4rem;
  letter-spacing: -0.01em;
}

.help-article-cta {
  text-align: center;
  padding-block-start: 2.5rem;
  border-top: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
}

.help-article-see-also {
  margin-block-start: 3rem;
  padding: 1.25rem 1.25rem;
  background: var(--landing-bg-card, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
  border-radius: 0.75rem;
}

.help-article-see-also-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--landing-text-subtle);
  margin: 0 0 0.5rem;
}

.help-article-see-also ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.help-article-see-also a {
  color: var(--landing-text-body);
  text-decoration: none;
  font-weight: 600;
}

.help-article-see-also a:hover { color: var(--landing-accent, #C8962E); }

.help-bullet-list {
  margin: 0.5rem 0 0;
  padding-inline-start: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.65;
}

.help-bullet-list li { color: var(--landing-text-body); }

/* Help-center index — category cards */
.help-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
  margin-block-start: 0.5rem;
}

.help-category-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: var(--landing-bg-card, rgba(255, 255, 255, 0.03));
  border: 1px solid var(--landing-border, rgba(255, 255, 255, 0.08));
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, border-color 0.15s, background-color 0.15s;
}

.help-category-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 150, 46, 0.4);
}

.help-category-card i {
  font-size: 1.5rem;
  color: var(--landing-accent, #C8962E);
}

.help-category-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--landing-text);
}

.help-category-summary {
  color: var(--landing-text-subtle);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ==========================================================================
   Pre-launch frame — silent marketing launch ahead of the product (2026).
   Honestly reframes the present-tense copy as a preview. ALL rules here are
   removed at launch alongside their markup — see the CLAUDE.md launch-day
   checklist (banner, hero/final-CTA launch notes, help pre-launch note).
   ========================================================================== */

/* Slim, non-sticky site-wide bar (base.njk, above the header on every page). */
.prelaunch-banner {
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--landing-accent);
  background: var(--landing-bg-raised);
  border-bottom: 1px solid var(--landing-border);
}

/* Mobile-visible launch caption beside the disabled hero / final-CTA buttons
   (title="" tooltips never show on touch devices, so the explanation is here). */
.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--landing-accent);
}

/* In the home hero the trust line is gone, so sit the launch note right
   under the CTAs instead of floating a full flex-gap below them. */
.launch-note-hero {
  margin-top: -0.5rem;
}

/* Subtle note at the top of every help page / article / embed guide. */
.help-prelaunch-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.85rem;
  color: var(--landing-text-subtle);
  background: var(--landing-bg-raised);
  border: 1px solid var(--landing-border);
  border-radius: 8px;
}
.help-prelaunch-note .icon {
  color: var(--landing-accent);
  flex-shrink: 0;
}

