/* ============================================================
   Honey AI — theme stylesheet
   Dark plum & honey-gold design system
   ============================================================ */

:root {
  --bg: #14090f;
  --bg-2: #1d0f18;
  --bg-3: #241221;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --text: #f7ecdc;
  --muted: #c3a996;
  --faint: #95786d;
  --honey: #ffb14d;
  --honey-2: #ff7a59;
  --rose: #ff5e8a;
  --line: rgba(255, 177, 77, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --grad: linear-gradient(115deg, #ffb14d 0%, #ff7a59 52%, #ff5e8a 100%);
  --shadow-glow: 0 18px 50px -18px rgba(255, 122, 89, 0.45);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 80px 0; }

/* ---------- typography ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--grad);
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.display--xl { font-size: clamp(44px, 7.2vw, 96px); }
.display--lg { font-size: clamp(34px, 4.6vw, 60px); }
.display--md { font-size: clamp(28px, 3.4vw, 42px); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead { font-size: clamp(18px, 2vw, 21px); color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .eyebrow::before { display: none; }

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--grad);
  color: #2a0e04;
  box-shadow: var(--shadow-glow);
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 24px 60px -16px rgba(255, 122, 89, 0.6); }
.btn-primary:hover::after { left: 130%; }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--honey); background: var(--surface-2); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(20, 9, 15, 0.78);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(255, 122, 89, 0.9);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.35s;
}
.nav a.nav-link:hover { color: var(--text); }
.nav a.nav-link:hover::after { width: 100%; }
.nav .btn { padding: 12px 26px; font-size: 14px; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}
.blob--1 { width: 560px; height: 560px; top: -160px; right: -120px; background: radial-gradient(circle, rgba(255, 122, 89, 0.5), transparent 65%); }
.blob--2 { width: 460px; height: 460px; bottom: -140px; left: -140px; background: radial-gradient(circle, rgba(255, 94, 138, 0.4), transparent 65%); animation-delay: -6s; }
.blob--3 { width: 340px; height: 340px; top: 34%; left: 40%; background: radial-gradient(circle, rgba(255, 177, 77, 0.32), transparent 65%); animation-delay: -3s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.12); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 { margin-bottom: 26px; }
.hero .lead { margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-note { font-size: 14px; color: var(--faint); display: flex; align-items: center; gap: 10px; }
.hero-note .pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #62e29a;
  box-shadow: 0 0 0 0 rgba(98, 226, 154, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(98, 226, 154, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(98, 226, 154, 0); }
  100% { box-shadow: 0 0 0 0 rgba(98, 226, 154, 0); }
}

.hero-photo {
  position: relative;
  border-radius: 30px;
  transform: rotate(2deg);
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 40px;
  background: var(--grad);
  opacity: 0.35;
  filter: blur(34px);
  z-index: -1;
}
.hero-photo img {
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}
.hero-photo .float-tag {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: rgba(29, 15, 24, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, 0.6);
  animation: bob 5s ease-in-out infinite;
}
.hero-photo .float-tag small { display: block; font-weight: 500; color: var(--muted); font-size: 12px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee-track span::after { content: "\2726"; color: var(--honey); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.stat {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.4s, border-color 0.4s;
}
.stat:hover { transform: translateY(-6px); border-color: var(--line); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
.stat span { color: var(--muted); font-size: 15px; }

/* ---------- model cards ---------- */

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.model-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  border: 1px solid var(--line-soft);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.5s;
}
.model-card:hover {
  transform: translateY(-10px);
  border-color: var(--line);
  box-shadow: 0 30px 70px -24px rgba(255, 122, 89, 0.35);
}
.model-card .ph { overflow: hidden; aspect-ratio: 4 / 5; }
.model-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.model-card:hover img { transform: scale(1.07); }
.model-card .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 90px 24px 22px;
  background: linear-gradient(to top, rgba(12, 5, 10, 0.92) 20%, transparent);
}
.model-card .name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
}
.model-card .name i { font-style: normal; font-size: 15px; color: var(--honey); font-family: var(--font-body); font-weight: 700; margin-left: 8px; }
.model-card .tag { font-size: 14px; color: var(--muted); margin-top: 2px; }
.model-card .go {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(20, 9, 15, 0.65);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey);
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.35s;
}
.model-card:hover .go { opacity: 1; transform: translateY(0); }

