/* ==========================================================================
   EDUMENT — Luxury grayscale (Linear / Apple / OpenAI direction)
   ========================================================================== */

:root {
  --bg-base: #0a0a0a;
  --bg-elevated: #111111;
  --bg-surface: #161616;
  --bg-card: #1a1a1a;
  --bg-card-soft: rgba(255, 255, 255, 0.03);
  --text-primary: #f5f5f5;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --white: #ffffff;
  --silver: #d4d4d8;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --nav-bar-height: 82px;
  --nav-offset: calc(var(--nav-bar-height) + 3.25rem);
  --section-pad: clamp(6rem, 12vw, 10rem);
  --container: min(1120px, 90vw);
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --touch-min: 48px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id],
.hero[id] {
  scroll-margin-top: calc(var(--nav-offset) + 0.75rem);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

main,
section,
header,
footer {
  max-width: 100%;
}

h1, h2, h3, p {
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Background */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 255, 255, 0.05), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(255, 255, 255, 0.02), transparent 45%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%),
    var(--bg-base);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 10%, transparent 70%);
  opacity: 0.5;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.orb { display: none; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--text-primary);
}

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 520px;
}

.section-header {
  margin-bottom: clamp(3.5rem, 7vw, 5rem);
}

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

.section-header--center .section-lead {
  margin-inline: auto;
}

.section-lead--tight { margin-bottom: 0; }

.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

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

.section + .section,
.section + .logos-section,
.logos-section + .section {
  border-top: 1px solid var(--border);
}

/* Cards */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.glass:hover {
  border-color: var(--border-hover);
  background: #1c1c1c;
  transform: none;
  box-shadow: none;
}

/* Buttons */
.btn,
label.btn,
.access-trigger {
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6875rem 1.25rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn:active,
label.btn:active,
.access-trigger:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.08s;
}

