:root {
  --ground: #f7f6fb; --surface: #ffffff; --raised: #ffffff; --elev: #ffffff;
  --ink: #14121d; --muted: #5b5e70; --line: #e7e5ee; --line-soft: #f0eef5;
  --brand: #4f46e5; --brand-ink: #3730a3; --brand-soft: #edecfb;
  --pop: #ff5a45; --pop-ink: #ffffff; --cyan: #17b3c9;
  --ok: #0f9d6b; --error: #dc2626;
  --shadow-sm: 0 1px 2px rgba(20,18,29,.05), 0 6px 18px rgba(20,18,29,.06);
  --shadow-lg: 0 2px 10px rgba(20,18,29,.08), 0 34px 80px rgba(70,60,190,.16);
  --radius: 20px; --aurora-o: .6; --grain-o: .04;
  color-scheme: light dark;
}
:root:not([data-theme="light"]) { @media (prefers-color-scheme: dark) {
  --ground: #0a0910; --surface: #141320; --raised: #171623; --elev: #1d1b2b;
  --ink: #f1f0f7; --muted: #9fa1b6; --line: #272637; --line-soft: #201f2e;
  --brand: #8b83ff; --brand-ink: #bcb6ff; --brand-soft: #1e1d34;
  --pop: #ff6f5c; --pop-ink: #190d0b; --cyan: #35c9de;
  --ok: #34d29b; --error: #f87171;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 6px 18px rgba(0,0,0,.32);
  --shadow-lg: 0 2px 10px rgba(0,0,0,.5), 0 40px 84px rgba(0,0,0,.6);
  --aurora-o: .4; --grain-o: .05;
} }
:root[data-theme="dark"] {
  --ground: #0a0910; --surface: #141320; --raised: #171623; --elev: #1d1b2b;
  --ink: #f1f0f7; --muted: #9fa1b6; --line: #272637; --line-soft: #201f2e;
  --brand: #8b83ff; --brand-ink: #bcb6ff; --brand-soft: #1e1d34;
  --pop: #ff6f5c; --pop-ink: #190d0b; --cyan: #35c9de;
  --ok: #34d29b; --error: #f87171;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.35), 0 6px 18px rgba(0,0,0,.32);
  --shadow-lg: 0 2px 10px rgba(0,0,0,.5), 0 40px 84px rgba(0,0,0,.6);
  --aurora-o: .4; --grain-o: .05;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ground); color: var(--ink); overflow-x: hidden;
  font-family: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
