/* ============================================================
   Accion Intelligence — site styles
   Zero-build static site. Anthropic-inspired: warm cream + navy.
   ============================================================ */

:root {
  --ink:      #14213d;   /* brand navy — primary text */
  --ink-soft: #3b3a4c;   /* body text */
  --muted:    #6f6159;   /* secondary text (warm greige) */
  --faint:    #9c8d85;   /* labels / tertiary */
  --line:     #e8d7d1;   /* hairlines */
  --line-2:   #ddc8c1;

  --bg:       #efe9e8;   /* warm off-white, faint blush — pink dialed down further */
  --bg-2:     #e6dddd;   /* slightly deeper (alt sections) */
  --card:     #f4eeed;   /* raised card */
  --parchment:#ebe5e5;   /* announce card + illustration plate */
  --navy:     #14213d;

  --accent:   #b8532f;   /* warm clay accent */
  --accent-soft: #c96a44;

  --logo-h:   28px;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 56px);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Spectral", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(60px, 9vw, 120px); }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 22px;
}
.lede { color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); line-height: 1.5; }
.divider { border: 0; border-top: 1px solid var(--line); margin: 0; }
.u { /* keeps multi-word phrases (e.g. "day-one") from breaking mid-line */
  white-space: nowrap;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: var(--logo-h); width: auto; }  /* transparent PNG — no blend needed */
.nav-links { display: flex; align-items: center; gap: clamp(22px, 3vw, 40px); }
.nav-links a:not(.btn) { font-size: 17px; color: var(--ink); transition: color .15s ease; }
.nav-links a:not(.btn):hover { color: var(--accent); }
.nav-links a.active:not(.btn) { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; line-height: 1;
  padding: 13px 22px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #20304f; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-navy { background: #fff; color: var(--ink); }
.btn-on-navy:hover { background: #f0ece2; transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 15px; border-radius: 9px; }

.arrow { display: inline-flex; align-items: center; gap: 8px; }
.arrow svg { transition: transform .15s ease; }
.arrow:hover svg { transform: translateX(3px); }

/* ============================================================
   HOME — hero (two columns, Anthropic-style)
   ============================================================ */
.home-hero { padding-block: clamp(48px, 8vw, 104px) clamp(56px, 9vw, 120px); }
.home-hero .grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 80px); align-items: end;
}
.home-hero h1 {
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.09; letter-spacing: -0.03em; font-weight: 700;
}
.home-hero h1 .hl { display: block; white-space: nowrap; }  /* one fixed line each */
@media (max-width: 720px) {
  .home-hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .home-hero h1 .hl { display: inline; white-space: normal; }  /* flow & wrap naturally */
}
.hero-right { padding-bottom: 6px; }
.hero-right p { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5; color: var(--ink-soft); }
.hero-right .hero-actions { margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   ANNOUNCING KAI
   ============================================================ */
.announce { padding-block: clamp(20px, 3vw, 44px) clamp(48px, 6.5vw, 86px); overflow: hidden; }
.announce-wrap { width: 100%; }
.announce-card {
  max-width: min(1340px, 92vw); margin-inline: auto;
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: 26px;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  transform-origin: center;
}
/* scroll-scrubbed "expand toward the edges" as the card enters view */
html.js .announce-card { transform: scale(calc(0.8 + 0.2 * var(--p, 1))); }
.announce-text { padding: clamp(34px, 4.5vw, 68px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.announce-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.4vw, 74px); line-height: 1.0;
  letter-spacing: -0.02em; font-weight: 500; color: var(--ink);
}
.announce-tag { font-size: clamp(16px, 1.5vw, 21px); color: var(--muted); margin-top: 18px; }
.announce-text .hero-actions { margin-top: 34px; }
.announce-art { position: relative; min-height: clamp(360px, 40vw, 520px); background: transparent; }
.announce-art svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-head { max-width: 820px; }
.serve-title { font-size: clamp(21px, 2.6vw, 33px); letter-spacing: -0.02em; font-weight: 700; line-height: 1.1; }
.serve-tagline { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; color: var(--muted); font-weight: 400; margin-top: 18px; max-width: 62ch; }
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 24px); margin-top: clamp(36px, 5vw, 56px); }
.serve-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(26px, 3vw, 40px);
  transition: border-color .18s ease, transform .18s ease;
}
.serve-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.serve-tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 999px; padding: 6px 13px; margin-bottom: 22px;
}
.serve-card h3 { font-size: clamp(16px, 1.7vw, 19px); letter-spacing: -0.005em; }
.serve-card p { color: var(--muted); font-size: 16.5px; margin-top: 14px; line-height: 1.55; }

