/* EBB Landing Page — consolidated stylesheet
 *
 * Single source for index.html landing styles (architectural refactor).
 * Migrated from: landing-v2, landing-components, landing-viewports,
 * landing-motion, landing-responsive, frontend/pages/home.css, index-screenshots
 *
 * SECTION MAP
 * ─────────────────────────────────────────
 * 1. DESIGN TOKENS          (:root variables)
 * 2. RESET                  (*, html)
 * 3. TYPOGRAPHY             (.text-display-*, .text-body-*, .text-label)
 * 4. LAYOUT                 (.container, utilities)
 * 5. SITE CHROME            (.site-header, .site-footer)
 * 6. BUTTONS                (.btn*)
 * 7. CARDS                  (.card*, .artifact-card*, .pricing-card*)
 * 8. PRODUCT WINDOW         (.product-window*)
 * 9. GLASS                  (.glass*)
 * 10. SECTION HEADERS       (.section-header*)
 * 11. FAQ COMPONENTS        (.faq-*)
 * 12. JOURNEY               (.viewport-section--journey*, .journey-*)
 * 13. PAYOFF                (.payoff-*)
 * 14. CONTRAST / WORKFLOW   (.why-different*, .workflow-*)
 * 15. PRICING               (.founder-pricing*, .founder-*)
 * 16. FAQ SECTION           (.viewport-section--faq)
 * 17. FINAL CTA             (.viewport-section--close, .final-close*)
 * 18. MOTION                (.journey-animate*, .workflow-flow*, reduced-motion)
 * 19. RESPONSIVE            (@media breakpoints)
 * 20. HERO                  (.hero*, .auth-message)
 * 21. SCREENSHOT OVERRIDES  (hero background presentation)
 *
 * Global chrome (header/footer) remains in /css/components.css
 * Site-wide base remains in /css/styles.css
 */


/* ==========================================================
   DESIGN TOKENS / FOUNDATION
   Source: css/landing-v2.css
   ========================================================== */

/* EBB Landing Page V2 — Foundation: tokens, reset, typography, layout */
/* -------------------------------------------------------------------------- */
/* Design tokens                                                               */
/* -------------------------------------------------------------------------- */
:root {
  /* Color — background & surfaces */
  --color-bg-base: #0c1018;
  --color-bg-elevated: #121826;
  --color-surface-card: rgba(18, 24, 38, 0.88);
  --color-surface-glass: rgba(18, 24, 38, 0.72);

  /* Color — borders */
  --color-border-default: rgba(42, 49, 66, 1);
  --color-border-subtle: rgba(148, 163, 184, 0.18);
  --color-border-active: rgba(167, 139, 250, 0.45);

  /* Color — text hierarchy */
  --color-text-primary: #f1f5f9;
  --color-text-secondary: #e5e7eb;
  --color-text-body: #9aa3b8;
  --color-text-muted: #64748b;
  --color-text-quaternary: rgba(148, 163, 184, 0.55);

  /* Color — accent (intelligence purple) */
  --color-accent-primary: #a78bfa;
  --color-accent-secondary: #c4b5fd;
  --color-accent-deep: #6c47ff;
  --color-accent-glow: rgba(43, 28, 203, 0.55);

  /* Typography — families */
  --font-display: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-system: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Typography — display scale */
  --text-display-xl: clamp(2.25rem, 4vw, 3.5rem);
  --text-display-l: clamp(1.75rem, 3vw, 2.5rem);
  --text-display-m: clamp(1.375rem, 2.5vw, 1.875rem);

  /* Typography — body scale */
  --text-body-l: 1.125rem;
  --text-body-s: 0.875rem;
  --text-body-xs: 0.8125rem;
  --text-label: 0.75rem;

  /* Typography — weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Typography — line heights */
  --leading-display: 1.2;
  --leading-body: 1.5;
  --leading-body-tight: 1.35;
  --leading-label: 1.25;

  /* Typography — letter spacing */
  --tracking-display: -0.02em;
  --tracking-system: 0.04em;
  --tracking-normal: 0;

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-void: 7.5rem;

  /* Layout — containers */
  --container-content: 70rem;
  --container-product: 80rem;
  --container-measure: 35rem;
  --container-padding: 3rem;
  --container-padding-narrow: 1rem;

  /* Layout — chrome */
  --nav-height: 110px;
  --z-base: 1;
  --z-elevated: 10;
  --z-sticky: 90;
  --z-nav: 100;
  --z-skip: 200;

  /* Border radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.875rem;
  --radius-card: 0.875rem;
  --radius-showcase: 1.125rem;
  --radius-window: 1.125rem;
  --radius-pill: 624.9375rem;

  /* Shadows — elevation system */
  --shadow-elevation-1: none;
  --shadow-elevation-2: 0 4px 16px rgba(0, 0, 0, 0.24);
  --shadow-elevation-3: 0 16px 48px rgba(0, 0, 0, 0.32);
  --shadow-elevation-4: 0 28px 64px rgba(0, 0, 0, 0.38);

  /* Glass */
  --glass-blur: 12px;
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Focus */
  --focus-ring: 0 0 0 2px var(--color-bg-base), 0 0 0 4px var(--color-accent-primary);

  /* Breakpoints (reference — applied in landing-responsive.css) */
  --bp-mobile-max: 47.9375rem;
  --bp-tablet-min: 48rem;
  --bp-tablet-max: 63.9375rem;
  --bp-laptop-min: 64rem;
  --bp-laptop-max: 79.9375rem;
  --bp-desktop-min: 80rem;
}