.btn--primary,
label.btn--primary {
  background: #fafafa;
  color: #0a0a0a;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.btn--primary:hover {
  background: #ffffff;
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn--primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.btn__arrow {
  opacity: 0.55;
  transition: transform 0.35s var(--ease);
}

.btn--primary:hover .btn__arrow {
  transform: translateX(3px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}

.btn--scroll:active {
  transform: translateY(0) scale(0.99);
}

.btn--lg {
  padding: 0.8125rem 1.5rem;
  font-size: 0.9375rem;
  border-radius: 14px;
}

.btn--xl {
  padding: 0.9375rem 1.625rem;
  font-size: 0.9375rem;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
}

.gate-trigger--link,
.gate-trigger--inline {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
  font-size: inherit;
  font-weight: inherit;
  display: inline;
  box-shadow: none;
}

.gate-trigger--link:hover,
.gate-trigger--inline:hover {
  color: var(--text-primary);
  transform: none;
  background: none;
}

/* ==========================================================================
   Premium floating navbar
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0 0;
  background: transparent;
  border: none;
  pointer-events: none;
}

.nav__shell {
  pointer-events: auto;
  position: relative;
  width: 92%;
  max-width: 1320px;
  min-height: var(--nav-bar-height);
  margin-inline: auto;
  border-radius: 28px;
  background: linear-gradient(to bottom, #0b0b0b, #090909);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-bar-height);
  padding: 0 1.75rem;
}

.nav__inner--simple {
  display: flex;
}

.nav__drawer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2.5rem;
}

.nav__toggle {
  display: none;
  flex-shrink: 0;
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  display: grid;
  place-items: center;
  color: #f5f5f5;
}

.nav__icon--sm {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.nav__wordmark {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  white-space: nowrap;
}

.nav__divider {
  flex-shrink: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.nav__tagline {
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Center links */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #a1a1aa;
  white-space: nowrap;
  transition: color 0.35s var(--ease);
}

.nav__links a:hover {
  color: #f5f5f5;
}

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.btn--nav-ghost,
label.btn--nav-ghost,
a.btn--nav-ghost {
  padding: 0.5625rem 1.125rem;
  border-radius: 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn--nav-ghost:hover,
label.btn--nav-ghost:hover,
a.btn--nav-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn--nav-ghost:active,
label.btn--nav-ghost:active,
a.btn--nav-ghost:active {
  transform: translateY(0) scale(0.98);
}

.btn--nav-primary,
label.btn--nav-primary,
a.btn--nav-primary {
  padding: 0.5625rem 1.25rem;
  border-radius: 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0a0a0a;
  background: #ffffff;
  border: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn--nav-primary:hover,
label.btn--nav-primary:hover,
a.btn--nav-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.btn--nav-primary:active,
label.btn--nav-primary:active,
a.btn--nav-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.nav__sparkle {
  flex-shrink: 0;
  color: #0a0a0a;
  opacity: 0.45;
}

.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.nav__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: 0.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin-inline: auto;
  background: #a1a1aa;
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-offset);
  padding-bottom: 6rem;
  display: flex;
  align-items: center;
}

.hero__spotlight {
  position: absolute;
  top: 10%;
  left: -5%;
  width: 55%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}

.hero__content > * {
  min-width: 0;
}

.hero__copy { max-width: 580px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero__badge-dot {
  width: 5px;
  height: 5px;
  background: var(--text-secondary);
  border-radius: 50%;
}

.hero__title {
  font-size: clamp(2.75rem, 5.8vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  padding-top: 0.5rem;
}

.hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__meta-icon {
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stat-tile {
  padding: 1.5rem 1.375rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease);
}

.stat-tile:hover {
  border-color: var(--border-hover);
}

.stat-tile__icon {
  width: 18px;
  height: 18px;
  margin-bottom: 1.25rem;
  opacity: 0.4;
  color: var(--text-secondary);
}

.stat-tile__value {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-tile__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Logos */
.logos-section {
  padding-block: 4rem;
  border-top: 1px solid var(--border);
}

.logos-section__label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.logos-row span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.logos-row span:hover {
  color: rgba(255, 255, 255, 0.35);
}

/* Value / Why */
.value__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.value__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 2rem;
  max-width: 400px;
}

.value__checks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 380px;
}

.value__check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.625rem;
  color: var(--text-muted);
}

.value__cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.value-card {
  padding: 1.5rem 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.value-card__head {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.value-card__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.value-card__line:last-of-type {
  border-bottom: none;
}

.value-card__line span:last-child {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.value-card__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.value-card__total span:last-child {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.value-card--featured {
  position: relative;
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #1e1e1e 0%, var(--bg-card) 100%);
}

.value-card__pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
}

.value-card__features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
}

.value-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.value-card__price {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.value-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Stats section */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  padding: 2.5rem 1.75rem;
  background: var(--bg-elevated);
  border-radius: 0;
}

.stat-card:hover { background: var(--bg-surface); }

.stat-card__number {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.375rem;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Categories */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
}

.category-card {
  padding: 1.375rem 1.125rem;
}

.category-card__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
}

.category-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.category-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Features */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.feature-card { padding: 1.75rem; }

.feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-card-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.125rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Showcase */
.showcase__wrapper { max-width: 840px; margin-inline: auto; }

.showcase__mockup {
  padding: 1rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.showcase__bar {
  display: flex;
  gap: 5px;
  margin-bottom: 0.875rem;
  padding-left: 0.25rem;
}

.showcase__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.showcase__dashboard {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0.625rem;
  min-height: 260px;
}

.showcase__sidebar {
  padding: 0.625rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.showcase__sidebar-item {
  height: 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.showcase__sidebar-item--active {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.showcase__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.showcase__tile {
  aspect-ratio: 1.3;
  border-radius: var(--radius-sm);
  background: var(--bg-card-soft);
  border: 1px solid var(--border);
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.showcase__tile--wide {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 80px;
}

.showcase__tile-label {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.showcase__tile-title {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.showcase__float { display: none; }

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}

.testimonial-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card__stars {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.125rem;
}

.testimonial-card__quote {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing {
  padding-block: calc(var(--section-pad) * 1.15);
}

.pricing__card {
  max-width: 400px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.pricing__badge {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.pricing__amount {
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.pricing__amount span {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing__features {
  text-align: left;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.pricing__features li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.45rem 0 0.45rem 1rem;
  position: relative;
}

.pricing__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* FAQ */
.faq__list {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: transparent;
  border-radius: 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item:hover { background: var(--bg-card-soft); }

.faq-item[open] {
  background: var(--bg-card-soft);
  box-shadow: none;
}

.faq-item summary {
  padding: 1.125rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 1.375rem 1.125rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item__answer a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA */
.cta-banner { padding-block: var(--section-pad); }

.cta-banner__inner {
  max-width: 560px;
  margin-inline: auto;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.cta-banner .btn--xl { max-width: 280px; margin-inline: auto; }

/* Footer */
.footer {
  padding: 4.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.65;
}

.footer__col h4 {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--text-primary); }

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.footer__social a:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Marquee hidden - using logos-section */
.marquee-section { display: none; }

/* Login */
.page-login {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  animation: page-fade-in 0.55s var(--ease) both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-login .login-wrapper {
  animation: card-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-login .hero {
  min-height: auto;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: var(--nav-offset) 1.5rem 4rem;
}

.page-login .nav__links { display: none; }

.login-wrapper {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.login-card {
  padding: 2.25rem;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.94) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.login-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.login-card__badge svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.login-card h1 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}

.login-card__sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.125rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-group--highlight label { color: var(--text-primary); }

.form-group--highlight .form-input {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.form-group--highlight .form-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-group--highlight .form-hint svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.5;
}

.form-input {
  width: 100%;
  padding: 0.6875rem 0.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.375rem;
  font-size: 0.8125rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-check input {
  width: 14px;
  height: 14px;
  accent-color: var(--white);
}

.form-link {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.form-link:hover { color: var(--text-primary); }

.login-card .btn--primary,
.login-card label.btn--primary {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0;
}

.login-card--modal .login-form {
  margin-bottom: 0;
}

.login-card--modal .login-form .btn--primary,
.login-card--modal label.btn--primary {
  width: 100%;
  margin-top: 0.25rem;
}

.login-card--modal .login-card__support {
  text-align: center;
  margin-top: 0.875rem;
}

.login-card__footer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.login-card__footer a {
  color: var(--text-primary);
  font-weight: 500;
}

.login-card__footer a:hover { text-decoration: underline; }

.login-card__support {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.login-card__support a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.login-card__support a:hover {
  color: var(--text-primary);
}

/* Access gate modal */
.gate__checkbox {
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

#login-gate:checked ~ .gate--login,
#access-gate:checked ~ .gate--access {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

body:has(#login-gate:checked),
body:has(#access-gate:checked) {
  overflow: hidden;
}

.gate--login {
  z-index: 2100;
}

.gate--access {
  z-index: 2000;
}

#access-gate:checked ~ .gate--access {
  z-index: 2200;
}

#access-gate:checked ~ .gate--login {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.gate__panel {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2.25rem 2rem 2rem;
  background: linear-gradient(180deg, #141414 0%, #0e0e0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s var(--ease);
}

#login-gate:checked ~ .gate--login .gate__panel,
#access-gate:checked ~ .gate--access .gate__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gate__panel--auth {
  max-width: 400px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: left;
}

.gate__panel--auth .login-card--modal {
  margin: 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.login-card--modal {
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: left;
}

.login-card__badge--modal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.login-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.375rem;
}

.login-card__private {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.gate__note {
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 320px;
  margin-inline: auto;
}

.gate__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.gate__close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.gate__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.gate__title {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.gate__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
}

.gate__cta {
  width: 100%;
  margin-bottom: 1.25rem;
}

.gate__support {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.gate__support a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

.gate__support a:hover {
  color: var(--text-primary);
}

/* Contact */
.contact__inner {
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
  padding: 1rem 0;
}

.contact__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}

.contact__lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact__email {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.contact__email:hover {
  color: var(--text-primary);
}

.footer__email {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
  transition: color 0.2s;
}

.footer__email:hover {
  color: var(--text-secondary);
}

/* ==========================================================================
   Responsive — tablet (1024), mobile nav (960), mobile (768), small (480)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --section-pad: clamp(5rem, 10vw, 7.5rem);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero__stats {
    max-width: 100%;
    width: 100%;
  }

  .value__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .showcase__dashboard { grid-template-columns: 1fr; }
  .showcase__sidebar { display: none; }
  .showcase__main { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (min-width: 961px) {
  .nav__drawer {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-height: none !important;
    opacity: 1 !important;
    padding: 0 !important;
    border: none !important;
    margin: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
  }

  .nav__toggle {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .nav__tagline,
  .nav__divider { display: none; }
  .nav__links { gap: 1.5rem; }
}

/* Mobile navigation */
@media (max-width: 960px) {
  :root {
    --nav-bar-height: 72px;
    --nav-offset: calc(var(--nav-bar-height) + 2.75rem);
    --gutter: 1rem;
  }

  .nav {
    padding-top: max(0.5rem, env(safe-area-inset-top));
  }

  .nav__shell {
    width: calc(100% - 2 * var(--gutter));
    max-width: none;
    min-height: auto;
    border-radius: 18px;
    overflow: visible;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  }

  .nav__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: var(--space-md);
    min-height: var(--nav-bar-height);
    padding: 0 var(--space-md);
  }

  .nav__brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    padding-block: var(--space-sm);
  }

  .nav__toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .nav__drawer {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    transition:
      max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s var(--ease),
      margin 0.35s var(--ease),
      padding 0.35s var(--ease);
  }

  .nav__checkbox:checked ~ .nav__shell .nav__drawer {
    max-height: 560px;
    opacity: 1;
    margin: var(--space-sm) 0 var(--space-md);
    padding: var(--space-md);
    background: rgba(14, 14, 14, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 12px 32px rgba(0, 0, 0, 0.35);
  }

  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.125rem;
    width: 100%;
    padding: 0 0 var(--space-md);
    margin: 0;
  }

  .nav__links a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-secondary);
    padding: 0.875rem 0.75rem;
    border-radius: 12px;
    border-bottom: none;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .nav__links a:hover,
  .nav__links a:active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
  }

  .nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav__actions .btn--nav-ghost,
  .nav__actions .btn--nav-primary,
  .nav__actions label.btn {
    width: 100%;
    justify-content: center;
    min-height: var(--touch-min);
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    border-radius: 14px;
  }

  .nav__checkbox:checked ~ .nav__shell .nav__toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav__checkbox:checked ~ .nav__shell .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav__checkbox:checked ~ .nav__shell .nav__toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body:has(#nav-menu:checked) {
    overflow: hidden;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  :root {
    --nav-bar-height: 72px;
    --nav-offset: calc(var(--nav-bar-height) + 2.25rem);
    --section-pad: clamp(4rem, 12vw, 5.5rem);
    --gutter: 1.25rem;
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }

  .bg-grid { opacity: 0.25; }
  .bg-noise { opacity: 0.02; }

  .nav__shell {
    width: calc(100% - 2 * var(--gutter));
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav__inner {
    padding: 0 0.875rem;
  }

  .nav__wordmark { font-size: 0.875rem; }

  .nav__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6.5vw, 1.875rem);
    line-height: 1.2;
    margin-bottom: 0.875rem;
  }

  .section-lead {
    font-size: 0.9375rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: var(--space-2xl);
  }

  .hero {
    padding-top: var(--nav-offset);
    padding-bottom: var(--space-2xl);
    min-height: auto;
  }

  .hero__spotlight {
    width: 100%;
    left: 0;
    opacity: 0.7;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__badge {
    font-size: 0.6875rem;
    padding: 0.35rem 0.625rem;
    margin-bottom: var(--space-lg);
    max-width: 100%;
    text-align: left;
    line-height: 1.4;
  }

  .hero__title {
    font-size: 3rem;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: var(--space-lg);
  }

  .hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: var(--space-xl);
    color: var(--text-secondary);
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
  }

  .hero__ctas .btn,
  .hero__ctas label.btn {
    width: 100%;
    min-height: var(--touch-min);
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 16px;
  }

  .hero__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .hero__meta-item {
    font-size: 0.875rem;
    min-height: 2rem;
    align-items: center;
  }

  .hero__content {
    gap: var(--space-2xl);
  }

  .hero__stats {
    max-width: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .stat-tile {
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
  }

  .stat-tile__value { font-size: 1.5rem; }
  .stat-tile__label { font-size: 0.8125rem; }

  .btn--lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 16px;
  }

  .btn--xl {
    padding: 1rem 1.5rem;
    min-height: var(--touch-min);
    border-radius: 16px;
  }

  .btn--primary:hover,
  .btn--ghost:hover,
  .btn--nav-primary:hover,
  .btn--nav-ghost:hover {
    transform: none;
  }

  .logos-section { padding-block: var(--space-2xl); }

  .logos-section__label {
    margin-bottom: var(--space-xl);
    padding-inline: var(--gutter);
  }

  .logos-row {
    gap: var(--space-lg) var(--space-xl);
    padding-inline: var(--gutter);
  }

  .logos-row span { font-size: 0.8125rem; }

  .value__grid { gap: var(--space-2xl); }

  .value__title {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
    max-width: none;
    margin-bottom: var(--space-lg);
  }

  .value__checks { gap: var(--space-md); }

  .value__checks li {
    max-width: none;
    font-size: 0.9375rem;
  }

  .value-card,
  .glass {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .value-card__line {
    font-size: 0.8125rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .value-card__price { font-size: 1.75rem; }

  .stat-card {
    padding: 1.75rem 1.25rem;
  }

  .stat-card__number { font-size: 1.5rem; }

  .categories__grid,
  .features__grid,
  .stats__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .category-card,
  .feature-card,
  .testimonial-card {
    padding: 1.25rem;
    border-radius: 14px;
  }

  .feature-card h3 { font-size: 0.9375rem; }
  .feature-card p { font-size: 0.8125rem; }

  .showcase__wrapper {
    max-width: 100%;
    overflow: hidden;
  }

  .showcase__mockup {
    padding: 0.75rem;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
  }

  .showcase__main {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .showcase__tile--wide { grid-column: span 1; }

  .testimonial-card__quote {
    font-size: 0.875rem;
    line-height: 1.75;
  }

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

  .pricing__card {
    width: 100%;
    max-width: none;
    padding: 2rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
  }

  .pricing__amount { font-size: 2.75rem; }

  .pricing__desc { font-size: 0.9375rem; }

  .faq__list { border-radius: 14px; }

  .faq-item summary {
    padding: 1rem 1.125rem;
    font-size: 0.875rem;
    min-height: var(--touch-min);
    align-items: center;
  }

  .faq-item__answer {
    padding: 0 1.125rem 1rem;
    font-size: 0.8125rem;
  }

  .cta-banner__inner {
    width: 100%;
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }

  .cta-banner h2 { font-size: 1.375rem; }

  .cta-banner p {
    font-size: 0.9375rem;
    margin-bottom: var(--space-lg);
  }

  .cta-banner .btn--xl {
    max-width: none;
    width: 100%;
  }

  .gate {
    padding: var(--gutter);
    align-items: flex-end;
  }

  .gate__backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .gate__panel {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  }

  @supports (align-items: safe center) {
    .gate { align-items: safe center; }
    .gate__panel { border-radius: 16px; }
  }

  .gate__title { font-size: 1.125rem; }

  .login-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
  }

  .footer {
    padding: var(--space-2xl) 0 var(--space-xl);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
  }

  .footer__brand p {
    max-width: none;
    font-size: 0.8125rem;
  }

  .footer__col a {
    padding: 0.5rem 0;
    min-height: 2.25rem;
    display: flex;
    align-items: center;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
    font-size: 0.75rem;
    padding-top: var(--space-lg);
  }

  .section-header--center {
    text-align: left;
  }

  .section-header--center .section-lead {
    margin-inline: 0;
  }

  .contact__lead { font-size: 0.9375rem; }

  .page-login .nav__shell {
    width: calc(100% - 2 * var(--gutter));
  }

  .page-login .nav__inner {
    min-height: var(--nav-bar-height);
    padding: 0 var(--space-md);
  }

  .page-login .hero {
    padding: var(--nav-offset) var(--gutter) var(--space-2xl);
  }

  .page-login .login-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .page-login .login-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }

  .page-login .login-card .btn--primary,
  .page-login label.btn--primary {
    min-height: var(--touch-min);
    padding: 1rem;
    border-radius: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --gutter: 1rem;
    --nav-bar-height: 72px;
    --section-pad: 3.75rem;
  }

  .hero__title {
    font-size: clamp(3rem, 10vw, 3.25rem);
  }

  .hero__subtitle { font-size: 1rem; }

  .nav__shell {
    width: calc(100% - 2 * var(--gutter));
  }

  .nav__checkbox:checked ~ .nav__shell .nav__drawer {
    margin-inline: 0;
    padding: 0.875rem;
  }

  .stat-tile__value { font-size: 1.375rem; }

  .pricing__amount { font-size: 2.5rem; }

  .logos-row {
    gap: var(--space-md) var(--space-lg);
  }

  .logos-row span { font-size: 0.75rem; }

  .gate { padding: 0.75rem; }

  .page-login .hero {
    padding-inline: var(--gutter);
  }

  .login-card {
    padding: 1.5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
