:root {
  --bg: #ffffff;
  --ink-blue: #2f5f8f;
  --blue: #d9e2ea;
  --blue2: #eef2f5;
  --lift: 0 18px 40px -18px rgba(70, 95, 120, .45), 0 0 0 1px rgba(120, 145, 170, .25);
  --text: #111111;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --max: 1120px;
  --serif: "Instrument Serif", "Times New Roman", Times, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(36px, 5vw, 56px); }
h3 { font-size: clamp(28px, 3.2vw, 36px); }
p { margin: 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.i { font-style: italic; }

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; color: var(--text);
  background: transparent; transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
.nav .brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: .01em; transition: color .2s; }
.nav .brand:hover { color: var(--ink-blue); }
.nav .brand:hover img { transform: translateY(-1px) scale(1.06); }
.nav .brand img { transition: transform .25s ease; }
.nav .brand img { height: 25px; width: auto; }
.nav ul { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; font-size: 14px; }
.nav li a { color: var(--muted); position: relative; padding: 4px 0; transition: color .2s; }
.nav li a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink-blue); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav li a:hover { color: var(--text); }
.nav li a:hover::after { transform: scaleX(1); }
.nav li a.navbtn { color: #fff; background: var(--text); padding: 9px 16px; border-radius: 6px; font-weight: 500; transition: background .2s; }
.nav li a.navbtn::after { display: none; }
.nav li a.navbtn:hover { background: var(--ink-blue); color: #fff; }
.nav li:last-child { margin-left: 6px; }

/* hero */
.hero {
  position: relative; min-height: 100vh;
  padding: 120px 0 96px; color: var(--text);
  background: linear-gradient(180deg, #d9e2ea 0%, #eef2f5 38%, #ffffff 78%);
  background-size: 100% 130%;
  animation: drift 20s ease-in-out infinite alternate;
}
.herogrid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.herocopy { text-align: left; }
.eyebrow { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hero .ask { margin-top: 18px; font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 4.8vw, 68px); line-height: 1.02; letter-spacing: -0.015em; max-width: 10em; }
.hero .lead { margin: 22px 0 0; text-align: left; font-size: 18px; color: var(--muted); max-width: 28em; }
.intake .lead { margin-top: 14px; }
.formcard { margin-top: 36px; max-width: 720px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: 0 20px 50px -30px rgba(47,95,143,.35); }
.formcard .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.formcard .full { grid-column: 1 / -1; }
.formcard input, .formcard select, .formcard textarea { padding: 12px 13px; font-size: 14px; border: 1px solid #e9e9e9; background: #fafafa; border-radius: 8px; }
.formcard input:focus, .formcard select:focus, .formcard textarea:focus { border-color: var(--ink-blue); background: #fff; }
.formcard select { color: var(--muted); }
.formcard select:valid { color: var(--text); }
.formcard textarea { min-height: 76px; }
.formcard .actions { margin-top: 12px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.formcard .btn { border-radius: 8px; padding: 13px 24px; }
.intake .done { text-align: left; margin-top: 28px; }
@keyframes drift { from { background-position: 50% 0%; } to { background-position: 50% 100%; } }

.cred { margin-top: 34px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.gs { width: 28px; height: 28px; border-radius: 3px; flex: none; }
.founder { font-size: 19px; display: flex; align-items: center; gap: 14px; }
.founder .gs { width: 44px; height: 44px; border-radius: 4px; }

/* demo window */
.demo { position: relative; }
.win { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 30px 60px -30px rgba(17,17,17,.35), 0 2px 8px rgba(17,17,17,.06); overflow: hidden; transition: opacity .4s, transform .35s ease, box-shadow .35s ease; }
.demo:hover .win { transform: translateY(-6px); box-shadow: var(--lift), 0 30px 60px -30px rgba(70,95,120,.5); }
.win.swap { opacity: 0; }
.winbar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; border-bottom: 1px solid var(--line); background: #fafafa; }
.winbar i { width: 10px; height: 10px; border-radius: 50%; background: #e2e2e2; }
.winbar span { margin-left: 10px; font-size: 12px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.winbody { padding: 22px 22px 20px; height: 400px; font-size: 15px; line-height: 1.5; display: flex; flex-direction: column; }
.searchbar { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 999px; padding: 12px 16px; font-size: 15px; color: var(--text); background: #fafafa; min-height: 46px; }
.searchbar svg { color: var(--muted); flex: none; }
.searchbar .caret { display: inline-block; width: 1px; height: 1em; background: var(--text); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.shimmer { margin: 18px 4px 0; display: none; }
.shimmer.on { display: block; }
.shimmer i { display: block; height: 12px; border-radius: 6px; margin: 10px 0; background: linear-gradient(90deg, #eee 25%, #f7f7f7 50%, #eee 75%); background-size: 200% 100%; animation: sh 1.1s linear infinite; }
.shimmer i:nth-child(2) { width: 80%; } .shimmer i:nth-child(3) { width: 60%; }
@keyframes sh { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.answer { margin-top: 18px; opacity: 0; transition: opacity .35s; flex: 1; overflow: hidden; }
.answer.in { opacity: 1; }
.alabel { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.winbody .ans { margin: 0; padding: 0; list-style: none; counter-reset: r; }
.winbody .ans li { counter-increment: r; display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s, background .35s; }
.winbody .ans li::before { content: counter(r); font-size: 12px; color: var(--muted); width: 16px; }
.winbody .ans li.in { opacity: 1; transform: none; }
.winbody .ans li.other { color: var(--muted); }
.winbody .ans li.you { color: var(--ink-blue); font-weight: 500; background: rgba(47,95,143,.08); }
.winbody .ans li.you::before { color: var(--ink-blue); }
.winbody .ans li.you::after { content: "\2713  named"; margin-left: auto; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: #1a7f37; padding: 3px 9px; border-radius: 999px; }
.winbody .ans li.you { background: #e8f5ec; color: #14612a; }
.winbody .ans li.you::before { color: #14612a; }
.winbody .ans li.miss { color: #a4262c; background: #fbeaea; margin-top: 8px; }
.winbody .ans li.miss::before { content: "\2715"; color: #a4262c; font-size: 13px; }
.winbody .ans li.miss::after { content: "not listed"; margin-left: auto; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: #a4262c; padding: 3px 9px; border-radius: 999px; }
.toggle { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 12px; font-size: 14px; }
.toggle .tname { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.toggle .tname img { height: 22px; width: auto; }
.toggle .switch { margin-left: auto; width: 44px; height: 24px; border-radius: 999px; background: #d8d8d8; position: relative; transition: background .35s; }
.toggle .switch i { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: left .35s; }
.toggle.on .switch { background: #1a7f37; }
.toggle.on .switch i { left: 23px; }
.toggle .tstate { width: 26px; font-size: 12px; color: var(--muted); }
.toggle.on .tstate { color: #14612a; font-weight: 500; }
.demonote { margin-top: 14px; font-size: 16px; font-weight: 500; text-align: center; min-height: 1.5em; }
.dsay::before { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; font-size: 12px; margin-right: 8px; vertical-align: 1px; color: #fff; }
.dsay.fail { color: #a4262c; } .dsay.fail::before { content: "\2715"; background: #a4262c; }
.dsay.ok { color: #14612a; } .dsay.ok::before { content: "\2713"; background: #1a7f37; }
.demonote.small { margin-top: 6px; font-size: 12px; color: var(--muted); }
.dsay { opacity: 0; transition: opacity .35s; }
.dsay.in { opacity: 1; }

/* sections */
section { padding: 120px 0; }
section + section { border-top: 1px solid var(--line); }
.center { text-align: center; }
.lead { font-size: 19px; color: var(--muted); max-width: 640px; margin: 18px auto 0; }

/* check */
.check { max-width: 720px; margin: 0 auto; }
.hero .lead.fu { max-width: none; }
.field { display: flex; gap: 12px; margin-top: 40px; }
.field input { flex: 1; }
input, select, textarea {
  font: inherit; color: var(--text); background: #fff;
  border: 1px solid var(--line); border-radius: 0; padding: 16px 18px; width: 100%;
  outline: none; transition: border-color .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--text); }
textarea { min-height: 110px; resize: vertical; }
.btn {
  display: inline-block; font: inherit; font-size: 15px; letter-spacing: .01em;
  background: var(--text); color: #fff; border: 1px solid var(--text);
  padding: 16px 28px; cursor: pointer; white-space: nowrap; transition: opacity .2s;
}
.btn { transition: transform .25s ease, box-shadow .25s ease, opacity .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -12px rgba(70, 95, 120, .7); }
.btn:disabled { opacity: .6; cursor: default; }
.btn.ghost { background: transparent; color: var(--text); }
.btn.ghost:hover { background: var(--blue2); border-color: rgba(120,145,170,.5); color: var(--text); opacity: 1; }
.progress { height: 1px; background: var(--line); margin-top: 16px; overflow: hidden; display: none; }
.progress.on { display: block; }
.progress i { display: block; height: 100%; width: 30%; background: var(--text); animation: slide 1.4s linear infinite; }
@keyframes slide { from { transform: translateX(-100%); } to { transform: translateX(400%); } }

.result { margin-top: 40px; display: none; text-align: left; }
.result.on { display: block; }
.result .line { min-height: 1.6em; }
.result .stamp { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.result ol { margin: 10px 0 14px; padding-left: 22px; }
.result .verdict { font-family: var(--serif); font-size: 30px; margin-top: 18px; }
.caret { display: inline-block; width: 1px; height: 1em; background: var(--text); vertical-align: -0.15em; margin-left: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.more { display: none; margin-top: 40px; text-align: left; }
.more.on { display: block; }
.more .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.more .grid .full { grid-column: 1 / -1; }
.more label { display: block; font-size: 13px; color: var(--muted); margin: 0 0 6px; }
.more .actions { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.err { color: #b00020; font-size: 14px; }
.formcard .miss { border-color: #b00020; }
.done { display: none; margin-top: 40px; }
.done.on { display: block; }

/* three blocks */
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.three p { margin-top: 14px; color: var(--muted); }
.three > div { padding: 24px; margin: -24px; border-radius: 12px; transition: background .3s, transform .3s; }
.three > div:hover { background: linear-gradient(180deg, var(--blue2), transparent); transform: translateY(-4px); }
.foot { font-size: 13px; color: var(--muted); margin-top: 56px; max-width: 720px; }
sup { font-size: .6em; }

/* tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.tile { border: 1px solid var(--line); border-radius: 14px; padding: 22px 22px 16px; background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.tile:hover { transform: translateY(-6px); box-shadow: var(--lift); border-color: transparent; }
.tlabel { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.tvalue { font-family: var(--serif); font-size: 44px; line-height: 1.1; margin-top: 8px; letter-spacing: -0.01em; }
.tvalue .tsuf { font-size: 22px; color: var(--muted); }
.tile.big { background: linear-gradient(180deg, var(--blue2), #fff); display: flex; flex-direction: column; }
.tvalue.bignum { font-size: 72px; line-height: 1; margin-top: 14px; color: var(--ink-blue); letter-spacing: -0.02em; }
.tvalue.bignum .pre { font-size: 20px; color: var(--muted); display: block; margin-bottom: 4px; font-family: var(--sans); }
.tvalue.bignum .unit { font-size: 28px; color: var(--muted); }
.tsub { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.tsub strong { color: var(--text); font-weight: 500; }
.tvalue.bignum.stars .star { font-size: 34px; color: var(--ink-blue); letter-spacing: 2px; vertical-align: 0; }
.tvalue.bignum.stars { font-size: 34px; margin-top: 18px; }
.tdelta { margin-top: 6px; font-size: 13px; color: #1a7f37; display: flex; align-items: center; gap: 6px; }
.tdelta .arrow { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: #e3f3e8; font-size: 12px; }
.spark { display: block; width: 100%; height: 64px; margin-top: 14px; overflow: visible; }
.spark .fill { fill: rgba(47,95,143,.10); opacity: 0; transition: opacity .6s ease .8s; }
.spark .line { fill: none; stroke: var(--ink-blue); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset 1.4s ease; }
.tile.in .spark .line { stroke-dashoffset: 0; }
.tile.in .spark .fill { opacity: 1; }
.taxis { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 6px; }
.switches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.switches span { font-size: 13px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; position: relative; padding-left: 26px; transition: color .25s, border-color .25s, background .25s; }
.switches span::before { content: ""; position: absolute; left: 10px; top: 50%; width: 8px; height: 8px; margin-top: -4px; border-radius: 50%; background: #d8d8d8; transition: background .25s; }
.switches.in span { color: var(--text); border-color: rgba(47,95,143,.35); background: var(--blue2); }
.switches.in span::before { background: #1a7f37; }
.switches span:nth-child(1) { transition-delay: .1s; } .switches span:nth-child(2) { transition-delay: .2s; } .switches span:nth-child(3) { transition-delay: .3s; } .switches span:nth-child(4) { transition-delay: .4s; } .switches span:nth-child(5) { transition-delay: .5s; } .switches span:nth-child(6) { transition-delay: .6s; } .switches span:nth-child(7) { transition-delay: .7s; } .switches span:nth-child(8) { transition-delay: .8s; } .switches span:nth-child(9) { transition-delay: .9s; }
@media (max-width: 1000px) { .tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }

/* steps */
.steps { list-style: none; padding: 0; margin: 56px 0 0; max-width: 720px; }
.steps li { margin: 0 -16px 0 -32px; padding-left: 32px; padding-right: 16px; border-radius: 10px; transition: background .25s; }
.steps li:hover { background: var(--blue2); border-top-color: transparent; }
.steps li:hover + li { border-top-color: transparent; }
.steps li span { transition: color .25s; }
.steps li:hover span { color: var(--ink-blue); }
.steps li { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); font-size: 19px; }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li span { font-family: var(--serif); font-size: 28px; line-height: 1; color: var(--muted); }

.howgrid { display: grid; grid-template-columns: 1fr 360px; gap: 64px; align-items: center; }
.cham { width: 100%; height: auto; opacity: .9; }
@media (max-width: 820px) { .howgrid { grid-template-columns: 1fr; } .cham { max-width: 240px; margin: 0 auto; } }

/* products */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 64px; }
.card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; background: #fff; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.card:hover { transform: translateY(-10px); box-shadow: 0 34px 60px -24px rgba(47, 95, 143, .45), 0 0 0 1px rgba(47, 95, 143, .35); border-color: transparent; }
.card .hero-img { position: relative; display: flex; align-items: center; justify-content: flex-start; gap: 22px; padding: 0 32px; height: 200px; background: linear-gradient(180deg, var(--blue) 0%, var(--blue2) 100%); transition: background .35s ease; }
.card .hero-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47,95,143,.22), rgba(47,95,143,0)); opacity: 0; transition: opacity .35s ease; }
.card:hover .hero-img::after { opacity: 1; }
.card.pro .hero-img { background: linear-gradient(180deg, #c9d6e2 0%, var(--blue2) 100%); }
.card .hero-img img { width: 120px; height: auto; transition: transform .35s ease; flex: none; }
.card:hover .hero-img img { transform: scale(1.08) translateY(-3px); }
.card .hero-img img { position: relative; z-index: 1; }
.card .by { position: absolute; z-index: 1; left: 20px; bottom: 16px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-blue); }
.card .badge { position: absolute; z-index: 1; top: 18px; right: 20px; padding: 6px 12px; border-radius: 999px; background: var(--text); color: #fff; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.cardbody { padding: 26px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.plan { font-size: 12px; letter-spacing: .14em; color: var(--muted); }
.ptitle { position: relative; z-index: 1; }
.card h3 { font-size: 40px; line-height: 1; margin-top: 4px; }
.card h3 .pro { font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-blue); display: inline-block; margin-top: 10px; }
.card h3 .std { color: var(--muted); }
.card .tag { color: var(--text); margin-top: 0; font-size: 18px; }
.card ul { list-style: none; padding: 0; margin: 18px 0 0; flex: 1; }
.card li { position: relative; padding: 8px 0 8px 30px; font-size: 16px; line-height: 1.45; }
.card li::before { content: ""; position: absolute; left: 3px; top: 14px; width: 12px; height: 6px; border-left: 1.6px solid var(--text); border-bottom: 1.6px solid var(--text); transform: rotate(-45deg); transition: border-color .3s; }
.card:hover li::before { border-color: var(--ink-blue); }
.card li.everything { font-weight: 400; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid var(--line); }
.card li.everything strong { font-weight: 600; }
.card li.everything::before { content: "\2726"; border: 0; transform: none; width: auto; height: auto; top: 8px; left: 2px; font-size: 14px; color: var(--ink-blue); }
.bestfor { margin-top: 22px; color: var(--muted); font-size: 14px; }
.card .btn { margin-top: 22px; text-align: center; }
.card:hover .btn.ghost { background: var(--text); color: #fff; border-color: var(--text); }
.card:hover .btn { transform: none; box-shadow: none; }
.card .btn:hover { opacity: .85; }
.note { margin-top: 40px; color: var(--muted); }

/* about */
.prose { max-width: 680px; font-size: 19px; }
.prose p + p { margin-top: 22px; }

.lead-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-top: 14px; font-size: 16px; }
.lead-row .pname { font-family: var(--serif); font-size: 24px; }
.lead-row .lnk:hover { color: var(--ink-blue); }

/* team */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.person { border: 1px solid var(--line); border-radius: 14px; padding: 28px; }
.avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(180deg, var(--blue), var(--blue2)); margin-bottom: 18px; }
.pname { font-family: var(--serif); font-size: 26px; }
.prole { color: var(--muted); font-size: 14px; margin-top: 2px; }
.pbio { margin-top: 12px; font-size: 15px; color: var(--muted); }
.plogo { margin-top: 16px; }
@media (max-width: 820px) { .team { grid-template-columns: 1fr; } }

/* footer */
footer { border-top: 1px solid var(--line); padding: 48px 0; font-size: 14px; color: var(--muted); }
footer .row { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
footer a:hover { color: var(--text); }

.card .btn { text-align: center; }

/* fade up */
.fu { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fu.in { opacity: 1; transform: none; }

/* page header for inner pages */
.pagehead { padding-top: 180px; }

@media (max-width: 820px) {
  section { padding: 72px 0; }
  h2 { font-size: 34px; }
  .lead { font-size: 17px; }
  .tvalue.bignum { font-size: 56px; }
  .formcard { padding: 14px; }
  .steps li { grid-template-columns: 40px 1fr; font-size: 17px; padding: 18px 12px 18px 12px; margin: 0 -12px; }
  .steps li span { font-size: 22px; }
  .card .hero-img { height: 160px; padding: 0 22px; gap: 16px; }
  .card .hero-img img { width: 90px; }
  .card h3 { font-size: 32px; }
  .cardbody { padding: 22px 22px 26px; }
  footer .row { flex-direction: column; gap: 10px; }
  #start .btn { display: block; margin: 10px auto 0; max-width: 320px; text-align: center; }
  .hero { padding-top: 84px; min-height: 0; padding-bottom: 64px; }
  .herogrid { gap: 36px; }
  .hero .ask { font-size: 38px; }
  .hero .lead { font-size: 16px; }
  .winbody { height: 360px; padding: 16px 16px 16px; font-size: 14px; }
  .searchbar { font-size: 14px; padding: 10px 14px; }
  .demonote { font-size: 14px; }
  .herogrid { grid-template-columns: 1fr; gap: 40px; }
  .formcard .grid { grid-template-columns: 1fr; }
  .winbody { height: 400px; }
  .nav { padding: 12px 16px; }
  .nav .brand { font-size: 14px; white-space: nowrap; gap: 8px; }
  .nav .brand img { height: 22px; }
  .nav ul { gap: 14px; font-size: 13px; }
  .nav li:first-child { display: none; }
  .nav li a.navbtn { padding: 8px 12px; white-space: nowrap; }
  .nav li:last-child { margin-left: 0; }
  .three { grid-template-columns: 1fr; gap: 36px; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 36px 26px; }
  .field { flex-direction: column; }
  .more .grid { grid-template-columns: 1fr; }
  .more .grid .full { grid-column: auto; }
  .pagehead { padding-top: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .spark .line { stroke-dashoffset: 0; transition: none; } .spark .fill { opacity: 1; transition: none; } .tile:hover { transform: none; }
  .card:hover, .btn:hover, .nav li a.navbtn:hover, .demo:hover .win, .three > div:hover { transform: none; }
  html { scroll-behavior: auto; }
  .hero, .progress i, .caret, .searchbar .caret, .shimmer i { animation: none; }
  .fu { opacity: 1; transform: none; transition: none; }
}