/* ---------- steps ---------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; counter-reset: step; }
.step {
  position: relative;
  padding: 46px 34px 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: transform 0.4s, background 0.4s, border-color 0.4s;
  counter-increment: step;
}
.step:hover { transform: translateY(-8px); background: var(--surface-2); border-color: var(--line); }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 300;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 18px;
  line-height: 1;
}
.step h2 { font-family: var(--font-display); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- features ---------- */

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.feature {
  padding: 38px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, var(--surface), transparent 70%);
  transition: transform 0.4s, border-color 0.4s;
}
.feature:hover { transform: translateY(-8px) rotate(-0.5deg); border-color: var(--line); }
.feature .ic {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  box-shadow: var(--shadow-glow);
}
.feature .ic svg { width: 24px; height: 24px; stroke: #2a0e04; }
.feature h2 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ---------- story (text blocks) ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.story-grid--flip { grid-template-columns: 1.1fr 0.9fr; }
.story-photo { position: relative; }
.story-photo::before {
  content: "";
  position: absolute;
  inset: 24px -24px -24px 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  z-index: -1;
}
.story-photo img { border-radius: 26px; aspect-ratio: 4 / 4.4; object-fit: cover; width: 100%; }
.story-body h2 { margin-bottom: 24px; }
.story-body p { color: var(--muted); margin-bottom: 18px; }
.story-body p b { color: var(--text); font-weight: 700; }
.story-body .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 21px;
  color: var(--honey);
  margin-top: 8px;
}

/* ---------- compare ---------- */

.compare {
  margin-top: 60px;
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
}
.compare-row > div { padding: 22px 30px; font-size: 15.5px; }
.compare-row > div:first-child { color: var(--muted); font-weight: 600; }
.compare-row > div:not(:first-child) { text-align: center; }
.compare-row:nth-child(odd) { background: var(--surface); }
.compare-row--head { background: var(--bg-3); }
.compare-row--head > div { font-family: var(--font-display); font-size: 18px; color: var(--text); padding: 26px 30px; }
.compare-row--head > div:first-child { color: var(--text); }
.compare .yes { color: #62e29a; font-weight: 800; }
.compare .no { color: var(--faint); }
.compare .honey-col { background: rgba(255, 177, 77, 0.06); border-left: 1px solid var(--line); }

/* ---------- testimonials ---------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.quote {
  padding: 40px 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  position: relative;
  transition: transform 0.4s, border-color 0.4s;
}
.quote:hover { transform: translateY(-8px); border-color: var(--line); }
.quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 0.6;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 22px;
}
.quote p { color: var(--text); font-size: 16.5px; margin-bottom: 24px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #2a0e04;
  font-size: 16px;
}
.quote .who b { display: block; font-size: 15px; }
.quote .who span { font-size: 13px; color: var(--faint); }
.quote .stars { color: var(--honey); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }

/* ---------- chat mockup ---------- */

.chat-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.phone {
  max-width: 380px;
  margin: 0 auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 38px;
  padding: 18px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.75), var(--shadow-glow);
  transform: rotate(-2deg);
}
.phone-top {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px 18px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.phone-top .ava {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--honey);
}
.phone-top b { font-size: 15px; display: block; }
.phone-top span { font-size: 12px; color: #62e29a; }
.chat-body { display: flex; flex-direction: column; gap: 12px; padding: 4px 6px 10px; }
.bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 20px;
  font-size: 14.5px;
  line-height: 1.5;
}
.bubble--her { background: var(--surface-2); border-bottom-left-radius: 6px; align-self: flex-start; }
.bubble--me { background: var(--grad); color: #2a0e04; font-weight: 600; border-bottom-right-radius: 6px; align-self: flex-end; }
.bubble--typing { display: inline-flex; gap: 5px; align-items: center; }
.bubble--typing i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted);
  animation: blink 1.2s infinite;
}
.bubble--typing i:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.25; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-4px); } }

