/* ==========================================================================
   Plant Doctor — marketing site stylesheet
   Design language: "Verdant" (the app's design system, src/ui/tokens.ts).
   Calm clinic, warm companion. One accent, soft depth, photos/illustrations
   as heroes. Light-only by brand. No external fonts, no frameworks.
   ========================================================================== */

/* ---------- Tokens (mirrors the app's Verdant palette) ---------- */
:root {
  --canvas: #f6faf6;
  --surface: #ffffff;
  --surface-border: #dcebe0;
  --ink: #1b3a2c;
  --ink-muted: #5a6b60;
  --brand: #1b4332;
  --primary: #2d6a4f;
  --primary-ink: #ffffff;
  --accent: #40916c;
  --soft: #d8f3dc;
  --soft-ink: #1b4332;
  --caution: #fff7e6;
  --caution-ink: #7a5200;
  --on-brand: #d8f3dc;
  --mint: #95d5b2;
  --mint-ink: #081c15;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 16px rgba(27, 67, 50, 0.08);
  --shadow-lift: 0 8px 28px rgba(27, 67, 50, 0.16);

  --font-sans:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-serif: ui-serif, "New York", Georgia, "Times New Roman", serif;

  --header-h: 64px;
  --max-w: 1120px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

a {
  color: var(--primary);
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--primary-ink);
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.99);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: var(--shadow-lift);
}

.btn-primary:hover {
  background: var(--brand);
}

.btn-ghost {
  background: var(--surface);
  color: var(--soft-ink);
  border-color: var(--surface-border);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  border-color: var(--accent);
}

.btn-mint {
  background: var(--mint);
  color: var(--mint-ink);
  box-shadow: 0 8px 28px rgba(8, 28, 21, 0.35);
}

.btn-mint:hover {
  background: var(--soft);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 16px 30px;
}

.btn-compact {
  padding: 9px 18px;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-soft);
}

/* Official App Store badge (dropped into assets/ at launch) replaces button chrome */
.btn.has-badge {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.btn.has-badge img {
  height: 54px;
  width: auto;
}

.text-link {
  font-weight: 700;
  color: var(--primary);
}

.text-link:hover {
  text-decoration: underline;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 250, 246, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
}

.logo-word {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.header-nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.header-nav a {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.9375rem;
}

.header-nav a:hover {
  color: var(--brand);
}

@media (max-width: 720px) {
  .header-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .logo-word {
    white-space: nowrap;
    font-size: 1.0625rem;
  }

  .header-inner {
    gap: 12px;
  }

  .btn-compact {
    padding: 9px 14px;
    font-size: 0.875rem;
  }
}

/* ---------- Sections shell ---------- */
.section {
  padding: 88px 20px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-inner--narrow {
  max-width: 760px;
}

.kicker {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.kicker--on-soft {
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand);
  max-width: 720px;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (max-width: 720px) {
  .section {
    padding: 64px 20px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 20px 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 70% 0%, rgba(216, 243, 220, 0.55), transparent 70%),
    var(--canvas);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-leaf {
  position: absolute;
  width: 340px;
  opacity: 0.06;
}

.hero-leaf--left {
  left: -120px;
  bottom: -80px;
  transform: rotate(24deg);
}

.hero-leaf--right {
  right: -100px;
  top: -110px;
  transform: rotate(-150deg);
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft);
  color: var(--soft-ink);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.35rem, 1.4rem + 4.2vw, 3.9rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--brand);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  color: var(--ink-muted);
  max-width: 34em;
  margin-bottom: 30px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.cta-row--center {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row--center {
  justify-content: center;
}

.trust-chip {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
}

@media (max-width: 900px) {
  .hero {
    padding: 48px 20px 72px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    justify-self: center;
  }
}

/* ---------- Phone mockup ---------- */
.hero-visual {
  position: relative;
  justify-self: end;
}

.phone {
  position: relative;
  width: 318px;
  border-radius: 52px;
  background: var(--mint-ink);
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(27, 67, 50, 0.28),
    0 4px 12px rgba(27, 67, 50, 0.16);
}

.phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 26px;
  background: var(--mint-ink);
  border-radius: var(--radius-pill);
  z-index: 3;
}

.screen {
  background: var(--canvas);
  border-radius: 42px;
  overflow: hidden;
  padding: 0 0 16px;
}

.app-bar {
  display: flex;
  padding: 16px 24px 0;
}

.app-bar-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand);
  padding: 12px 20px 10px;
}

.app-bar-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
}

.app-photo {
  position: relative;
  margin: 0 14px 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
}

.plant-illo {
  width: 100%;
  height: auto;
}

.photo-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--soft-ink);
  background: rgba(216, 243, 220, 0.92);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin: 0 14px 10px;
  padding: 12px 14px;
}

.app-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.app-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.app-chip {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--soft-ink);
  background: var(--soft);
  border-radius: var(--radius-pill);
  padding: 3px 9px;
}

.app-chip--soft {
  background: var(--caution);
  color: var(--caution-ink);
}

.app-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.conf-bar {
  height: 6px;
  background: var(--soft);
  border-radius: var(--radius-pill);
  margin: 8px 0 6px;
  overflow: hidden;
}

.conf-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-pill);
}

.app-card-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.care-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  padding: 5px 0;
}

.care-check {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-ink);
  font-size: 0.6875rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.care-check--todo {
  background: var(--surface);
  border: 2px solid var(--surface-border);
}

.app-hedge {
  font-size: 0.6875rem;
  color: var(--ink-muted);
  text-align: center;
  padding: 2px 24px 0;
  line-height: 1.4;
}

