/* LancerPad marketing — hybrid dark hero/footer + light body */

:root {
  --blue-deep: #1e56a0;
  --blue-bright: #2563d4;
  --blue-soft: rgba(37, 99, 212, 0.14);
  --blue-glow: rgba(37, 99, 212, 0.35);
  --orange: #F47920;
  --orange-soft: rgba(244, 121, 32, 0.15);

  --bg-dark: #0b1220;
  --bg-hero: #0f172a;
  --bg-card-dark: #1e293b;
  --bg: #F8FAFC;
  --bg-alt: #F1F5F9;
  --bg-white: #FFFFFF;

  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-inverse: #F8FAFC;
  --text-on-dark: #94A3B8;

  --border: #E2E8F0;
  --border-dark: rgba(148, 163, 184, 0.16);
  --error: #DC2626;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.18);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --max: 1120px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input { font: inherit; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -0.03em; }

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--blue-bright);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.container--narrow {
  width: min(680px, calc(100% - 2rem));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 24px var(--blue-glow);
}
.btn--primary:hover {
  box-shadow: 0 12px 32px rgba(37, 99, 212, 0.45);
}
.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn--secondary {
  background: var(--bg-white);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.btn--secondary:hover {
  border-color: var(--blue-bright);
  color: var(--blue-deep);
}
.btn--sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.875rem;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Header — frosted over dark hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 18, 32, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}
.nav__logo-wordmark {
  height: 40px;
  width: auto;
  max-width: min(220px, 48vw);
}

.nav__menu { display: contents; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  grid-column: 2;
}
.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-on-dark);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a:focus-visible { color: #fff; }

.nav__menu > .btn {
  justify-self: end;
  grid-column: 3;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero — dark atmospheric */
.hero {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  background: var(--bg-hero);
  color: var(--text-inverse);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.hero__orb--1 {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -80px;
  background: rgba(37, 99, 212, 0.28);
}
.hero__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -100px;
  background: rgba(244, 121, 32, 0.12);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  max-width: 16ch;
}
.hero__accent {
  background: linear-gradient(135deg, #93C5FD 0%, var(--blue-bright) 45%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--text-on-dark);
  max-width: 34rem;
  line-height: 1.7;
}

.hero__note {
  margin: 0.9rem 0 0;
  font-size: 0.875rem;
  color: #64748B;
}

/* Waitlist form */
.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  max-width: 28rem;
}
.waitlist-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.waitlist-form input::placeholder { color: #64748B; }
.waitlist-form input:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.waitlist-form input:disabled { opacity: 0.7; cursor: not-allowed; }

.waitlist-form--on-light input[type="email"] {
  border-color: var(--border);
  background: var(--bg-white);
  color: var(--text);
}
.waitlist-form--on-light input::placeholder { color: #94A3B8; }

.form-error {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.875rem;
  color: #FCA5A5;
  font-weight: 500;
}
.waitlist-form--on-light .form-error { color: var(--error); }

.waitlist-form.is-success { display: block; }
.waitlist-success {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: var(--radius);
  color: #A7F3D0;
  font-weight: 600;
}
.waitlist-form--on-light .waitlist-success {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #065F46;
}

/* Product shot */
.product-shot {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin-inline: auto;
  backdrop-filter: blur(8px);
}
.product-shot__bar {
  display: flex;
  gap: 6px;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.product-shot__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.product-shot__body { padding: 1.35rem; }
.product-shot__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.product-shot__label { font-weight: 700; font-size: 0.9375rem; }
.product-shot__pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #047857;
  background: #D1FAE5;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.product-shot__line {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-bottom: 0.65rem;
}
.product-shot__line--short { width: 55%; }
.product-shot__line--mid { width: 75%; margin-bottom: 1.5rem; }
.product-shot__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: #94A3B8;
}
.product-shot__footer strong {
  color: #93C5FD;
  font-size: 1.0625rem;
}

/* Positioning */
.positioning {
  padding: 1.65rem 0;
  background: linear-gradient(90deg, var(--blue-deep) 0%, var(--blue-bright) 100%);
  color: #fff;
  text-align: center;
}
.positioning p {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 44rem;
  margin-inline: auto;
}

/* Sections */
.section { padding: 4.75rem 0; background: var(--bg-white); }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-hero);
  color: var(--text-inverse);
}

.section__header {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.75rem;
}
.section__header h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
}
.section__header p {
  margin: 0;
  color: var(--text-secondary);
}
.section--dark .section__header p { color: var(--text-on-dark); }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
}
.section--dark .eyebrow { color: #93C5FD; }

/* Features */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.feature {
  padding: 1.55rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.section--alt .feature { background: var(--bg-white); }
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}
.feature__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 12px;
  font-size: 1.25rem;
  line-height: 1;
}
.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.0625rem;
  font-weight: 700;
}
.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.step {
  padding: 1.55rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 16px var(--blue-glow);
}
.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
}
.step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