.grain { position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: var(--grain-o); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"); }
h1, h2, h3 { font-family: "Bricolage Grotesque", "Figtree", sans-serif; margin: 0; letter-spacing: -.022em; text-wrap: balance; }
p { margin: 0; }
a { color: var(--brand-ink); }
.wrap { max-width: 1140px; margin: 0 auto; padding-inline: 24px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.eyebrow { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--brand-ink); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font: inherit; font-weight: 600; cursor: pointer;
  text-decoration: none; white-space: nowrap; border: 1px solid transparent; border-radius: 13px; padding: 12px 22px;
  transition: transform .08s ease, box-shadow .2s ease, filter .2s ease; }
.btn.pop { background: var(--pop); color: var(--pop-ink); box-shadow: 0 10px 26px color-mix(in srgb, var(--pop) 42%, transparent); }
.btn.pop:hover { transform: translateY(-2px); box-shadow: 0 16px 34px color-mix(in srgb, var(--pop) 50%, transparent); }
.btn.brand { background: var(--brand); color: #fff; }
.btn.brand:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn.secondary { background: color-mix(in srgb, var(--surface) 80%, transparent); color: var(--ink); border-color: var(--line); }
.btn.secondary:hover { border-color: var(--brand); color: var(--brand-ink); }
.btn.light { background: #fff; color: #201b4a; }
.btn.sm { padding: 8px 15px; font-size: 14px; border-radius: 10px; }
.btn:active { transform: translateY(1px); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

header.top { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.5) blur(14px);
  background: color-mix(in srgb, var(--ground) 78%, transparent); border-bottom: 1px solid transparent; transition: border-color .2s; }
header.top.stuck { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; gap: 20px; padding-block: 14px; }
.logo { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.03em; color: var(--ink); text-decoration: none; }
.logo span { color: var(--brand); }
.nav .links { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.nav .links a:not(.btn) { color: var(--muted); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav .links a:not(.btn):hover { color: var(--ink); }
.tglbtn { border: 1px solid var(--line); background: var(--surface); color: var(--ink); width: 38px; height: 38px; border-radius: 10px; cursor: pointer; font-size: 16px; line-height: 1; display: grid; place-items: center; }
.tglbtn:hover { border-color: var(--brand); }
@media (max-width: 640px) { .nav .links a.plainlink { display: none; } }

.hero-shell { position: relative; }
.aurora { position: absolute; inset: -25% -10% auto -10%; height: 760px; z-index: 0; pointer-events: none; overflow: hidden; filter: blur(78px); opacity: var(--aurora-o); }
.aurora i { position: absolute; display: block; border-radius: 50%; }
.aurora .b1 { width: 480px; height: 480px; left: 2%; top: 0; background: var(--brand); animation: drift1 22s ease-in-out infinite; }
.aurora .b2 { width: 400px; height: 400px; right: 6%; top: 30px; background: var(--pop); animation: drift2 26s ease-in-out infinite; }
.aurora .b3 { width: 320px; height: 320px; left: 44%; top: 190px; background: var(--cyan); opacity: .75; animation: drift1 30s ease-in-out infinite reverse; }
@keyframes drift1 { 50% { transform: translate(46px, 54px) scale(1.14); } }
@keyframes drift2 { 50% { transform: translate(-54px, 32px) scale(1.09); } }

.hero { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding-block: 56px 64px; }
.pill { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--brand-ink);
  background: color-mix(in srgb, var(--surface) 72%, transparent); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); position: relative; }
.dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: var(--ok); opacity: .3; animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.9); opacity: 0; } }
.hero h1 { font-size: clamp(40px, 6.2vw, 70px); font-weight: 800; line-height: .98; margin-top: 22px; }
.hero h1 .grad { background: linear-gradient(100deg, var(--brand), var(--pop)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { font-size: 19px; color: var(--muted); margin-top: 22px; max-width: 36ch; }
.hero .cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero .trust { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 14px; color: var(--muted); }
.hero .trust b { color: var(--ink); font-weight: 700; }

.authcard { position: relative; background: var(--raised); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px; }
.authcard::before { content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--brand) 50%, transparent), transparent 42%, color-mix(in srgb, var(--pop) 38%, transparent));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.authcard > h2 { font-size: 20px; }
.authcard .sub { color: var(--muted); font-size: 14px; margin: 4px 0 14px; }
.notice { background: var(--brand-soft); border: 1px solid var(--line); color: var(--brand-ink); border-radius: 11px; padding: 11px 13px; font-size: 13.5px; margin-bottom: 14px; }
.tabs { display: flex; gap: 4px; background: var(--ground); border: 1px solid var(--line); border-radius: 12px; padding: 4px; margin-bottom: 16px; }
.tabs button { flex: 1; border: 0; background: none; font: inherit; font-weight: 600; font-size: 14px; color: var(--muted); padding: 9px; border-radius: 9px; cursor: pointer; transition: .15s; }
.tabs button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
label { display: block; font-weight: 600; font-size: 13px; margin: 12px 0 5px; }
input, select { width: 100%; font: inherit; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; }
input:focus, select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.authcard .btn { margin-top: 18px; }
.error { color: var(--error); font-size: 13.5px; min-height: 1.1em; margin-top: 8px; }

