/* ============================================================
   Claudey — parody landing page
   ============================================================ */

:root {
  --ink: #17130F;
  --ink-soft: #5B534C;
  --paper: #FFF6EC;
  --paper-2: #FFEEDC;
  --card: #FFFFFF;
  --accent: #FF5B35;
  --violet: #6C5CE7;
  --yellow: #FFD84D;
  --green: #2BB673;

  --line: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --radius: 18px;

  /* Concrete families first: some headless/minimal Linux renderers resolve
     `system-ui` to a monospace face, which wrecks the display type. */
  --sans: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Helvetica,
          "Liberation Sans", "DejaVu Sans", Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

p { margin: 0; }
em { font-style: italic; }

a { color: inherit; }

.wrap { width: min(1160px, 100% - 48px); margin-inline: auto; }
.wrap.narrow { width: min(760px, 100% - 48px); }

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

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 999;
  background: var(--ink); color: var(--paper); padding: 10px 16px;
  border-radius: 0 0 12px 12px; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

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

.btn {
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  cursor: pointer;
  background: var(--card);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; }
.btn-ghost { background: transparent; border-color: transparent; box-shadow: none; }
.btn-ghost:hover { background: var(--paper-2); box-shadow: none; transform: none; }
.btn-lg { padding: 15px 30px; font-size: 18px; box-shadow: var(--shadow); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-mini { padding: 6px 14px; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
.btn-full { width: 100%; }
.btn-dead {
  background: #E7E1D9; color: #9A928A; cursor: not-allowed;
  box-shadow: none; border-color: #C9C1B8;
}
.btn-dead:hover { transform: none; box-shadow: none; }

/* ---------------- nav ---------------- */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 246, 236, .88);
  backdrop-filter: blur(10px);
  border-bottom: var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 21px; letter-spacing: -0.04em;
  text-decoration: none;
}
.brand-mark { width: 32px; height: 32px; flex: none; }
.tm { font-size: 11px; vertical-align: super; opacity: .55; }

.nav-links {
  display: flex; gap: 26px; margin-left: auto;
  font-weight: 600; font-size: 15px;
}
.nav-links a { text-decoration: none; opacity: .78; }
.nav-links a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.nav-cta { display: flex; gap: 10px; margin-left: auto; }
.nav-links + .nav-cta { margin-left: 0; }

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

.hero {
  position: relative;
  padding: 76px 0 84px;
  background:
    radial-gradient(900px 420px at 78% 18%, rgba(108, 92, 231, .17), transparent 62%),
    radial-gradient(700px 380px at 10% 90%, rgba(255, 91, 53, .13), transparent 60%);
}
.hero-inner {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: var(--line); border-radius: 999px;
  padding: 7px 16px 7px 12px; font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(43, 182, 115, .6);
  animation: pulse 1.9s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(43, 182, 115, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 182, 115, 0); }
}

h1 { font-size: clamp(42px, 6.4vw, 78px); isolation: isolate; }
.hl {
  position: relative; color: var(--accent); white-space: nowrap;
}
.hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .1em; height: .3em;
  background: var(--yellow); z-index: -1; border-radius: 4px;
  transform: rotate(-1.2deg);
}