/* -------------------------------------------------------------------------- */
/* Reset & base                                                                */
/* -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* -------------------------------------------------------------------------- */
/* Typography                                                                  */
/* -------------------------------------------------------------------------- */
.text-display-xl {
  font-size: var(--text-display-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
}

.text-display-l {
  font-size: var(--text-display-l);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
}

.text-body-l {
  font-size: var(--text-body-l);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  color: var(--color-text-body);
}

.text-label {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-system);
  text-transform: uppercase;
  color: var(--color-accent-primary);
}

.text-measure {
  max-width: var(--container-measure);
}

/* -------------------------------------------------------------------------- */
/* Accessibility — skip link & focus                                           */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Layout — containers                                                         */
/* -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-content);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container--product {
  max-width: var(--container-product);
}

/* -------------------------------------------------------------------------- */
/* Layout — grid utilities                                                     */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Layout — stack & spacing utilities                                          */
/* -------------------------------------------------------------------------- */
.align-center {
  align-items: center;
}

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

/* -------------------------------------------------------------------------- */
/* Site chrome placeholders (structure only — Sprint 1)                        */
/* -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: var(--z-nav);
  height: var(--nav-height);
  width: 100%;
}

.site-footer {
  width: 100%;
}


/* ==========================================================
   COMPONENTS
   Source: css/landing-components.css
   ========================================================== */

/* EBB Landing Page V2 — Foundation: reusable components */
/* -------------------------------------------------------------------------- */
/* C04 — ViewportSection wrapper                                               */
/* -------------------------------------------------------------------------- */
.viewport-section {
  position: relative;
  width: 100%;
  min-height: 0;
}

/* -------------------------------------------------------------------------- */
/* Section header pattern (C — section header component)                       */
/* -------------------------------------------------------------------------- */
.section-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section-header__label {
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-label);
  letter-spacing: var(--tracking-system);
  text-transform: uppercase;
  color: var(--color-accent-primary);
}

.section-header__title {
  font-size: var(--text-display-l);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
}

.section-header__copy {
  font-size: var(--text-body-l);
  font-weight: var(--weight-regular);
  line-height: var(--leading-body);
  color: var(--color-text-body);
  max-width: var(--container-measure);
}

/* -------------------------------------------------------------------------- */
/* C02 — PrimaryButton                                                         */
/* -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: var(--text-body-s);
  font-weight: var(--weight-medium);
  line-height: var(--leading-label);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    color 200ms ease;
}

.btn--primary {
  background: rgba(108, 71, 255, 0.18);
  border-color: var(--color-border-active);
  color: var(--color-text-primary);
  box-shadow: var(--shadow-elevation-2);
}

.btn--primary:hover {
  background: rgba(108, 71, 255, 0.28);
  border-color: var(--color-accent-secondary);
  color: var(--color-text-primary);
}

.btn--primary:active {
  background: rgba(108, 71, 255, 0.22);
}

.btn--primary--dominant {
  padding: 0.9375rem 1.625rem;
  font-size: var(--text-body-l);
  font-weight: var(--weight-semibold);
  background:
    linear-gradient(
      180deg,
      rgba(142, 112, 255, 1) 0%,
      rgba(98, 64, 232, 1) 100%
    );
  border-color: rgba(210, 196, 255, 0.52);
  box-shadow:
    var(--shadow-elevation-3),
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 32px rgba(76, 48, 210, 0.38),
    0 0 36px rgba(108, 71, 255, 0.28);
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.btn--primary--dominant:hover {
  background:
    linear-gradient(
      180deg,
      rgba(155, 126, 255, 1) 0%,
      rgba(108, 72, 242, 1) 100%
    );
  border-color: rgba(220, 208, 255, 0.68);
  transform: translateY(-1px);
  box-shadow:
    var(--shadow-elevation-3),
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 20px 48px rgba(88, 56, 220, 0.52),
    0 0 44px rgba(124, 92, 255, 0.34);
}

/* -------------------------------------------------------------------------- */
/* C08 — SystemCard                                                            */
/* -------------------------------------------------------------------------- */
.card {
  width: 100%;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-card);
  background: var(--color-surface-card);
  overflow: hidden;
}

.card__inner {
  padding: var(--space-xl);
}

.card--system {
  box-shadow: var(--shadow-elevation-2);
}

.card--system .card__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* -------------------------------------------------------------------------- */
/* C09 — ShowcaseCard                                                          */
/* -------------------------------------------------------------------------- */
.card--showcase .card__inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25rem;
}

