/* ─────────── Tokens ─────────── */
:root {
  --on-white: #ffffff;
  --on-soft-white: hsl(48deg 25% 92%);
  --on-cream: hsl(42deg 20% 88%);
  --on-tan: #c9c5bf;
  --on-black: hsl(40deg 6% 10%);
  --on-stone: hsl(36deg 12% 41%);
  --on-orange: hsl(18deg 83% 51%);
  --on-yellow: hsl(60deg 88% 44%);
  --on-pink-clay: hsl(324deg 54% 80%);

  --background: var(--on-white);
  --foreground: var(--on-black);
  --muted-foreground: var(--on-stone);
  --border: hsl(40deg 6% 10% / 12%);
  --border-strong: hsl(40deg 6% 10% / 22%);

  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-pill: 999rem;

  --tracking-tight: -0.04em;
  --tracking-normal: -0.025em;
}

* { box-sizing: border-box; border-color: var(--border); }
html, body { margin: 0; padding: 0; }
html { background: var(--background); color: var(--foreground); }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "ss01", "cv01", "cv11";
  letter-spacing: var(--tracking-normal);
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  text-wrap: balance;
  margin: 0;
  font-weight: 500;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--foreground); color: var(--background); }

/* ─────────── Utilities ─────────── */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--muted-foreground);
}
.eyebrow.tiny { font-size: 0.6875rem; }
.eyebrow.light { color: rgba(255,255,255,0.55); }

.h2 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  line-height: 0.97;
}
.h3 {
  margin-top: 0.75rem;
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  font-weight: 500;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}
.display {
  margin-top: 1.5rem;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.lead {
  margin-top: 1.5rem;
  font-size: 1.1875rem;
  color: rgba(25, 24, 22, 0.75);
  max-width: 34rem;
  line-height: 1.55;
}
.lead.small { font-size: 1.0625rem; margin-top: 1rem; }
.lead.light { color: rgba(255,255,255,0.7); }
.orange { color: var(--on-orange); }

/* ─────────── Neon primitives ─────────── */
.neon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
  font-family: inherit;
}
.neon-btn:active { transform: translateY(1px); }
.neon-btn--primary {
  background: var(--on-orange);
  color: var(--foreground);
}
.neon-btn--primary:hover { background: var(--on-pink-clay); }
.neon-btn--ghost {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border-strong);
}
.neon-btn--ghost:hover { background: var(--on-soft-white); }

.neon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--on-soft-white);
  color: var(--foreground);
}

.neon-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.neon-card--elevated { background: var(--on-soft-white); }

/* ─────────── Animations ─────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.dotlive {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999rem;
  background: var(--on-orange);
  display: inline-block;
  animation: pulse-soft 2s ease-in-out infinite;
}

/* ─────────── Blobs ─────────── */
.blob {
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.blob-orange { background: var(--on-orange); opacity: 0.5; width: 640px; height: 640px; top: -12rem; right: -8rem; }
.blob-pink { background: var(--on-pink-clay); opacity: 0.55; width: 520px; height: 520px; bottom: -11rem; left: -8rem; }
.blob-yellow { background: var(--on-yellow); opacity: 0.25; width: 300px; height: 300px; top: 33%; left: 45%; }
.blob.small-blob { width: 320px; height: 320px; top: -6rem; right: -4rem; opacity: 0.3; }
.blob.mid-left { top: 25%; left: -8rem; width: 420px; height: 420px; opacity: 0.4; }
.blob.bottom-right { bottom: 0; right: 0; width: 400px; height: 400px; opacity: 0.25; top: auto; }
.blob.cta-blob { top: -3rem; right: -2rem; width: 280px; height: 280px; opacity: 0.45; }

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--on-soft-white);
  overflow: hidden;
}

.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}
@media (min-width: 1024px) { .nav { padding: 1.5rem 3.5rem; } }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  width: 2.25rem; height: 2.25rem;
  border-radius: 999rem;
  background: var(--foreground);
  display: flex; align-items: center; justify-content: center;
}
.brand-mark span { color: var(--background); font-size: 0.875rem; font-weight: 600; }
.brand-mark.tiny { width: 1.75rem; height: 1.75rem; }
.brand-mark.tiny span { font-size: 0.6875rem; }
.brand-name { font-size: 1.4rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }

.nav-links { display: none; gap: 2.25rem; font-size: 0.875rem; color: rgba(25,24,22,0.75); }
.nav-links a:hover { color: var(--foreground); }
@media (min-width: 768px) { .nav-links { display: flex; align-items: center; } }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .nav-cta { gap: 0.75rem; } }
.hide-sm { display: none; }
.only-sm { display: inline; }
@media (min-width: 640px) {
  .hide-sm { display: inline; }
  .only-sm { display: none; }
}

.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.5rem 3rem;
}
@media (min-width: 1024px) { .hero-inner { padding: 0 3.5rem 3rem; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; }
}

.meta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}
.meta-row .dot { color: rgba(25,24,22,0.25); }