.lede {
  font-size: 19px; color: var(--ink-soft);
  max-width: 30em; margin-top: 24px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.fineprint { margin-top: 16px; font-size: 14px; color: var(--ink-soft); }

/* hero art */
.hero-art { position: relative; display: grid; place-items: center; min-height: 380px; }
.orbit {
  position: absolute; inset: 6% 4%;
  border: 3px dashed rgba(23, 19, 15, .16); border-radius: 50%;
  animation: spin 34s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.mascot-stage { position: relative; width: 100%; display: grid; place-items: center; }
.mascot-lg {
  width: min(280px, 62vw); height: min(280px, 62vw);
  filter: drop-shadow(8px 10px 0 rgba(23, 19, 15, .16));
}

.bubble {
  position: absolute;
  background: var(--card); border: var(--line); border-radius: 16px;
  padding: 10px 16px; font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-sm); white-space: nowrap;
  animation: float 5.5s ease-in-out infinite;
}
.bubble-a { top: 2%; left: -4%; background: var(--yellow); }
.bubble-b { top: 44%; right: -8%; animation-delay: .8s; }
.bubble-c { bottom: 4%; left: 2%; background: var(--violet); color: #fff; animation-delay: 1.7s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-11px) rotate(1.5deg); }
}

/* mascot animation */
.m-bob { animation: bob 4s ease-in-out infinite; transform-origin: 60px 110px; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
.m-eyes { animation: blink 5.4s infinite; transform-origin: 62px 62px; }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(.08); }
}
.m-pupil { animation: look 6.5s ease-in-out infinite; }
@keyframes look {
  0%, 40% { transform: translateX(0); }
  55%, 80% { transform: translateX(-5px); }
  90%, 100% { transform: translateX(0); }
}
.m-bulb { animation: glow 2.2s ease-in-out infinite; transform-origin: 60px 7px; }
@keyframes glow {
  0%, 100% { fill: var(--yellow); }
  50% { fill: #FFF0A8; }
}

/* ---------------- ticker ---------------- */

.ticker {
  border-block: var(--line);
  background: var(--violet); color: #fff;
  overflow: hidden; padding: 12px 0;
  font-weight: 900; letter-spacing: .06em; font-size: 15px;
}
.ticker-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ticker-track span { padding-right: 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

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

.stats { padding: 56px 0; background: var(--paper-2); border-bottom: var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; }
.stat b {
  display: block; font-size: clamp(30px, 3.6vw, 46px); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1;
}
.stat:nth-child(1) b { color: var(--accent); }
.stat:nth-child(2) b { color: var(--violet); }
.stat:nth-child(3) b { color: var(--green); }
.stat:nth-child(4) b { color: var(--ink); }
.stat span { display: block; margin-top: 10px; font-size: 14px; color: var(--ink-soft); font-weight: 600; }

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

.section { padding: 92px 0; }
.section-alt { background: var(--paper-2); border-block: var(--line); }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin: 0; text-align: left; }
.kicker {
  font-size: 13px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
h2 { font-size: clamp(32px, 4.4vw, 52px); }
.sub { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }

/* ---------------- feature cards ---------------- */

.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card {
  background: var(--card); border: var(--line); border-radius: var(--radius);
  padding: 28px 26px 30px; box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px; height: 52px; border: var(--line); border-radius: 14px;
  display: grid; place-items: center; font-size: 24px;
  background: var(--ic, var(--yellow)); margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 21px; margin-bottom: 12px; letter-spacing: -0.03em; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------------- demo / chat ---------------- */

.demo-wrap {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.tick-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.tick-list li {
  position: relative; padding-left: 32px; font-weight: 600; font-size: 15.5px;
}
.tick-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 13px; font-weight: 900;
  border: 2px solid var(--ink);
}

.chat {
  background: var(--card); border: var(--line); border-radius: 22px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-direction: column; min-height: 470px;
}
.chat-top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-bottom: var(--line); background: var(--violet); color: #fff;
}
.chat-avatar { width: 38px; height: 38px; flex: none; }
.chat-top strong { display: block; font-size: 16px; letter-spacing: -0.02em; }
.status { display: flex; align-items: center; gap: 6px; font-size: 12.5px; opacity: .9; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: #7CF5B4; }
.chat-x {
  margin-left: auto; background: transparent; border: 0; color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; padding: 0 4px; opacity: .8;
}
.chat-x:hover { opacity: 1; }

.chat-log {
  flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px;
  overflow-y: auto; max-height: 340px; background:
    radial-gradient(circle at 1px 1px, rgba(23,19,15,.07) 1px, transparent 0) 0 0/18px 18px;
}
.msg {
  max-width: 82%; padding: 11px 16px; border: 2px solid var(--ink);
  border-radius: 16px; font-size: 15px; box-shadow: 2px 2px 0 var(--ink);
  animation: pop .22s ease-out;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to { opacity: 1; transform: none; }
}
.msg.bot { align-self: flex-start; background: var(--paper); border-bottom-left-radius: 5px; }
.msg.me { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 5px; }
.msg.typing { display: flex; gap: 5px; padding: 15px 18px; }
.msg.typing i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink-soft);
  animation: dots 1.2s infinite;
}
.msg.typing i:nth-child(2) { animation-delay: .18s; }
.msg.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes dots {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-choices {
  display: flex; flex-wrap: wrap; gap: 9px;
  padding: 16px 18px; border-top: var(--line); background: var(--paper-2);
}
.chip {
  font: inherit; font-size: 14px; font-weight: 700;
  border: 2px solid var(--ink); border-radius: 999px; background: var(--card);
  padding: 8px 15px; cursor: pointer; box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s ease, background .12s ease;
}
.chip:hover { transform: translate(-1px, -1px); background: var(--yellow); }
.chip:disabled { opacity: .45; cursor: default; transform: none; }

/* ---------------- reviews ---------------- */

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  margin: 0; background: var(--card); border: var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 16px;
}
.review:nth-child(2n) { transform: rotate(-.7deg); }
.review:nth-child(3n) { transform: rotate(.6deg); }
.stars { color: var(--accent); font-size: 18px; letter-spacing: 3px; }
.review blockquote { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.review figcaption {
  margin-top: auto; font-size: 14px; font-weight: 800;
  padding-top: 14px; border-top: 2px dashed rgba(23,19,15,.18);
}
.review figcaption span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 13px; }
.review.featured { background: var(--yellow); }

/* ---------------- pricing ---------------- */

.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.plan {
  background: var(--card); border: var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.plan h3 { font-size: 20px; }
.price { font-size: 38px; font-weight: 900; letter-spacing: -0.045em; line-height: 1; }
.price span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; margin-top: 6px; }
.plan-note { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.plan ul { list-style: none; padding: 0; margin: 4px 0 auto; display: grid; gap: 10px; }
.plan li { position: relative; padding-left: 24px; font-size: 14.5px; }
.plan li::before { content: "+"; position: absolute; left: 4px; font-weight: 900; color: var(--accent); }
.plan .btn { margin-top: 18px; }
.plan-fine { font-size: 12px; color: var(--ink-soft); text-align: center; }

.plan-pop {
  position: relative; background: var(--violet); color: #fff;
  box-shadow: var(--shadow-lg); transform: translateY(-10px);
}
.plan-pop .plan-note, .plan-pop .price span, .plan-pop .plan-fine { color: rgba(255,255,255,.75); }
.plan-pop li::before { color: var(--yellow); }
.badge {
  position: absolute; top: -15px; right: 18px;
  background: var(--yellow); border: var(--line); border-radius: 999px;
  padding: 4px 14px; font-size: 12px; font-weight: 900; color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink); transform: rotate(3deg);
}
.plan-dead { background: #F3EEE7; }
.plan-dead ul { opacity: .6; }

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

.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--card); border: var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 52px 18px 22px; font-weight: 800; font-size: 17px;
  list-style: none; position: relative; letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 900; color: var(--accent); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary { background: var(--yellow); border-bottom: var(--line); }
.faq p { padding: 18px 22px 22px; color: var(--ink-soft); font-size: 16px; }

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

.cta {
  padding: 90px 0 100px; border-top: var(--line);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(255, 91, 53, .18), transparent 65%),
    var(--paper-2);
}
.cta-inner { text-align: center; display: grid; justify-items: center; gap: 18px; }
.cta-mascot { width: 84px; height: 84px; }
.cta p { color: var(--ink-soft); max-width: 34em; }
.signup { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.signup input {
  font: inherit; padding: 13px 20px; border: var(--line); border-radius: 999px;
  min-width: 280px; background: var(--card); box-shadow: var(--shadow-sm);
}
.unsub {
  font: inherit; font-size: 13px; font-weight: 700; color: var(--ink-soft);
  background: transparent; border: 0; text-decoration: underline; cursor: pointer;
  padding: 6px 10px; text-underline-offset: 3px;
}
.cta-fine { font-size: 13px; max-width: 40em; }

/* dodging buttons */
.dodger { transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .12s ease; }

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

.footer { background: var(--ink); color: var(--paper); padding: 62px 0 32px; }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 2fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 2px solid rgba(255,246,236,.16);
}
.footer .brand-mark { filter: drop-shadow(0 0 0 transparent); }
.footer-brand p { color: rgba(255,246,236,.6); font-size: 15px; margin-top: 14px; max-width: 26em; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; color: var(--yellow); }
.footer-cols a {
  display: block; text-decoration: none; color: rgba(255,246,236,.68);
  font-size: 15px; padding: 5px 0;
}
.footer-cols a:hover { color: var(--paper); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  padding-top: 26px; display: flex; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; font-size: 13.5px; color: rgba(255,246,236,.55);
}
.footer-note { font-style: italic; }