/* -------------------------------------------------------------------------- */
/* C05 — ProductWindow (shell only — no images Sprint 1)                         */
/* -------------------------------------------------------------------------- */
.product-window {
  position: relative;
  width: 100%;
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-window);
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-elevation-3);
  overflow: hidden;
}

.product-window--elevation-4 {
  box-shadow: var(--shadow-elevation-4);
}

.product-window__chrome {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%
    );
}

.product-window__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.product-window__dots span {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.product-window__dots span:nth-child(1) {
  background: rgba(248, 113, 113, 0.55);
}

.product-window__dots span:nth-child(2) {
  background: rgba(250, 204, 21, 0.55);
}

.product-window__dots span:nth-child(3) {
  background: rgba(74, 222, 128, 0.55);
}

.product-window__title {
  font-size: var(--text-body-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

.product-window__rim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.product-window__content {
  position: relative;
  min-height: 0;
  background: #0a0e14;
}

/* -------------------------------------------------------------------------- */
/* Glass surface system                                                        */
/* -------------------------------------------------------------------------- */
.glass {
  background: var(--color-surface-glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.glass--pill {
  border-radius: var(--radius-pill);
  padding: var(--space-xs) var(--space-md);
}

/* -------------------------------------------------------------------------- */
/* Phase label pill (C06 — shell)                                              */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Outcome block (C10 — shell)                                                 */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* Elevation utility classes                                                     */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* C01 — SiteNav                                                               */
/* -------------------------------------------------------------------------- */
.site-header--top.is-scrolled {
  background: rgba(12, 16, 24, 0.88);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

/* -------------------------------------------------------------------------- */
/* Hero signup                                                                 */
/* -------------------------------------------------------------------------- */
.hero-signup {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  max-width: 28rem;
  padding: 0.3125rem;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: calc(var(--radius-md) + 0.125rem);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

/* -------------------------------------------------------------------------- */
/* Journey — outcomes, badges, chips (Sprint 3)                                */
/* -------------------------------------------------------------------------- */
.journey-outcome {
  margin: 0;
  font-size: var(--text-body-s);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  text-align: center;
}

.journey-badges,
.journey-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-badge,
.journey-chip {
  font-size: var(--text-body-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-body);
  white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/* C13 — ArtifactCard (Sprint 4)                                               */
/* -------------------------------------------------------------------------- */
.artifact-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-card);
  background: var(--color-surface-card);
  box-shadow: var(--shadow-elevation-2);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.artifact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow:
    var(--shadow-elevation-3),
    0 0 32px rgba(76, 48, 210, 0.1);
}

.artifact-card__preview {
  overflow: hidden;
  border-radius: calc(var(--radius-card) - 0.25rem);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: #0a0e14;
  aspect-ratio: 16 / 10;
}

.artifact-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.artifact-card:hover .artifact-card__image {
  transform: scale(1.02);
}

.artifact-card__title {
  margin: 0;
  font-size: var(--text-body-s);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-label);
  color: var(--color-text-primary);
}

.artifact-card__desc {
  margin: 0;
  font-size: var(--text-body-xs);
  line-height: var(--leading-body-tight);
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------- */
/* C19 — PricingCard (Sprint 6)                                                */
/* -------------------------------------------------------------------------- */
.pricing-card .card__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
}

.pricing-card__name {
  margin: 0;
  font-size: var(--text-body-l);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-label);
  color: var(--color-text-primary);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
}

.pricing-card__amount {
  font-size: var(--text-display-m);
  font-weight: var(--weight-semibold);
  line-height: 1;
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
}

.pricing-card__term {
  font-size: var(--text-body-s);
  color: var(--color-text-muted);
}

.pricing-card__desc {
  margin: 0;
  font-size: var(--text-body-s);
  line-height: var(--leading-body);
  color: var(--color-text-body);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card__features li {
  position: relative;
  padding-left: 1rem;
  font-size: var(--text-body-s);
  line-height: var(--leading-body-tight);
  color: var(--color-text-body);
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: var(--color-accent-primary);
}

.pricing-card__cta {
  width: 100%;
  margin-top: var(--space-sm);
}

.pricing-card__badge {
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: var(--radius-pill);
  font-size: var(--text-label);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-system);
  text-transform: uppercase;
  color: var(--color-accent-secondary);
  background: rgba(108, 71, 255, 0.1);
}

.pricing-card--featured {
  border-color: rgba(167, 139, 250, 0.24);
  box-shadow:
    var(--shadow-elevation-3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(76, 48, 210, 0.1);
}

/* -------------------------------------------------------------------------- */
/* C20 — FAQAccordion (Sprint 8)                                               */
/* -------------------------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
}

.faq-item {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-item__heading {
  margin: 0;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: var(--text-body-s);
  font-weight: var(--weight-medium);
  line-height: var(--leading-body-tight);
  color: var(--color-text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  transition: transform 250ms ease, color 250ms ease;
}

.faq-item.is-open .faq-item__trigger::after {
  content: "\2212";
  color: var(--color-accent-primary);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 250ms ease;
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__panel-inner {
  overflow: hidden;
}

.faq-item__panel-inner p {
  margin: 0;
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--text-body-s);
  line-height: var(--leading-body);
  color: var(--color-text-body);
}


/* ==========================================================
   VIEWPORT SECTIONS
   Source: css/landing-viewports.css
   ========================================================== */

/* EBB Landing Page V2 — Viewport composition (Sprint 2–3) */
/* -------------------------------------------------------------------------- */
/* Shared hero viewport                                                        */
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
/* VP01 — Arrival                                                              */
/* -------------------------------------------------------------------------- */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.hero-backdrop__beam {
  position: absolute;
  top: -10%;
  left: 50%;
  width: min(60rem, 130vw);
  height: min(80rem, 140vh);
  transform: translateX(-50%);
  background: radial-gradient(
  ellipse 45% 35% at 50% 30%,
  rgba(255,180,90,.28) 0%,
  rgba(124,92,255,.18) 30%,
  rgba(43,28,203,.08) 55%,
  transparent 85%

  );
}

.hero-backdrop__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(0.5px);
}

.hero-backdrop__glow--primary {
  top: 8%;
  left: 50%;
  width: min(36rem, 72vw);
  height: min(36rem, 52vw);
  transform: translateX(-50%);
  background: radial-gradient(
    circle at 50% 50%,
    rgba(108, 71, 255, 0.24) 0%,
    transparent 68%
  );
}

.hero-backdrop__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 42%,
      transparent 0%,
      rgba(12, 16, 24, 0.35) 72%,
      rgba(12, 16, 24, 0.82) 100%
    );
}

.hero-backdrop__horizon {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(72rem, 140vw);
  height: 14rem;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse 50% 100% at 50% 100%,
    rgba(108, 71, 255, 0.16) 0%,
    transparent 72%
  );
}

/* -------------------------------------------------------------------------- */
/* VP02 — Product appears                                                      */
/* -------------------------------------------------------------------------- */
.product-window__glow {
  position: absolute;
  inset: 12% 8% 8%;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(108, 71, 255, 0.34) 0%,
    rgba(43, 28, 203, 0.12) 38%,
    transparent 72%
  );
  pointer-events: none;
}