.marq { border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; padding-block: 15px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marq .track { display: flex; gap: 44px; width: max-content; animation: scroll 28s linear infinite; }
.marq b { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 17px; color: var(--muted); display: inline-flex; align-items: center; gap: 44px; white-space: nowrap; }
.marq b::after { content: "✦"; color: var(--brand); font-size: 12px; }
@keyframes scroll { to { transform: translateX(-50%); } }

.demo-frame { max-width: 760px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); background: var(--elev); box-shadow: var(--shadow-lg); }
.demo-frame .chrome { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--line); }
.demo-frame .chrome i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.demo-frame .chrome i:nth-child(1) { background: #ff5f57; } .demo-frame .chrome i:nth-child(2) { background: #febc2e; } .demo-frame .chrome i:nth-child(3) { background: #28c840; }
.demo-frame .url { margin-left: 12px; font-family: "IBM Plex Mono", monospace; font-size: 12px; color: var(--muted); background: var(--ground); padding: 5px 12px; border-radius: 7px; flex: 1; }
.wchat .bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--brand); color: #fff; }
.wchat .bar .av { width: 32px; height: 32px; border-radius: 9px; background: rgba(255,255,255,.2); display: grid; place-items: center; font-size: 17px; }
.wchat .bar b { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }
.wchat .bar small { display: block; opacity: .85; font-weight: 400; font-size: 12px; }
.wchat .body { padding: 22px; display: flex; flex-direction: column; gap: 12px; background: var(--ground); min-height: 300px; max-height: 440px; overflow-y: auto; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 15px; line-height: 1.5; }
.msg.them { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.msg.bot { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.msg.bot strong { color: var(--brand-ink); }
.msg.appear { animation: pop .34s ease both; }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; align-self: stretch; }
.chips button { border: 1px solid var(--brand); color: var(--brand-ink); background: var(--surface); border-radius: 999px; padding: 8px 14px; font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.chips button:hover { background: var(--brand); color: #fff; }
.typing { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 5px; padding: 13px 16px; border-radius: 16px; display: inline-flex; gap: 5px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: b 1s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; } .typing span:nth-child(3) { animation-delay: .3s; }
@keyframes b { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }
.composer { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--surface); }
.composer input { border-radius: 11px; }
.composer .btn { padding-inline: 18px; }

section.block { padding-block: 72px; }
.sec-head { max-width: 680px; margin-bottom: 40px; }
.sec-head h2 { font-size: clamp(29px, 4.2vw, 44px); font-weight: 800; margin-top: 12px; }
.sec-head p { color: var(--muted); font-size: 18px; margin-top: 12px; }

.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 16px; }
.tile { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease; }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile h3 { font-size: 17px; } .tile p { color: var(--muted); font-size: 13.5px; margin-top: 6px; }
.tile .ic { font-size: 20px; width: 40px; height: 40px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-ink); display: grid; place-items: center; margin-bottom: 12px; }
.t-book { grid-column: 1 / 3; grid-row: 1 / 3; }
.t-247 { grid-column: 3 / 5; }
.t-chan { grid-column: 3 / 4; } .t-rem { grid-column: 4 / 5; }
.t-leads { grid-column: 1 / 5; grid-row: 3 / 4; }
.cal { margin-top: 16px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; max-width: 320px; }
.cal b { font-family: "IBM Plex Mono", monospace; font-size: 10px; color: var(--muted); text-align: center; }
.cal i { aspect-ratio: 1; border-radius: 7px; background: var(--ground); border: 1px solid var(--line-soft); display: grid; place-items: center; font-size: 12px; font-style: normal; color: var(--muted); }
.cal i.off { opacity: .4; } .cal i.slot { background: var(--brand-soft); color: var(--brand-ink); border-color: transparent; font-weight: 600; }
.cal i.take { background: var(--pop); color: #fff; border-color: transparent; font-weight: 700; }
.big247 { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(40px, 6vw, 60px); line-height: 1; margin-top: 6px;
  background: linear-gradient(100deg, var(--brand), var(--pop)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cchips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.cchips span { font-size: 18px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; background: var(--ground); border: 1px solid var(--line); }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 74px; margin-top: 14px; }
.bars i { flex: 1; max-width: 46px; border-radius: 6px 6px 0 0; background: linear-gradient(var(--brand), color-mix(in srgb, var(--brand) 55%, var(--pop))); }
.t-leads .row { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 100%; }
.t-leads .txt { max-width: 320px; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .16s ease, box-shadow .16s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step .n { font-family: "IBM Plex Mono", monospace; font-size: 28px; font-weight: 600; color: transparent; background: linear-gradient(120deg, var(--brand), var(--pop)); -webkit-background-clip: text; background-clip: text; }
.step h3 { margin-top: 10px; font-size: 19px; } .step p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }

.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 16.5px; display: flex; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; margin-left: auto; font-size: 22px; color: var(--brand); transition: transform .2s; font-family: "Figtree"; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding: 0 20px 18px; color: var(--muted); font-size: 15px; }

.plan { display: flex; flex-direction: column; }
.plan.hot { border-color: var(--brand); border-width: 1.5px; position: relative; }
.plan .tag { position: absolute; top: -12px; left: 26px; font-family: "IBM Plex Mono", monospace; font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--brand); padding: 3px 10px; border-radius: 6px; }
.plan h3 { font-size: 19px; }
.plan .price { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 36px; margin-top: 8px; font-variant-numeric: tabular-nums; }
.plan .price small { font-size: 14px; font-weight: 500; color: var(--muted); font-family: "Figtree", sans-serif; }
.plan ul { list-style: none; margin: 16px 0 22px; padding: 0; display: grid; gap: 10px; }
.plan li { position: relative; padding-left: 26px; color: var(--muted); font-size: 14.5px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.plan .btn { margin-top: auto; }
.billtoggle { display: inline-flex; gap: 4px; background: var(--ground); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 28px; }
.billtoggle button { border: 0; background: none; font: inherit; font-weight: 600; font-size: 14px; color: var(--muted); padding: 9px 18px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: .15s; }
.billtoggle button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.billtoggle .save { font-family: "IBM Plex Mono", monospace; font-size: 10.5px; font-weight: 600; color: #fff; background: var(--pop); padding: 2px 7px; border-radius: 6px; letter-spacing: .02em; }
.billnote { color: var(--brand-ink); font-size: 13px; font-weight: 600; margin: -8px 0 4px; }

.roi { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; align-items: stretch; }
.roi-inputs { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 26px; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.fld label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: 14.5px; margin: 0 0 10px; }
.fld label b { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; color: var(--brand-ink); font-variant-numeric: tabular-nums; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--brand-soft); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); border: 3px solid var(--surface); box-shadow: var(--shadow-sm); cursor: pointer; }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--brand); border: 3px solid var(--surface); cursor: pointer; }
.roi-out { position: relative; overflow: hidden; border-radius: var(--radius); padding: 30px 26px; color: #fff; text-align: center; display: flex; flex-direction: column; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, var(--brand), #6d28d9 55%, var(--pop)); box-shadow: var(--shadow-lg); }
.roi-out .roi-lbl { color: rgba(255,255,255,.9); font-size: 15px; }
.roi-out .roi-big { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(40px, 6vw, 58px); line-height: 1; font-variant-numeric: tabular-nums; }
.roi-out .roi-note { color: rgba(255,255,255,.92); font-size: 14px; margin-top: 6px; min-height: 2.6em; }
.roi-out .btn { margin-top: 10px; align-self: center; }
@media (max-width: 760px) { .roi { grid-template-columns: 1fr; } }

.final { position: relative; overflow: hidden; border-radius: 28px; padding: 60px 40px; text-align: center; color: #fff;
  background: linear-gradient(120deg, var(--brand), #6d28d9 52%, var(--pop)); box-shadow: var(--shadow-lg); }
.final::after { content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(500px circle at 20% 0%, rgba(255,255,255,.25), transparent 45%); }
.final h2 { font-size: clamp(30px, 4.6vw, 46px); font-weight: 800; color: #fff; position: relative; }
.final p { color: rgba(255,255,255,.92); font-size: 18px; margin-top: 14px; position: relative; }
.final .btn { margin-top: 26px; position: relative; }

footer { border-top: 1px solid var(--line); padding-block: 34px; color: var(--muted); font-size: 14px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
footer .spacer { margin-left: auto; }

.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding-block: 34px 46px; }
  .hero .lead { max-width: none; }
  .grid3 { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .t-book { grid-column: 1 / 3; grid-row: auto; min-height: 260px; }
  .t-247, .t-chan, .t-rem, .t-leads { grid-column: auto; grid-row: auto; }
  .t-leads { grid-column: 1 / 3; }
}
@media (max-width: 520px) { .bento { grid-template-columns: 1fr; } .t-book, .t-leads { grid-column: auto; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora i, .dot::after, .marq .track, .typing span, .msg.appear { animation: none !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