/* ---------------- floating claudey ---------------- */

.floaty {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: flex; align-items: flex-end; gap: 10px;
  animation: slideIn .42s cubic-bezier(.34, 1.4, .64, 1);
}
.floaty.leaving { animation: slideOut .3s ease-in forwards; }
@keyframes slideIn {
  from { opacity: 0; transform: translateY(40px) scale(.9); }
  to { opacity: 1; transform: none; }
}
@keyframes slideOut {
  to { opacity: 0; transform: translateY(30px) scale(.92); }
}
.floaty-bubble {
  position: relative; background: var(--card); border: var(--line);
  border-radius: 18px; padding: 18px 20px 16px; max-width: 290px;
  box-shadow: var(--shadow);
}
.floaty-bubble::after {
  content: ""; position: absolute; right: -12px; bottom: 26px;
  width: 16px; height: 16px; background: var(--card);
  border-right: var(--line); border-bottom: var(--line);
  transform: rotate(-45deg);
}
.floaty-bubble p { font-size: 15px; font-weight: 600; padding-right: 14px; }
.floaty-x {
  position: absolute; top: 6px; right: 8px; background: transparent; border: 0;
  font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink-soft);
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
  padding: 2px 6px;
}
.floaty-x:hover { color: var(--ink); }
.floaty-actions { display: flex; gap: 8px; margin-top: 14px; }
.floaty-count { font-size: 11.5px; color: var(--ink-soft); margin-top: 10px; font-style: italic; }
.floaty-mascot {
  width: 74px; height: 74px; flex: none;
  filter: drop-shadow(4px 4px 0 rgba(23,19,15,.2));
}

