/* ============================================================
   AMI — site vitrine
   Direction : « soft luxury organique » — crème & brun chaud,
   serif optique (Fraunces) + sans douce (Hanken Grotesk).
   ============================================================ */

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

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

:root {
  /* Surfaces chaudes */
  --cream:        #F7F0E4;
  --cream-2:      #F1E7D6;
  --paper:        #FFFDF8;
  --paper-warm:   #FBF5EB;

  /* Bruns de marque */
  --clay:         #7D5A39;
  --clay-deep:    #5E4128;
  --espresso:     #3A2A1B;

  /* Accents */
  --terracotta:   #C57E45;
  --terracotta-2: #B96C33;
  --sand:         #E6C9A1;
  --honey:        #EBB770;

  /* Texte */
  --ink:          #2E2418;
  --muted:        #8A7A66;
  --muted-2:      #A2917C;

  /* Lignes & ombres */
  --line:         #E8DAC4;
  --line-soft:    #F0E5D3;
  --shadow-sm:    0 1px 2px rgba(74,52,28,.06), 0 2px 6px rgba(74,52,28,.05);
  --shadow-md:    0 4px 12px rgba(74,52,28,.08), 0 12px 30px rgba(74,52,28,.07);
  --shadow-lg:    0 10px 30px rgba(74,52,28,.10), 0 30px 70px rgba(74,52,28,.12);

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

  --maxw: 1080px;
  --radius: 22px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  position: relative;
  overflow-x: hidden;
}

/* Fond : dégradé chaud + halos organiques */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(235,183,112,.20), transparent 60%),
    radial-gradient(55% 45% at 100% 8%, rgba(197,126,69,.14), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
/* Grain subtil */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--honey); color: var(--espresso); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.12;
  letter-spacing: -0.018em;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.3rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.85rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
a { color: var(--clay); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta-2); }

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--terracotta-2);
  margin-bottom: .9rem;
  display: inline-block;
}

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary {
  background: linear-gradient(180deg, var(--clay) 0%, var(--clay-deep) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(94,65,40,.28), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(94,65,40,.34), inset 0 1px 0 rgba(255,255,255,.22); }
.btn-ghost {
  background: var(--paper);
  color: var(--clay-deep);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { color: var(--clay-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--sand); }

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: .85rem 0;
  background: rgba(247,240,228,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(232,218,196,.7);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .6rem; color: var(--espresso); }
.brand img { width: auto; height: 30px; border-radius: 0; }
.brand-name { display: none; }
.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a { color: var(--clay-deep); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--terracotta-2); }
.nav .btn { padding: .6rem 1.15rem; font-size: .92rem; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--clay-deep);
  padding: .42rem 1rem .42rem .55rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.hero-tagline .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4FA06A;
  box-shadow: 0 0 0 4px rgba(79,160,106,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--clay); }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 30ch;
  margin-bottom: 2rem;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.hero-note { margin-top: 1.4rem; font-size: .88rem; color: var(--muted-2); display: flex; align-items: center; gap: .5rem; }
.hero-note svg { width: 1rem; height: 1rem; color: var(--clay); flex: none; }

