/* Ossidex — one stylesheet, dark UI, no framework. */
@font-face { font-family: 'Open Sans'; src: url('/fonts/open-sans-latin.woff2') format('woff2'); font-weight: 300 700; font-style: normal; font-display: swap; }

/* Visual base follows the owner's reference (collectiveminds.health/research):
   #212529 background, white Open Sans, 72/86 px H1 at weight 400, pill CTAs (26 px). */
:root {
  --bg: #212529;
  --bg-2: #1A1D21;
  --card: #2B3035;
  --card-2: #343A40;
  --line: #343A40;
  --line-2: #495057;
  --text: #FFFFFF;
  --text-2: #DEE2E6;
  --text-3: #ADB5BD;
  --accent: #3D8BFD;
  --accent-2: #2563EB;
  --accent-soft: rgba(61, 139, 253, 0.14);
  --ok: #4ADE80;
  --warn: #FBBF24;
  --sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --serif: var(--sans);
  --radius: 14px;
  --wrap: 1352px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 300 18px/27px var(--sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: #7AB0FF; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: #A8CBFF; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { margin: 0 0 .5em; font-weight: 400; font-family: var(--sans); }
h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.2; letter-spacing: -0.005em; }
h2 { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.35; font-weight: 600; }
h1 em, h2 em { font-style: normal; color: var(--accent); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.25em; }
li + li { margin-top: .35em; }
strong { color: var(--text); font-weight: 600; }
code, kbd { font: 500 .85em/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; background: var(--card-2); border: 1px solid var(--line-2); border-radius: 6px; padding: .1em .35em; color: #E7F0FF; }

.skip { position: absolute; left: -9999px; top: 0; background: var(--accent-2); color: #fff; padding: .6em 1em; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }
.narrow { width: min(760px, 100% - 32px); }
.fine { font-size: .82rem; color: var(--text-3); line-height: 1.5; }
.eyebrow { font: 400 18px/1.4 var(--sans); color: var(--accent); margin-bottom: .9rem; }
.lead, .answer-lead p { font-size: clamp(18px, 1.6vw, 22px); color: var(--text-2); line-height: 1.55; font-weight: 300; }
.answer-lead p:first-child { color: var(--text); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; min-height: 54px; padding: .8em 28px; border-radius: 26px; font: 600 18px/1.2 var(--sans); text-decoration: none; border: 1px solid transparent; transition: background .15s, border-color .15s, transform .15s; white-space: nowrap; }
.btn-primary { background: var(--accent-2); color: #fff; }
.btn-primary:hover { background: #1D4ED8; color: #fff; }
.btn-ghost { border-color: #fff; color: #fff; background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }
.btn-small { min-height: 46px; padding: .5em 24px; font-size: 16px; font-weight: 400; }
.btn-white { background: #fff; color: #212529; } .btn-white:hover { background: #E9ECEF; color: #212529; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(33, 37, 41, .9); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 96px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--text); text-decoration: none; font: 500 26px/1 var(--sans); letter-spacing: -.01em; }
.brand img { width: 44px; height: 44px; }
.brand img { border-radius: 8px; }
.header-nav { display: flex; gap: .25rem; margin-inline: auto; }
.nav-link { color: var(--text); text-decoration: none; font-size: 17px; font-weight: 300; padding: .6em .8em; border-radius: 4px; }
.nav-link:hover, .nav-link[aria-current] { color: var(--text); background: rgba(255,255,255,.05); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.menu { display: none; position: relative; }
.menu summary { list-style: none; cursor: pointer; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line-2); }
.menu summary::-webkit-details-marker { display: none; }
.burger, .burger::before, .burger::after { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; position: relative; content: ''; }
.burger::before { position: absolute; top: -6px; } .burger::after { position: absolute; top: 6px; }
.menu[open] .burger { background: transparent; } .menu[open] .burger::before { top: 0; transform: rotate(45deg); } .menu[open] .burger::after { top: 0; transform: rotate(-45deg); }
.menu-panel { position: absolute; right: 0; top: 52px; min-width: 220px; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius); padding: .5rem; display: grid; box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.menu-panel a { color: var(--text); text-decoration: none; padding: .7em .9em; border-radius: 10px; }
.menu-panel a:hover { background: var(--card-2); }

/* Breadcrumbs */
.crumbs ol { list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-wrap: wrap; gap: .3rem .5rem; font-size: .85rem; color: var(--text-3); }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: '/'; margin-right: .5rem; color: var(--line-2); }
.crumbs a { color: var(--text-2); text-decoration: none; }
.crumbs a:hover { color: var(--text); }

/* Page head */
.page-head { padding: clamp(1.8rem, 5vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); border-bottom: 1px solid var(--line); }
.page-head.has-figure { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.page-head h1 { max-width: 20ch; font-size: clamp(38px, 4.6vw, 60px); }
.page-legal .page-head h1, .page-head-text h1 { max-width: 20ch; }
.byline { font-size: .85rem; color: var(--text-3); margin: 1rem 0 1.3rem; }
.byline a { color: var(--text-2); }
.head-actions, .cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1rem; }

/* Figures */
.figure { margin: 0; position: relative; }
.figure::before { content: ''; position: absolute; inset: 10% 5% 0; background: radial-gradient(closest-side, rgba(61,139,253,.28), transparent); filter: blur(30px); z-index: -1; }
.shot { margin-inline: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55)); }
.shot-phone { width: min(280px, 72vw); }
.shot-tablet { width: min(420px, 88vw); }
.figure figcaption { font-size: .82rem; color: var(--text-3); text-align: center; margin-top: .9rem; }

/* Prose */
.prose-wrap { padding-bottom: 4rem; }
.prose { max-width: 820px; }
.block { padding-top: clamp(2rem, 4vw, 3rem); }
.block h2 { scroll-margin-top: 110px; font-size: clamp(26px, 2.8vw, 36px); line-height: 1.25; }
.block h3 { margin-top: 1.6em; }
.prose p, .prose li { color: var(--text-2); }
.prose p strong, .prose li strong { color: var(--text); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; align-items: start; }
.split .figure { padding-top: 3rem; }
.split .shot-phone { width: 240px; }
.split .shot-tablet { width: 320px; }
.toc { margin-top: 2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.4rem; }
.toc-title { font: 600 .78rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .8rem; }
.toc ol { margin: 0; columns: 2; column-gap: 2rem; font-size: .93rem; }
.toc li { break-inside: avoid; }
.toc a { color: var(--text-2); text-decoration: none; }
.toc a:hover { color: var(--text); }
.steps { list-style: none; counter-reset: step; padding: 0; margin: 1.2rem 0; }
.steps > li { counter-increment: step; position: relative; padding: .1rem 0 1rem 3.1rem; margin: 0; }
.steps > li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.1rem; height: 2.1rem; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font: 600 .95rem/1 var(--sans); border: 1px solid rgba(61,139,253,.35); }
.callout { background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 1rem 1.2rem; margin: 1.3rem 0; }
.callout p:last-child { margin: 0; }
.callout.warn { border-left-color: var(--warn); }
.table-wrap { overflow-x: auto; margin: 1.3rem 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2); -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 520px; }
th, td { text-align: left; vertical-align: top; padding: .75rem .9rem; border-bottom: 1px solid var(--line); }
thead th { font-weight: 600; color: var(--text); background: var(--card); position: sticky; top: 0; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody th { font-weight: 600; color: var(--text); }
td { color: var(--text-2); }
.yes { color: var(--ok); } .no { color: #F87171; } .part { color: var(--warn); }
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.pill-list li { margin: 0; padding: .35em .8em; border: 1px solid var(--line-2); border-radius: 999px; font-size: .88rem; color: var(--text-2); background: var(--bg-2); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 2.2rem 1.1rem 0; position: relative; font-weight: 600; color: var(--text); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: .3rem; top: .95rem; font: 400 1.5rem/1 var(--sans); color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 1.1rem; }
.faq .answer p { color: var(--text-2); }

/* Cards */
.cards { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .8rem; }
.cards li { margin: 0; }
.card { position: relative; display: flex; flex-direction: column; gap: .35rem; height: 100%; padding: 1.1rem 1.2rem; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .15s, transform .15s; }
.card:hover, .card:focus-within { border-color: rgba(61,139,253,.6); transform: translateY(-2px); }
.card-title { margin: 0; font: 600 18px/1.35 var(--sans); color: var(--text); }
.card-title a { color: var(--text); text-decoration: none; }
.card-title a::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); }
.card-title a:focus-visible { outline: none; }
.card:focus-within { outline: 2px solid var(--accent); outline-offset: 3px; }
.card p { margin: 0; color: var(--text-3); font-size: .88rem; line-height: 1.5; }
.cards-compact .card p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* CTA panel */
.cta-panel { margin-top: 3rem; display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.3rem; align-items: center; padding: 1.5rem; border-radius: 20px; background: linear-gradient(135deg, rgba(37,99,235,.22), rgba(61,139,253,.06) 55%, var(--card)); border: 1px solid rgba(61,139,253,.3); }
.cta-panel img { border-radius: 16px; }
.cta-panel h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); margin-bottom: .3rem; }
.cta-panel p { color: var(--text-2); margin: 0; }
.cta-panel .cta-actions { grid-column: 1 / -1; }

