/* ============================================================
   Petlio — shared stylesheet
   Brand: blue paw + four-species ring (dog / bird / turtle / fish)
   Display: Baloo 2 · Body: Nunito Sans
   ============================================================ */

:root {
  --blue:   #4285F4;
  --blue-d: #2b6ad4;
  --navy:   #10265E;
  --red:    #EA4335;
  --yellow: #FBBC05;
  --green:  #34A853;

  --ink:    #111827;
  --muted:  #64748B;
  --line:   #E6ECF5;
  --bg:     #F6F8FC;
  --surface:#FFFFFF;
  --soft:   #EAF2FF;

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -22px rgba(16,38,94,.35);
  --shadow-sm: 0 8px 22px -14px rgba(16,38,94,.4);
  --maxw: 1120px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .display {
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 0;
}

a { color: var(--blue-d); text-decoration: none; }
a:hover { text-decoration: underline; }

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,248,252,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: "Baloo 2"; font-weight: 800;
  font-size: 1.35rem; color: var(--navy); }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.brand .wm { letter-spacing: -.01em; }
.brand .dot-blue { color: var(--blue); }

/* colored wordmark logo (crisp at any size) */
.brand img.wordmark { height: 32px; width: auto; border-radius: 0; }
.site-foot .brand img.wordmark { height: 30px; }
.brand img.brand-ic { width: 34px; height: 34px; border-radius: 9px; }
.site-foot .brand img.brand-ic { width: 32px; height: 32px; }
.brand { display: inline-flex; align-items: center; gap: 9px; }
.logo-word { font-family: "Baloo 2"; font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1; display: inline-flex; direction: ltr; }
.logo-word span:nth-child(1){ color: var(--blue); }
.logo-word span:nth-child(2){ color: var(--red); }
.logo-word span:nth-child(3){ color: var(--yellow); }
.logo-word span:nth-child(4){ color: var(--green); }
.logo-word span:nth-child(5){ color: var(--blue); }
.logo-word span:nth-child(6){ color: var(--red); }
.site-foot .logo-word { font-size: 1.3rem; }

