/*
 * MyPS Manager — site styles.
 *
 * The palette is the product's own Aurora theme, converted from its oklch
 * values, so the site and the app look like one thing rather than two.
 * Motion is CSS-driven and gated on prefers-reduced-motion; nothing here
 * depends on JavaScript to be readable.
 */

:root {
  --brand: #f2600c;
  --brand-2: #ff9a4d;
  --brand-ink: #7a2f05;
  --ink: #1b2230;
  --ink-2: #4a5568;
  --ink-3: #7b8595;
  --bg: #fbfbfd;
  --bg-2: #f4f5f8;
  --card: #ffffff;
  --line: #e6e8ee;
  --ok: #0f9d58;
  --ok-bg: #e8f5ee;
  --warn: #b45309;
  --warn-bg: #fdf3e7;
  --info: #1d4ed8;
  --info-bg: #eaf0fe;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(20,25,40,.05), 0 12px 32px -12px rgba(20,25,40,.14);
  --shadow-lg: 0 2px 4px rgba(20,25,40,.06), 0 28px 60px -20px rgba(20,25,40,.22);
  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); font-weight: 800; letter-spacing: -.035em; white-space: pre-line; }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.5rem); font-weight: 750; letter-spacing: -.03em; }
h3 { font-size: 1.12rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; color: var(--ink); }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: .75rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ── navigation ───────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,253,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.stuck { border-bottom-color: var(--line); background: rgba(251,251,253,.95); }
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: -.02em; }
.mark { width: 30px; height: 30px; flex: none; }
.brand-text { font-size: 1.08rem; }
.brand-accent { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: .25rem; margin-inline-start: 1rem; flex: 1; }
.nav-links > a, .dd-btn {
  font: inherit; font-size: .95rem; font-weight: 550; color: var(--ink-2);
  background: none; border: 0; cursor: pointer;
  padding: .5rem .75rem; border-radius: 9px;
  display: inline-flex; align-items: center; gap: .3rem;
}
.nav-links > a:hover, .dd-btn:hover { color: var(--ink); background: var(--bg-2); }
.nav-links .is-active { color: var(--brand); }
.chev { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; transition: transform .2s; }
.dd[data-open] .chev { transform: rotate(180deg); }

