/* ══════════════════════════════════════════════
   ANSWERHOUND — LANDING PAGE STYLES
   Brand locked 2026-04-16
   ══════════════════════════════════════════════ */

:root {
  --plum: #4A0E3A;
  --magenta: #C2185B;
  --honey: #FFC857;
  --ink: #050509;
  --bone: #F5F1EA;
  --line: rgba(10, 10, 14, 0.08);
  --line-dark: rgba(245, 241, 234, 0.1);
  --mute: rgba(10, 10, 14, 0.62);
  --mute-dark: rgba(245, 241, 234, 0.62);
  --gP: linear-gradient(0deg, #4A0E3A 0%, #C2185B 50%, #FFC857 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════ */

.tg, .hero-wm, .nav-wm, .foot-wm, .sec-title, h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
}

h2.sec-title { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.05; margin-bottom: 1rem; }

h3 { font-family: 'Inter', sans-serif; font-style: normal; font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.6);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 999px;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}

.sec-sub {
  max-width: 62ch;
  color: var(--mute);
  font-size: 1.075rem;
  margin-bottom: 3rem;
}

.section-dark .sec-sub { color: var(--mute-dark); }

/* ══════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(245, 241, 234, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 0.6rem; }
.nav-paw { width: 26px; height: 26px; }
.nav-wm { font-size: 1.35rem; }

.nav-links { display: flex; gap: 2rem; font-size: 0.92rem; color: var(--mute); }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  transition: transform .15s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

@media (max-width: 760px) {
  .nav { padding: 0.9rem 1.25rem; }
  .nav-links { display: none; }
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  padding: 9rem 2rem 7rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  top: -15%; left: 50%;
  width: 900px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(194, 24, 91, 0.55), rgba(194, 24, 91, 0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}

.hero-lockup {
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-paw {
  width: clamp(64px, 7vw, 96px);
  height: clamp(64px, 7vw, 96px);
  filter: drop-shadow(0 6px 24px rgba(194, 24, 91, 0.35));
  flex-shrink: 0;
}

.hero-wm {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  color: var(--bone);
}

@media (max-width: 560px) {
  .hero-lockup { flex-direction: column; gap: 0.75rem; }
  .hero-wm { font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-paw { width: 64px; height: 64px; }
}

.hero-tag {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--honey);
  margin-bottom: 1.75rem;
}

.hero-sub {
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  color: rgba(245, 241, 234, 0.78);
  font-size: 1.1rem;
}
.hero-sub strong { color: var(--bone); font-weight: 600; }

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-meta {
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.42);
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════ */

.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--gP);
  color: var(--bone);
  box-shadow: 0 6px 24px rgba(194, 24, 91, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(194, 24, 91, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(245, 241, 234, 0.28);
}
.btn-ghost:hover { border-color: var(--bone); }

.section:not(.section-dark) .btn-ghost { color: var(--ink); border-color: rgba(10, 10, 14, 0.22); }
.section:not(.section-dark) .btn-ghost:hover { border-color: var(--ink); }

.btn-block { display: block; width: 100%; text-align: center; }

/* ══════════════════════════════════════════════
   SECTION SHELL
   ══════════════════════════════════════════════ */

.section { padding: 7rem 2rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-dark {
  background: var(--ink);
  color: var(--bone);
}

.section-cta {
  background: var(--gP);
  color: var(--bone);
  text-align: center;
}
.section-cta .sec-title, .section-cta .sec-sub { color: var(--bone); }
.section-cta .sec-sub { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════════
   WHAT · 3-CARD GRID
   ══════════════════════════════════════════════ */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(74, 14, 58, 0.08); }

.card-num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  background: var(--gP);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--mute); font-size: 0.97rem; }

/* ══════════════════════════════════════════════
   HOW · 3 STEPS
   ══════════════════════════════════════════════ */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.steps li {
  padding: 2rem;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(245, 241, 234, 0.03);
}