/* Home */
.hero { position: relative; padding: clamp(2.5rem, 7vw, 5.5rem) 0 clamp(2rem, 6vw, 4rem); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: -20% -10% auto 30%; height: 90%; background: radial-gradient(closest-side, rgba(37,99,235,.35), transparent 70%); filter: blur(20px); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 5.4rem); line-height: 1.02; max-width: 12ch; }
.hero .lead { max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.8rem 0 1rem; }
.hero-devices { position: relative; min-height: 460px; }
.hero-devices .shot-tablet { width: min(430px, 76vw); transform: perspective(1400px) rotateY(-14deg) rotateX(4deg) rotateZ(1deg); margin-left: auto; }
.hero-devices .shot-phone { position: absolute; width: min(190px, 34vw); left: 2%; bottom: -6%; transform: perspective(1200px) rotateY(10deg) rotateZ(-2deg); }
.trust { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust ul { list-style: none; margin: 0; padding: 1.1rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 1.6rem; }
.trust li { margin: 0; color: var(--text-2); font-size: .92rem; display: flex; align-items: center; gap: .5rem; }
.trust li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex: none; }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-head { max-width: 760px; margin-bottom: 2.2rem; }
.section-head p { color: var(--text-2); font-size: 1.08rem; }
.three { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; counter-reset: n; }
.three li { margin: 0; padding: 1.5rem; background: var(--card); border: 1px solid var(--line); border-radius: 18px; counter-increment: n; }
.three li::before { content: '0' counter(n); display: block; font: 400 2.4rem/1 var(--serif); color: var(--accent); margin-bottom: .8rem; }
.three p { color: var(--text-2); margin: .4rem 0 0; font-size: .95rem; }
.feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; padding: clamp(2rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--line); }
.feature:nth-of-type(even) .feature-media { order: -1; }
.feature-text p { color: var(--text-2); }
.feature-text ul { color: var(--text-2); }
.feature-media { display: flex; justify-content: center; }
.feature-media .shot-tablet { width: min(400px, 84vw); }
.feature-media .shot-phone { width: min(250px, 62vw); }
.more { font-weight: 600; text-decoration: none; }
.more::after { content: ' →'; }
.video-wrap { border-radius: 22px; overflow: hidden; border: 1px solid var(--line-2); background: #000; max-width: 560px; margin-inline: auto; aspect-ratio: 3 / 4; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.split-home { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.vendors { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.vendors li { margin: 0; }
.vendors a, .vendors span { display: inline-block; padding: .55em 1em; border-radius: 999px; background: var(--card); border: 1px solid var(--line); color: var(--text); text-decoration: none; font-size: .92rem; }
.vendors a:hover { border-color: var(--accent); }
.privacy-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-block: 1px solid var(--line); }
.checks { list-style: none; padding: 0; margin: 1rem 0; }
.checks li { position: relative; padding-left: 1.8rem; color: var(--text-2); }
.checks li::before { content: ''; position: absolute; left: 0; top: .5em; width: 12px; height: 7px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.final-cta { text-align: center; padding: clamp(3.5rem, 9vw, 7rem) 0; }
.final-cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; margin-inline: auto; }
.final-cta p { color: var(--text-2); max-width: 40em; margin-inline: auto; }
.final-cta .hero-actions { justify-content: center; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.plan { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; }
.plan.pro { border-color: rgba(61,139,253,.55); background: linear-gradient(180deg, rgba(61,139,253,.1), var(--card)); }
.plan h3 { font: 400 1.9rem/1.1 var(--serif); margin: 0 0 .3rem; }
.plan .price { color: var(--text-3); font-size: .9rem; margin-bottom: 1rem; }

/* Forms */
.form { display: grid; gap: 1rem; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 1.5rem; margin: 1rem 0 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: grid; gap: .4rem; font-size: .85rem; color: var(--text-3); }
.form input, .form textarea { font: inherit; color: var(--text); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; padding: .7rem .8rem; width: 100%; }
.form input:focus, .form textarea:focus { border-color: var(--accent); outline: none; }
.form .status { font-size: .92rem; margin: 0; }
.form .status.err { color: #F87171; } .form .status.ok { color: var(--ok); }
.priority { display: none; color: var(--accent); font-weight: 600; font-size: .9rem; }
.form[data-priority] .priority { display: block; }

/* Legal */
.doc { padding: 1.5rem 0 4rem; }
.doc h2 { font: 600 1.2rem/1.35 var(--sans); margin: 2rem 0 .6rem; padding-left: .9rem; border-left: 3px solid var(--accent); }
.doc p, .doc li { color: var(--text-2); }
.doc .summary { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 3.5rem 0 5.5rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; }
.footer-brand p { color: var(--text-3); font-size: .9rem; margin-top: 1rem; max-width: 30ch; }
.site-footer h2 { font: 600 .78rem/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: .55rem; }
.site-footer nav a { color: var(--text-2); text-decoration: none; font-size: .92rem; }
.site-footer nav a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--text-3); }
.footer-bottom a { color: var(--text-2); }
.lang-list { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }

