/* ─── Page wrapper ─────────────────────────────────────────────────── */

.landing-page {
  min-height: 100dvh;
}

.landing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Nav ─────────────────────────────────────────────────────────── */

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid var(--border);
}

.landing-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--t1);
  text-decoration: none;
}

.landing-logo:hover {
  text-decoration: none;
  color: var(--t1);
}

.landing-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-logo .logo-icon svg {
  width: 16px;
  height: 16px;
}

.landing-logo .logo-suffix {
  color: var(--t2);
  font-weight: 400;
  margin-left: 2px;
  font-size: 13px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
  text-decoration: none;
  color: #fff;
}

/* ─── Hero: left-aligned split (DESIGN_VARIANCE 7) ────────────────── */

.landing-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 72px;
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--t1);
}

.hero-content h1 strong {
  color: var(--accent);
  font-weight: 700;
}

.hero-tagline {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-image {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Waitlist form ─────────────────────────────────────────────────── */

.waitlist-form {
  width: 100%;
  max-width: 400px;
}

.waitlist-field {
  margin-bottom: 10px;
}

.waitlist-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--t1);
  font-size: 14px;
  font-family: var(--font);
  transition: border-color 0.15s;
}

.waitlist-input:focus {
  outline: none;
  border-color: var(--accent);
}

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

.waitlist-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.waitlist-checkbox {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-label {
  font-size: 13px;
  color: var(--t2);
  cursor: pointer;
  line-height: 1.5;
}

.waitlist-btn {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}

.waitlist-btn:hover {
  opacity: 0.9;
}

.waitlist-btn:active {
  transform: scale(0.98);
}

.waitlist-errors {
  background: var(--red-s);
  border: 1px solid var(--red);
  border-radius: var(--r);
  padding: 10px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--red);
}

.field-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 4px;
}

.waitlist-success {
  padding: 18px 20px;
  background: var(--green-s);
  border: 1px solid var(--green);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  max-width: 400px;
}

/* ─── How it works: numbered strip (not 3 equal cards) ────────────── */

.landing-how {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.landing-how h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
}

.step {
  padding: 32px 28px;
  background: var(--card);
  position: relative;
}

.step + .step {
  border-left: 1px solid var(--border);
}

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}

.step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
}

/* ─── Pricing: 3-col grid (comparative, justified) ─────────────────── */

.landing-pricing {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.pricing-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Single eyebrow used here only (taste-skill: max 1 per 3 sections) */
.pricing-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 16px;
}

.pricing-card {
  padding: 28px 24px;
  background: var(--card);
  position: relative;
}

.pricing-card + .pricing-card {
  border-left: 1px solid var(--border);
}

.pricing-card.featured {
  background: var(--surface);
  border-left-color: var(--accent);
  border-right: 1px solid var(--accent);
}

.pricing-card.featured + .pricing-card {
  border-left-color: var(--accent);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
  color: var(--accent);
}

.pricing-price {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--t1);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-price sup {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 500;
  vertical-align: super;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--t2);
  font-family: var(--font);
  letter-spacing: 0;
}

.pricing-detail {
  font-size: 13px;
  color: var(--t2);
  margin-top: 8px;
  line-height: 1.5;
}

.pricing-disclaimer {
  font-size: 12px;
  color: var(--t3);
  font-family: var(--mono);
}

/* ─── Footer ─────────────────────────────────────────────────────────── */

.landing-footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.footer-waitlist h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.footer-waitlist p {
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-meta {
  padding-top: 8px;
}

.footer-brand {
  font-weight: 600;
  font-size: 14px;
  color: var(--t1);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 13px;
  color: var(--t3);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--t2);
}

.footer-copy a:hover {
  color: var(--t1);
  text-decoration: none;
}

/* ─── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .landing-inner {
    padding: 0 20px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0 40px;
  }

  .hero-image {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card + .pricing-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .pricing-card.featured {
    border-right: none;
    border-left: none;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
  }

  .pricing-card.featured + .pricing-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-header {
    flex-direction: column;
    gap: 8px;
  }
}