.step-num {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  background: var(--gP);
  color: var(--bone);
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.steps h3 { color: var(--bone); margin-bottom: 0.5rem; }
.steps p { color: var(--mute-dark); font-size: 0.97rem; }
.steps em { color: var(--honey); font-style: normal; font-weight: 500; }

/* ══════════════════════════════════════════════
   COMPARISON TABLE
   ══════════════════════════════════════════════ */

.compare {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 2fr;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  align-items: center;
}
.compare-row:last-child { border-bottom: none; }

.compare-head {
  background: var(--ink); color: var(--bone);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase;
}

.compare-us {
  background: linear-gradient(90deg, rgba(194, 24, 91, 0.08), rgba(255, 200, 87, 0.12));
  position: relative;
}
.compare-us::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--gP);
}

.compare-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--mute);
}

@media (max-width: 720px) {
  .compare-row { grid-template-columns: 1fr; gap: 0.25rem; padding: 1rem 1.25rem; }
  .compare-head { display: none; }
  .compare-row div:nth-child(2) { color: var(--magenta); font-weight: 600; }
}

/* ══════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════ */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  padding: 2.25rem;
  border-radius: 18px;
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid var(--line-dark);
  display: flex; flex-direction: column;
  position: relative;
}

.price-card:first-child {
  border-color: var(--magenta);
  background: linear-gradient(180deg, rgba(194, 24, 91, 0.14), rgba(245, 241, 234, 0.02));
  box-shadow: 0 10px 40px rgba(194, 24, 91, 0.2);
}
.price-card:first-child::before {
  content: "MOST POPULAR";
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gP);
  color: var(--bone);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}

.price {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 0.25rem;
}
.price-unit { color: var(--mute-dark); font-size: 0.9rem; margin-bottom: 2rem; }
.price-unit code { background: rgba(255, 200, 87, 0.2); color: var(--honey); padding: 0.1rem 0.4rem; border-radius: 4px; font-size: 0.85rem; }

.price-list {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.price-list li {
  padding: 0.5rem 0;
  color: var(--mute-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line-dark);
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before { content: "✓ "; color: var(--honey); font-weight: 700; margin-right: 0.3rem; }

/* ══════════════════════════════════════════════
   WAITLIST FORM
   ══════════════════════════════════════════════ */

.waitlist {
  max-width: 520px;
  margin: 2rem auto 1rem;
  display: flex; gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist input {
  flex: 1; min-width: 240px;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}
.waitlist input:focus { outline: 2px solid var(--honey); outline-offset: 2px; }
.waitlist button { background: var(--ink); color: var(--bone); border: none; }
.waitlist button:hover { background: #1a1a22; }
.waitlist-ok {
  flex-basis: 100%;
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--bone);
}

.cta-small { font-size: 0.88rem; color: rgba(245, 241, 234, 0.7); }
.cta-small a { color: var(--bone); text-decoration: underline; }

.price-fineprint {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.55);
  text-align: center;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.price-fineprint sup { color: var(--honey); }

/* ══════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════ */

.faq {
  max-width: 780px;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--magenta);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }

.faq p {
  margin-top: 0.8rem;
  color: var(--mute);
  font-size: 0.98rem;
  max-width: 62ch;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */

.foot {
  background: var(--ink);
  color: rgba(245, 241, 234, 0.75);
  padding: 4rem 2rem 2rem;
}
.foot-inner { max-width: 1080px; margin: 0 auto; }

.foot-brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.foot-paw { width: 28px; height: 28px; }
.foot-wm { font-size: 1.4rem; color: var(--bone); }

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 720px) { .foot-cols { grid-template-columns: 1fr; } }

.foot-h {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 1rem;
}
.foot-cols a, .foot-soon {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 241, 234, 0.6);
  padding: 0.25rem 0;
}
.foot-cols a:hover { color: var(--bone); }
.foot-soon { font-style: italic; }

.foot-fine {
  font-size: 0.82rem;
  color: rgba(245, 241, 234, 0.45);
}
.foot-fine a { color: rgba(245, 241, 234, 0.7); border-bottom: 1px dotted currentColor; }
