/* ===========================================================
   IVY Spot — Landing Page Styles
   Brand: primary #21603E, cream #F3EDE4, gold #C9A227
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #21603E;
  --primary-dark: #163f29;
  --primary-light: #2f7d52;
  --cream: #F3EDE4;
  --gold: #C9A227;
  --ink: #14201a;
  --ink-soft: #4b564f;
  --white: #ffffff;
  --border: #e4ddce;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1160px;
  --radius: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

a { color: inherit; }

/* -------------------- Buttons -------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(33, 96, 62, 0.55);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(33, 96, 62, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(33, 96, 62, 0.28);
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(33, 96, 62, 0.06); }

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(0,0,0,0.25); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn-lg { padding: 17px 36px; font-size: 16px; }

/* -------------------- Header -------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* -------------------- Hero -------------------- */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/onb_bg_neon.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.34;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,63,41,0.55) 0%, rgba(22,63,41,0.88) 55%, var(--primary) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 84px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-note { font-size: 13px; color: rgba(255,255,255,0.6); }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* -------------------- Phone mock -------------------- */

.hero-visual { position: relative; display: flex; justify-content: center; }

.phone {
  position: relative;
  width: 290px;
  height: 588px;
  border-radius: 46px;
  background: #0d1a13;
  padding: 14px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.08);
  transform: rotate(2.5deg);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 22px;
  background: #0d1a13;
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 12px;
}

.phone-topbar {
  padding: 26px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.phone-topbar .greet { font-family: var(--font-display); font-size: 17px; }
.phone-topbar .greet b { color: var(--primary); }
.phone-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

.phone-search {
  margin: 4px 18px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-cards { padding: 0 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; overflow: hidden; }

.phone-card {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 6px 16px -10px rgba(20,32,26,0.25);
}
.phone-card .thumb {
  width: 46px; height: 46px; border-radius: 12px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.phone-card .info { flex: 1; min-width: 0; }
.phone-card .info .name { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.phone-card .info .meta { font-size: 11px; color: var(--ink-soft); }
.phone-card .match {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
  background: rgba(33,96,62,0.1);
  padding: 4px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}

.phone-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 12px 10px 16px;
  border-top: 1px solid var(--border);
}
.phone-tabbar span {
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--border);
}
.phone-tabbar span.active { background: var(--primary); }

.float-chip {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.35);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.float-chip.chip-1 { top: 6%; left: -6%; }
.float-chip.chip-2 { bottom: 10%; right: -8%; }
.float-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

/* -------------------- Logos strip -------------------- */

.trust-strip {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}
.trust-emojis {
  display: flex;
  gap: 22px;
  font-size: 22px;
  opacity: 0.75;
  flex-wrap: wrap;
}

/* -------------------- Sections -------------------- */

section { padding: 108px 0; }

.section-head {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head .eyebrow.on-light {
  color: var(--primary);
  background: rgba(33,96,62,0.08);
  border-color: rgba(33,96,62,0.18);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.18;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* -------------------- Features -------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(20,32,26,0.3); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

/* -------------------- How it works -------------------- */

.how-it-works { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step {
  position: relative;
  text-align: left;
}
.step-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 10px;
}
.step p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; margin: 0; }

/* -------------------- Social hub -------------------- */

.social-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.social-copy .eyebrow.on-light {
  color: var(--primary);
  background: rgba(33,96,62,0.08);
  border-color: rgba(33,96,62,0.18);
}
.social-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
  margin: 20px 0 18px;
}
.social-copy > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 32px;
}

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-top: 2px;
}
.check-list strong { display: block; font-size: 15.5px; margin-bottom: 2px; }
.check-list span { font-size: 14.5px; color: var(--ink-soft); }