/* ---------- faq ---------- */

.faq-list { max-width: 780px; margin: 60px auto 0; }
.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--surface);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.faq-list details[open] { border-color: var(--line); background: var(--surface-2); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 26px;
  color: var(--honey);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list .a { padding: 0 28px 26px; color: var(--muted); font-size: 15.5px; }

/* ---------- big cta ---------- */

.big-cta {
  text-align: center;
  border-radius: 36px;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 177, 77, 0.18), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(255, 94, 138, 0.16), transparent 45%);
  animation: drift 12s ease-in-out infinite alternate;
}
.big-cta > * { position: relative; }
.big-cta h2 { margin-bottom: 22px; }
.big-cta .lead { margin: 0 auto 40px; }

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 36px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-grid p { color: var(--faint); font-size: 14.5px; margin-top: 16px; max-width: 320px; }
.footer-grid h2 { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 18px; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 12px; }
.footer-grid ul a { color: var(--muted); font-size: 15px; transition: color 0.3s; }
.footer-grid ul a:hover { color: var(--honey); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--faint);
}

/* ---------- breadcrumbs ---------- */

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  color: var(--faint);
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.crumbs a { color: var(--muted); transition: color 0.3s; }
.crumbs a:hover { color: var(--honey); }
.crumbs i { font-style: normal; opacity: 0.5; }

/* ---------- single model ---------- */

.page-hero { padding: 170px 0 80px; position: relative; overflow: hidden; }
.model-hero { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }
.model-hero .ph { position: relative; }
.model-hero .ph::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 40px;
  background: var(--grad);
  opacity: 0.3;
  filter: blur(36px);
  z-index: -1;
}
.model-hero .ph img { border-radius: 28px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--honey);
}
.model-hero .lead { margin-bottom: 34px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.fact {
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 24px 26px;
  background: var(--surface);
}
.fact b { display: block; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.fact span { font-family: var(--font-display); font-size: 20px; }

/* ---------- legal ---------- */

.legal-body { max-width: 820px; }
.legal-body .updated { color: var(--faint); font-size: 14px; margin: 14px 0 40px; display: block; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 44px 0 14px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.legal-body h2 .num { color: var(--honey); font-size: 17px; font-family: var(--font-body); font-weight: 800; flex-shrink: 0; }
.legal-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 12px; }
.legal-body a { color: var(--honey); }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .hero-grid, .story-grid, .story-grid--flip, .chat-wrap, .model-hero { grid-template-columns: 1fr; gap: 50px; }
  .story-grid--flip .story-photo { order: -1; }
  .models-grid, .features-grid, .steps, .quotes { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-row > div { padding: 18px 16px; font-size: 14px; }
}

@media (max-width: 640px) {
  .section { padding: 74px 0; }
  .nav { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; background: rgba(20, 9, 15, 0.97); backdrop-filter: blur(20px); padding: 110px 30px 46px; gap: 26px; transform: translateY(-105%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1); z-index: -1; }
  .nav.is-open { transform: translateY(0); }
  .burger { display: block; z-index: 5; }
  .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.is-open span:nth-child(2) { opacity: 0; }
  .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .models-grid, .features-grid, .steps, .quotes, .facts { grid-template-columns: 1fr; }
  .hero-photo .float-tag { left: 10px; }
  .compare-row { grid-template-columns: 1fr 0.7fr 0.7fr; }
  .big-cta { padding: 70px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}