.product-window__content {
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------------------------- */
/* Journey intro + VP03–VP09 (Sprint 3)                                        */
/* -------------------------------------------------------------------------- */
.viewport-section--journey-intro {

  background: linear-gradient(to bottom,
      #11132a 0%,
      #120f30 100%
      /* page background */
    );

}

.journey-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin-inline: auto;
  max-width: var(--container-measure);
  text-align: center;
}

.journey-intro__title {
  text-wrap: balance;
}

.journey-intro__copy {
  color: var(--color-text-body);
}

.viewport-section--journey {
  display: flex;
  align-items: center;
  min-height: 90svh;
  padding-block: var(--space-3xl);
}

.journey-beat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  width: 100%;
}

.journey-beat__header {
  align-items: center;
  text-align: center;
  max-width: var(--container-measure);
}

.journey-beat__copy {
  margin: 0;
  color: var(--color-text-body);
}

.journey-beat__window {
  width: 100%;
  border-color: rgba(167, 139, 250, 0.14);
  box-shadow:
    var(--shadow-elevation-3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 96px rgba(0, 0, 0, 0.38);
}

.journey-beat__window .product-window__glow {
  inset: 10% 8% 8%;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(108, 71, 255, 0.26) 0%,
    rgba(43, 28, 203, 0.08) 40%,
    transparent 72%
  );
}

.journey-beat__screenshot {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  vertical-align: middle;
}

.viewport-section--journey-cover .journey-beat__window--cover {
  border-color: rgba(167, 139, 250, 0.22);
  box-shadow:
    var(--shadow-elevation-4),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 40px 120px rgba(0, 0, 0, 0.45),
    0 0 96px rgba(76, 48, 210, 0.14);
}

.viewport-section--journey-cover .journey-beat__window--cover .product-window__glow {
  background: radial-gradient(
    circle at 50% 42%,
    rgba(108, 71, 255, 0.36) 0%,
    rgba(43, 28, 203, 0.12) 38%,
    transparent 72%
  );
}

.viewport-section--journey-payoff .journey-beat__window {
  border-color: rgba(167, 139, 250, 0.18);
}

/* -------------------------------------------------------------------------- */
/* VP10 — Everything EBB Creates (Sprint 4)                                    */
/* -------------------------------------------------------------------------- */
.container--showcase {
  max-width: 87.5rem;
}

.viewport-section--payoff {
  padding-block: var(--space-void) var(--space-3xl);
  background: var(--color-bg-base);
}

.payoff-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.payoff-showcase__header {
  max-width: var(--container-measure);
}

.payoff-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  width: 100%;
}

.payoff-close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--container-measure);
  text-align: center;
}