/* décor */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}
.paw-deco {
  position: absolute;
  color: var(--sand);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

/* ---------- MOCKUP TÉLÉPHONE ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; z-index: 1; }
.hero-visual .blob-1 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 35% 30%, rgba(235,183,112,.55), rgba(197,126,69,.25) 60%, transparent 72%);
  top: -8%; left: 50%; transform: translateX(-55%);
}
.phone {
  position: relative;
  width: 270px;
  background: linear-gradient(160deg, #2c2117, #1b140d);
  border-radius: 42px;
  padding: 11px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.05);
  z-index: 2;
  animation: floaty 7s ease-in-out infinite;
}
.phone::before {
  content: "";
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #1b140d;
  border-radius: 0 0 14px 14px;
  z-index: 4;
}
.phone-screen {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(180deg, var(--paper-warm), var(--cream));
  overflow: hidden;
  aspect-ratio: 9 / 19;
  padding: 2.6rem 1rem 1rem;
}
.app-greet { font-size: .72rem; color: var(--muted-2); font-weight: 600; }
.app-h { font-family: var(--font-display); font-size: 1.32rem; color: var(--espresso); margin-bottom: .85rem; font-weight: 600; }
.app-h .wave { font-family: var(--font-body); }

.app-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: .8rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: .7rem;
}
.app-pet { display: flex; align-items: center; gap: .65rem; }
.app-avatar {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: linear-gradient(145deg, var(--honey), var(--terracotta));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}
.app-pet-name { font-weight: 700; font-size: .92rem; color: var(--espresso); }
.app-pet-sub { font-size: .72rem; color: var(--muted); }
.app-pet-tag {
  margin-left: auto;
  font-size: .62rem; font-weight: 700;
  color: #4FA06A; background: rgba(79,160,106,.12);
  padding: .2rem .5rem; border-radius: 999px;
}
.app-label { font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); font-weight: 700; margin: .2rem 0 .5rem; }
.app-reminder { display: flex; align-items: center; gap: .6rem; }
.app-rm-ic {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  background: rgba(197,126,69,.12);
}
.app-rm-t { font-size: .8rem; font-weight: 600; color: var(--espresso); line-height: 1.2; }
.app-rm-d { font-size: .68rem; color: var(--muted); }
.app-rm-when { margin-left: auto; font-size: .66rem; font-weight: 700; color: var(--terracotta-2); }
.app-bars { display: flex; align-items: flex-end; gap: 5px; height: 42px; margin-top: .5rem; }
.app-bars span { flex: 1; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, var(--sand), var(--terracotta)); opacity: .85; }
.app-tabbar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-around; align-items: center;
  padding: .6rem 0 1.1rem;
  background: linear-gradient(180deg, rgba(255,253,248,0), var(--paper) 40%);
}
.app-tabbar i { width: 20px; height: 20px; border-radius: 7px; background: var(--line); display: block; }
.app-tabbar i.on { background: var(--clay); }

/* ---------- BANDEAU CONFIANCE ---------- */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,253,248,.5);
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; color: var(--clay-deep); }
.trust-item svg { width: 1.15rem; height: 1.15rem; color: var(--terracotta); flex: none; }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: .7rem; margin-bottom: 0; }