/* ---------------- cookies ---------------- */

.cookies {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--ink); color: var(--paper);
  border-top: 3px solid var(--yellow);
  padding: 16px 0;
  animation: slideUp .4s ease-out;
}
@keyframes slideUp { from { transform: translateY(100%); } }
.cookies-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  justify-content: space-between;
}
.cookies p { font-size: 14.5px; max-width: 60ch; color: rgba(255,246,236,.82); }
.cookies strong { color: var(--paper); }
.cookies-btns { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cookie-link {
  font: inherit; font-size: 13px; background: transparent; border: 0;
  color: rgba(255,246,236,.6); text-decoration: underline; cursor: pointer;
  text-underline-offset: 3px;
}

/* ---------------- toasts ---------------- */

.toasts {
  position: fixed; top: 88px; right: 22px; z-index: 100;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
  pointer-events: none;
}
.toast {
  background: var(--ink); color: var(--paper);
  border-radius: 12px; padding: 12px 18px; font-size: 14px; font-weight: 600;
  max-width: 320px; box-shadow: var(--shadow-sm);
  border: 2px solid var(--yellow);
  animation: toastIn .3s cubic-bezier(.34, 1.5, .64, 1);
}
.toast.out { animation: toastOut .3s ease-in forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateX(30px); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(30px); } }

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

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; min-height: 300px; }
  .demo-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan-pop { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: min(1160px, 100% - 32px); }
  .section { padding: 64px 0; }
  .cards, .reviews, .plans { grid-template-columns: 1fr; }
  .review:nth-child(2n), .review:nth-child(3n) { transform: none; }
  .bubble { font-size: 12px; padding: 7px 11px; }
  .bubble-b { right: -2%; }
  .nav-cta .btn-ghost { display: none; }
  .floaty { right: 12px; bottom: 12px; }
  .floaty-bubble { max-width: 230px; }
  .floaty-mascot { width: 54px; height: 54px; }
  .toasts { top: 82px; right: 12px; left: 12px; align-items: stretch; }
  .signup input { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