.payoff-close__statement {
  margin: 0;
  font-size: var(--text-display-m);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
  text-wrap: balance;
}

.payoff-close__note {
  margin: 0;
  font-size: var(--text-body-s);
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------- */
/* VP11 — Why EBB Is Different (Sprint 5)                                      */
/* -------------------------------------------------------------------------- */
.container--contrast {
  max-width: 75rem;
}

.viewport-section--contrast {
  padding-block: var(--space-void) var(--space-3xl);
  background: var(--color-bg-base);
}

.why-different {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.why-different__header {
  max-width: var(--container-measure);
}

.why-different__comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  width: 100%;
}

.workflow-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border-default);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.02);
}

.workflow-flow__title {
  margin: 0;
  font-size: var(--text-body-s);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-system);
  text-transform: uppercase;
  text-align: center;
}

.workflow-flow--traditional {
  border-color: rgba(148, 163, 184, 0.12);
  background: rgba(255, 255, 255, 0.015);
}

.workflow-flow--traditional .workflow-flow__title {
  color: var(--color-text-muted);
}

.workflow-flow--traditional .workflow-flow__step {
  color: var(--color-text-quaternary);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.1);
}

.workflow-flow--traditional .workflow-flow__step:not(:last-child)::after {
  background: rgba(148, 163, 184, 0.2);
}

.workflow-flow--ebb {
  border-color: rgba(167, 139, 250, 0.22);
  background:
    linear-gradient(
      180deg,
      rgba(108, 71, 255, 0.08) 0%,
      rgba(108, 71, 255, 0.02) 100%
    );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(76, 48, 210, 0.08);
}

.workflow-flow--ebb .workflow-flow__title {
  color: var(--color-accent-primary);
}

.workflow-flow--ebb .workflow-flow__track {
  position: relative;
  padding-left: var(--space-md);
}

.workflow-flow--ebb .workflow-flow__track::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  bottom: 0.75rem;
  left: 0.4375rem;
  width: 2px;
  border-radius: 1px;
  background: linear-gradient(
    180deg,
    rgba(167, 139, 250, 0.15) 0%,
    rgba(167, 139, 250, 0.55) 50%,
    rgba(124, 92, 255, 0.85) 100%
  );
}

.workflow-flow--ebb .workflow-flow__step {
  color: var(--color-text-primary);
  background: rgba(108, 71, 255, 0.12);
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 0 16px rgba(108, 71, 255, 0.06);
}

.workflow-flow--ebb .workflow-flow__step:not(:last-child)::after {
  background: rgba(167, 139, 250, 0.45);
}

.workflow-flow__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.workflow-flow__step {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: var(--text-body-s);
  font-weight: var(--weight-medium);
  line-height: var(--leading-label);
  text-align: center;
}

.workflow-flow__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.25rem;
  margin: 0.125rem auto 0;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 400ms ease;
}

.workflow-flow.is-visible .workflow-flow__step:not(:last-child)::after {
  opacity: 0.6;
}

.why-different__principles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: var(--container-measure);
  text-align: center;
}

.why-different__principle {
  font-size: var(--text-body-l);
  font-weight: var(--weight-medium);
  line-height: var(--leading-body);
  color: var(--color-text-secondary);
}

.why-different__principle::before {
  content: "\2713  ";
  color: var(--color-accent-primary);
}

.why-different__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--container-measure);
  text-align: center;
}

.why-different__statement {
  margin: 0;
  font-size: var(--text-display-m);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
  text-wrap: balance;
}

/* -------------------------------------------------------------------------- */
/* VP12 — Founder Pricing (Sprint 6)                                           */
/* -------------------------------------------------------------------------- */
.viewport-section--pricing {
  padding-block: var(--space-void) var(--space-3xl);
  background: var(--color-bg-base);
}

.founder-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3xl);
}

.founder-pricing__header {
  max-width: var(--container-measure);
}

.founder-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  width: 100%;
  align-items: stretch;
}

.founder-pricing__cards .pricing-card {
  height: 100%;
}

.founder-message {
  width: 100%;
  padding: var(--space-xl);
  border-radius: var(--radius-card);
  text-align: center;
}

.founder-message__title {
  margin: 0 0 var(--space-md);
  font-size: var(--text-display-m);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  color: var(--color-text-primary);
}

.founder-message__body {
  margin: 0 0 var(--space-md);
  font-size: var(--text-body-l);
  line-height: var(--leading-body);
  color: var(--color-text-body);
  max-width: 42rem;
  margin-inline: auto;
}

.founder-message__body:last-child {
  margin-bottom: 0;
}

.founder-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-trust__item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: center;
}

.founder-trust__label {
  font-size: var(--text-body-s);
  font-weight: var(--weight-semibold);
  color: var(--color-text-secondary);
}

.founder-trust__detail {
  font-size: var(--text-body-xs);
  color: var(--color-text-muted);
}