/* ---------- FEATURES (bento doux) ---------- */
.features-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.feature {
  grid-column: span 2;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .25s ease, border-color .22s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.feature.wide { grid-column: span 3; }
.feature-icon {
  width: 50px; height: 50px; border-radius: 15px;
  background: linear-gradient(150deg, var(--paper-warm), #F4E7D2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--clay);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .4rem; }
.feature p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

/* ---------- ÉTAPES ---------- */
.steps {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.step {
  position: relative;
  background: linear-gradient(165deg, var(--paper) 0%, var(--paper-warm) 100%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600; font-style: italic;
  color: var(--terracotta);
  line-height: 1; margin-bottom: .8rem; display: block;
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---------- PREMIUM ---------- */
.premium-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.premium {
  position: relative;
  background: linear-gradient(155deg, var(--clay-deep) 0%, var(--espresso) 100%);
  border-radius: 30px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  color: #F6ECDC;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.premium::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(40% 60% at 100% 0%, rgba(235,183,112,.30), transparent 60%),
    radial-gradient(40% 55% at 0% 100%, rgba(197,126,69,.28), transparent 60%);
}
.premium-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.premium .eyebrow { color: var(--honey); }
.premium h2 { color: #FFF8EC; margin-bottom: .8rem; }
.premium h2 em { font-style: italic; font-weight: 400; color: var(--honey); }
.premium-sub { color: #E6D6C0; opacity: .9; margin-bottom: 0; font-size: 1.05rem; }
.premium-list { list-style: none; display: grid; gap: .85rem; }
.premium-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; color: #F4EADB; }
.premium-list svg { width: 1.3rem; height: 1.3rem; color: var(--honey); flex: none; margin-top: .1rem; }
.premium-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(235,183,112,.16); color: var(--honey);
  border: 1px solid rgba(235,183,112,.3);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .85rem; border-radius: 999px; margin-top: 1.6rem;
}

/* ---------- FAQ ---------- */
.faq { max-width: 740px; margin: 0 auto; padding: 0 1.5rem; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 0 1.3rem;
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s;
}
.faq details[open] { border-color: var(--sand); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem;
  color: var(--espresso);
  padding: 1.15rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev {
  width: 1.4rem; height: 1.4rem; flex: none; color: var(--clay);
  transition: transform .25s ease;
}
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { color: var(--muted); font-size: .98rem; padding-bottom: 1.2rem; margin: 0; }

/* ---------- CTA FINAL ---------- */
.cta-band { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.cta-card {
  max-width: 880px; margin: 0 auto; padding: 0 1.5rem; text-align: center;
}
.cta-inner {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 80% at 50% 0%, rgba(235,183,112,.20), transparent 60%);
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: .8rem; }
.cta-inner p { color: var(--muted); max-width: 46ch; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.waitlist { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist input {
  flex: 1; min-width: 220px;
  font-family: var(--font-body); font-size: 1rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper-warm); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.waitlist input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(125,90,57,.12); }
.waitlist .btn { flex: none; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.2rem;
  margin-top: 2rem;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.6rem 2rem; justify-content: space-between; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .92rem; }
.footer-brand img { width: auto; height: 26px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.footer-links a { color: var(--clay-deep); font-size: .92rem; font-weight: 500; }
.footer-links a:hover { color: var(--terracotta-2); }
.footer-copy {
  width: 100%; text-align: center; padding-top: 1.5rem; margin-top: .4rem;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2); font-size: .85rem;
}

/* ============================================================
   PAGES LÉGALES (partagent ce CSS)
   ============================================================ */
.legal { max-width: 720px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 1rem; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: .5rem; }
.legal h2 { font-size: 1.45rem; margin-top: 2.4rem; margin-bottom: .9rem; }
.legal h3 { font-size: 1.1rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.legal p { color: var(--ink); }
.legal .legal-meta { color: var(--muted); font-size: .92rem; margin-bottom: 1.8rem; }
.legal ul, .legal ol { margin: 0 0 1rem 1.3rem; color: var(--ink); }
.legal li { margin-bottom: .4rem; }
.legal a { font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--sand); }
.legal a:hover { text-decoration-color: var(--terracotta); }
.legal .note {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terracotta);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  font-size: .95rem; color: var(--muted);
  margin: 1.6rem 0;
}
.legal .note p:last-child { margin-bottom: 0; }
.legal .todo {
  background: #FBEBC8; border-radius: 5px; padding: .05rem .4rem;
  font-weight: 700; color: #8A5A12; font-size: .92em;
}
.legal table { border-collapse: collapse; width: 100%; margin: 1rem 0 1.6rem; font-size: .93rem; }
.legal th, .legal td { border: 1px solid var(--line); padding: .6rem .75rem; text-align: left; vertical-align: top; }
.legal th { background: var(--paper-warm); color: var(--espresso); font-family: var(--font-body); }
.legal .back-link { display: inline-block; margin: 2rem 0 .5rem; font-weight: 600; text-decoration: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(79,160,106,.35); } 50% { box-shadow: 0 0 0 6px rgba(79,160,106,0); } }
@keyframes floatPaw { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(calc(var(--r,0deg) + 6deg)); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* Chargement du hero (staggered) */
.hero .anim { opacity: 0; transform: translateY(18px); animation: heroIn .8s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .anim.a1 { animation-delay: .05s; }
.hero .anim.a2 { animation-delay: .15s; }
.hero .anim.a3 { animation-delay: .25s; }
.hero .anim.a4 { animation-delay: .35s; }
.hero .anim.a5 { animation-delay: .30s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; }
  .hero-lead { max-width: 46ch; margin-left: auto; margin-right: auto; }
  .hero-cta-row, .hero-note { justify-content: center; }
  .premium-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature.wide { grid-column: span 3; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { gap: 1.1rem; }
  .nav a:not(.btn) { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature, .feature.wide { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 440px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature, .feature.wide { grid-column: span 1; }
  .waitlist input { min-width: 0; }
}

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