/* ============================================================
   Shared: hero (blog/join), prose, rows, team, article
   ============================================================ */
.hero { padding-top: clamp(64px, 10vw, 120px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero h1 { font-size: clamp(36px, 6vw, 68px); letter-spacing: -0.035em; line-height: 1.02; }
.hero .lede { max-width: 52ch; margin-top: 26px; }

/* ---- Secondary-page header: single column, tagline sits under the headline ---- */
.page-head { padding-block: clamp(52px, 8vw, 104px) clamp(28px, 4vw, 44px); }
.page-head-grid { display: block; }
.page-head-grid .eyebrow { margin-bottom: 16px; }
.page-head-grid h1 { font-size: clamp(28px, 3.3vw, 42px); letter-spacing: -0.03em; line-height: 1.08; max-width: 22ch; }
.page-dek { font-size: clamp(17px, 1.7vw, 20px); color: var(--muted); line-height: 1.55; margin-top: 22px; max-width: 60ch; }
.page-dek .byline { display: block; margin-top: 14px; font-size: 14px; color: var(--faint); }
.backlink { display: inline-flex; align-items: center; gap: 7px; color: var(--faint); font-size: 14px; margin-bottom: 20px; }
.backlink:hover { color: var(--accent); }
/* Left-aligned reading column (article body, legal, demo form) — sits at container's left edge */
.reading { max-width: 680px; }

/* Join Us — two-column, full-width layout */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.join-left .eyebrow { margin-bottom: 16px; }
.join-left h1 { font-size: clamp(28px, 3.3vw, 42px); letter-spacing: -0.03em; line-height: 1.08; }
.join-right p { color: var(--ink-soft); font-size: 18px; line-height: 1.6; }
.join-right p + p { margin-top: 20px; }
@media (max-width: 900px) { .join-grid { grid-template-columns: 1fr; gap: 24px; } }

.block-title { font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -0.03em; max-width: 22ch; }
.prose-narrow { max-width: 680px; }
.prose-narrow p + p { margin-top: 20px; }
.prose-narrow p { color: var(--ink-soft); font-size: 18px; }
.prose-narrow strong { color: var(--ink); font-weight: 600; }

.rows { display: grid; margin-top: 8px; }
.row {
  display: grid; grid-template-columns: 220px 1fr; gap: clamp(20px, 5vw, 64px);
  padding-block: 34px; border-top: 1px solid var(--line); align-items: start;
}
.row h3 { font-size: 20px; letter-spacing: -0.01em; }
.row p { color: var(--muted); font-size: 16.5px; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 12px; }
.member { background: var(--card); padding: 30px clamp(24px, 3vw, 36px); }
.member .name { font-size: 20px; letter-spacing: -0.01em; }
.member .role { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }
.member .bio { color: var(--muted); font-size: 15.5px; margin-top: 14px; }

/* blog list — everything left-aligned at the container edge */
.post-list { border-top: 1px solid var(--line); margin-top: clamp(24px, 4vw, 44px); }
.post-item { display: block; padding-block: 30px; border-bottom: 1px solid var(--line); }
.post-item .date { display: block; color: var(--faint); font-size: 13px; letter-spacing: 0.02em; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.post-item h3 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; }
.post-item .excerpt { color: var(--muted); font-size: 16px; margin-top: 10px; max-width: 64ch; }
.post-item:hover h3 { color: var(--accent); }
.empty-state { border-top: 1px solid var(--line); margin-top: 40px; padding-block: 72px; text-align: center; color: var(--faint); font-size: 17px; }

/* ---- KAI product page: figures (sit inside the reading column, text-width) ---- */
.kai-figure { margin: clamp(20px, 3vw, 32px) 0; }
.kai-figure img, .kai-figure svg { width: 100%; height: auto; display: block; }

/* ---- KAI loop diagram (native HTML/CSS, race-track; site-token colors) ---- */
.kai-loop { max-width: 780px; margin-top: 12px; display: flex; flex-direction: column; gap: 14px; }
.loop-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.loop-box {
  background: var(--ink); border-radius: 16px; padding: 18px 20px;
  width: 234px; min-height: 116px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
  border: 1px solid rgba(255,255,255,0.10);
}
.loop-box h3 { color: #f6f2ec; font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; }
.loop-box p { color: #adb3c3; font-size: 13px; line-height: 1.4; margin: 0; }
.loop-mid { display: flex; align-items: center; justify-content: space-between; }
.mid-cell { width: 234px; display: flex; justify-content: center; }
.loop-center {
  background: var(--bg); border: 2px solid var(--accent); border-radius: 999px;
  width: 100px; height: 52px; display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 20px; font-weight: 700; letter-spacing: 0.02em;
}
.loop-row-bottom { flex-direction: row-reverse; }  /* DOM: Validate, arrow, Iterate → visual: Iterate … Validate */
.chevron { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.chevron::before {
  content: ""; position: absolute; inset: 0; margin: auto; width: 11px; height: 11px;
  border-right: 3px solid var(--accent); border-bottom: 3px solid var(--accent);
}
.chevron-right::before { transform: rotate(-45deg); }
.chevron-left::before  { transform: rotate(135deg); }
.chevron-up::before    { transform: rotate(-135deg); }
.chevron-down::before  { transform: rotate(45deg); }
@media (max-width: 720px) {
  .kai-loop { gap: 10px; align-items: stretch; }
  .loop-row, .loop-row-bottom { flex-direction: column; }
  .loop-mid { display: none; }
  .loop-row .chevron { display: none; }
  .loop-box { width: 100%; max-width: 360px; margin-inline: auto; }
}

/* article */
.article { max-width: 720px; margin-inline: auto; }
.article-head { padding-block: clamp(40px, 6vw, 80px) 12px; }
.article-head .date { color: var(--faint); font-size: 14px; }
.article-head h1 { font-size: clamp(30px, 5vw, 50px); letter-spacing: -0.03em; line-height: 1.06; margin-top: 18px; }
.article-head .sub { color: var(--muted); font-size: 20px; margin-top: 20px; }
.article-body { padding-bottom: 90px; font-size: 18px; }
.article-body > * + * { margin-top: 24px; }
.article-body h2 { font-size: 26px; letter-spacing: -0.02em; margin-top: 52px; }
.article-body p { color: var(--ink-soft); }
.article-body strong { color: var(--ink); }
.article-body ul { color: var(--ink-soft); padding-left: 22px; }
.article-body li { margin-top: 8px; }
.article-body blockquote { margin: 32px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--accent); font-size: 22px; letter-spacing: -0.01em; color: var(--ink); font-weight: 500; }
.article-body pre { background: var(--navy); color: #e7ecfb; border-radius: 12px; padding: 20px 22px; overflow-x: auto; font-family: var(--font-mono); font-size: 14px; line-height: 1.7; }
.article-body code { font-family: var(--font-mono); font-size: 0.92em; }

/* ============================================================
   LEGAL — Terms / Privacy
   ============================================================ */
.legal-doc { max-width: 760px; padding-block: clamp(48px, 7vw, 88px) 96px; }
.legal-doc .eyebrow { color: var(--accent); margin-bottom: 16px; font-size: 13px; }
.legal-doc h1 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.03em; line-height: 1.05; }
.legal-doc .updated { font-size: 13px; color: var(--faint); margin-top: 14px; }
.legal-doc .intro { color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; margin-top: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.legal-doc section { margin-top: 30px; }
.legal-doc h2 { font-size: 14.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 9px; }
.legal-doc h2 .num { color: var(--accent); font-variant-numeric: tabular-nums; margin-right: 12px; }
.legal-doc p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.72; }
.legal-doc p + p { margin-top: 12px; }
.legal-doc a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line-2); }
.legal-doc a:hover { color: var(--accent); }

/* Join Us — roles list */
.join-roles { list-style: none; padding: 0; margin: 26px 0 0; border-top: 1px solid var(--line); }
.join-roles li { padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 16.5px; color: var(--ink); }
.join-roles li span { color: var(--muted); }

/* ============================================================
   REQUEST A DEMO — form
   ============================================================ */
.demo-wrap { max-width: 720px; margin-inline: auto; }
.demo-head { padding-block: clamp(48px, 7vw, 92px) 6px; }
.demo-head .eyebrow { color: var(--accent); font-size: 13px; }
.demo-head h1 { font-size: clamp(32px, 4.6vw, 50px); letter-spacing: -0.03em; line-height: 1.04; }
.demo-head p { color: var(--muted); font-size: 18px; margin-top: 18px; max-width: 54ch; }
.demo-form { margin-top: 36px; padding-bottom: 96px; display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink); }
.field label .req { color: var(--accent); }
.field input, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink); background: var(--card);
  border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { min-height: 118px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.demo-submit { margin-top: 8px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-note { font-size: 13px; color: var(--faint); max-width: 42ch; }
.form-status { font-size: 14px; color: var(--accent); font-weight: 500; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER — subscribe + links, then legal + social row
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); margin-top: clamp(40px, 6vw, 80px); }
.footer-inner { padding-block: clamp(48px, 6vw, 72px) 30px; }

.footer-top2 { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px 56px; }
.subscribe { flex: 1 1 340px; max-width: 440px; }
.sub-label { font-size: 16px; color: var(--ink); margin-bottom: 14px; }
.sub-form { display: flex; gap: 10px; }
.sub-form input {
  flex: 1; min-width: 0; padding: 12px 16px; font: inherit; font-size: 15px;
  color: var(--ink); background: var(--card);
  border: 1px solid var(--line-2); border-radius: 10px;
}
.sub-form input::placeholder { color: var(--faint); }
.sub-form input:focus { outline: none; border-color: var(--ink); }
.sub-form button { white-space: nowrap; }

.footer-links { display: flex; gap: clamp(40px, 6vw, 80px); }
.footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; }
.footer-col a { display: block; font-size: 15px; color: var(--muted); margin-bottom: 12px; transition: color .15s ease; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 60px); padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 32px;
}
.footer-bottom-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-logo img { height: 24px; }
.footer-copy { font-size: 13px; color: var(--faint); }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13px; color: var(--muted); }
.footer-legal-links a { color: var(--muted); transition: color .15s ease; }
.footer-legal-links a:hover { color: var(--accent); }
.social { display: flex; align-items: center; gap: 16px; }
.social a { color: var(--ink); opacity: .7; transition: opacity .15s ease, color .15s ease; }
.social a:hover { opacity: 1; color: var(--accent); }
.social svg { width: 19px; height: 19px; display: block; }