.dd { position: relative; }
.dd-panel {
  position: absolute; top: calc(100% + 10px); inset-inline-start: 0;
  width: 560px; max-width: 86vw;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: .6rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .15rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.dd[data-open] .dd-panel { opacity: 1; visibility: visible; transform: none; }
.dd-panel a {
  display: flex; gap: .65rem; align-items: flex-start;
  padding: .6rem .7rem; border-radius: 12px;
}
.dd-panel a:hover { background: var(--bg-2); }
.dd-panel strong { display: block; font-size: .92rem; font-weight: 600; }
.dd-panel em { display: block; font-style: normal; font-size: .8rem; color: var(--ink-3); line-height: 1.4; }
.dd-ico { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--brand); display: grid; place-items: center; }
.dd-ico svg { width: 16px; height: 16px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.dd-all { grid-column: 1 / -1; color: var(--brand); font-weight: 600; font-size: .88rem; justify-content: flex-start; }

.nav-right { display: flex; align-items: center; gap: .6rem; }
.lang {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  border: 1px solid var(--line); border-radius: 8px; padding: .3rem .5rem; color: var(--ink-2);
}
.lang:hover { border-color: var(--brand); color: var(--brand); }

.burger { display: none; background: none; border: 0; padding: .45rem; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; margin: 4px 0; transition: .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile { border-top: 1px solid var(--line); background: var(--card); padding: .75rem 0 1.25rem; }
.mobile .wrap { display: flex; flex-direction: column; gap: .15rem; }
.mobile a { padding: .7rem .25rem; font-weight: 550; border-bottom: 1px solid var(--line); }
.mobile a.btn { border: 0; margin-top: .75rem; justify-content: center; }

/* ── buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  font-weight: 600; font-size: .98rem; padding: .78rem 1.4rem; border-radius: 11px;
  border: 1px solid transparent; cursor: pointer; transition: transform .16s, box-shadow .16s, background .16s;
  white-space: nowrap;
}
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-lg { padding: .95rem 1.7rem; font-size: 1.03rem; width: 100%; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px -6px rgba(242,96,12,.6); }
.btn-primary:hover { background: #db560a; transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(242,96,12,.7); }
.btn-ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-3); transform: translateY(-1px); }
.btn-light { background: #fff; color: var(--brand-ink); }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -10px rgba(0,0,0,.4); }

/* ── shared blocks ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .9rem;
}
.fico.inline { width: 20px; height: 20px; border-radius: 6px; }
.fico.inline svg { width: 12px; height: 12px; }
.lede { font-size: 1.12rem; color: var(--ink-2); max-width: 62ch; }
.sec { padding: 5.5rem 0; }
.sec.narrow { padding-top: 0; }
.sec.alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec-head { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.sec-head .lede { margin-inline: auto; }

.hero { position: relative; padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3.5rem; align-items: center; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.6rem 0 1.4rem; }
.glow {
  position: absolute; inset-inline-start: 50%; top: -260px; width: 900px; height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255,154,77,.30), transparent 72%);
  filter: blur(14px); pointer-events: none;
}
.glow.small { width: 700px; height: 380px; top: -200px; opacity: .8; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.ticks li { position: relative; padding-inline-start: 1.7rem; color: var(--ink-2); font-size: .98rem; }
.ticks li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .48em;
  width: 12px; height: 7px; border-inline-start: 2.2px solid var(--brand); border-bottom: 2.2px solid var(--brand);
  transform: rotate(-45deg);
}
.ticks.small li { font-size: .9rem; }

.strip { background: var(--ink); color: #fff; padding: 2.2rem 0; }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-v { display: block; font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; color: var(--brand-2); }
.stat-l { font-size: .88rem; color: rgba(255,255,255,.66); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }

.card, .fcard, .fwide {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .45rem; }
.card p, .fcard p, .fwide p { color: var(--ink-2); font-size: .96rem; margin: 0; }
.fcard { display: block; transition: transform .2s, box-shadow .2s, border-color .2s; }
.fcard:hover, .fwide:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: #d8dbe4; }
.fico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand-2), var(--brand)); margin-bottom: 1rem;
}
.fico svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.more { display: inline-block; margin-top: .9rem; color: var(--brand); font-weight: 600; font-size: .88rem; }
.fwide { display: flex; gap: 1.25rem; align-items: flex-start; }
.fwide .fico { margin: 0; flex: none; }
.fwide h3 { font-size: 1.22rem; }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.split.rev .split-copy { order: 2; }
.split .ticks { margin: 1.25rem 0; }
.link-arrow { color: var(--brand); font-weight: 600; }

.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.steps li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.steps h3 { font-size: 1.02rem; margin: .7rem 0 .35rem; }
.steps p { color: var(--ink-2); font-size: .94rem; margin: 0; }
.step-n {
  display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px;
  background: var(--brand); color: #fff; font-weight: 700; font-size: .95rem;
}
.center-steps { grid-template-columns: repeat(3, 1fr); text-align: start; margin-top: 2.5rem; }
.center-steps .step-n { margin-bottom: .7rem; }

.faq { max-width: 780px; margin-inline: auto; display: grid; gap: .6rem; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: 0 1.25rem;
  transition: border-color .2s;
}
.faq details[open] { border-color: #d5d8e2; }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 600; padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--brand); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-bottom: 1.1rem; }
.faq p { color: var(--ink-2); margin: 0; font-size: .97rem; }

.band { background: linear-gradient(135deg, #f2600c, #ff9a4d); color: #fff; padding: 4.5rem 0; }
.band-inner { text-align: center; max-width: 680px; margin-inline: auto; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.92); font-size: 1.1rem; }
.band strong { color: #fff; }
.band-actions { display: flex; flex-direction: column; align-items: center; gap: .7rem; margin-top: 1.6rem; }
.band-note { font-size: .86rem; color: rgba(255,255,255,.8); }

.page-head { position: relative; padding: 3.5rem 0 2.5rem; overflow: hidden; }
.page-head.tall { padding: 5rem 0 4rem; }
.page-head .lede { font-size: 1.15rem; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.crumbs { display: flex; gap: .5rem; font-size: .85rem; color: var(--ink-3); margin-bottom: 1.25rem; }
.crumbs a:hover { color: var(--brand); }

.tick-badge { width: 72px; height: 72px; margin: 0 auto 1.5rem; }
.tick-badge svg { width: 100%; height: 100%; fill: none; stroke: var(--ok); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.tick-badge circle { stroke: var(--ok-bg); stroke-width: 5; }
.tick-badge path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s .2s forwards; }

/* ── form ─────────────────────────────────────────────────────── */
.signup-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 3rem; align-items: start; }
.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field > span { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; }
.field i { color: var(--brand); font-style: normal; }
.field em { display: block; font-style: normal; font-size: .8rem; color: var(--ink-3); margin-top: .35rem; }
input[type=text], input[type=email], input[type=tel], input[type=url], select, textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: .72rem .85rem; border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(242,96,12,.14);
}
textarea { resize: vertical; }
.check { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--ink-2); margin: 1.25rem 0 1.5rem; }
.check input { margin-top: .25rem; accent-color: var(--brand); width: 16px; height: 16px; flex: none; }
.form-note { font-size: .84rem; color: var(--ink-3); text-align: center; margin: .9rem 0 0; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.aside { position: sticky; top: 92px; }
.aside h3 { font-size: 1.05rem; }
.mini-steps { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .85rem; }
.mini-steps li { display: flex; gap: .7rem; font-size: .93rem; color: var(--ink-2); align-items: flex-start; }
.mini-steps span {
  flex: none; width: 22px; height: 22px; border-radius: 7px; background: var(--brand); color: #fff;
  font-size: .76rem; font-weight: 700; display: grid; place-items: center; margin-top: .1rem;
}
.aside-box { background: var(--bg-2); border: 1px solid var(--line); border-radius: 13px; padding: 1.25rem; }
.aside-box h4 { font-size: .92rem; margin-bottom: .7rem; }

/* ── mockups ──────────────────────────────────────────────────── */
.mock {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock-bar {
  display: flex; align-items: center; gap: .4rem; padding: .7rem .9rem;
  background: var(--bg-2); border-bottom: 1px solid var(--line);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: #d6d9e2; }
.mock-title { margin-inline-start: .6rem; font-size: .78rem; font-weight: 600; color: var(--ink-3); }
.mock-body { padding: 1.1rem; }

.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-bottom: 1rem; }
.kpi { background: var(--bg-2); border-radius: 11px; padding: .8rem .9rem; }
.kpi-label { display: block; font-size: .72rem; color: var(--ink-3); margin-bottom: .2rem; }
.kpi-value { display: block; font-size: 1.32rem; font-weight: 750; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.kpi-delta { font-size: .72rem; font-weight: 600; }
.kpi-delta.up { color: var(--ok); }
.kpi-delta.down { color: var(--warn); }
.chart svg { width: 100%; height: 90px; display: block; }
.chart-line { stroke-dasharray: 600; stroke-dashoffset: 600; }
.chart-fill { opacity: 0; }
[data-anim].in .chart-line { animation: draw 1.5s .25s forwards; }
[data-anim].in .chart-fill { animation: fade .8s 1.1s forwards; }

.chat { display: grid; gap: .6rem; }
.msg { max-width: 86%; padding: .62rem .85rem; border-radius: 13px; font-size: .88rem; line-height: 1.5; }
.msg.me { margin-inline-start: auto; background: var(--brand); color: #fff; border-bottom-right-radius: 4px; }
.msg.bot { background: var(--bg-2); border-bottom-left-radius: 4px; min-height: 2.6em; }
.tools { display: flex; gap: .35rem; flex-wrap: wrap; }
.tool {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .7rem;
  background: var(--info-bg); color: var(--info); padding: .18rem .45rem; border-radius: 5px;
  opacity: 0; transform: translateY(4px);
}
[data-anim].in .tool { animation: pop .4s var(--d, 0s) forwards; }
.caret { display: inline-block; width: 2px; height: 1em; background: var(--ink-3); vertical-align: -2px; animation: blink 1s steps(2) infinite; }
.chat-foot { display: flex; gap: .4rem; margin-top: .2rem; }
.chip { font-size: .68rem; padding: .16rem .45rem; border-radius: 5px; background: var(--bg-2); color: var(--ink-3); font-family: ui-monospace, monospace; }
.chip.ok { background: var(--ok-bg); color: var(--ok); }

.tbl { width: 100%; border-collapse: collapse; font-size: .84rem; }
.tbl th {
  text-align: start; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-3); font-weight: 600; padding: 0 .55rem .55rem; border-bottom: 1px solid var(--line);
}
.tbl td { padding: .55rem; border-bottom: 1px solid var(--bg-2); opacity: 0; }
.tbl td.num { text-align: end; font-variant-numeric: tabular-nums; }
[data-anim].in .tbl tr td { animation: fadeUp .45s var(--d, 0s) forwards; }
.pill { font-size: .72rem; padding: .14rem .45rem; border-radius: 5px; background: var(--bg-2); color: var(--ink-2); white-space: nowrap; }
.pill.ok { background: var(--ok-bg); color: var(--ok); }
.pill.warn { background: var(--warn-bg); color: var(--warn); }
.pill.info { background: var(--info-bg); color: var(--info); }

.cmp { display: grid; gap: .55rem; }
.cmp-row {
  display: grid; grid-template-columns: 1fr auto 20px auto; gap: .6rem; align-items: center;
  font-size: .85rem; padding: .5rem .6rem; background: var(--bg-2); border-radius: 9px; opacity: 0;
}
[data-anim].in .cmp-row { animation: fadeUp .45s var(--d, 0s) forwards; }
.cmp-name { color: var(--ink-3); font-size: .8rem; }
.cmp-a, .cmp-b { font-variant-numeric: tabular-nums; font-weight: 600; }
.cmp-b.same { color: var(--ok); }
.cmp-b.diff { color: var(--warn); }
.cmp-arrow { width: 16px; height: 16px; fill: none; stroke: var(--ink-3); stroke-width: 2; }

.flow { display: flex; align-items: flex-start; justify-content: space-between; gap: .4rem; }
.flow-step { position: relative; flex: 1; text-align: center; opacity: 0; }
[data-anim].in .flow-step { animation: fadeUp .5s var(--d, 0s) forwards; }
.flow-dot {
  width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: .82rem; font-weight: 700; margin: 0 auto .5rem; position: relative; z-index: 2;
}
.flow-label { font-size: .76rem; color: var(--ink-2); display: block; line-height: 1.35; }
.flow-line { position: absolute; top: 15px; inset-inline-start: 50%; width: 100%; height: 2px; background: var(--line); z-index: 1; }

.mcards { display: grid; gap: .5rem; }
.mcard {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem .85rem; background: var(--bg-2); border-radius: 10px; opacity: 0;
}
[data-anim].in .mcard { animation: fadeUp .45s var(--d, 0s) forwards; }
.mcard strong { display: block; font-size: .87rem; }
.mcard em { font-style: normal; font-size: .76rem; color: var(--ink-3); }

.feature-mock { max-width: 780px; margin-inline: auto; }

/* ── footer ───────────────────────────────────────────────────── */
.foot { background: var(--ink); color: rgba(255,255,255,.72); padding: 3.5rem 0 1.75rem; font-size: .92rem; }
.foot-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; padding-bottom: 2.5rem; }
.foot-brand .brand-text { color: #fff; font-size: 1.05rem; font-weight: 800; }
.foot-brand { display: grid; gap: .5rem; align-content: start; }
.foot-brand .mark { width: 34px; height: 34px; }
.foot-brand p { max-width: 42ch; margin: .25rem 0 0; }
.foot-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.foot-cols h4 { color: #fff; font-size: .88rem; margin-bottom: .9rem; }
.foot-cols a { display: block; padding: .22rem 0; }
.foot-cols a:hover { color: var(--brand-2); }
.foot-legal {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; font-size: .82rem; color: rgba(255,255,255,.45);
}

/* ── motion ───────────────────────────────────────────────────── */
[data-anim] { opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
[data-anim].in { opacity: 1; transform: none; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes pop { to { opacity: 1; transform: none; } }
@keyframes blink { 50% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  [data-anim], [data-anim].in { opacity: 1; transform: none; transition: none; }
  .chart-line, .chart-fill, .tbl td, .cmp-row, .flow-step, .mcard, .tool, .tick-badge path {
    animation: none !important; opacity: 1 !important; stroke-dashoffset: 0 !important; transform: none !important;
  }
  .caret { animation: none; }
}

/* ── responsive ───────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-inner, .split, .signup-grid, .foot-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.rev .split-copy { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .aside { position: static; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .burger { display: block; }
  .sec { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4, .steps, .center-steps, .strip-inner, .row { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .foot-cols { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: 1fr; }
  .flow { flex-direction: column; align-items: stretch; gap: .6rem; }
  .flow-step { display: flex; align-items: center; gap: .7rem; text-align: start; }
  .flow-dot { margin: 0; }
  .flow-line { display: none; }
  .form { padding: 1.4rem; }
}

/* ── trust, about, contact, legal ─────────────────────────────── */
.prose { max-width: 70ch; margin-inline: auto; }
.prose p { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.15rem; }
.prose h2 { font-size: 1.35rem; margin: 2.5rem 0 .8rem; }
.prose h2:first-child { margin-top: 0; }
.prose .ticks { margin: 0 0 1.5rem; }
.narrow-prose { max-width: 62ch; }
.updated { font-size: .85rem; color: var(--ink-3); }

.trust { gap: 1.5rem; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-ico {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  background: var(--ok-bg); display: grid; place-items: center;
}
.trust-ico svg { width: 18px; height: 18px; fill: none; stroke: var(--ok); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.trust-item p { color: var(--ink-2); font-size: .95rem; margin: 0; }

.contact-card { display: flex; flex-direction: column; }
.contact-card .link-arrow { margin-top: auto; padding-top: .9rem; }

.deflist { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1.5rem; margin: 0; }
.deflist dt { font-weight: 600; font-size: .92rem; }
.deflist dd { margin: 0; color: var(--ink-2); font-size: .95rem; }

/* Who built it — quiet in the footer, not a badge shouting for attention. */
.by {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .86rem; color: rgba(255,255,255,.55); margin-top: .35rem;
}
.by strong { color: var(--brand-2); font-weight: 650; }
.by:hover strong { text-decoration: underline; }
.no-cookies { color: rgba(255,255,255,.35); }

@media (max-width: 760px) {
  .deflist { grid-template-columns: 1fr; gap: .15rem 0; }
  .deflist dd { margin-bottom: .7rem; }
}

/* ── the fuller feature pages ─────────────────────────────────── */
.caps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 2rem;
  max-width: 900px; margin-inline: auto;
}
.caps li {
  position: relative; padding: .6rem 0 .6rem 1.9rem;
  border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: .96rem;
}
.caps li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 1.05em;
  width: 11px; height: 6px;
  border-inline-start: 2.2px solid var(--brand); border-bottom: 2.2px solid var(--brand);
  transform: rotate(-45deg);
}

.scenario { counter-reset: sc; list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .8rem; }
.scenario li {
  counter-increment: sc; position: relative; padding-inline-start: 2.3rem;
  color: var(--ink-2); font-size: .97rem;
}
.scenario li::before {
  content: counter(sc); position: absolute; inset-inline-start: 0; top: .05em;
  width: 24px; height: 24px; border-radius: 8px;
  background: var(--accent, #fdf0e6); color: var(--brand);
  display: grid; place-items: center; font-size: .78rem; font-weight: 700;
}

@media (max-width: 760px) { .caps { grid-template-columns: 1fr; gap: 0; } }