.sticky-cta { display: none; }

@media (max-width: 1000px) {
  .header-nav { display: none; }
  .menu { display: block; }
  .header-actions { margin-left: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .hero-grid, .split-home, .feature, .page-head.has-figure { grid-template-columns: 1fr; }
  .feature:nth-of-type(even) .feature-media { order: 0; }
  .hero-devices { min-height: 0; padding: 1rem 0 2.5rem; }
  .hero-devices .shot-tablet { transform: none; margin-inline: auto; width: min(360px, 82vw); }
  .hero-devices .shot-phone { width: min(150px, 34vw); left: 0; bottom: 0; }
  .page-head.has-figure .figure { order: 2; }
  .page-head.has-figure .shot-tablet { width: min(320px, 80vw); }
  .page-head.has-figure .shot-phone { width: min(220px, 60vw); }
  .split { grid-template-columns: 1fr; gap: 0; }
  .split .figure { padding-top: 1.5rem; }
  .three { grid-template-columns: 1fr; }
  .plans, .form-row { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .trust ul { justify-content: flex-start; }
  .sticky-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: .6rem 16px calc(.6rem + env(safe-area-inset-bottom)); background: rgba(12,15,20,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
  .sticky-cta .btn { width: 100%; }
  .header-actions .btn-small { display: none; }
}
@media (max-width: 480px) {
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel img { width: 56px; height: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ——— Reference composition (home + shared) ——— */
.h3-lg { font: 400 clamp(26px, 2.4vw, 36px)/1.2 var(--sans); margin-bottom: .8rem; }
.h-mid { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.2; }
.h-small { font-size: clamp(22px, 2vw, 28px); line-height: 1.2; margin-bottom: 1.4rem; }
.hero { padding: clamp(2rem, 8vw, 7rem) 0 clamp(2.5rem, 7vw, 6rem); }
.hero::before { inset: 0 -10% auto 40%; background: radial-gradient(closest-side, rgba(61,139,253,.16), transparent 70%); }
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.hero h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.2; max-width: 16ch; font-weight: 400; }
.hero .answer-lead p { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.55; color: #fff; }
.hero-actions { margin: 2.2rem 0 1rem; }
.hero-devices { min-height: 0; display: flex; justify-content: center; }
.shot.tilt { transform: perspective(1600px) rotateY(-20deg) rotateX(6deg) rotateZ(2deg); }
.shot.tilt-left { transform: perspective(1600px) rotateY(18deg) rotateX(5deg) rotateZ(-2deg); }
.hero-devices .shot-tablet { width: min(430px, 90vw); transform: perspective(1600px) rotateY(-20deg) rotateX(6deg) rotateZ(2deg); margin: 0; }
.brands { padding: 1rem 0 clamp(2rem, 5vw, 4rem); }
.brand-logos { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .8rem; }
.brand-logos li { margin: 0; }
.brand-logos a, .brand-logos span { display: grid; place-items: center; min-height: 76px; padding: .9rem 1rem; border-radius: 10px; background: var(--card); transition: background .2s ease, transform .2s ease; }
.brand-logos a:hover, .brand-logos a:focus-visible { background: var(--card-2); transform: translateY(-2px); }
.brand-logos img { max-width: 100%; height: auto; filter: brightness(0) invert(1); opacity: .72; transition: opacity .2s ease; }
.brand-logos a:hover img, .brand-logos a:focus-visible img { opacity: 1; }
.brand-note { margin-top: 1rem; }
.brand-note a { color: var(--text-2); }
.stats-band { padding: 0 0 clamp(2rem, 5vw, 3rem); }
.stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stats li { margin: 0; background: #1A1D21; border-radius: 12px; padding: 1.6rem 1.2rem; text-align: center; }
.stats strong { display: block; font-variant-numeric: tabular-nums; font-size: clamp(34px, 3.4vw, 44px); font-weight: 600; line-height: 1.1; }
.stats span { color: var(--text-2); font-size: 16px; }
.feature { border-top: 0; padding: clamp(2rem, 6vw, 5rem) 0; }
.feature-text p { font-size: 18px; }
.caps { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.caps > li { margin: 0; }
.caps > li > a { display: block; height: 100%; background: var(--card); border-radius: 12px; padding: 1.6rem 1.4rem; color: var(--text); text-decoration: none; transition: transform .15s, background .15s; }
.caps > li > a:hover { background: var(--card-2); transform: translateY(-2px); }
.caps h3 { font-size: 24px; font-weight: 400; line-height: 1.25; margin-bottom: 1rem; }
.caps .checks li { font-size: 16px; color: var(--text-2); }
.caps .more { color: var(--text-3); font-size: 15px; font-weight: 400; }
.band { background: #1A1D21; }
.video-wrap { border-radius: 16px; border-color: var(--line-2); max-width: 520px; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-more { background: var(--card); border-radius: 12px; padding: 1.4rem; margin-top: 1.5rem; max-width: 420px; }
.faq-more p { color: var(--text-2); font-size: 16px; }
.faq summary { font-weight: 400; font-size: 18px; }
.view-all { text-align: right; margin-top: 1.4rem; }
.final-panel { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 2rem; align-items: center; background: #1A1D21; border-radius: 16px; padding: clamp(1.8rem, 5vw, 4rem); overflow: hidden; }
.final-panel p { color: var(--text-2); }
.final-media { display: flex; justify-content: center; }
.final-media .shot-tablet { width: min(360px, 70vw); }
.card { background: var(--card); border: 0; border-radius: 12px; }
.card:hover { background: var(--card-2); }
.card-title a::after { border-radius: 12px; }
.card p { color: var(--text-2); font-size: 15px; font-weight: 300; }
.cta-panel { background: #1A1D21; border: 0; border-radius: 16px; }
.toc, .callout, .table-wrap, .plan, .form, .doc .summary { border-color: var(--line-2); }
.site-footer { background: #1A1D21; }
.trust { display: none; }
@media (max-width: 1100px) { .hide-md { display: none; } .caps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-devices { order: -1; padding: 0; }
  .hero-devices .shot-tablet { width: min(300px, 76vw); }
  .hero h1 { font-size: 40px; line-height: 48px; max-width: none; }
  .shot.tilt, .shot.tilt-left { transform: perspective(1400px) rotateY(-12deg) rotateX(5deg); }
  .stats { grid-template-columns: 1fr; }
  .caps { grid-template-columns: 1fr; }
  .faq-grid, .final-panel { grid-template-columns: 1fr; }
  .brand-logos { grid-template-columns: repeat(2, 1fr); }
  .brand-logos a, .brand-logos span { min-height: 62px; }
  .header-inner { min-height: 72px; }
  .brand { font-size: 22px; } .brand img { width: 36px; height: 36px; }
  .view-all { text-align: left; }
}
.pt0 { padding-top: 0; }
.soon { display: inline-block; vertical-align: middle; margin-left: .35em; padding: .1em .55em; border-radius: 999px; font-size: 12px; font-weight: 600; line-height: 1.5; letter-spacing: .02em; color: #fff; background: var(--accent-2); }
.soon-list { list-style: none; padding: 0; } .soon-list li { font-weight: 400; color: var(--text); }
.caps .is-soon { color: var(--text-3); }

/* ——— Motion (2026-09-27). Only transform/opacity; hidden states exist only after motion.js adds .motion to <html>,
   so without JS everything is visible. prefers-reduced-motion: no animation at all. ——— */
.btn { transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37, 99, 235, .35); }
.btn-ghost:hover, .btn-white:hover { transform: translateY(-1px); }
.card, .caps > li > a { transition: border-color .2s ease, background .2s ease, transform .25s cubic-bezier(.2, .7, .2, 1), box-shadow .25s ease; }
.card:hover, .caps > li > a:hover { box-shadow: 0 14px 30px rgba(0, 0, 0, .28); }
.faq details[open] .answer { animation: faq-in .28s ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); will-change: opacity, transform; }
.motion .reveal.is-in { opacity: 1; transform: none; }
.hero-devices .tilt { transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
@media (min-width: 901px) { .motion .hero-devices .tilt { transform: perspective(1600px) rotateY(calc(-20deg + var(--tilt-y, 0deg))) rotateX(calc(6deg + var(--tilt-x, 0deg))) rotateZ(2deg) translateY(var(--parallax, 0px)); } }
@media (prefers-reduced-motion: reduce) {
  .motion .reveal { opacity: 1; transform: none; transition: none; }
  .faq details[open] .answer { animation: none; }
  .motion .hero-devices .tilt { transform: none; }
  .btn-primary:hover, .btn-ghost:hover, .btn-white:hover, .card:hover, .caps > li > a:hover { transform: none; }
}