.founder-pricing__close {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.founder-pricing__note {
  margin: 0;
  font-size: var(--text-body-s);
  color: var(--color-text-muted);
}

/* -------------------------------------------------------------------------- */
/* VP13 — FAQ (Sprint 8)                                                       */
/* -------------------------------------------------------------------------- */
.container--faq {
  max-width: 56.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2xl);
}

.viewport-section--faq {
  padding-block: var(--space-void) var(--space-3xl);
  background: var(--color-bg-base);
}

.faq-section__header {
  max-width: var(--container-measure);
}

/* -------------------------------------------------------------------------- */
/* VP14 — Final close (Sprint 8)                                               */
/* -------------------------------------------------------------------------- */
.viewport-section--close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90svh;
  padding-block: var(--space-void);
  overflow: hidden;
}

.hero-backdrop--subtle .hero-backdrop__beam {
  opacity: 0.55;
}

.hero-backdrop--subtle .hero-backdrop__glow--primary {
  opacity: 0.45;
}

.hero-backdrop--subtle .hero-backdrop__vignette {
  background:
    radial-gradient(
      ellipse 90% 70% at 50% 42%,
      transparent 0%,
      rgba(12, 16, 24, 0.5) 72%,
      rgba(12, 16, 24, 0.92) 100%
    );
}

.final-close {
  position: relative;
  z-index: 1;
}

.final-close__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  margin-inline: auto;
  max-width: var(--container-measure);
  text-align: center;
}

.final-close__eyebrow {
  margin: 0;
  color: var(--color-accent-secondary);
}

.final-close__headline {
  max-width: 14ch;
  text-wrap: balance;
}

.final-close__body {
  margin: 0;
  max-width: 34rem;
  color: var(--color-text-secondary);
}

.final-close__cta {
  margin-top: var(--space-sm);
}

.final-close__note {
  margin: 0;
  font-size: var(--text-body-s);
  color: var(--color-text-muted);
  line-height: var(--leading-body);
}

.final-close__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-md) 0 0;
  padding: 0;
  list-style: none;
}

.final-close__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-body-xs);
  color: var(--color-text-quaternary);
}

.final-close__trust-item::before {
  content: "\2713";
  color: var(--color-accent-primary);
  font-size: 0.75rem;
}


/* ==========================================================
   MOTION
   Source: css/landing-motion.css
   ========================================================== */

/* EBB Landing Page V2 — Motion framework (Sprint 2+) */
/* -------------------------------------------------------------------------- */
/* Reduced motion — accessibility foundation                                   */
/* -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Sprint 2 — Hero motion (Group A)                                            */
/* -------------------------------------------------------------------------- */
.hero-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-animate.is-visible .btn--primary--dominant,
.btn--primary--dominant.hero-animate.is-visible {
  box-shadow:
    var(--shadow-elevation-3),
    0 1px 0 rgba(255, 255, 255, 0.16) inset,
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 12px 32px rgba(76, 48, 210, 0.38),
    0 0 40px rgba(108, 71, 255, 0.3);
}