.social-visual {
  background: var(--primary);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('assets/onb_bg_neon.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.vote-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
.vote-card .vote-title { font-family: var(--font-display); font-size: 17px; margin: 0 0 4px; }
.vote-card .vote-sub { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 20px; }
.vote-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.vote-row .thumb { width: 40px; height: 40px; border-radius: 10px; background-size: cover; background-position: center; flex-shrink: 0; }
.vote-row .name { font-size: 13px; font-weight: 700; flex: 1; }
.vote-bar-track { height: 6px; border-radius: 999px; background: var(--cream); width: 90px; overflow: hidden; }
.vote-bar-fill { height: 100%; background: var(--primary); border-radius: 999px; }
.vote-avatars { display: flex; margin-top: 18px; }
.vote-avatars span {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold);
  color: #fff; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  margin-left: -8px;
}
.vote-avatars span:first-child { margin-left: 0; }

/* -------------------- Testimonial -------------------- */

.testimonial {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonial .container { position: relative; z-index: 1; max-width: 780px; text-align: center; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  margin: 0 0 28px;
  font-weight: 500;
}
.testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: block;
}
.testimonial .stars { color: var(--gold); font-size: 18px; margin-bottom: 22px; letter-spacing: 3px; }

/* -------------------- Final CTA -------------------- */

.cta-section {
  background: var(--cream);
}
.cta-box {
  background: var(--primary);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,162,39,0.25), transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 40%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: var(--font-display);
  font-weight: 500;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 16px;
}
.cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin: 0 0 34px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -------------------- Footer -------------------- */

.site-footer {
  background: #0f1c15;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 260px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 14.5px; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--primary-light); }

/* -------------------- Page hero (subpages) -------------------- */

.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(201,162,39,0.22), transparent 45%);
}
.page-hero .eyebrow {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.14;
  margin: 20px 0 16px;
}
.page-hero p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 560px;
}

/* -------------------- Placeholder sections -------------------- */

.placeholder-section { padding: 88px 0; }

.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.placeholder-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.placeholder-card .ph-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}
.placeholder-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 12px;
}
.placeholder-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}

.coming-soon-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px dashed rgba(33,96,62,0.35);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 40px;
  max-width: 640px;
}
.coming-soon-note .ph-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}
.coming-soon-note strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.coming-soon-note span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* -------------------- Legal pages -------------------- */

.legal-page { padding: 72px 0 100px; }
.legal-page .container { max-width: 720px; }

.legal-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 48px;
}
.legal-notice .ph-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}
.legal-notice strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.legal-notice span { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

.legal-block { margin-bottom: 44px; }
.legal-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin: 0 0 8px;
}
.legal-block .legal-sub {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}
.legal-block .legal-placeholder {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0;
}

.legal-copy {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0 0 16px;
}
.legal-copy:last-child { margin-bottom: 0; }
.legal-copy a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.legal-subhead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-block > .legal-subhead:first-of-type { margin-top: 0; }

.legal-list {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-list li { margin-bottom: 4px; }

/* -------------------- Motion -------------------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes float-chip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .float-chip.chip-1 { animation: float-chip 4.5s ease-in-out infinite; }
  .float-chip.chip-2 { animation: float-chip 4.5s ease-in-out infinite 1.6s; }

  @keyframes hero-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-copy .eyebrow { animation: hero-in .7s ease both; }
  .hero-copy h1 { animation: hero-in .7s ease .08s both; }
  .hero-copy .hero-lead { animation: hero-in .7s ease .16s both; }
  .hero-copy .hero-cta { animation: hero-in .7s ease .24s both; }
  .hero-copy .hero-stats { animation: hero-in .7s ease .32s both; }
  .hero-visual .phone { animation: hero-in .8s ease .2s both; }

  @keyframes match-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
  }
  .phone-card:nth-child(1) .match { animation: match-pop 3.2s ease-in-out .6s infinite; }
}

/* -------------------- Responsive -------------------- */

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .phone { transform: rotate(0); width: 240px; height: 486px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .placeholder-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 44px; }
  .social-section .container { grid-template-columns: 1fr; }
  .social-visual { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .header-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px 28px;
    gap: 20px;
    box-shadow: 0 16px 30px -18px rgba(20,32,26,0.3);
  }
  section { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-box { padding: 52px 26px; }
  .hero-stats { gap: 28px; }
  .float-chip { display: none; }
}
