/* landing.css — HoneyNet main landing page styles.
 * Owns: all visual design for the / route (layout.ejs).
 * Does NOT own: theme.css (old cinematic landing), validation-brief (inline styles).
 */

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Design tokens — light/airy ─────────── */
:root {
  --bg:        #FAFAF7;
  --bg-2:      #F3F2ED;
  --bg-card:   #FFFFFF;
  --sage:      #3D6B4F;
  --sage-light: #7A9E87;
  --sage-pale: #EEF4F0;
  --sage-mid:  #C4D9CA;
  --clay:      #C8836A;
  --text:      #1A1A1A;
  --text-mid:  #4A4A4A;
  --text-dim:  #7A7A7A;
  --border:    #E5E4DE;
  --radius:    10px;
  --max-w:     720px;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sage); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ─────────────────────────────── */
.page { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Navbar ─────────────────────────────── */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.logo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--sage); text-decoration: none; }
.nav-cta {
  background: var(--text) !important;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #2d2d2d !important; }
@media (max-width: 560px) {
  .nav-links { gap: 14px; }
  .nav-links .nav-hide-mobile { display: none; }
}

/* ── Hero ───────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--sage);
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 22px;
  max-width: 640px;
}
h1 em {
  font-style: italic;
  color: var(--sage);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover {
  background: #2d2d2d;
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: -0.005em;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}
.btn-secondary:hover { color: var(--sage); border-color: var(--sage-mid); text-decoration: none; }
.btn-secondary svg { color: var(--sage-light); }

/* ── Section scaffolding ────────────────── */
.section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.section:last-of-type { border-bottom: none; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 14px;
}
.divider {
  width: 36px;
  height: 2px;
  background: var(--sage-mid);
  border-radius: 2px;
  margin: 18px 0 22px;
}
p { color: var(--text-mid); line-height: 1.7; }

/* ── Fade-in scroll animation ───────────── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Problem section ────────────────────── */
.problem-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
}
.problem-list li::before {
  content: '↳';
  color: var(--clay);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Three-card mechanic ────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.card h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.card p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Primitives stacked cards ───────────── */
.primitives-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.prim-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.prim-icon {
  width: 36px;
  height: 36px;
  background: var(--sage-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 16px;
}
.prim-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.prim-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.prim-regen {
  border-color: var(--sage-mid);
  background: var(--sage-pale);
}
.prim-regen .prim-icon { background: var(--sage-mid); }
.prim-regen h3 { color: var(--sage); }

/* ── Signal walkthrough ─────────────────── */
.signal-timeline {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.signal-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.signal-step:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  background: var(--sage-pale);
  border: 1.5px solid var(--sage-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.step-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.55;
}
.zero-fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-pale);
  border: 1px solid var(--sage-mid);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--sage);
  margin-top: 18px;
}
.zero-fp-badge::before { content: '✓'; font-size: 11px; }

/* ── Integrations ───────────────────────── */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.integ-chip {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
}
.safety-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.safety-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sage-pale);
  border: 1px solid var(--sage-mid);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
}
.safety-chip::before { content: '✓'; font-size: 11px; font-weight: 700; }

/* ── Pricing ────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pricing-card.featured {
  border-color: var(--sage-mid);
  background: var(--sage-pale);
}
.pricing-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.pricing-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0;
}
.pricing-note {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.55;
}
.pricing-includes {
  list-style: none;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-includes li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-includes li::before {
  content: '→';
  color: var(--sage-light);
  font-size: 12px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── CTA section ────────────────────────── */
.cta-section { padding: 60px 0 80px; }
.cta-box {
  background: var(--text);
  border-radius: 16px;
  padding: 52px 44px;
  text-align: center;
}
@media (max-width: 520px) { .cta-box { padding: 40px 24px; } }
.cta-box h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-box p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius);
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.cta-btn:hover { background: #4e8664; text-decoration: none; transform: translateY(-1px); }
.cta-sub {
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

/* ── Footer ─────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}
.footer p { font-size: 12.5px; color: var(--text-dim); }
.footer a { color: var(--text-dim); }
.footer a:hover { color: var(--sage); }

/* ── Stat row ───────────────────────────── */
.stat-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 4px;
}