/* language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 13px; font-family: "Nunito Sans"; font-weight: 700; font-size: .9rem;
  color: var(--navy); cursor: pointer; transition: border-color .2s;
}
.lang-btn:hover { border-color: var(--blue); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow); padding: 8px; display: none; grid-template-columns: 1fr 1fr;
  gap: 2px; width: 320px; max-height: 60vh; overflow-y: auto; z-index: 100;
}
.lang-menu.open { display: grid; }
.lang-menu button {
  text-align: left; background: none; border: none; border-radius: 9px; padding: 9px 12px; cursor: pointer;
  font-family: "Nunito Sans"; font-size: .92rem; color: var(--ink); display: flex; align-items: center; gap: 9px;
}
.lang-menu button:hover { background: var(--soft); }
.lang-menu button.active { background: var(--soft); color: var(--blue-d); font-weight: 700; }
.lang-menu button .flag { font-size: 1.1rem; }

[dir="rtl"] .hero .wrap, [dir="rtl"] .share .wrap, [dir="rtl"] .fair .wrap { direction: rtl; }
[dir="rtl"] .hero .lede, [dir="rtl"] .section-head { text-align: inherit; }
[dir="rtl"] .nav { flex-direction: row-reverse; }
[dir="rtl"] .hero h1 .mark::after { left: 0; right: 0; }

@media (max-width: 720px) {
  .lang-menu { grid-template-columns: 1fr; width: 240px; }
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--navy); font-weight: 600; font-size: .98rem; }
.nav a:hover { color: var(--blue-d); text-decoration: none; }
.nav .nav-cta {
  background: var(--blue); color: #fff; padding: 9px 18px; border-radius: 999px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), background .2s;
}
.nav .nav-cta:hover { background: var(--blue-d); transform: translateY(-1px); text-decoration: none; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 36px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue-d); background: var(--soft); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; }
.hero h1 .mark { position: relative; white-space: nowrap; }
.hero h1 .mark::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .28em;
  background: var(--yellow); opacity: .55; border-radius: 4px; z-index: -1;
}
.hero .lede { font-size: 1.14rem; color: var(--muted); max-width: 36ch; margin: 20px 0 30px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--navy); color: #fff; padding: 13px 22px; border-radius: var(--radius-sm);
  font-weight: 700; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), background .2s;
}
.store-btn:hover { transform: translateY(-2px); background: #16306f; text-decoration: none; }
.store-btn small { display: block; font-weight: 600; font-size: .68rem; opacity: .8; line-height: 1; margin-bottom: 2px; }
.store-btn span { font-size: 1.05rem; line-height: 1.1; }
.store-btn.ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: none; }
.store-btn.ghost:hover { background: #fff; border-color: var(--blue); }
.store-btn svg { width: 22px; height: 22px; flex: none; }
.hero .soon { font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* ---------- species ring (signature) ---------- */
.ring { position: relative; width: min(440px, 88vw); aspect-ratio: 1; margin: 0 auto; }
.ring .core {
  position: absolute; inset: 29%; border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px -26px rgba(16,38,94,.55), inset 0 0 0 5px #fff, 0 0 0 3px var(--blue);
}
.ring .core img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ring .node {
  position: absolute; width: 30%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; box-shadow: 0 16px 34px -16px rgba(16,38,94,.5), inset 0 0 0 4px #fff;
  border: 3px solid currentColor;
  animation: float 6s var(--ease) infinite;
  transition: transform .35s var(--ease);
}
.ring .node img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ring .node:hover { transform: scale(1.07); }
.ring .n1 { top: -2%;  left: 35%; color: var(--red);    animation-delay: 0s; }
.ring .n2 { top: 30%;  right: -3%; color: var(--green);  animation-delay: .8s; }
.ring .n3 { bottom: -2%; left: 35%; color: var(--yellow); animation-delay: 1.6s; }
.ring .n4 { top: 30%;  left: -3%; color: var(--blue);   animation-delay: 2.4s; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; justify-content: center; padding: 22px 24px; }
.strip span { font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 9px; font-size: .96rem; }
.strip svg { width: 19px; height: 19px; color: var(--green); }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.section-head { max-width: 60ch; margin: 0 auto 48px; text-align: center; }
.section-head .kicker {
  font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-d); margin-bottom: 12px; display: block;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }

/* feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .25s var(--ease), box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 18px;
}
.card .ic svg { width: 26px; height: 26px; }
.ic.b { background: var(--soft); color: var(--blue-d); }
.ic.g { background: #EAF7EF; color: var(--green); }
.ic.y { background: #FFF7D6; color: #B8860B; }
.ic.r { background: #FFEEEE; color: var(--red); }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* species band */
.species { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.species-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.species-grid figure { margin: 0; text-align: center; }
.species-grid .ph {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
}
.species-grid .ph::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 3px var(--c); opacity: .9;
}
.species-grid img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease); }
.species-grid figure:hover img { transform: scale(1.06); }
.species-grid figcaption { font-family: "Baloo 2"; font-weight: 700; color: var(--navy); margin-top: 12px; }

/* fair model callout */
.fair { background: linear-gradient(135deg, #10265E, #1c3f8f); color: #fff; }
.fair .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.fair h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.fair p { color: rgba(255,255,255,.82); font-size: 1.08rem; }
.fair .pills { display: flex; flex-direction: column; gap: 14px; }
.fair .pill {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-sm); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
}
.fair .pill svg { width: 24px; height: 24px; color: var(--yellow); flex: none; margin-top: 2px; }
.fair .pill b { display: block; font-family: "Baloo 2"; font-size: 1.05rem; margin-bottom: 2px; }
.fair .pill span { color: rgba(255,255,255,.75); font-size: .95rem; }

/* languages */
.langs { text-align: center; }
.lang-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto; }
.lang-chips span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-weight: 600; color: var(--navy); font-size: .95rem;
}