/* hero card */
.hero-card {
  padding: 1.5rem;
  box-shadow: 0 20px 60px -20px rgba(40,30,20,0.25);
}
@media (min-width: 1024px) { .hero-card { padding: 1.75rem; } }
.hero-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.status {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted-foreground);
}
.hero-card-body { display: flex; align-items: flex-start; gap: 0.75rem; }
.hero-card-text {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(25,24,22,0.85);
  line-height: 1.55;
}
.asterisk-btn {
  flex-shrink: 0;
  width: 2.75rem; height: 2.75rem;
  border-radius: 999rem;
  background: var(--foreground);
  color: var(--background);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.asterisk-btn:hover { transform: scale(1.05); }

.badge-row {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.stat-row {
  margin-top: 1.25rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
}
.stat {
  background: var(--on-soft-white);
  border-radius: 1rem;
  padding: 0.75rem 0.75rem;
  text-align: center;
}
.stat-num { font-size: 1.25rem; font-weight: 500; line-height: 1; letter-spacing: -0.02em; }
.stat-num.small { font-size: 1rem; }
.stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
}

/* ─────────── HOW ─────────── */
.how {
  min-height: 100vh;
  background: var(--background);
  padding: 5rem 0;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 1024px) { .how { padding: 6rem 0; } }

.intro { max-width: 48rem; }
.steps {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .steps { margin-top: 3.5rem; } }

.step {
  padding: 1.75rem;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .step { padding: 2rem; } }
.step-head {
  margin-top: 0.75rem;
  display: flex; align-items: baseline; gap: 1rem;
}
.step-num {
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--on-orange);
}
.step-title { font-size: 1.5rem; font-weight: 500; letter-spacing: -0.03em; }
.step-copy {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: rgba(25,24,22,0.7);
  line-height: 1.55;
}

/* tasklet panel */
.tasklet-panel {
  margin-top: 3rem;
  border-radius: var(--radius-xl);
  background: var(--on-cream);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column; gap: 2rem;
}
@media (min-width: 1024px) {
  .tasklet-panel {
    margin-top: 3.5rem;
    padding: 3rem;
    flex-direction: row;
    align-items: flex-end;
    gap: 3rem;
  }
}
.tasklet-copy { flex: 1; }
.tasklet-stats { display: flex; gap: 0.75rem; }
@media (min-width: 1024px) { .tasklet-stats { gap: 1rem; } }

.mini-stat {
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  min-width: 110px;
}
.mini-stat.dark {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.mini-num { font-size: 1.75rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.mini-num.orange { color: var(--on-orange); }
.mini-stat.dark .mini-num { font-size: 1.625rem; }
.mini-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}
.mini-stat.dark .mini-label { color: rgba(255,255,255,0.55); }

/* google panel */
.google-panel {
  position: relative;
  margin-top: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--foreground);
  color: var(--background);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.75rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .google-panel {
    margin-top: 1.5rem;
    padding: 2.5rem 3rem;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.google-copy { position: relative; flex: 1; }
.google-stats { position: relative; display: flex; gap: 0.75rem; }
@media (min-width: 1024px) { .google-stats { gap: 1rem; } }

/* ─────────── USE CASES ─────────── */
.use-cases {
  position: relative;
  min-height: 100vh;
  background: var(--on-soft-white);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.use-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .use-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.prompt-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 42rem;
}
@media (min-width: 640px) { .prompt-grid { grid-template-columns: 1fr 1fr; } }

.prompt-card {
  border-radius: 1rem;
  background: var(--background);
  border: 1px solid var(--border);
  padding: 1rem;
}
.prompt-text {
  font-size: 0.8125rem;
  color: rgba(25,24,22,0.85);
  line-height: 1.4;
}
.prompt-tags {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-top: 0.625rem;
}

/* CTA card */
.cta-wrap { position: relative; }
.cta-card {
  position: relative;
  padding: 2rem;
  box-shadow: 0 30px 80px -30px rgba(40,30,20,0.3);
}
@media (min-width: 1024px) { .cta-card { padding: 2.5rem; } }

.email-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 480px) { .email-form { flex-direction: row; } }
.email-form input[type="email"] {
  flex: 1;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--background);
  color: var(--foreground);
  font-size: 0.875rem;
  font-family: inherit;
  letter-spacing: var(--tracking-normal);
  transition: border-color 0.2s ease, background 0.2s ease;
  outline: none;
}
.email-form input[type="email"]::placeholder { color: var(--muted-foreground); }
.email-form input[type="email"]:focus {
  border-color: var(--foreground);
  background: var(--on-soft-white);
}
.email-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: var(--tracking-normal);
  white-space: nowrap;
  border: 1px solid transparent;
  background: var(--on-orange);
  color: var(--foreground);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.25s ease, transform 0.15s ease;
}
.email-form .btn:hover { background: var(--on-pink-clay); }
.email-form .btn:active { transform: translateY(1px); }

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.footer-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.foot-brand { display: flex; align-items: center; gap: 0.75rem; }
.foot-links { display: flex; align-items: center; gap: 1.25rem; }
.foot-links a:hover { color: var(--foreground); }
