
:root {
  --bg: #06111f;
  --bg-2: #0a1a2c;
  --bg-3: #102741;
  --surface: rgba(14, 35, 58, 0.78);
  --surface-solid: #0e233a;
  --surface-light: #f4f9fd;
  --text: #f5fbff;
  --ink: #102033;
  --muted: #a6b9cc;
  --muted-dark: #5d7084;
  --line: rgba(160, 205, 235, .16);
  --cyan: #25ccd1;
  --blue: #4e7ee9;
  --purple: #8668ff;
  --green: #33d39b;
  --orange: #ff9d57;
  --page-accent: var(--cyan);
  --page-accent-2: var(--blue);
  --shadow: 0 24px 70px rgba(0, 0, 0, .28);
  --radius: 24px;
  --radius-sm: 15px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(37, 204, 209, .12), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(78, 126, 233, .12), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000;
  background: white; color: #06111f; padding: .75rem 1rem; border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), calc(100% - 2.25rem)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 2.25rem)); margin-inline: auto; }
.section { padding: 6.6rem 0; position: relative; }
.section-tight { padding: 4.5rem 0; }
.section-light { background: var(--surface-light); color: var(--ink); }
.section-light .eyebrow { color: #197b92; }
.section-light .muted { color: var(--muted-dark); }
.section-grid {
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 17, 31, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; min-width: 178px; }
.brand img { width: 156px; height: 58px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: .15rem; }
.primary-nav > a, .nav-drop > button {
  border: 0; background: transparent; cursor: pointer; padding: .65rem .78rem;
  color: #d8e6f1; border-radius: 10px; font-weight: 650; font-size: .95rem;
}
.primary-nav > a:hover, .nav-drop > button:hover, .primary-nav > a[aria-current="page"] { color: white; background: rgba(255,255,255,.07); }
.nav-drop { position: relative; }
.nav-drop > button { display: flex; align-items: center; gap: .35rem; }
.nav-drop > button::after { content: ""; width: .48rem; height: .48rem; border-right: 1.6px solid; border-bottom: 1.6px solid; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute; left: 50%; top: calc(100% + .75rem); transform: translateX(-50%) translateY(-4px);
  width: 690px; padding: 1rem; background: rgba(9, 25, 43, .98); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .35rem;
  opacity: 0; visibility: hidden; transition: .18s ease;
}
.nav-drop:hover .dropdown, .nav-drop:focus-within .dropdown, .nav-drop.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: grid; grid-template-columns: 38px 1fr; gap: .7rem; padding: .75rem; border-radius: 13px; }
.dropdown a:hover { background: rgba(255,255,255,.06); }
.dropdown strong { display: block; color: white; font-size: .94rem; }
.dropdown span { color: var(--muted); font-size: .79rem; line-height: 1.35; }
.nav-icon { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg, rgba(37,204,209,.17), rgba(78,126,233,.2)); color: #74dfe3; }
.nav-icon svg { width: 19px; height: 19px; }
.nav-cta { margin-left: .35rem; }
.menu-toggle { display: none; border: 0; background: rgba(255,255,255,.06); width: 44px; height: 44px; border-radius: 12px; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 22px; height: 2px; background: white; margin: 5px auto; transition: .2s; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .78rem 1.18rem; border-radius: 13px; border: 1px solid transparent; font-weight: 750; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #03111c; background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2)); box-shadow: 0 14px 34px color-mix(in srgb, var(--page-accent) 20%, transparent); }
.btn-primary:hover { box-shadow: 0 17px 40px color-mix(in srgb, var(--page-accent) 28%, transparent); }
.btn-secondary { color: white; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.btn-secondary:hover { background: rgba(255,255,255,.1); }
.btn-dark { color: white; background: #0b1b2d; }
.btn-light { color: var(--ink); background: white; border-color: #dce8f0; }
.btn-arrow::after { content: "→"; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }

.eyebrow { display: inline-flex; align-items: center; gap: .55rem; color: #72e0e3; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2)); }
.hero { padding: 7.3rem 0 6rem; overflow: hidden; position: relative; }
.hero::after { content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--page-accent) 18%, transparent), transparent 67%); right: -170px; top: -130px; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 4rem; align-items: center; }
.hero h1, .page-hero h1 { margin: .75rem 0 1.2rem; font-size: clamp(2.85rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.055em; max-width: 820px; }
.hero h1 .gradient, .page-hero h1 .gradient { background: linear-gradient(120deg, var(--page-accent), var(--page-accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p, .page-hero p { color: #b8cada; font-size: clamp(1.05rem, 1.7vw, 1.23rem); max-width: 690px; margin: 0; }
.hero-note { display: flex; align-items: center; gap: .55rem; color: #93a9bc; font-size: .9rem; margin-top: 1rem; }
.hero-note::before { content: "✓"; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(51,211,155,.13); color: #68e3b4; font-weight: 900; }

.dashboard, .product-visual { position: relative; border-radius: 28px; padding: 1rem; background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
.dashboard::before, .product-visual::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(37,204,209,.48), transparent 45%, rgba(78,126,233,.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.dash-window { background: #0a1a2d; border: 1px solid rgba(255,255,255,.07); border-radius: 21px; overflow: hidden; }
.window-bar { height: 43px; display: flex; align-items: center; gap: 6px; padding: 0 1rem; border-bottom: 1px solid rgba(255,255,255,.07); }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #31516c; }
.window-title { margin-left: .6rem; color: #8ea6ba; font-size: .73rem; letter-spacing: .08em; text-transform: uppercase; }
.dash-content { padding: 1.2rem; }
.dash-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-mini { display: flex; align-items: center; gap: .65rem; font-weight: 800; }
.brand-mini img { width: 44px; height: 44px; object-fit: contain; }
.live-pill { padding: .36rem .65rem; border-radius: 999px; background: rgba(51,211,155,.1); color: #6be6b8; font-size: .75rem; font-weight: 800; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; margin-top: 1rem; }
.metric { padding: 1rem; border-radius: 16px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.06); }
.metric small { color: #8ca4b8; display: block; }
.metric strong { display: block; font-size: 1.35rem; margin-top: .15rem; }
.metric .trend { color: #5edfab; font-size: .75rem; }
.chart { height: 125px; margin-top: 1rem; position: relative; overflow: hidden; border-radius: 16px; background: linear-gradient(180deg, rgba(37,204,209,.08), rgba(78,126,233,.025)); border: 1px solid rgba(255,255,255,.06); }
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-grid { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 32px 32px; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); border-radius: 20px; overflow: hidden; margin-top: 4rem; }
.trust-item { background: #0a1a2c; padding: 1.15rem; text-align: center; }
.trust-item strong { display: block; font-size: .95rem; }
.trust-item span { color: #8fa6ba; font-size: .8rem; }

.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.3rem; }
.section-head h2, .content h2 { margin: .55rem 0 0; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.06; letter-spacing: -.04em; }
.section-head p { max-width: 530px; margin: 0; color: var(--muted); }
.section-light .section-head p { color: var(--muted-dark); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.card { border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); border-radius: var(--radius); padding: 1.45rem; transition: transform .25s ease, border-color .25s, background .25s; }
.card:hover { transform: translateY(-5px); border-color: rgba(82,199,221,.34); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); }
.section-light .card { background: white; border-color: #dce8f0; box-shadow: 0 15px 42px rgba(38,71,99,.08); }
.card-icon { width: 49px; height: 49px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(135deg, color-mix(in srgb, var(--page-accent) 18%, transparent), color-mix(in srgb, var(--page-accent-2) 18%, transparent)); color: var(--page-accent); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin: 1rem 0 .45rem; font-size: 1.25rem; letter-spacing: -.02em; }
.card p { color: var(--muted); margin: 0; font-size: .94rem; }
.section-light .card p { color: var(--muted-dark); }
.card-link { display: inline-flex; gap: .4rem; align-items: center; color: #70e0e4; font-weight: 800; margin-top: 1.1rem; font-size: .9rem; }
.section-light .card-link { color: #197c94; }
.card-link::after { content: "→"; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content p { color: var(--muted); }
.section-light .content p { color: var(--muted-dark); }
.feature-list { display: grid; gap: .75rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 27px 1fr; gap: .65rem; align-items: start; }
.feature-list li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--page-accent) 14%, transparent); color: var(--page-accent); font-weight: 900; font-size: .8rem; }
.step-list { display: grid; gap: .8rem; }
.step { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1rem; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.07); border-radius: 18px; }
.section-light .step { background: white; border-color: #dce8f0; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; font-weight: 900; color: #06111f; background: linear-gradient(135deg, var(--page-accent), var(--page-accent-2)); }
.step h3 { margin: 0; font-size: 1.08rem; }
.step p { margin: .25rem 0 0; color: var(--muted); font-size: .9rem; }
.section-light .step p { color: var(--muted-dark); }

.page-hero { padding: 6.5rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -220px; top: -220px; background: radial-gradient(circle, color-mix(in srgb, var(--page-accent) 20%, transparent), transparent 68%); }
.page-hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 3.5rem; align-items: center; }
.page-hero h1 { font-size: clamp(2.75rem, 5.5vw, 4.9rem); }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.tag { padding: .45rem .7rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); color: #c8d9e7; font-size: .8rem; font-weight: 700; }
.product-visual { min-height: 390px; display: grid; place-items: center; overflow: hidden; }

.product-image { min-height: 390px; display: grid; place-items: center; overflow: hidden; }
.product-image img { width: min(620px, 98%); max-height: 430px; object-fit: contain; filter: drop-shadow(0 28px 48px rgba(0,0,0,.34)); }
.screenshot-frame { padding: .75rem; border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); overflow: hidden; }
.screenshot-frame img { width: 100%; border-radius: 17px; }

.product-visual .visual-card { width: min(420px, 90%); background: #0a1a2d; border: 1px solid rgba(255,255,255,.09); border-radius: 22px; padding: 1.15rem; box-shadow: 0 22px 55px rgba(0,0,0,.25); transform: rotate(-2deg); }
.visual-brand { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.visual-brand strong { font-size: 1.1rem; }
.visual-brand span { color: var(--page-accent); font-size: .75rem; font-weight: 800; }
.visual-stack { display: grid; gap: .65rem; margin-top: .85rem; }
.visual-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem; border-radius: 13px; background: rgba(255,255,255,.045); }
.visual-row small { color: #93a9bc; }
.visual-row b { font-size: .9rem; }
.visual-accent { width: 74px; height: 8px; border-radius: 999px; background: linear-gradient(90deg, var(--page-accent), var(--page-accent-2)); }

.comparison { overflow-x: auto; border: 1px solid rgba(255,255,255,.09); border-radius: 20px; }
.comparison table { width: 100%; border-collapse: collapse; min-width: 720px; }
.comparison th, .comparison td { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); text-align: left; }
.comparison th { background: rgba(255,255,255,.045); font-size: .83rem; text-transform: uppercase; letter-spacing: .07em; color: #8fa8bc; }
.comparison td:nth-child(2) { color: #73e0e3; font-weight: 800; }
.comparison tr:last-child td { border-bottom: 0; }

.callout { padding: 2rem; border-radius: 25px; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(125deg, color-mix(in srgb, var(--page-accent) 12%, #0a1a2c), color-mix(in srgb, var(--page-accent-2) 10%, #0a1a2c)); }
.callout h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.04em; }
.callout p { color: #b7cad9; max-width: 700px; }
.callout-row { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.disclosure { color: #8ca2b5; font-size: .78rem; line-height: 1.55; }
.section-light .disclosure { color: #6a7d90; }
.notice { border-left: 3px solid var(--page-accent); background: rgba(255,255,255,.045); padding: 1rem 1.1rem; border-radius: 0 14px 14px 0; color: #b9cad8; font-size: .9rem; }
.section-light .notice { color: #53677b; background: #eef6fb; }

.form-shell { display: grid; grid-template-columns: .76fr 1.24fr; gap: 1rem; align-items: start; }
.form-info, .form-card { border-radius: 25px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); padding: 1.5rem; }
.form-info { position: sticky; top: 105px; }
.contact-item { display: grid; grid-template-columns: 42px 1fr; gap: .75rem; margin-top: 1.15rem; }
.contact-item .card-icon { width: 42px; height: 42px; border-radius: 13px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--muted); font-size: .9rem; }
form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .38rem; }
.field.full { grid-column: 1/-1; }
label, legend { font-weight: 750; font-size: .88rem; }
label .optional { font-weight: 500; color: #8298ac; }
input, select, textarea { width: 100%; color: white; background: #091a2c; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: .78rem .9rem; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--page-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--page-accent) 17%, transparent); }
textarea { min-height: 135px; resize: vertical; }
fieldset { margin: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; padding: 1rem; }
legend { padding: 0 .4rem; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .55rem; margin-top: .45rem; }
.check { display: flex; align-items: flex-start; gap: .55rem; color: #c0d1df; font-size: .88rem; }
.check input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--page-accent); }
.check label { font-weight: 600; cursor: pointer; }
.consent { color: #8fa5b9; font-size: .78rem; }
.error-text { display: none; color: #ffb09d; font-size: .8rem; }
fieldset.invalid { border-color: #ff8f75; }
fieldset.invalid .error-text { display: block; }
.hidden { position: absolute; left: -9999px; }

.embed-shell { padding: 1rem; border-radius: 22px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow); }
.embed-shell iframe { display: block; background: white; }

.legal { color: #c0d0dd; }
.legal h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.04em; }
.legal h2 { margin-top: 2.5rem; color: white; font-size: 1.45rem; }
.legal h3 { color: white; }
.legal a { color: #73e2e4; text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 1.25rem; }
.legal .effective { color: #8fa6ba; }

.site-footer { border-top: 1px solid rgba(255,255,255,.08); background: #040d18; padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr 1fr; gap: 2rem; }
.footer-brand img { width: 190px; }
.footer-brand p { color: #8fa6ba; max-width: 380px; font-size: .9rem; }
.footer-col h3 { font-size: .9rem; margin: .3rem 0 1rem; text-transform: uppercase; letter-spacing: .08em; color: #d5e4ef; }
.footer-col a, .footer-col span { display: block; color: #8fa6ba; padding: .23rem 0; font-size: .87rem; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.07); color: #73899c; font-size: .76rem; }
.footer-legal { max-width: 820px; }

.cookie-banner { position: fixed; left: 1rem; bottom: 1rem; z-index: 200; width: min(480px, calc(100% - 2rem)); padding: 1rem; border-radius: 17px; background: #0b1c2e; border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0; color: #b7c9d8; font-size: .85rem; }
.cookie-banner a { color: #78e4e6; text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .8rem; }
.cookie-actions button { border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); border-radius: 10px; padding: .55rem .75rem; cursor: pointer; font-weight: 750; }
.cookie-actions .accept { background: linear-gradient(135deg, var(--cyan), var(--blue)); color: #06111f; border: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.muted { color: var(--muted); }
.kicker { font-size: 1.03rem; color: #c2d2de; }
.pill-grid { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill { padding: .55rem .78rem; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: #bed0dd; font-size: .82rem; font-weight: 700; }
.logo-text { font-weight: 900; letter-spacing: -.035em; font-size: 1.15rem; }
.logo-text.simply { color: #74e3dd; }
.logo-text.powr { color: #79afff; }
.logo-text.ottri { color: #b49dff; }
.logo-text.clover { color: #69db9c; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 78px 0 auto; max-height: calc(100vh - 78px); overflow: auto; background: rgba(5,15,27,.98); padding: 1rem; display: none; align-items: stretch; flex-direction: column; border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav.open { display: flex; }
  .primary-nav > a, .nav-drop > button { width: 100%; text-align: left; justify-content: space-between; padding: .85rem; }
  .nav-cta { margin: .5rem 0 0; }
  .dropdown { position: static; transform: none !important; width: 100%; opacity: 1; visibility: visible; display: none; grid-template-columns: 1fr; box-shadow: none; background: rgba(255,255,255,.035); margin-top: .3rem; }
  .nav-drop.open .dropdown { display: grid; }
  .nav-drop:hover .dropdown { display: none; }
  .nav-drop.open:hover .dropdown { display: grid; }
  .hero-grid, .page-hero-grid, .split, .form-shell { grid-template-columns: 1fr; }
  .hero { padding-top: 5.3rem; }
  .product-visual { min-height: 340px; }
  .cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .form-info { position: static; }
}

@media (max-width: 640px) {
  .container, .narrow { width: min(100% - 1.25rem, var(--container)); }
  .section { padding: 4.7rem 0; }
  .hero { padding: 4.8rem 0 4rem; }
  .hero h1, .page-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .page-hero { padding: 4.8rem 0 4rem; }
  .cards, .form-grid, .checkbox-grid, .metric-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .callout-row { display: block; }
  .callout-row .btn-row { margin-top: 1.3rem; }
  .brand img { width: 140px; }
  .dashboard { padding: .55rem; }
  .dash-content { padding: .8rem; }
  .product-visual { min-height: 300px; }
  .form-info, .form-card { padding: 1rem; }
}

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