/* Floating chips around the phone */
.float-chip {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lift);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  padding: 9px 16px;
  white-space: nowrap;
}

.float-chip--a {
  top: 96px;
  left: -74px;
}

.float-chip--b {
  bottom: 120px;
  right: -104px;
}

@media (prefers-reduced-motion: no-preference) {
  .float-chip--a {
    animation: floaty 6s ease-in-out infinite;
  }

  .float-chip--b {
    animation: floaty 7s ease-in-out 1.2s infinite;
  }

  @keyframes floaty {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-10px);
    }
  }
}

@media (max-width: 420px) {
  .phone {
    width: 288px;
  }

  .float-chip--a {
    left: -18px;
  }

  .float-chip--b {
    right: -12px;
  }
}

/* ---------- Problems ---------- */
.problems {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.problem-card {
  background: var(--canvas);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}

.problem-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
}

.bridge-line {
  margin-top: 40px;
  font-size: clamp(1.125rem, 1rem + 0.7vw, 1.4rem);
  font-weight: 700;
  color: var(--brand);
  text-align: center;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--soft-ink);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--ink-muted);
  font-size: 0.9875rem;
}

.mid-cta {
  margin-top: 44px;
  text-align: center;
}

/* ---------- Features ---------- */
.features {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.feature-card {
  background: var(--canvas);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--ink-muted);
  font-size: 0.9875rem;
}

/* ---------- Honesty ---------- */
.honesty-panel {
  background: var(--soft);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 3vw + 20px, 60px);
}

.honesty-panel .section-title {
  margin-bottom: 18px;
}

.honesty-lead {
  font-size: 1.125rem;
  color: var(--soft-ink);
  max-width: 640px;
  margin-bottom: 28px;
}

.honesty-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.honesty-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-weight: 600;
  font-size: 0.9875rem;
  color: var(--ink);
}

.honesty-list li span {
  font-size: 1.25rem;
  line-height: 1.3;
}

.honesty-kicker {
  margin-top: 26px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---------- Privacy strip ---------- */
.privacy-strip {
  padding-top: 0;
}

.privacy-inner {
  text-align: center;
  max-width: 680px;
}

.privacy-inner .section-title {
  margin: 0 auto 14px;
}

.privacy-inner p {
  color: var(--ink-muted);
  margin-bottom: 16px;
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 44px;
  align-items: stretch;
  max-width: 880px;
}

.price-card {
  background: var(--canvas);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}

/* The app's one sanctioned dark surface — brand immersion, mirrored from the paywall */
.price-card--pro {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--on-brand);
  box-shadow: var(--shadow-lift);
}

.plan-flag {
  align-self: flex-start;
  background: var(--mint);
  color: var(--mint-ink);
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.plan-name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 6px;
}

.price-card--pro .plan-name {
  color: var(--mint);
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.1;
}

.price-card--pro .price {
  color: #ffffff;
}

.price-period {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.price-card--pro .price-period {
  color: var(--on-brand);
}

.price-alt {
  font-size: 0.9375rem;
  color: var(--on-brand);
  margin-top: 4px;
}

.plan-features {
  margin: 22px 0 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9875rem;
  font-weight: 600;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--accent);
}

.price-card--pro .plan-features li::before {
  color: var(--mint);
}

.plan-note {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.plan-note--on-brand {
  color: var(--on-brand);
  margin-top: 12px;
}

.price-card--pro .btn {
  align-self: flex-start;
}

.pricing-anchor {
  margin-top: 36px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-muted);
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  margin-top: 12px;
  box-shadow: var(--shadow-soft);
}

.faq .section-title {
  margin-bottom: 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.0313rem;
  color: var(--brand);
  padding: 18px 22px;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--ink-muted);
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding-bottom: 110px;
}

.final-cta .section-title {
  margin: 0 auto 12px;
}

.final-sub {
  color: var(--ink-muted);
  font-size: 1.125rem;
  margin-bottom: 30px;
}

.final-cta .trust-row {
  margin-top: 26px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand);
  color: var(--on-brand);
  padding: 56px 20px 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(216, 243, 220, 0.25);
}

.logo-word--footer {
  font-size: 1.25rem;
  color: #ffffff;
}

.footer-tag {
  margin-top: 8px;
  font-size: 0.9375rem;
  color: var(--on-brand);
  max-width: 30em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  color: var(--mint);
  font-weight: 700;
  font-size: 0.9375rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-legal {
  max-width: var(--max-w);
  margin: 24px auto 0;
  font-size: 0.8125rem;
  color: var(--on-brand);
  opacity: 0.85;
  display: grid;
  gap: 8px;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 500ms ease,
      transform 500ms ease;
  }

  .js [data-reveal].revealed {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Legal pages ---------- */
.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 20px 96px;
}

.legal-main h1 {
  font-size: clamp(1.9rem, 1.4rem + 2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--ink-muted);
  font-size: 0.9375rem;
  margin-bottom: 32px;
}

.legal-main h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand);
  margin: 36px 0 10px;
}

.legal-main p,
.legal-main li {
  color: var(--ink);
  margin-bottom: 12px;
}

.legal-main ul {
  list-style: disc;
  padding-left: 22px;
}

.legal-main ol {
  padding-left: 22px;
}

.legal-main ol li {
  margin-bottom: 14px;
}

.legal-summary {
  background: var(--soft);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  font-weight: 600;
  color: var(--soft-ink);
  margin-bottom: 32px;
}

/* ---------- 404 ---------- */
.notfound-main {
  min-height: 70vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 40px 20px;
}

.notfound-main h1 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  margin: 18px 0 10px;
}

.notfound-main p {
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.notfound-emoji {
  font-size: 4rem;
}