/* Honesty */
.honesty {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.honesty h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
}
.honesty p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
}

/* Billing toggle */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 0 auto 2.25rem;
  padding: 0.25rem;
  width: fit-content;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.billing-toggle__btn {
  padding: 0.5rem 1.2rem;
  border: none;
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}
.billing-toggle__btn.is-active {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: #fff;
  box-shadow: 0 4px 14px var(--blue-glow);
}
.billing-toggle__btn:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pricing-card--featured {
  border-color: transparent;
  background: var(--bg-hero);
  color: var(--text-inverse);
  box-shadow: 0 20px 48px var(--blue-glow);
}
.pricing-card__badge {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  margin: 0;
  padding: 0.25rem 0.7rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
}
.pricing-card h3 {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
}
.pricing-card__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}
.pricing-card__amount {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.pricing-card__period {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-card--featured .pricing-card__period { color: #94A3B8; }
.pricing-card__billed {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  min-height: 1.25rem;
}
.pricing-card--featured .pricing-card__billed { color: #94A3B8; }
.pricing-card__sub {
  margin: 0.9rem 0 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.pricing-card--featured .pricing-card__sub { color: #CBD5E1; }
.pricing-card__includes {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.pricing-card__features {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.pricing-card__features li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.pricing-card--featured .pricing-card__features li { color: #CBD5E1; }
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
  transform: rotate(-45deg);
}
.pricing-card--featured .pricing-card__features li::before {
  border-color: #93C5FD;
}
.pricing-card .btn { width: 100%; }
.pricing-card--featured .btn--primary {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: none;
}
.pricing-card--featured .btn--primary:hover {
  background: #F8FAFC;
}

.pricing-note {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Comparison */
.comparison { margin-top: 3.5rem; }
.comparison__title {
  margin: 0 0 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.comparison__wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}
.comparison__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.comparison__table th,
.comparison__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison__table thead th {
  background: var(--bg-alt);
  font-weight: 700;
}
.comparison__table tbody th {
  font-weight: 600;
  white-space: nowrap;
}
.comparison__table tbody tr:last-child th,
.comparison__table tbody tr:last-child td { border-bottom: none; }
.comparison__table td { color: var(--text-secondary); }
.comparison__table tbody td:first-of-type {
  color: var(--text);
  font-weight: 500;
}

/* FAQ */
.faq { display: grid; gap: 0.55rem; }
.faq__item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
}
.faq__trigger::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blue-bright);
  transition: transform var(--transition);
}
.faq__trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__trigger:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: -2px;
}
.faq__panel { padding: 0 1.3rem 1.2rem; }
.faq__panel p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.faq__panel p + p { margin-top: 0.75rem; }
.faq__panel a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__panel a:hover { color: var(--blue-deep); }

/* Waitlist dark band */
.waitlist-block { text-align: center; }
.waitlist-block h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
}
.waitlist-block > p {
  margin: 0 0 1.5rem;
  color: var(--text-on-dark);
}
.waitlist-form--centered {
  margin-inline: auto;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 3.5rem 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  padding-bottom: 2.5rem;
}
.footer__brand .nav__brand { margin-bottom: 0.35rem; }
.footer__brand p {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  max-width: 22rem;
}
.footer__copy {
  margin-top: 1.25rem !important;
  font-size: 0.8125rem !important;
  color: #64748B;
}
.footer__col h3 {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F8FAFC;
}
.footer__col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.footer__col a:hover,
.footer__col a:focus-visible { color: #F8FAFC; }

.footer__bar {
  border-top: 1px solid var(--border-dark);
  padding: 1.15rem 0;
}
.footer__bar p {
  margin: 0;
  font-size: 0.8125rem;
  text-align: center;
}

/* Legal */
.legal-page {
  padding: 3rem 0 4.5rem;
  min-height: 50vh;
  background: var(--bg-white);
}
.legal-page h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
}
.legal-page p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  max-width: 40rem;
}
.legal-page a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

/* Tablet */
@media (min-width: 768px) {
  .container { width: min(var(--max), calc(100% - 3rem)); }

  .hero { padding: 4.75rem 0 5.5rem; }
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }
  .waitlist-form {
    grid-template-columns: 1fr auto;
  }
  .waitlist-form .form-error { grid-column: 1 / -1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .pricing { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .hero { padding: 5.5rem 0 6rem; }
  .section { padding: 5.5rem 0; }
  .features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
  .pricing { gap: 1.35rem; }
  .nav__logo-wordmark { height: 44px; max-width: 240px; }
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle { display: flex; }

  .nav__menu {
    display: flex;
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(11, 18, 32, 0.97);
    border-bottom: 1px solid var(--border-dark);
    padding: 0.75rem 1rem 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    grid-column: auto;
  }
  .nav__links a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav__menu > .btn {
    width: 100%;
    margin-top: 0.85rem;
    justify-self: stretch;
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn:hover { transform: none; }
}
