:root {
  --navy: #0b1d33;
  --navy-deep: #061426;
  --slate: #33455a;
  --slate-light: #607185;
  --teal: #0ea5a6;
  --aqua: #33e6e0;
  --mist: #f2f4f7;
  --white: #ffffff;
  --border: #dce3e8;
  --shadow: 0 24px 64px rgba(11, 29, 51, 0.1);
  --container: 1180px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 96px; }
body { margin: 0; overflow-x: clip; color: var(--navy); background: var(--white); font-family: "DM Sans", sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); font-family: "Manrope", sans-serif; line-height: 1.12; }
h1 { font-size: clamp(3.2rem, 6vw, 5.6rem); letter-spacing: -0.075em; }
h2 { font-size: clamp(2.35rem, 4vw, 3.65rem); letter-spacing: -0.07em; }
h3 { font-size: 1.12rem; letter-spacing: -0.025em; }
p { margin: 0; color: var(--slate-light); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }
.section-light { background: #f8fafb; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 20; height: 78px; border-bottom: 1px solid rgba(220, 227, 232, .85); background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 48px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-family: "Manrope", sans-serif; font-size: 1.05rem; font-weight: 800; letter-spacing: .28em; }
.brand-mark { width: 30px; height: 30px; display: inline-flex; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.main-nav a, .login-link { color: var(--slate); font-size: .86rem; font-weight: 600; transition: color .2s ease; }
.main-nav a:hover, .login-link:hover { color: var(--teal); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.nav-toggle { display: none; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 14px; padding: 0 21px; border: 1px solid transparent; border-radius: var(--radius); font-size: .88rem; font-weight: 700; transition: transform .2s ease, background .2s ease, border .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 1rem; line-height: 1; }
.button-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 25px rgba(11, 29, 51, .16); }
.button-primary:hover { background: #102b4a; }
.button-secondary { color: var(--navy); border-color: var(--border); background: var(--white); }
.button-secondary:hover { border-color: var(--teal); }
.button-small { min-height: 42px; padding: 0 17px; font-size: .8rem; }
.button-light { color: var(--navy); background: var(--white); }

.hero { min-height: 780px; display: grid; align-items: center; overflow: hidden; padding: 102px 0 110px; background: linear-gradient(135deg, #fff 55%, #f5f9fa); }
.hero-layout { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 70px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--teal); font-size: .71rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; display: inline-block; border: 2px solid var(--teal); }
.hero h1 span { color: var(--teal); }
.hero-text { max-width: 620px; margin-top: 26px; color: var(--slate); font-size: 1.1rem; line-height: 1.8; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 35px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 31px; color: var(--slate-light); font-size: .8rem; font-weight: 600; }
.check-icon { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid var(--teal); color: var(--teal); font-size: .68rem; }

.hero-visual { position: relative; min-height: 480px; }
.visual-grid, .cta-grid { position: absolute; inset: -60px -100px; opacity: .35; background-image: linear-gradient(rgba(14,165,166,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(14,165,166,.15) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(circle at center, black, transparent 74%); }
.screenshot-frame { overflow: hidden; margin: 0; border: 1px solid var(--border); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.screenshot-frame-hero { position: absolute; top: 50px; left: 0; width: min(720px, calc(50vw - 24px)); }
.screenshot-frame img { width: 100%; height: auto; display: block; }
.screenshot-toolbar { height: 40px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 14px; border-bottom: 1px solid var(--border); background: #fbfcfd; }
.toolbar-label { display: flex; align-items: center; gap: 7px; color: var(--navy); font-size: .57rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.toolbar-status { justify-self: end; color: var(--teal); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mini-mark { width: 14px; height: 14px; display: inline-block; background: url("/public/brand/volura-mark.svg") center / contain no-repeat; }
.window-controls { display: flex; gap: 5px; }
.window-controls span { width: 6px; height: 6px; border-radius: 50%; background: #d6dee3; }
.floating-card small { display: block; color: #82909e; font-size: .52rem; font-weight: 700; letter-spacing: .12em; }
.floating-card { position: absolute; right: -70px; bottom: 53px; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); background: var(--white); box-shadow: 0 16px 32px rgba(11, 29, 51, .12); }
.floating-card strong { display: block; color: var(--navy); font-size: .72rem; }
.floating-icon { width: 26px; height: 26px; display: grid; place-items: center; color: var(--white); background: var(--teal); font-size: .68rem; }
.cube { position: absolute; width: 45px; height: 45px; border: 1px solid rgba(14,165,166,.35); transform: rotate(30deg) skew(-8deg); }
.cube-one { top: 0; right: 15px; }
.cube-two { bottom: 50px; left: -45px; width: 28px; height: 28px; border-color: rgba(11,29,51,.22); }

.trust-strip { background: var(--navy); }
.trust-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.52); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.trust-points { display: flex; gap: 28px; }
.trust-points span { position: relative; padding-left: 18px; }
.trust-points span::before { position: absolute; left: 0; color: var(--aqua); content: "◆"; font-size: .42rem; }

.section-heading { max-width: 680px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading p, .section-intro { margin-top: 20px; font-size: 1rem; line-height: 1.8; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { border: 1px solid var(--border); background: var(--white); }
.benefit-card { min-height: 295px; padding: 27px; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-5px); border-color: rgba(14,165,166,.65); box-shadow: 0 15px 35px rgba(11,29,51,.07); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 35px; background: #e9f7f7; }
.line-icon { width: 22px; height: 22px; display: block; border: 1.5px solid var(--teal); }
.icon-stack { box-shadow: 5px -5px 0 -1.5px #e9f7f7, 5px -5px 0 0 var(--teal); }
.icon-cost { border-radius: 50%; position: relative; }
.icon-cost::after { position: absolute; inset: 4px; border: 1.5px solid var(--teal); border-radius: 50%; content: ""; }
.icon-flow { border-width: 0 0 1.5px 1.5px; transform: rotate(-45deg); }
.benefit-card p { margin-top: 13px; font-size: .91rem; line-height: 1.75; }
.benefit-card a { display: inline-flex; gap: 8px; margin-top: 26px; color: var(--teal); font-size: .76rem; font-weight: 700; }

.product-section { overflow: hidden; }
.product-layout { display: grid; grid-template-columns: minmax(360px, .84fr) minmax(0, 1.16fr); align-items: center; gap: 58px; }
.feature-list { margin-top: 37px; border-top: 1px solid var(--border); }
.feature-list article { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.feature-number { padding-top: 2px; color: var(--teal); font-family: "Manrope"; font-size: .73rem; font-weight: 800; }
.feature-list p { margin-top: 5px; font-size: .87rem; line-height: 1.6; }
.screenshot-frame-detail { position: relative; width: 100%; max-width: 760px; justify-self: end; }
.screenshot-frame-detail::before { position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(14,165,166,.12); content: ""; }

.proof-section { padding: 0 0 104px; background: var(--white); }
.proof-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; padding-top: 52px; border-top: 1px solid var(--border); }
.proof-callouts { border-top: 1px solid var(--border); }
.proof-callouts article { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.proof-callouts span, .roi-card > span { color: var(--teal); font-family: "Manrope"; font-size: .73rem; font-weight: 800; }
.proof-callouts p { margin-top: 5px; font-size: .87rem; line-height: 1.6; }

.roi-section { background: #f8fafb; }
.roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.roi-card { min-height: 218px; padding: 23px; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.roi-card:hover { transform: translateY(-4px); border-color: rgba(14,165,166,.65); box-shadow: 0 15px 35px rgba(11,29,51,.07); }
.roi-card h3 { margin-top: 28px; }
.roi-card p { margin-top: 10px; font-size: .84rem; line-height: 1.65; }
.section-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }

.process-section { color: var(--white); background: var(--navy); }
.process-section h2, .process-section h3 { color: var(--white); }
.split-heading { max-width: unset; display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 40px; }
.split-heading p { color: rgba(255,255,255,.55); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-card { position: relative; padding: 6px 25px 0 0; }
.step-number { width: 47px; height: 47px; display: grid; place-items: center; border: 1px solid rgba(51,230,224,.45); color: var(--aqua); font-family: "Manrope"; font-size: .75rem; font-weight: 800; }
.step-line { position: absolute; top: 29px; left: 62px; right: 16px; height: 1px; background: rgba(51,230,224,.22); }
.process-card h3 { margin-top: 27px; font-size: 1rem; }
.process-card p { margin-top: 10px; color: rgba(255,255,255,.52); font-size: .84rem; line-height: 1.65; }

.industries-section { background: #f8fafb; }
.industry-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.industry-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.industry-grid article { min-height: 177px; padding: 21px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); transition: background .25s ease; }
.industry-grid article:hover { background: #eff9f9; }
.industry-grid span { color: var(--teal); font-family: "Manrope"; font-size: .65rem; font-weight: 800; }
.industry-grid h3 { margin-top: 15px; }
.industry-grid p { margin-top: 8px; font-size: .81rem; line-height: 1.55; }

.cta-section { padding: 84px 0; }
.cta-panel { position: relative; min-height: 275px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; padding: 55px 62px; background: var(--navy); }
.cta-panel > *:not(.cta-grid) { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 690px; color: var(--white); font-size: clamp(2rem, 3.4vw, 3rem); }
.eyebrow-light { color: var(--aqua); }

.site-footer { padding: 70px 0 22px; color: rgba(255,255,255,.55); background: var(--navy-deep); }
.site-footer .brand { color: var(--white); }
.site-footer .brand-mark { padding: 4px; border-radius: 4px; background: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr 1.25fr; gap: 70px; }
.footer-brand p { max-width: 310px; margin-top: 22px; color: rgba(255,255,255,.44); font-size: .86rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-links h4 { margin-bottom: 15px; color: var(--white); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links span { display: block; margin-top: 9px; color: rgba(255,255,255,.47); font-size: .78rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 19px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.35); font-size: .7rem; }
.footer-bottom div { display: flex; gap: 20px; }

.route-page { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 96px 0; background: linear-gradient(135deg, #fff 55%, #f5f9fa); }
.route-copy { max-width: 780px; }
.route-copy .eyebrow { margin-top: 54px; }
.route-copy h1 { max-width: 760px; font-size: clamp(3rem, 6vw, 5.2rem); }
.route-copy p { max-width: 640px; margin-top: 24px; font-size: 1.05rem; line-height: 1.8; }
.route-copy .button-row { margin-top: 31px; }

.page-hero { padding: 112px 0 100px; background: linear-gradient(135deg, #fff 55%, #f5f9fa); }
.page-hero h1 { max-width: 800px; }
.page-hero p { max-width: 680px; margin-top: 23px; color: var(--slate); font-size: 1.05rem; line-height: 1.8; }
.page-hero-layout, .product-detail-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 58px; }
.page-hero-layout .screenshot-frame { max-width: 100%; }
.centered-page-hero { text-align: center; }
.centered-page-hero .eyebrow { justify-content: center; }
.centered-page-hero h1, .centered-page-hero p { margin-inline: auto; }
.compact-section { padding: 88px 0; }
.page-section-heading { max-width: 720px; margin-bottom: 38px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.capability-card { min-height: 240px; padding: 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.capability-card span, .story-grid span { color: var(--teal); font-family: "Manrope"; font-size: .7rem; font-weight: 800; }
.capability-card h3 { margin-top: 28px; }
.capability-card p { margin-top: 10px; font-size: .84rem; line-height: 1.65; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-card { display: flex; min-height: 430px; flex-direction: column; padding: 29px; border: 1px solid var(--border); background: var(--white); }
.pricing-card.featured { border-top: 3px solid var(--teal); box-shadow: var(--shadow); }
.pricing-label { align-self: flex-start; padding: 5px 8px; color: var(--teal); border: 1px solid rgba(14,165,166,.35); font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.pricing-card h2 { margin-top: 24px; font-size: 2rem; }
.pricing-card p { margin-top: 11px; font-size: .9rem; }
.pricing-card ul { flex: 1; margin: 26px 0; padding: 0; list-style: none; }
.pricing-card li { padding: 10px 0; border-top: 1px solid var(--border); color: var(--slate); font-size: .82rem; }
.pricing-note { max-width: 1180px; margin: 24px auto 0; padding: 0 24px; color: var(--slate-light); font-size: .8rem; text-align: center; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.story-grid article { padding: 25px; border-left: 2px solid var(--teal); background: var(--white); }
.story-grid h2 { margin-top: 17px; font-size: 1.65rem; }
.story-grid p { margin-top: 12px; font-size: .88rem; line-height: 1.7; }
.narrow-container { max-width: 850px; }
.contact-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 75px; }
.contact-email { display: inline-block; margin-top: 24px; color: var(--teal); font-size: 1.05rem; font-weight: 700; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 27px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 6px; color: var(--slate); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-form label:nth-of-type(4), .contact-form label:nth-of-type(6), .form-note, .form-status { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 2px; color: var(--navy); background: #fbfcfd; font: inherit; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); outline: 2px solid rgba(14,165,166,.14); }
.contact-form .button { justify-self: start; }
.contact-form .button:disabled { cursor: wait; opacity: .68; transform: none; }
.form-note, .form-status { color: var(--slate-light); font-size: .76rem; }
.form-status { color: var(--teal); font-weight: 700; }
.form-status[data-state="error"] { color: #a13b3b; }
.form-status[data-state="loading"] { color: var(--slate-light); }
.form-status a { text-decoration: underline; }
.honeypot-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.early-access-notes { margin-top: 34px; }
.gateway-page { min-height: 680px; display: grid; align-items: center; padding: 85px 0; background: linear-gradient(135deg, #fff 55%, #f5f9fa); }
.gateway-card { max-width: 760px; padding: 42px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.gateway-card .eyebrow { margin-top: 45px; }
.gateway-card h1 { font-size: clamp(2.7rem, 5vw, 4.4rem); }
.gateway-card > p { margin-top: 18px; font-size: 1rem; }
.gateway-launch { margin-top: 28px; }
.gateway-placeholder { margin-top: 27px; padding: 18px; border-left: 3px solid var(--teal); background: #eff9f9; }
.gateway-placeholder strong { color: var(--navy); }
.gateway-placeholder p { margin-top: 5px; font-size: .86rem; }
.gateway-ready { margin-top: 27px; padding: 16px 18px; border-left: 3px solid var(--teal); background: #eff9f9; }
.gateway-ready strong { color: var(--navy); }
.gateway-ready p { margin-top: 3px; font-size: .86rem; }
.gateway-admin-note { display: grid; gap: 7px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(14,165,166,.22); }
.gateway-admin-note span { color: var(--teal); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.gateway-admin-note code { overflow-wrap: anywhere; }
.gateway-access-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.gateway-access-note strong { color: var(--navy); font-size: .88rem; }
.gateway-access-note p { margin-top: 5px; font-size: .82rem; line-height: 1.65; }
code { padding: 2px 5px; color: var(--navy); background: rgba(11,29,51,.06); font-size: .85em; }
.gateway-back { display: inline-block; margin-top: 27px; color: var(--slate-light); font-size: .8rem; font-weight: 700; }
.auth-page { min-height: 720px; display: grid; align-items: center; padding: 85px 24px; background: linear-gradient(135deg, #fff 55%, #f5f9fa); }
.auth-card { width: min(100%, 520px); margin: auto; padding: 38px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.auth-card-wide { width: min(100%, 700px); }
.auth-card .eyebrow { margin-top: 42px; }
.auth-card h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); }
.auth-card > p { margin-top: 13px; }
.auth-form { display: grid; gap: 15px; margin-top: 27px; }
.auth-form-two-column { grid-template-columns: 1fr 1fr; }
.auth-form-full { grid-column: 1 / -1; }
.auth-form label { display: grid; gap: 6px; color: var(--slate); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.auth-form input { width: 100%; padding: 11px 12px; border: 1px solid var(--border); border-radius: 2px; color: var(--navy); background: #fbfcfd; font: inherit; }
.auth-form input:focus { border-color: var(--teal); outline: 2px solid rgba(14,165,166,.14); }
.auth-form .button { justify-self: start; }
.auth-form .button[aria-disabled="true"] { opacity: .62; }
.auth-inline-link { justify-self: end; margin-top: -7px; color: var(--teal); font-size: .78rem; font-weight: 700; }
.auth-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); color: var(--slate-light); font-size: .82rem; }
.auth-links a, .account-card a { color: var(--teal); font-weight: 700; }
.account-hero { padding-bottom: 78px; }
.account-hero p { max-width: 720px; }
.account-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.account-card { grid-column: span 2; padding: 26px; border: 1px solid var(--border); background: var(--white); }
.account-card:nth-child(n+4) { grid-column: span 3; }
.account-card span { color: var(--teal); font-family: "Manrope", sans-serif; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.account-card h2 { margin-top: 14px; font-size: 1.32rem; letter-spacing: -.04em; }
.account-card p { margin-top: 10px; font-size: .88rem; line-height: 1.7; }
.account-card a { display: inline-block; margin-top: 15px; font-size: .8rem; }
.account-loading, .account-panel { padding: 28px; border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow); }
.account-profile { display: flex; align-items: center; gap: 18px; margin-bottom: 25px; }
.account-profile img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.account-profile h2 { margin-top: 12px; font-size: 2rem; }
.account-profile p { margin-top: 4px; }
.account-card a + a { margin-left: 14px; }
.legal-copy { max-width: 820px; }
.legal-copy h2 { margin-top: 34px; font-size: 1.45rem; letter-spacing: -.04em; }
.legal-copy p { margin-top: 12px; font-size: .94rem; line-height: 1.75; }

@media (max-width: 1080px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 820px); min-height: 475px; margin-top: -10px; }
  .screenshot-frame-hero { width: 100%; }
  .product-layout { grid-template-columns: minmax(310px, .92fr) minmax(0, 1.08fr); gap: 42px; }
  .screenshot-frame-detail { max-width: 670px; }
  .floating-card { right: -20px; }
  .roi-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .section { padding: 82px 0; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 70px; }
  .header-inner { gap: 18px; }
  .nav-toggle { width: 36px; display: grid; gap: 5px; margin-left: auto; padding: 8px; border: 0; background: transparent; }
  .nav-toggle span:not(.sr-only) { height: 2px; display: block; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 69px; left: 0; width: 100%; display: none; padding: 17px 24px 24px; border-bottom: 1px solid var(--border); background: var(--white); box-shadow: 0 16px 24px rgba(11,29,51,.08); }
  .main-nav.open { display: grid; gap: 15px; }
  .login-link { display: none; }
  .button-small { min-height: 38px; padding-inline: 13px; }
  .hero { min-height: auto; padding: 78px 0 70px; }
  .hero-layout { gap: 35px; }
  .hero-visual { min-height: 370px; }
  .screenshot-frame-hero { top: 30px; }
  .floating-card { right: -3px; bottom: 65px; transform: scale(.82); transform-origin: bottom right; }
  .trust-inner, .trust-points { display: grid; }
  .trust-inner { padding: 21px 0; gap: 14px; }
  .trust-points { gap: 7px; }
  .card-grid, .product-layout, .proof-layout, .industry-layout, .footer-main, .page-hero-layout, .product-detail-layout, .contact-layout { grid-template-columns: 1fr; }
  .product-layout, .proof-layout, .industry-layout, .page-hero-layout, .product-detail-layout, .contact-layout { gap: 45px; }
  .screenshot-frame-detail { max-width: 100%; justify-self: stretch; }
  .capability-grid, .story-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-layout { padding-top: 48px; }
  .split-heading { display: block; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .process-card:nth-child(2) .step-line { display: none; }
  .cta-panel { display: grid; padding: 35px 29px; }
  .cta-panel .button { justify-self: start; }
  .footer-main { gap: 38px; }
  .account-card { grid-column: span 3; }
  .account-card:nth-child(n+4) { grid-column: span 3; }
}

@media (max-width: 480px) {
  h1 { font-size: 3.36rem; }
  .header-actions .button-small { width: 41px; overflow: hidden; padding: 0; font-size: 0; }
  .header-actions .button-small span { font-size: 1rem; }
  .hero-visual { min-height: 305px; }
  .screenshot-toolbar { height: 32px; padding: 0 10px; }
  .toolbar-label, .toolbar-status { font-size: .46rem; }
  .mini-mark { width: 11px; height: 11px; }
  .floating-card { right: -12px; bottom: 24px; transform: scale(.68); }
  .cube { display: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 15px; }
  .footer-bottom { display: grid; gap: 10px; }
  .capability-grid, .story-grid, .contact-form { grid-template-columns: 1fr; }
  .contact-form label { grid-column: 1 / -1; }
  .page-hero { padding: 80px 0 72px; }
  .gateway-card { padding: 27px; }
  .auth-card { padding: 27px; }
  .auth-form-two-column { grid-template-columns: 1fr; }
  .auth-form-full { grid-column: auto; }
  .account-grid { grid-template-columns: 1fr; }
  .account-card, .account-card:nth-child(n+4) { grid-column: auto; }
}