.hero-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* -------------------------------------------------------------------------- */
/* Sprint 3 — Journey motion (Group C)                                         */
/* -------------------------------------------------------------------------- */
.journey-animate {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.journey-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.journey-animate--rise {
  transform: translateY(28px);
}

.journey-animate--rise.is-visible {
  transform: translateY(0);
}

.journey-animate--delay-1 { transition-delay: 80ms; }

.journey-animate--delay-2 { transition-delay: 160ms; }

.journey-animate--delay-3 { transition-delay: 240ms; }

.journey-animate--delay-4 { transition-delay: 320ms; }

/* -------------------------------------------------------------------------- */
/* Sprint 5 — Workflow flow motion                                             */
/* -------------------------------------------------------------------------- */
.flow-step {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.workflow-flow.is-visible .flow-step {
  opacity: 1;
  transform: translateY(0);
}

.workflow-flow--traditional.is-visible .flow-step:nth-child(1) { transition-delay: 0ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(1)::after { transition-delay: 60ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(2) { transition-delay: 120ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(2)::after { transition-delay: 180ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(3) { transition-delay: 240ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(3)::after { transition-delay: 300ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(4) { transition-delay: 360ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(4)::after { transition-delay: 420ms; }

.workflow-flow--traditional.is-visible .flow-step:nth-child(5) { transition-delay: 480ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(1) { transition-delay: 0ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(1)::after { transition-delay: 45ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(2) { transition-delay: 90ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(2)::after { transition-delay: 135ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(3) { transition-delay: 180ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(3)::after { transition-delay: 225ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(4) { transition-delay: 270ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(4)::after { transition-delay: 315ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(5) { transition-delay: 360ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(5)::after { transition-delay: 405ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(6) { transition-delay: 450ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(6)::after { transition-delay: 495ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(7) { transition-delay: 540ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(7)::after { transition-delay: 585ms; }

.workflow-flow--ebb.is-visible .flow-step:nth-child(8) { transition-delay: 630ms; }

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero-reveal,
  .journey-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .flow-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .workflow-flow__step:not(:last-child)::after {
    opacity: 0.6;
    transition: none;
  }

  .faq-item__panel {
    transition: none;
  }

  .faq-item__trigger::after {
    transition: none;
  }

  .artifact-card,
  .artifact-card__image {
    transition: none;
  }

  .artifact-card:hover {
    transform: none;
  }

  .artifact-card:hover .artifact-card__image {
    transform: none;
  }
}


/* ==========================================================
   RESPONSIVE
   Source: css/landing-responsive.css
   ========================================================== */

/* EBB Landing Page V2 — Responsive framework (loaded last) */
/* -------------------------------------------------------------------------- */
/* Laptop — 1024px to 1279px                                                   */
/* -------------------------------------------------------------------------- */
@media (max-width: 79.9375rem) {
:root {
    --container-padding: 2rem;
  }
}

/* -------------------------------------------------------------------------- */
/* Tablet — 768px to 1023px                                                    */
/* -------------------------------------------------------------------------- */
@media (max-width: 63.9375rem) {
:root {
    --container-padding: 1.5rem;
    --space-void: 5rem;
  }
.payoff-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.why-different__comparison {
    gap: var(--space-lg);
  }
.founder-pricing__cards {
    gap: var(--space-md);
  }
.founder-trust {
    gap: var(--space-md);
  }
}

/* -------------------------------------------------------------------------- */
/* Mobile — 767px and below                                                    */
/* -------------------------------------------------------------------------- */
@media (max-width: 47.9375rem) {
:root {
    --container-padding: var(--container-padding-narrow);
    --space-2xl: 2rem;
    --space-void: 3.75rem;
  }
.btn--primary--dominant {
    width: 100%;
  }
.hero-signup {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm);
  }
.hero-trust {
    flex-direction: column;
    gap: var(--space-sm);
  }
.viewport-section--journey-intro,
  .viewport-section--journey {
    min-height: auto;
    padding-block: var(--space-2xl);
  }
.journey-beat {
    gap: var(--space-lg);
  }
.journey-chips {
    gap: var(--space-xs);
  }
.payoff-showcase__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
  }
.viewport-section--payoff {
    padding-block: var(--space-3xl);
  }
.payoff-showcase {
    gap: var(--space-2xl);
  }
.why-different__comparison {
    grid-template-columns: minmax(0, 1fr);
  }
.why-different {
    gap: var(--space-2xl);
  }
.viewport-section--contrast {
    padding-block: var(--space-3xl);
  }
.workflow-flow {
    padding: var(--space-lg);
  }
.founder-pricing__cards {
    grid-template-columns: minmax(0, 1fr);
  }
.founder-trust {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
  }
.founder-pricing {
    gap: var(--space-2xl);
  }
.viewport-section--pricing {
    padding-block: var(--space-3xl);
  }
.viewport-section--faq {
    padding-block: var(--space-3xl);
  }
.faq-section__header {
    margin-bottom: 0;
  }
.viewport-section--close {
    min-height: auto;
    padding-block: var(--space-3xl);
  }
.final-close__trust {
    flex-direction: column;
    gap: var(--space-sm);
  }
}


/* ==========================================================
   HERO
   Source: frontend/pages/home.css
   ========================================================== */

/* =========================================================
   HERO
========================================================= */
.hero {

    position: relative;

    min-height:calc(100vh - 82px);

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

}

/* ------------------------------------- */
/* Background Image */
/* ------------------------------------- */
.hero-background{

    position:absolute;

    inset:0;

    background-image:url("/images/newlandingpage.webp");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    transform:scale(1.00);

}

/* ------------------------------------- */
/* Overlay */
/* ------------------------------------- */
.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(5,8,18,.20),
        rgba(8,10,20,.08),
        rgba(5,8,18,.25)
    );

}

/* ------------------------------------- */
/* Content */
/* ------------------------------------- */
.hero-content{

    position:relative;

    z-index:5;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:10px 30px 40px;

}

.hero-inner{

    transform:translateY(-60px);

    width:100%;

    max-width:900px;

    text-align:center;

}

/* ------------------------------------- */
/* Headline */
/* ------------------------------------- */
.hero-title{

    color:#ffffff;

    font-size:48px;

    line-height:1.08;

    letter-spacing:-2px;

    font-weight:500;

    margin-bottom:24px;

}

.hero-title span{

    font-weight:400;

}

/* ------------------------------------- */
/* Subtitle */
/* ------------------------------------- */
.hero-subtitle{

    color:rgba(255,255,255,.82);

    opacity: .88;

    font-size:20px;

    line-height:1.7;

    max-width:720px;

    margin:0 auto 120px auto;

}

/* ------------------------------------- */
/* Signup */
/* ------------------------------------- */
.hero-signup{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:0;

    max-width:560px;

    margin:auto;

    border-radius:18px;

    overflow:hidden;

    backdrop-filter:blur(22px);

    background:rgba(15,18,30,.50);

    border:1px solid rgba(255,255,255,.10);

    box-shadow:
    0 15px 60px rgba(0,0,0,.45);

}

/* ------------------------------------- */
/* Email */
/* ------------------------------------- */
.hero-email-input{

    flex:1;

    border:none;

    background:transparent;

    color:white;

    padding:18px 24px;

    font-size:18px;

    outline:none;

}

.hero-email-input::placeholder{

    color:rgba(255,255,255,.55);

}

/* ------------------------------------- */
/* Button */
/* ------------------------------------- */
.hero-button{

    border-radius:16px;

    cursor:pointer;

    padding:18px 34px;

    background:#5B7FFF;

    color:white;

    font-size:17px;

    font-weight:600;

    transition:.25s;

}

.hero-button:hover{

    background:#6d93ff;

}

.hero-trust {

    display: flex;

    justify-content: center;

    gap: 32px;

    margin-top: 22px;

    color: rgba(255, 255, 255, .72);

    font-size: 15px;

    font-weight: 400;

}

.hero-trust strong{

    color:#22c55e;

    font-weight:700;

    justify-content: center;

}

.hero-note {

    margin-top: 18px;

    color: rgba(255, 255, 255, .58);

    font-size: 14px;

    line-height: 1.5;

    text-align: center;

}

/* ------------------------------------- */
/* Output */
/* ------------------------------------- */
.auth-message{

    margin-top:22px;

    color:white;

}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width:900px){

.hero-title{

    font-size:52px;

}

.hero-subtitle{

    font-size:20px;

}

.hero-signup{

    flex-direction:column;

    background:none;

    border:none;

    backdrop-filter:none;

    box-shadow:none;

}

.hero-email-input{

    width:100%;

    border-radius:16px;

    background:rgba(18,22,36,.75);

    border:1px solid rgba(255,255,255,.08);

}

.hero-button{

    width:100%;

    margin-top:14px;

    border-radius:16px;

}

@media (max-width:768px){

    .hero-trust{

        flex-direction:column;

        gap:10px;

        align-items:center;

    }

}

}


/* ==========================================================
   SCREENSHOT OVERRIDES
   Source: css/index-screenshots.css
   ========================================================== */

/* index.html — single control point for Hero + Journey screenshot presentation */
:root {
  --hero-screenshot-width: 100%;
  --hero-screenshot-height: auto;

  --journey-screenshot-width: 100%;
  --journey-screenshot-height: auto;
}

/* Hero — presentation container (background image fills the box) */
.hero > .hero-background {
  inset: unset;
  top: 0;
  bottom: 0;
  left: 50%;
  right: auto;
  width: var(--hero-screenshot-width);
  height: var(--hero-screenshot-height);
  transform: translateX(-50%);
  background-size: cover;
  background-position: center center;
}

/* Journey — windows must not impose their own screenshot dimensions */
.viewport-section--journey .journey-beat__window,
.viewport-section--journey .product-window__content {
  width: auto;
  max-width: none;
  height: auto;
}

.category-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px;
}

.category-icon{
    font-size:48px;
    margin-bottom:18px;
}

.category-label{
    display:inline-block;
    padding:6px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:20px;
}

.category-card h3{
    font-size:32px;
    margin-bottom:18px;
}

.category-description{
    color:#b9c2d5;
    line-height:1.7;
    margin-bottom:24px;
}

.guide-count{
    font-weight:600;
    margin-bottom:24px;
    opacity:.85;
}

.guide-links{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:32px;
}

.guide-links a{
    text-decoration:none;
}

.category-button{
    display:inline-flex;
}

.story-container{
    max-width:900px;
    margin:0 auto;
}

.toc-card{
    max-width:900px;
    margin:0 auto;
    padding:56px;
    border-radius:24px;
    background:rgba(20,25,40,.9);
    border:1px solid rgba(255,255,255,.08);
}

.toc-card h2{
    text-align:center;
    font-size:48px;
    margin:20px 0;
}

.toc-description{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
}

.toc-list{
    list-style:none;
    padding:0;
    margin:0;
}

.toc-list li{
    margin-bottom:14px;
}

.toc-list a{
    display:flex;
    align-items:center;
    gap:18px;
    padding:16px 20px;
    border-radius:14px;
    text-decoration:none;
}

.toc-list span{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.publish-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:32px;
    margin-top:10px;
}

.publish-logos img{
    height:22px;
    width:auto;
    opacity:.75;
    transition:opacity .25s ease;
}

.publish-logos img:hover{
    opacity:1;
}

.seo-guide {
    background: var(--color-bg-base);
    padding: 90px 0;
}

.seo-guide .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 32px;
}

.seo-guide h2 {
    margin: 60px 0 24px;
}

.seo-guide h3 {
    margin: 40px 0 18px;
}

.seo-guide p {
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 1.125rem;
}

.why-different__comparison {

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    margin: 60px auto;

}

.why-different__infographic {

    display: block;

    width: min(80vw, 1000px);

    height: auto;

    margin: 0 auto;

    border-radius: 24px;

    box-shadow: 0 35px 90px rgba(0,0,0,.45);

}