/* ==========================================================================
   BOWLFUL — Fresh, vet-formulated nutrition & meal plans for pets
   Warm premium DTC aesthetic. Clean white + signature amber/terracotta,
   espresso ink, fresh-green micro accents.
   Display: Bricolage Grotesque · Body: Plus Jakarta Sans
   ========================================================================== */

:root {
  /* ---- Signature — amber / terracotta (appetite, warmth) ---- */
  --amber-50:  #fff6ec;
  --amber-100: #ffe8cf;
  --amber-200: #ffd3a3;
  --amber-300: #ffb56a;
  --amber-400: #fb9439;
  --amber-500: #f57917;   /* signature */
  --amber-600: #e05f0d;   /* button base */
  --amber-700: #b8480e;   /* text on light */
  --amber-800: #8f3a12;
  --amber-900: #6b2f11;

  /* ---- Fresh green — natural / vet-approved ---- */
  --green-50:  #edf9f0;
  --green-100: #d2f0da;
  --green-300: #79cf95;
  --green-500: #23a55f;
  --green-600: #178a4c;
  --green-700: #126e3e;

  /* ---- Support — soft berry (sparing) ---- */
  --berry-100: #ffe4ea;
  --berry-500: #e5486f;

  /* ---- Neutrals — warm ---- */
  --white:   #ffffff;
  --paper:   #fdf9f3;   /* warm off-white section bg */
  --paper-2: #f8f1e7;   /* deeper warm panel */
  --cream:   #fbf5ec;
  --card:    #ffffff;
  --ink:     #211a14;   /* warm espresso near-black */
  --ink-2:   #3d332a;
  --muted:   #6b6157;
  --muted-2: #9a9086;
  --line:    #efe6d8;
  --line-2:  #e6dac8;
  --line-3:  #f0ece4;

  /* ---- Gradients ---- */
  --grad-amber:  linear-gradient(135deg, #fb9439 0%, #f57917 45%, #e05f0d 100%);
  --grad-amber-2:linear-gradient(135deg, #ffb56a 0%, #f57917 100%);
  --grad-ink:    linear-gradient(135deg, #2a221a 0%, #141009 100%);
  --grad-green:  linear-gradient(135deg, #37b874 0%, #178a4c 100%);
  --grad-hero:   radial-gradient(1150px 620px at 12% -8%, #ffe8cf 0%, transparent 55%),
                 radial-gradient(920px 520px at 102% -2%, #fff1dd 0%, transparent 52%),
                 radial-gradient(760px 720px at 78% 108%, #fdeede 0%, transparent 55%);
  --grad-food:   linear-gradient(135deg, #ffd3a3, #fb9439);

  /* ---- Effects ---- */
  --shadow-xs: 0 1px 2px rgba(33,26,20,.06);
  --shadow-sm: 0 2px 8px rgba(33,26,20,.06), 0 1px 2px rgba(33,26,20,.04);
  --shadow-md: 0 18px 44px -22px rgba(120,60,10,.30), 0 6px 16px -8px rgba(33,26,20,.08);
  --shadow-lg: 0 44px 88px -34px rgba(90,45,8,.42), 0 18px 34px -18px rgba(33,26,20,.12);
  --shadow-amber: 0 16px 34px -12px rgba(224,95,13,.5);
  --shadow-green: 0 16px 34px -12px rgba(23,138,76,.42);
  --ring-amber: 0 0 0 4px rgba(245,121,23,.18);

  --radius-xs: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 34px;
  --radius-2xl:44px;
  --container: 1200px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);

  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Bricolage Grotesque', 'Plus Jakarta Sans', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* fine warm grain — kills the flat "AI" look */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }
ul { list-style: none; }
::selection { background: var(--amber-200); color: var(--ink); }
:focus-visible { outline: 2.5px solid var(--amber-500); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 940px; }
.section { padding: 108px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-tight { padding: 64px 0; }
.center { text-align: center; }
.maxw-560 { max-width: 560px; }
.maxw-640 { max-width: 640px; }
.maxw-720 { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: #fff; }
.rel { position: relative; }
.hairline { height: 1px; background: var(--line); border: 0; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { line-height: 1.08; letter-spacing: -.02em; color: var(--ink); font-family: var(--display); font-weight: 700; }
.display { font-family: var(--display); font-weight: 800; font-size: clamp(2.85rem, 6vw, 5.05rem); line-height: 1.02; letter-spacing: -.035em; }
.h1 { font-family: var(--display); font-size: clamp(2.25rem, 4.4vw, 3.5rem); font-weight: 700; letter-spacing: -.03em; line-height:1.05; }
.h2 { font-family: var(--display); font-size: clamp(2rem, 3.6vw, 2.95rem); font-weight: 700; letter-spacing:-.028em; }
.h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 700; letter-spacing: -.015em; }
.h4 { font-family: var(--display); font-size: 1.12rem; font-weight: 700; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--muted); line-height: 1.62; font-weight: 400; }
.lead-2 { font-size: 1.08rem; color: var(--muted); line-height: 1.65; }
.italic-accent { font-style: italic; color: var(--amber-600); font-weight: 700; }
.underline-amber { position: relative; white-space: nowrap; }
.underline-amber svg { position: absolute; left: 0; bottom: -.36em; width: 100%; height: .34em; color: var(--amber-400); }
.muted { color: var(--muted); }
.tint-amber { color: var(--amber-600); }
.tint-green { color: var(--green-600); }
.balance { text-wrap: balance; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber-700); background: var(--amber-50); border: 1px solid var(--amber-100);
  padding: 7px 15px; border-radius: 100px;
}
.eyebrow.green { color: var(--green-700); background: var(--green-50); border-color: var(--green-100); }
.eyebrow.ink { color: #ffd8b0; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); box-shadow: 0 0 0 4px rgba(245,121,23,.2); animation: pulse 2s infinite; }
.eyebrow.green .dot { background: var(--green-500); box-shadow: 0 0 0 4px rgba(35,165,95,.2); }
@keyframes pulse { 0%,100%{ transform: scale(1); opacity:1 } 50%{ transform: scale(1.3); opacity:.65 } }

.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; }
.section-head .h2 { margin: 16px 0 0; }
.section-head .lead { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: .98rem; line-height: 1;
  padding: 15px 26px; border-radius: 100px; letter-spacing: -.01em;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap; position: relative; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--grad-amber); color: #fff; box-shadow: var(--shadow-amber); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -14px rgba(224,95,13,.66); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; box-shadow: 0 12px 28px -14px rgba(33,26,20,.7); }
.btn-ink:hover { transform: translateY(-3px); background: #120d07; box-shadow: var(--shadow-lg); }
.btn-green { background: var(--grad-green); color:#fff; box-shadow: var(--shadow-green); }
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -12px rgba(23,138,76,.6); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid var(--line-2); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { border-color: var(--amber-400); color: var(--amber-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-white { background:#fff; color: var(--amber-700); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: rgba(255,255,255,.05); color:#fff; border:1.5px solid rgba(255,255,255,.25); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-lg { padding: 18px 34px; font-size: 1.06rem; }
.btn-sm { padding: 11px 18px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--amber-700); transition: gap .25s var(--ease); }
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover { gap: 11px; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.72); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -18px rgba(33,26,20,.16); background: rgba(255,255,255,.86); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.03em; color: var(--ink); }
.brand .logo-mark { width: 36px; height: 36px; border-radius: 11px; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.brand:hover .logo-mark { transform: rotate(-4deg) scale(1.04); transition: transform .35s var(--ease-back); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a { font-size: .96rem; font-weight: 600; color: var(--ink-2); padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s; position: relative; }
.nav-links a:hover { color: var(--amber-700); background: var(--amber-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.link-signin { font-weight: 700; font-size: .96rem; color: var(--ink-2); padding: 9px 6px; transition: color .2s; }
.link-signin:hover { color: var(--amber-700); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:''; position: absolute; left: 12px; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 60px 0 96px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background: var(--grad-hero); }
.hero-bg::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(245,121,23,.06) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(700px 500px at 50% 0%, #000 0%, transparent 75%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 620px; }
.hero .display { margin: 20px 0 0; }
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; align-items: center; gap: 15px; margin-top: 34px; }
.avatars { display: flex; }
.avatars img, .avatars .av { width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid #fff; object-fit: cover; margin-left: -12px; box-shadow: var(--shadow-xs); background: var(--grad-food); }
.avatars img:first-child, .avatars .av:first-child { margin-left: 0; }
.stars { color: var(--amber-500); letter-spacing: 1px; font-size: .95rem; }
.hero-trust small { display: block; color: var(--muted); font-size: .9rem; }
.hero-trust small b { color: var(--ink); }

/* hero product visual */
.hero-visual { position: relative; }
.hero-blob { position: absolute; width: 118%; height: 118%; top: -9%; left: -9%; z-index:-1;
  background: var(--grad-food); filter: blur(70px); opacity: .28; border-radius: 45% 55% 58% 42% / 52% 44% 56% 48%; animation: blob 16s ease-in-out infinite; }
@keyframes blob { 0%,100%{ border-radius:45% 55% 58% 42%/52% 44% 56% 48%; transform: rotate(0) } 50%{ border-radius:56% 44% 42% 58%/44% 56% 44% 56%; transform: rotate(8deg) } }

.device { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
.device-top { display: flex; align-items: center; gap: 10px; padding: 13px 18px; border-bottom: 1px solid var(--line-3); background: var(--paper); }
.device-dots { display: flex; gap: 6px; }
.device-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.device-dots i:nth-child(1){ background:#ff6259 } .device-dots i:nth-child(2){ background:#ffbd2e } .device-dots i:nth-child(3){ background:#28c840 }
.device-title { font-size: .82rem; font-weight: 700; color: var(--muted); }
.device-body { padding: 20px; }

.dash-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pet-pic { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; background: var(--grad-food); }
.pet-meta b { font-family: var(--display); font-size: 1.05rem; }
.pet-meta span { display: block; font-size: .82rem; color: var(--muted); }
.pet-status { margin-left: auto; font-size: .76rem; font-weight: 700; color: var(--green-700); background: var(--green-50); padding: 6px 11px; border-radius: 100px; }

.plan-card { background: var(--grad-ink); border-radius: 20px; padding: 18px; color: #fff; position: relative; overflow: hidden; }
.plan-card::before { content:''; position:absolute; right:-30px; top:-30px; width:130px; height:130px; background: var(--grad-amber); filter: blur(30px); opacity:.5; }
.plan-card .pc-top { display:flex; align-items:center; justify-content:space-between; position:relative; }
.plan-card .pc-top span { font-size:.78rem; color: rgba(255,255,255,.62); font-weight:600; }
.plan-card .pc-kcal { font-family: var(--display); font-weight: 800; font-size: 2.35rem; line-height:1; letter-spacing:-.03em; margin: 8px 0 2px; }
.plan-card .pc-kcal small { font-size: .9rem; font-weight:600; color: rgba(255,255,255,.6); letter-spacing:0; }
.plan-card .pc-sub { font-size: .82rem; color: rgba(255,255,255,.7); }
.macro-bars { display:flex; flex-direction:column; gap:9px; margin-top:14px; }
.macro-bars .mb { display:flex; align-items:center; gap:10px; font-size:.78rem; }
.macro-bars .mb-label { width:56px; color: rgba(255,255,255,.72); font-weight:600; }
.macro-bars .mb-track { flex:1; height:7px; border-radius:100px; background: rgba(255,255,255,.14); overflow:hidden; }
.macro-bars .mb-fill { height:100%; border-radius:100px; background: var(--grad-amber); width:0; transition: width 1.1s var(--ease); }
.macro-bars .mb-fill.g { background: var(--grad-green); }
.macro-bars .mb-fill.b { background: linear-gradient(90deg,#ffb56a,#ffd3a3); }
.macro-bars .mb-val { width:34px; text-align:right; font-weight:700; color:#fff; }

.dash-meals { display:grid; grid-template-columns: repeat(2,1fr); gap:10px; margin-top:14px; }
.meal-chip { display:flex; align-items:center; gap:9px; padding:11px; border:1px solid var(--line); border-radius:14px; background:#fff; }
.meal-chip .mc-ic { width:34px; height:34px; border-radius:10px; display:grid; place-items:center; background:var(--amber-50); color:var(--amber-600); flex-shrink:0; }
.meal-chip .mc-ic svg { width:18px; height:18px; }
.meal-chip b { display:block; font-size:.9rem; font-family:var(--display); }
.meal-chip span { font-size:.76rem; color:var(--muted); }

.float-card { position: absolute; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 15px; box-shadow: var(--shadow-md); }
.float-card .fc-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.float-card .fc-ic svg { width: 20px; height: 20px; }
.float-card b { display: block; font-size: .9rem; font-family: var(--display); }
.float-card span { font-size: .78rem; color: var(--muted); }
.float-card.a { top: -22px; right: -14px; animation: floaty 5s ease-in-out infinite; }
.float-card.a .fc-ic { background: var(--grad-green); }
.float-card.b { bottom: -20px; left: -22px; animation: floaty 6s ease-in-out infinite .8s; }
.float-card.b .fc-ic { background: var(--grad-amber); }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-11px) } }

/* ---------- Logo marquee ---------- */
.logos { padding: 30px 0 8px; }
.logos-title { text-align: center; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 26px; }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.2rem; color: var(--muted); letter-spacing: -.02em; opacity: .72; transition: opacity .25s, color .25s; white-space: nowrap; }
.logo-item:hover { opacity: 1; color: var(--ink); }
.logo-item svg { width: 24px; height: 24px; color: var(--amber-500); }

/* ---------- Bento / feature cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento > * { grid-column: span 2; }
.bento .span-3 { grid-column: span 3; }
.bento .span-4 { grid-column: span 4; }
.bento .span-6 { grid-column: span 6; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card .card-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; background: var(--amber-50); color: var(--amber-600); }
.card .card-ic svg { width: 26px; height: 26px; }
.card .card-ic.green { background: var(--green-50); color: var(--green-600); }
.card .card-ic.ink { background: var(--ink); color: #fff; }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: .98rem; }
.card-glow::before { content:''; position:absolute; top:-40%; right:-30%; width:60%; height:80%; background: var(--grad-food); opacity:.1; filter: blur(46px); border-radius:50%; transition: opacity .4s; }
.card-glow:hover::before { opacity:.2; }

.feature-tag { display:inline-flex; align-items:center; gap:7px; font-size:.78rem; font-weight:700; color:var(--green-700); background:var(--green-50); padding:5px 11px; border-radius:100px; margin-top:14px; }
.feature-tag svg { width:14px; height:14px; }

/* stat block */
.stat b { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,3vw,2.9rem); letter-spacing: -.03em; display: block; color: var(--ink); line-height:1; }
.stat.on-ink b { color:#fff; }
.stat span { color: var(--muted); font-size: .95rem; font-weight:500; }
.stat.on-ink span { color: rgba(255,255,255,.7); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #fff; background: var(--grad-amber); box-shadow: var(--shadow-amber); margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }
.step-line { position:absolute; top:23px; left:60px; right:-24px; height:2px; background: repeating-linear-gradient(90deg,var(--line-2) 0 6px,transparent 6px 12px); }
.step:last-child .step-line { display: none; }

/* ---------- DEMO (Meal Plan Builder) ---------- */
.demo-wrap { background: var(--paper); border-radius: var(--radius-2xl); border: 1px solid var(--line); box-shadow: var(--shadow-lg); overflow: hidden; }
.demo-grid { display: grid; grid-template-columns: .92fr 1.08fr; }
.demo-form { padding: 40px; border-right: 1px solid var(--line); }
.demo-result { padding: 40px; background:
  radial-gradient(600px 300px at 100% 0%, #fff3e3 0%, transparent 60%), #fff; position: relative; }
.demo-form h3, .demo-result h3 { font-size: 1.28rem; }
.demo-lead { color: var(--muted); font-size: .95rem; margin: 6px 0 22px; }

.field { margin-bottom: 18px; }
.field > label { display: block; font-size: .82rem; font-weight: 700; color: var(--ink-2); margin-bottom: 8px; letter-spacing: -.01em; }
.field .hint { font-weight: 500; color: var(--muted-2); font-size: .76rem; margin-left: 4px; }
.input, .select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-2); border-radius: 13px; background: #fff;
  font-weight: 600; transition: border-color .2s, box-shadow .2s;
}
.input:focus, .select:focus { outline: none; border-color: var(--amber-400); box-shadow: var(--ring-amber); }
.input-group { display: flex; gap: 10px; }
.input-group .input { flex: 1; }
.unit-toggle { display: inline-flex; background: var(--paper-2); border: 1.5px solid var(--line-2); border-radius: 12px; padding: 3px; flex-shrink: 0; }
.unit-toggle button { padding: 9px 13px; border-radius: 9px; font-size: .85rem; font-weight: 700; color: var(--muted); transition: all .2s; }
.unit-toggle button.active { background: #fff; color: var(--amber-700); box-shadow: var(--shadow-xs); }

.segmented { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 6px; background: var(--paper-2); border: 1.5px solid var(--line-2); border-radius: 14px; padding: 4px; }
.segmented button { padding: 11px 8px; border-radius: 10px; font-size: .86rem; font-weight: 700; color: var(--muted); transition: all .22s var(--ease); display:flex; flex-direction:column; align-items:center; gap:3px; }
.segmented button small { font-size:.68rem; font-weight:600; color:var(--muted-2); }
.segmented button.active { background: #fff; color: var(--amber-700); box-shadow: var(--shadow-sm); }
.segmented button.active small { color: var(--amber-500); }
.segmented.green button.active { color: var(--green-700); }

.pet-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.pet-toggle button { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 14px; border: 1.5px solid var(--line-2); border-radius: 14px; background: #fff; font-weight: 700; color: var(--muted); transition: all .22s var(--ease); }
.pet-toggle button svg { width: 24px; height: 24px; }
.pet-toggle button.active { border-color: var(--amber-400); background: var(--amber-50); color: var(--amber-700); box-shadow: var(--ring-amber); }

/* result */
.result-empty { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; height:100%; min-height:340px; color:var(--muted); }
.result-empty .re-ic { width:74px; height:74px; border-radius:22px; display:grid; place-items:center; background: var(--amber-50); color:var(--amber-500); margin-bottom:16px; }
.result-empty .re-ic svg { width:36px; height:36px; }
.result-content { display: none; }
.result-content.show { display: block; animation: fadeUp .5s var(--ease) both; }
@keyframes fadeUp { from{ opacity:0; transform: translateY(14px) } to{ opacity:1; transform: none } }

.result-hero { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.cal-ring { position: relative; width: 128px; height: 128px; flex-shrink: 0; }
.cal-ring svg { transform: rotate(-90deg); }
.cal-ring .ring-bg { stroke: var(--amber-100); }
.cal-ring .ring-fg { stroke: url(#calGrad); stroke-linecap: round; transition: stroke-dashoffset 1.3s var(--ease); }
.cal-ring .ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cal-ring .rc-num { font-family: var(--display); font-weight: 800; font-size: 1.9rem; line-height: 1; letter-spacing: -.03em; }
.cal-ring .rc-label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.result-hero .rh-meta b { font-family: var(--display); font-size: 1.15rem; }
.result-hero .rh-meta p { font-size: .9rem; color: var(--muted); margin-top: 2px; }
.rh-pills { display:flex; flex-wrap:wrap; gap:7px; margin-top:10px; }
.pill { font-size:.74rem; font-weight:700; padding:5px 10px; border-radius:100px; background:var(--paper-2); color:var(--ink-2); }
.pill.amber { background:var(--amber-50); color:var(--amber-700); }
.pill.green { background:var(--green-50); color:var(--green-700); }

.result-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.res-stat { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 15px; }
.res-stat .rs-label { font-size: .76rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; display:flex; align-items:center; gap:6px; }
.res-stat .rs-label svg { width:15px; height:15px; color:var(--amber-500); }
.res-stat .rs-val { font-family: var(--display); font-weight: 800; font-size: 1.55rem; letter-spacing: -.02em; margin-top: 6px; }
.res-stat .rs-val small { font-size: .82rem; color: var(--muted); font-weight: 600; }
.res-stat .rs-sub { font-size:.8rem; color:var(--muted); margin-top:2px; }

.res-macros { background:#fff; border:1px solid var(--line); border-radius:16px; padding:16px; margin-bottom:18px; }
.res-macros .rm-title { font-size:.8rem; font-weight:700; color:var(--ink-2); margin-bottom:12px; display:flex; justify-content:space-between; }
.res-macros .rm-title span { color:var(--muted); font-weight:600; }
.res-macros .macro-bars .mb-label { color:var(--muted); width:64px; }
.res-macros .macro-bars .mb-track { background: var(--paper-2); }
.res-macros .macro-bars .mb-val { color:var(--ink); }

.recipe-card { display:flex; gap:14px; align-items:center; background: var(--grad-ink); border-radius:18px; padding:15px; color:#fff; position:relative; overflow:hidden; margin-bottom:16px; }
.recipe-card::after { content:''; position:absolute; right:-20px; bottom:-30px; width:110px; height:110px; background:var(--grad-amber); filter:blur(34px); opacity:.45; }
.recipe-card img { width:66px; height:66px; border-radius:14px; object-fit:cover; flex-shrink:0; background:var(--grad-food); position:relative; z-index:1; }
.recipe-card .rc-info { position:relative; z-index:1; flex:1; }
.recipe-card .rc-tag { font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:#ffce9a; }
.recipe-card .rc-name { font-family:var(--display); font-weight:800; font-size:1.1rem; margin:3px 0; }
.recipe-card .rc-desc { font-size:.8rem; color:rgba(255,255,255,.72); }
.recipe-card .rc-price { text-align:right; position:relative; z-index:1; }
.recipe-card .rc-price b { font-family:var(--display); font-weight:800; font-size:1.35rem; }
.recipe-card .rc-price span { display:block; font-size:.72rem; color:rgba(255,255,255,.65); }

.schedule { display:flex; gap:6px; margin-bottom:18px; }
.sched-day { flex:1; text-align:center; }
.sched-day .sd-name { font-size:.68rem; font-weight:700; color:var(--muted); text-transform:uppercase; }
.sched-day .sd-dot { height:34px; border-radius:9px; margin-top:6px; background:var(--amber-50); display:flex; align-items:center; justify-content:center; gap:2px; }
.sched-day .sd-dot i { width:5px; height:5px; border-radius:50%; background:var(--amber-400); }
.sched-day.hl .sd-dot { background:var(--grad-amber); }
.sched-day.hl .sd-dot i { background:#fff; }
.sched-day.hl .sd-name { color:var(--amber-700); }

.demo-note { display:flex; align-items:flex-start; gap:9px; font-size:.8rem; color:var(--muted); background:var(--green-50); border-radius:12px; padding:11px 13px; margin-top:4px; }
.demo-note svg { width:16px; height:16px; color:var(--green-600); flex-shrink:0; margin-top:2px; }

/* ---------- Split / editorial ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.media-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--grad-food); aspect-ratio: 4/3.4; }
.media-frame img { width:100%; height:100%; object-fit: cover; border-radius:0; box-shadow:none; }
.check-list { margin-top: 26px; display: flex; flex-direction: column; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .ci { width: 26px; height: 26px; border-radius: 8px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.check-list .ci svg { width: 16px; height: 16px; }
.check-list b { font-family: var(--display); font-weight: 700; font-size: 1rem; }
.check-list p { color: var(--muted); font-size: .93rem; margin-top: 1px; }

/* floating badge over media */
.media-badge { position:absolute; background:#fff; border-radius:16px; padding:13px 16px; box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:11px; }
.media-badge .mb-ic { width:40px; height:40px; border-radius:12px; display:grid; place-items:center; color:#fff; }
.media-badge b { display:block; font-family:var(--display); font-size:.98rem; }
.media-badge span { font-size:.78rem; color:var(--muted); }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display:flex; flex-direction:column; }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-card .q-stars { color: var(--amber-500); letter-spacing: 1px; margin-bottom: 13px; }
.quote-card blockquote { font-size: 1.04rem; line-height: 1.6; color: var(--ink-2); font-weight: 500; flex:1; }
.quote-card blockquote .hl { background: linear-gradient(transparent 62%, var(--amber-200) 62%); }
.quote-card .q-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.quote-card .q-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background:var(--grad-food); }
.quote-card .q-author b { font-family: var(--display); font-size: .98rem; display: block; }
.quote-card .q-author span { font-size: .84rem; color: var(--muted); }
.quote-feature { background: var(--grad-ink); color: #fff; border:none; }
.quote-feature blockquote { color: #fff; font-size: 1.35rem; font-family: var(--display); font-weight: 500; line-height:1.4; letter-spacing:-.01em; }
.quote-feature .q-author b { color:#fff; } .quote-feature .q-author span { color: rgba(255,255,255,.65); }
.quote-feature .q-stars { color: var(--amber-400); }

/* ---------- Pricing ---------- */
.billing-toggle { display: inline-flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line-2); border-radius: 100px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-xs); margin: 0 auto; }
.billing-toggle .bt-label { font-weight: 700; font-size: .92rem; color: var(--muted); transition: color .2s; }
.billing-toggle .bt-label.active { color: var(--ink); }
.switch { width: 52px; height: 30px; border-radius: 100px; background: var(--line-2); position: relative; transition: background .25s; flex-shrink:0; }
.switch.on { background: var(--amber-500); }
.switch::after { content:''; position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease-back); }
.switch.on::after { transform: translateX(22px); }
.save-badge { font-size: .74rem; font-weight: 700; color: var(--green-700); background: var(--green-50); padding: 5px 10px; border-radius: 100px; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-xl); padding: 32px 28px; display: flex; flex-direction: column; position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: transparent; box-shadow: var(--shadow-lg); background:
   linear-gradient(#fff,#fff) padding-box, var(--grad-amber) border-box; border: 2px solid transparent; }
.price-card.featured::before { content:''; position:absolute; inset:0; border-radius:var(--radius-xl); background: radial-gradient(400px 200px at 50% 0,var(--amber-50),transparent 70%); z-index:0; }
.price-card > * { position: relative; z-index:1; }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-amber); color: #fff; font-size: .74rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 15px; border-radius: 100px; box-shadow: var(--shadow-amber); }
.price-card .plan-name { font-family: var(--display); font-weight: 800; font-size: 1.3rem; }
.price-card .plan-desc { color: var(--muted); font-size: .9rem; margin: 6px 0 20px; min-height: 40px; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-amt .cur { font-size: 1.4rem; font-weight: 700; color: var(--ink); align-self:flex-start; margin-top:6px; }
.price-amt .amt { font-family: var(--display); font-weight: 800; font-size: 3.2rem; letter-spacing: -.03em; line-height: 1; }
.price-amt .per { color: var(--muted); font-weight: 600; font-size: .92rem; }
.price-note { font-size: .82rem; color: var(--muted-2); margin-bottom: 22px; }
.price-card .btn { margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 13px; }
.price-features li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.price-features .pf-ic { width: 20px; height: 20px; border-radius: 6px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.price-features .pf-ic svg { width: 13px; height: 13px; }
.price-features li.off { color: var(--muted-2); }
.price-features li.off .pf-ic { background: var(--paper-2); color: var(--muted-2); }

/* comparison / faq */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px; text-align: left; font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.faq-q .faq-ic { width: 30px; height: 30px; border-radius: 9px; background: var(--amber-50); color: var(--amber-600); display: grid; place-items: center; flex-shrink: 0; transition: transform .35s var(--ease), background .25s; }
.faq-q .faq-ic svg { width: 17px; height: 17px; }
.faq.open .faq-q .faq-ic { transform: rotate(45deg); background: var(--grad-amber); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 24px; color: var(--muted); font-size: .98rem; max-width: 90%; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-ink); border-radius: var(--radius-2xl); padding: 68px 56px; position: relative; overflow: hidden; text-align: center; }
.cta-band::before { content:''; position:absolute; top:-40%; left:-10%; width:50%; height:160%; background: var(--grad-amber); filter: blur(90px); opacity:.32; }
.cta-band::after { content:''; position:absolute; bottom:-50%; right:-5%; width:45%; height:170%; background: var(--grad-green); filter: blur(90px); opacity:.22; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,.78); margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-mini { margin-top:18px; font-size:.85rem; color: rgba(255,255,255,.6); display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.cta-mini span { display:inline-flex; align-items:center; gap:6px; }
.cta-mini svg { width:15px; height:15px; color: var(--green-300); }

/* ---------- Footer ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer-brand .brand { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); background:#fff; transition: all .25s var(--ease); }
.footer-social a:hover { color: #fff; background: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ink-2); font-size: .94rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--amber-700); padding-left: 4px; }
.footer-col .tag-new { font-size:.62rem; font-weight:800; color:var(--green-700); background:var(--green-50); padding:2px 6px; border-radius:5px; margin-left:6px; vertical-align:middle; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom p { color: var(--muted); font-size: .88rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-legal a:hover { color: var(--ink); }
.footer-badge { display:inline-flex; align-items:center; gap:7px; font-size:.82rem; font-weight:600; color:var(--muted); }
.footer-badge svg { width:16px; height:16px; color:var(--green-500); }

/* ---------- Auth pages ---------- */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-panel { background: var(--grad-ink); color: #fff; padding: 52px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.auth-panel::before { content:''; position:absolute; top:-20%; right:-15%; width:70%; height:70%; background: var(--grad-amber); filter: blur(90px); opacity:.32; }
.auth-panel::after { content:''; position:absolute; bottom:-25%; left:-10%; width:55%; height:60%; background: var(--grad-green); filter: blur(90px); opacity:.2; }
.auth-panel > * { position: relative; z-index: 1; }
.auth-brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: #fff; }
.auth-brand .logo-mark { width: 38px; height: 38px; border-radius: 11px; }
.auth-panel-body { margin: auto 0; }
.auth-panel h2 { color: #fff; font-size: clamp(1.9rem,3vw,2.6rem); margin-bottom: 18px; letter-spacing:-.03em; }
.auth-panel .ap-lead { color: rgba(255,255,255,.78); font-size: 1.06rem; max-width: 400px; }
.auth-testi { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 20px; margin-top: 32px; backdrop-filter: blur(8px); max-width: 420px; }
.auth-testi p { font-size: .98rem; line-height: 1.55; color: rgba(255,255,255,.92); }
.auth-testi .at-author { display: flex; align-items: center; gap: 11px; margin-top: 15px; }
.auth-testi img { width: 40px; height: 40px; border-radius: 50%; object-fit:cover; background:var(--grad-food); }
.auth-testi b { display:block; font-size:.9rem; } .auth-testi span { font-size:.8rem; color:rgba(255,255,255,.6); }
.auth-stats { display:flex; gap: 28px; margin-top: 32px; }
.auth-stats .stat b { color:#fff; font-size:1.7rem; } .auth-stats .stat span { color:rgba(255,255,255,.65); font-size:.82rem; }

.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: 40px; background:
  radial-gradient(600px 400px at 100% 0%, var(--amber-50) 0%, transparent 55%), #fff; }
.auth-form { width: 100%; max-width: 400px; }
.auth-form .back-home { display:inline-flex; align-items:center; gap:7px; font-size:.88rem; font-weight:600; color:var(--muted); margin-bottom:28px; transition:color .2s; }
.auth-form .back-home:hover { color:var(--amber-700); }
.auth-form .back-home svg { width:16px; height:16px; }
.auth-form h1 { font-size: 1.9rem; margin-bottom: 6px; letter-spacing:-.03em; }
.auth-form .af-sub { color: var(--muted); margin-bottom: 26px; font-size: .96rem; }
.auth-form .af-sub a { color: var(--amber-700); font-weight: 700; }
.plan-pill { display:inline-flex; align-items:center; gap:8px; font-size:.82rem; font-weight:700; color:var(--amber-700); background:var(--amber-50); border:1px solid var(--amber-100); padding:8px 14px; border-radius:100px; margin-bottom:22px; }
.plan-pill svg { width:15px; height:15px; }

.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 14px; border: 1.5px solid var(--line-2); border-radius: 13px; background: #fff; font-weight: 700; font-size: .98rem; color: var(--ink); transition: all .25s var(--ease); box-shadow: var(--shadow-xs); }
.btn-google:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-2px); background:var(--paper); }
.btn-google svg { width: 20px; height: 20px; }
.btn-apple { background: var(--ink); color:#fff; border-color:var(--ink); }
.btn-apple:hover { background:#120d07; }
.oauth-row { display:grid; grid-template-columns:1fr; gap:11px; }

.divider { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--muted-2); font-size: .82rem; font-weight: 600; }
.divider::before, .divider::after { content:''; flex: 1; height: 1px; background: var(--line); }

.auth-field { margin-bottom: 16px; }
.auth-field label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 7px; }
.auth-input-wrap { position: relative; }
.auth-input-wrap svg.lead-ic { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted-2); pointer-events:none; }
.auth-input { width: 100%; padding: 14px 15px 14px 44px; border: 1.5px solid var(--line-2); border-radius: 13px; background: #fff; font-weight: 500; transition: border-color .2s, box-shadow .2s; }
.auth-input:focus { outline: none; border-color: var(--amber-400); box-shadow: var(--ring-amber); }
.toggle-pw { position:absolute; right:12px; top:50%; transform:translateY(-50%); width:32px; height:32px; border-radius:8px; display:grid; place-items:center; color:var(--muted-2); }
.toggle-pw:hover { color:var(--ink); background:var(--paper); }
.toggle-pw svg { width:18px; height:18px; }
.auth-row { display: flex; align-items: center; justify-content: space-between; margin: 6px 0 22px; font-size: .88rem; }
.checkbox { display: flex; align-items: center; gap: 8px; color: var(--muted); font-weight:500; cursor:pointer; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--amber-500); }
.auth-row a { color: var(--amber-700); font-weight: 700; }
.auth-fine { font-size:.8rem; color:var(--muted); text-align:center; margin-top:18px; line-height:1.5; }
.auth-fine a { color:var(--ink-2); font-weight:600; text-decoration:underline; }
.pw-meter { height:5px; border-radius:100px; background:var(--line); margin-top:9px; overflow:hidden; }
.pw-meter i { display:block; height:100%; width:0; border-radius:100px; transition:width .3s var(--ease),background .3s; }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items:start; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px; box-shadow:var(--shadow-sm); }
.contact-methods { display:flex; flex-direction:column; gap:14px; margin-top:26px; }
.contact-method { display:flex; gap:14px; align-items:center; padding:16px; border:1px solid var(--line); border-radius:16px; background:#fff; transition:all .3s var(--ease); }
.contact-method:hover { border-color:var(--amber-300); transform:translateX(4px); box-shadow:var(--shadow-sm); }
.contact-method .cm-ic { width:46px; height:46px; border-radius:13px; display:grid; place-items:center; background:var(--amber-50); color:var(--amber-600); flex-shrink:0; }
.contact-method .cm-ic svg { width:22px; height:22px; }
.contact-method b { display:block; font-family:var(--display); font-size:1rem; }
.contact-method span { font-size:.9rem; color:var(--muted); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.textarea { min-height:140px; resize:vertical; padding:13px 15px; border:1.5px solid var(--line-2); border-radius:13px; width:100%; font-weight:500; transition:border-color .2s,box-shadow .2s; }
.textarea:focus { outline:none; border-color:var(--amber-400); box-shadow:var(--ring-amber); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 68px 0 40px; text-align: center; position: relative; overflow:hidden; }
.page-hero .hero-bg { background: radial-gradient(800px 400px at 50% -20%, var(--amber-50) 0%, transparent 60%); }
.page-hero .display { margin-top: 18px; }
.page-hero .lead { margin: 20px auto 0; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stats-band .stat { text-align: center; }

/* toast */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color:#fff; padding: 14px 22px; border-radius: 100px; font-weight: 600; font-size: .94rem; box-shadow: var(--shadow-lg); z-index: 2000; opacity: 0; pointer-events:none; transition: all .4s var(--ease); display:flex; align-items:center; gap:10px; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width:18px; height:18px; color: var(--green-300); }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"]{ transition-delay:.06s } [data-reveal-d="2"]{ transition-delay:.14s }
[data-reveal-d="3"]{ transition-delay:.22s } [data-reveal-d="4"]{ transition-delay:.3s }
[data-reveal-d="5"]{ transition-delay:.38s } [data-reveal-d="6"]{ transition-delay:.46s }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal]{ opacity:1; transform:none; }
}

/* ---------- Utilities ---------- */
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-48{margin-top:48px}.mt-64{margin-top:64px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-40{margin-bottom:40px}.mb-56{margin-bottom:56px}
.flex{display:flex}.items-center{align-items:center}.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}.wrap{flex-wrap:wrap}
.hide{display:none}

/* ---------- Responsive ---------- */
@media (max-width: 1080px){
  .footer-top { grid-template-columns: 1.4fr repeat(2,1fr); row-gap: 40px; }
  .bento .span-3 { grid-column: span 3; }
}
@media (max-width: 960px){
  .section { padding: 80px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .demo-grid { grid-template-columns: 1fr; }
  .demo-form { border-right: none; border-bottom: 1px solid var(--line); }
  .auth { grid-template-columns: 1fr; }
  .auth-panel { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .bento { grid-template-columns: repeat(4,1fr); }
  .bento .span-3 { grid-column: span 4; } .bento .span-4 { grid-column: span 4; } .bento > * { grid-column: span 2; }
}
@media (max-width: 820px){
  .nav-links, .link-signin { display: none; }
  .nav-toggle { display: block; }
  .nav-open .nav-links { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 20px 20px; box-shadow: var(--shadow-md); }
  .nav-open .nav-links a { padding: 13px 14px; font-size: 1.05rem; }
  .grid-3, .grid-4, .price-grid, .steps, .stats-band, .stats-band, .grid-2 { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .price-card.featured { order: -1; }
  .cta-band { padding: 48px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px){
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 72px; }
  .demo-form, .demo-result { padding: 26px; }
  .result-hero { flex-direction: column; text-align:center; align-items:center; }
  .result-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; } .bento > *, .bento .span-3, .bento .span-4 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); gap:18px; }
  .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: 40px 22px; }
  .auth-form-wrap { padding: 28px 20px; }
}