/* download CTA */
.download { text-align: center; }
.download .box {
  background: var(--surface); border: 1px solid var(--line); border-radius: 28px;
  padding: 56px 32px; box-shadow: var(--shadow); max-width: 760px; margin: 0 auto;
}
.download img.app-mark { width: 84px; height: 84px; margin-bottom: 20px; }
.download h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.download .cta-row { justify-content: center; margin-top: 26px; }

/* ---------- footer ---------- */
.site-foot { background: var(--navy); color: #fff; padding: 52px 0 30px; }
.site-foot .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.site-foot .brand { color: #fff; }
.site-foot .brand img { border-radius: 8px; }
.site-foot p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 34ch; }
.site-foot h4 { font-family: "Baloo 2"; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 0 0 14px; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-foot a { color: rgba(255,255,255,.85); font-weight: 600; font-size: .95rem; }
.site-foot a:hover { color: #fff; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  color: rgba(255,255,255,.6); font-size: .88rem;
}

/* ---------- feature showcase (deep-dive) ---------- */
.showcase { padding: 0 0 24px; }
.show-row {
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center;
  padding:46px 0; border-bottom:1px solid var(--line);
}
.show-row:last-child { border-bottom:none; }
.show-row.flip .show-text { order:2; }
.show-text .pill-tag {
  display:inline-flex; align-items:center; gap:7px; font-weight:800; font-size:.74rem; letter-spacing:.06em;
  text-transform:uppercase; padding:6px 12px; border-radius:999px; margin-bottom:14px; background:var(--soft); color:var(--blue-d);
}
.show-text.g .pill-tag { background:#EAF7EF; color:var(--green); }
.show-text.y .pill-tag { background:#FFF7D6; color:#B8860B; }
.show-text.r .pill-tag { background:#FFEEEE; color:var(--red); }
.show-text h3 { font-size:clamp(1.4rem,2.6vw,1.8rem); margin-bottom:12px; }
.show-text > p { color:var(--muted); font-size:1.05rem; margin-bottom:18px; }
.show-text ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.show-text li { display:flex; gap:11px; align-items:flex-start; font-size:.98rem; color:var(--ink); }
.show-text li svg { width:20px; height:20px; flex:none; margin-top:2px; color:var(--green); }
/* demo card */
.demo {
  background:#fff; border:1px solid var(--line); border-radius:24px; padding:26px;
  box-shadow:var(--shadow); position:relative; overflow:hidden;
}
.demo-head { display:flex; align-items:center; gap:11px; margin-bottom:18px; }
.demo-head .av { width:42px; height:42px; border-radius:12px; background:var(--soft); display:grid; place-items:center; color:var(--blue-d); flex:none; }
.demo-head .av svg { width:22px; height:22px; }
.demo-head b { font-family:"Baloo 2"; color:var(--navy); font-size:1.05rem; display:block; }
.demo-head span { color:var(--muted); font-size:.85rem; }
.demo-row { display:flex; justify-content:space-between; align-items:center; padding:11px 0; border-bottom:1px solid var(--line); font-size:.93rem; }
.demo-row:last-child { border-bottom:none; }
.demo-row .lbl { color:var(--ink); display:flex; align-items:center; gap:9px; }
.demo-row .lbl .dot { width:9px; height:9px; border-radius:50%; flex:none; }
.demo-row .val { font-weight:700; color:var(--navy); }
.demo-row .chip { font-size:.78rem; font-weight:700; padding:3px 10px; border-radius:999px; }
.chip.done { background:#EAF7EF; color:var(--green); }
.chip.due { background:#FFF7D6; color:#B8860B; }
.chip.soon { background:var(--soft); color:var(--blue-d); }
/* mini weight chart */
.spark { display:flex; align-items:flex-end; gap:7px; height:90px; margin-top:6px; }
.spark .bar { flex:1; background:linear-gradient(180deg,var(--blue),#7aa9f7); border-radius:6px 6px 0 0; position:relative; min-height:14px; }
.spark .bar span { position:absolute; top:-18px; left:50%; transform:translateX(-50%); font-size:.7rem; font-weight:700; color:var(--muted); }
/* lost-pet poster */
.poster { text-align:left; }
.poster-bar { display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.poster-bar .poster-ic { width:30px; height:30px; border-radius:8px; flex:none; }
.poster-bar .poster-name { font-family:"Baloo 2"; font-weight:800; font-size:1.15rem; color:var(--navy); flex:1; }
.poster-bar .poster-lost { background:var(--red); color:#fff; font-family:"Baloo 2"; font-weight:700; font-size:.74rem; padding:5px 12px; border-radius:999px; white-space:nowrap; }
.poster .ph { width:100%; aspect-ratio:1/1; border-radius:16px; overflow:hidden; border:1px solid var(--line); margin-bottom:14px; background:#f1f5f9; }
.poster .ph img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.poster-info { display:flex; flex-direction:column; gap:0; margin-bottom:12px; }
.pi-row { display:flex; justify-content:space-between; align-items:center; padding:9px 0; border-bottom:1px solid var(--line); font-size:.92rem; }
.pi-row:last-child { border-bottom:none; }
.pi-lbl { color:var(--muted); }
.pi-val { font-weight:700; color:var(--navy); }
.poster .meta { color:var(--red); font-size:.88rem; font-weight:600; text-align:center; background:var(--softRed,#FFEEEE); padding:9px; border-radius:10px; margin:0; }
/* gallery grid demo */
.gal { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.gal .cell { aspect-ratio:1; border-radius:12px; background:var(--soft); display:grid; place-items:center; position:relative; overflow:hidden; }
.gal .cell img { width:100%; height:100%; object-fit:cover; }
.gal .cell.lock { background:linear-gradient(135deg,#10265E,#1c3f8f); }
.gal .cell.lock svg { width:26px; height:26px; color:#fff; }
.gal .cell .yr { position:absolute; bottom:5px; left:6px; font-size:.7rem; font-weight:800; color:#fff; text-shadow:0 1px 3px rgba(0,0,0,.5); }

@media (max-width:860px){
  .show-row { grid-template-columns:1fr; gap:28px; padding:34px 0; }
  .show-row.flip .show-text { order:0; }
  .show-row .demo { order:2; }
}

/* ---------- AI dual-system ---------- */
.ai-band { background: linear-gradient(135deg, #EAF2FF 0%, #F6F8FC 100%); }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 10px; }
.ai-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.ai-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; }
.ai-card.smart::before { background: var(--blue); }
.ai-card.chat::before { background: var(--green); }
.ai-card .tag {
  display:inline-flex; align-items:center; gap:7px; font-weight:800; font-size:.75rem; letter-spacing:.06em;
  text-transform:uppercase; padding:6px 12px; border-radius:999px; margin-bottom:16px;
}
.ai-card.smart .tag { background: var(--soft); color: var(--blue-d); }
.ai-card.chat .tag { background:#EAF7EF; color: var(--green); }
.ai-card h3 { font-size:1.3rem; margin-bottom:10px; }
.ai-card p { color: var(--muted); margin-bottom:16px; }
.ai-bubble {
  background: var(--bg); border:1px solid var(--line); border-radius:14px; padding:13px 16px;
  font-size:.93rem; color: var(--ink); position:relative; margin-top:8px;
}
.ai-bubble.you { background: var(--soft); border-color:#d4e4ff; margin-left:28px; }
.ai-bubble .who { font-weight:800; font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); display:block; margin-bottom:3px; }

/* ---------- how it works ---------- */
.how-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; counter-reset:step; }
.how-step { text-align:center; position:relative; padding:0 12px; }
.how-step .circle {
  width:74px; height:74px; border-radius:50%; margin:0 auto 20px; display:grid; place-items:center;
  background:#fff; border:2px solid var(--line); box-shadow:var(--shadow-sm); position:relative;
}
.how-step .circle svg { width:32px; height:32px; color:var(--blue); }
.how-step .circle::after {
  counter-increment:step; content:counter(step); position:absolute; top:-8px; right:-8px;
  width:28px; height:28px; border-radius:50%; background:var(--blue); color:#fff;
  font-family:"Baloo 2"; font-weight:800; font-size:.95rem; display:grid; place-items:center;
}
.how-step h3 { font-size:1.15rem; margin-bottom:8px; }
.how-step p { color:var(--muted); font-size:.97rem; }
.how-grid .how-step:not(:last-child)::before {
  content:""; position:absolute; top:37px; left:calc(50% + 50px); right:calc(-50% + 50px); height:2px;
  background:repeating-linear-gradient(90deg,var(--line) 0 6px,transparent 6px 12px);
}

/* ---------- pricing ---------- */
.price-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:860px; margin:0 auto; }
.price-card {
  background:#fff; border:1px solid var(--line); border-radius:24px; padding:34px 30px; position:relative;
  display:flex; flex-direction:column;
}
.price-card.featured { border:2px solid var(--blue); box-shadow:var(--shadow); }
.price-card .ribbon {
  position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:#fff;
  font-family:"Baloo 2"; font-weight:700; font-size:.8rem; padding:5px 16px; border-radius:999px; white-space:nowrap;
}
.price-card h3 { font-size:1.4rem; margin-bottom:6px; }
.price-card .price { font-family:"Baloo 2"; font-weight:800; font-size:2.4rem; color:var(--navy); line-height:1; margin:8px 0; }
.price-card .price small { font-size:1rem; color:var(--muted); font-weight:600; }
.price-card .desc { color:var(--muted); font-size:.95rem; margin-bottom:20px; }
.price-card ul { list-style:none; padding:0; margin:0 0 24px; display:flex; flex-direction:column; gap:11px; flex:1; }
.price-card li { display:flex; gap:10px; align-items:flex-start; font-size:.96rem; color:var(--ink); }
.price-card li svg { width:19px; height:19px; flex:none; margin-top:2px; }
.price-card li.yes svg { color:var(--green); }
.price-card li.no { color:var(--muted); }
.price-card li.no svg { color:#cbd5e1; }
.price-btn {
  text-align:center; padding:13px; border-radius:var(--radius-sm); font-family:"Baloo 2"; font-weight:700;
  font-size:1rem; transition:transform .2s var(--ease);
}
.price-btn.primary { background:var(--blue); color:#fff; }
.price-btn.ghost { background:var(--bg); color:var(--navy); border:1px solid var(--line); }
.price-btn:hover { transform:translateY(-2px); text-decoration:none; }

/* ---------- reviews ---------- */
.reviews { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.review-empty {
  max-width:560px; margin:0 auto; text-align:center; background:var(--bg); border:1px dashed var(--line);
  border-radius:24px; padding:44px 32px;
}
.review-empty .stars { font-size:1.6rem; letter-spacing:4px; margin-bottom:14px; }
.review-empty p { color:var(--muted); margin-bottom:22px; }
.review-empty .signin {
  display:inline-flex; align-items:center; gap:9px; background:var(--blue); color:#fff;
  font-family:"Baloo 2"; font-weight:700; padding:12px 24px; border-radius:999px; cursor:pointer; border:none; font-size:1rem;
}
.review-empty .signin:hover { background:var(--blue-d); }
.review-empty .note { font-size:.85rem; color:var(--muted); margin:16px 0 0; }

@media (max-width:860px){
  .ai-grid, .price-grid { grid-template-columns:1fr; }
  .how-grid { grid-template-columns:1fr; gap:32px; }
  .how-grid .how-step:not(:last-child)::before { display:none; }
}

/* ---------- breed library ---------- */
.breeds-band { background: var(--bg); }
.breed-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: 168px; gap: 16px;
  overflow-x: auto; padding: 6px 4px 18px; scroll-snap-type: x proximity;
  scrollbar-width: thin;
}
.breed-card {
  scroll-snap-align: start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.breed-card:hover { transform: translateY(-4px); }
.breed-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.breed-card .meta { padding: 12px 14px; }
.breed-card .sp { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-d); }
.breed-card .bn { font-family: "Baloo 2"; font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.2; }
.breed-note { text-align: center; color: var(--muted); margin-top: 14px; font-size: .96rem; }

/* ---------- sharing split ---------- */
.share .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.share-art {
  background: linear-gradient(135deg, #EAF2FF, #fff); border: 1px solid var(--line);
  border-radius: 28px; padding: 36px; display: grid; place-items: center; box-shadow: var(--shadow);
}
.share-art img { width: min(260px, 70%); height: auto; }
.share h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.share .list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 16px; }
.share .list li { display: flex; gap: 13px; align-items: flex-start; }
.share .list svg { width: 24px; height: 24px; color: var(--green); flex: none; margin-top: 2px; }
.share .list b { font-family: "Baloo 2"; color: var(--navy); display: block; }
.share .list span { color: var(--muted); font-size: .96rem; }

/* ---------- early access (instead of fake reviews) ---------- */
.early { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.early-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.early-card { text-align: center; padding: 28px 22px; }
.early-card .num { font-family: "Baloo 2"; font-weight: 800; font-size: 2.4rem; line-height: 1; }
.early-card .num.b { color: var(--blue); } .early-card .num.g { color: var(--green); } .early-card .num.y { color: #C89400; }
.early-card p { color: var(--muted); margin: 10px 0 0; font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px; font-family: "Baloo 2"; font-weight: 700;
  color: var(--navy); font-size: 1.06rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--blue); flex: none; transition: transform .25s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 22px 20px; color: #2c374e; }
.faq-item .a p { margin: 0; }

/* ---------- contact CTA ---------- */
.contact { text-align: center; }
.contact .box {
  background: linear-gradient(135deg, #10265E, #1c3f8f); color: #fff; border-radius: 28px;
  padding: 56px 32px; max-width: 760px; margin: 0 auto; box-shadow: var(--shadow);
}
.contact h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.3rem); }
.contact p { color: rgba(255,255,255,.82); max-width: 46ch; margin: 14px auto 24px; }
.contact .mailbtn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--yellow); color: var(--navy);
  font-family: "Baloo 2"; font-weight: 700; padding: 14px 26px; border-radius: 999px; font-size: 1.05rem;
  transition: transform .2s var(--ease);
}
.contact .mailbtn:hover { transform: translateY(-2px); text-decoration: none; }

@media (max-width: 900px) {
  .share .wrap { grid-template-columns: 1fr; gap: 28px; }
  .share-art { order: -1; }
  .early-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- legal pages ---------- */
.legal { padding: 56px 0 80px; }
.legal .wrap { max-width: 800px; }
.legal .back { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; margin-bottom: 22px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-weight: 600; margin-bottom: 36px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; padding-top: 8px; }
.legal h3 { font-size: 1.1rem; color: var(--navy); margin: 24px 0 8px; }
.legal p, .legal li { color: #2c374e; font-size: 1.02rem; }
.legal ul { padding-left: 22px; margin: 0 0 16px; }
.legal li { margin-bottom: 8px; }
.legal .callout {
  background: var(--soft); border: 1px solid #d4e4ff; border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 22px 0;
}
.legal .callout p:last-child { margin: 0; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .98rem; }
.legal th, .legal td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { background: #fff; color: var(--navy); font-family: "Baloo 2"; }
.legal a.mail { font-weight: 700; }
.toc { background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 34px; }
.toc h4 { margin:0 0 10px; font-family:"Baloo 2"; color:var(--navy); }
.toc ol { margin:0; padding-left: 20px; columns: 2; gap: 24px; }
.toc li { margin-bottom: 6px; }
.toc a { font-weight: 600; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 44px; }
  .hero .lede { max-width: none; }
  .features { grid-template-columns: 1fr 1fr; }
  .fair .wrap { grid-template-columns: 1fr; gap: 28px; }
  .species-grid { grid-template-columns: repeat(3, 1fr); }
  .site-foot .wrap { grid-template-columns: 1fr 1fr; }
  .nav a:not(.nav-cta) { display: none; }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
  .species-grid { grid-template-columns: repeat(2, 1fr); }
  .site-foot .wrap { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .store-btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