/* ---------- reveal animation ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- KAI contour illustration animation ----------
   Elevation lines radiate outward: a glow travels from the inner
   contour to the outer ones, and ripples emanate from the plate. */
.kai-anim .k-ring { animation: k-glow 3.2s ease-in-out infinite; }
.kai-anim .k-ring:nth-child(7) { animation-delay: 0s; }
.kai-anim .k-ring:nth-child(6) { animation-delay: .11s; }
.kai-anim .k-ring:nth-child(5) { animation-delay: .22s; }
.kai-anim .k-ring:nth-child(4) { animation-delay: .33s; }
.kai-anim .k-ring:nth-child(3) { animation-delay: .44s; }
.kai-anim .k-ring:nth-child(2) { animation-delay: .55s; }
.kai-anim .k-ring:nth-child(1) { animation-delay: .66s; }
.kai-anim .ripple { transform-box: fill-box; transform-origin: center; animation: k-ripple 6s ease-out infinite; }
.kai-anim .ripple.r2 { animation-delay: 3s; }
@keyframes k-glow   { 0%,100% { opacity: .34; } 50% { opacity: .95; } }
@keyframes k-ripple { 0% { transform: scale(.7); opacity: 0; } 14% { opacity: .38; } 100% { transform: scale(1.42); opacity: 0; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .home-hero .grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .home-hero h1 { max-width: 18ch; }
  .announce-card { grid-template-columns: 1fr; }
  .announce-art { min-height: 300px; order: -1; }
  .announce-title { font-size: clamp(38px, 9vw, 60px); }
  .serve-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav { height: 60px; }
  .brand img { height: 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { white-space: nowrap; font-size: 16px; }
  .nav-links .btn { display: none; }  /* demo CTA lives in hero + footer on mobile */
  .row { grid-template-columns: 1fr; gap: 8px; padding-block: 26px; }
  .team-grid { grid-template-columns: 1fr; }
  .post-item { grid-template-columns: 1fr; gap: 6px; }
  .post-item .go { display: none; }
  .footer-top2 { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .nav { height: 56px; }
  .brand img { height: 18px; }
  .nav-links { gap: 15px; }
  .nav-links a { font-size: 15px; }
  .sub-form { flex-direction: column; }
  .sub-form button { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .kai-anim * { animation: none !important; }
}
