:root {
    --navy-950: #031127;
    --navy-900: #071a3a;
    --navy-800: #0e2b58;
    --blue: #2166f3;
    --blue-light: #dce8ff;
    --mint: #6fe5c1;
    --paper: #f5f7fa;
    --white: #fff;
    --ink: #091730;
    --muted: #5e6e85;
    --line: #d8e1ec;
    --soft: #eef3f8;
    --shell: 1210px;
    --radius: 18px;
    --shadow: 0 24px 64px rgba(3, 17, 39, .16);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--white);
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; padding: 10px 14px; color: var(--navy-950); background: var(--mint); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 78px;
    color: var(--white);
    background: rgba(3, 17, 39, .94);
    border-bottom: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    transition: height .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled { height: 70px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 158px; height: auto; }
.main-nav { height: 100%; display: flex; align-items: center; gap: clamp(18px,2.3vw,34px); font-size: 13px; font-weight: 700; }
.main-nav > a { color: rgba(255,255,255,.72); transition: color .2s ease; }
.main-nav > a:hover { color: var(--white); }
.main-nav .nav-cta { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 17px; color: var(--navy-950); background: var(--mint); border-radius: 9px; }
.main-nav .nav-cta:hover { color: var(--navy-950); background: #8aefd0; }
.menu-toggle { display: none; width: 46px; height: 44px; padding: 10px; color: var(--white); background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

/* Shared */
.section { padding: 112px 0; }
.section h2,
.contact h2 { margin: 0; color: var(--navy-900); font-size: clamp(39px,4.5vw,60px); line-height: 1.06; letter-spacing: -.045em; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: #8fb2ff; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; font-weight: 800; line-height: 1.1; border: 1px solid transparent; border-radius: 11px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 15px 34px rgba(33,102,243,.3); }
.button-primary:hover { background: #1759df; }
.button-light { color: var(--navy-900); background: var(--white); }
.button-white { color: var(--blue); background: var(--white); box-shadow: 0 14px 32px rgba(0,0,0,.14); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,.75); font-weight: 800; }

/* Hero: close to the original direction, with a WreTime time rail */
.hero {
    position: relative;
    min-height: 830px;
    padding: 155px 0 105px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero::after { content: ""; position: absolute; top: 78px; right: 0; width: 34%; height: calc(100% - 78px); background: var(--navy-800); clip-path: polygon(34% 0,100% 0,100% 100%,0 100%); opacity: .5; }
.hero-grid { position: absolute; inset: 78px 0 0; opacity: .05; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 72px 72px; }
.hero-time-rail { position: absolute; z-index: 2; left: 0; top: 78px; bottom: 0; width: max(34px,calc((100vw - var(--shell))/2 - 30px)); display: grid; align-content: space-around; justify-items: end; padding: 45px 12px; color: rgba(255,255,255,.28); border-right: 1px solid rgba(255,255,255,.1); font: 8px Consolas,monospace; }
.hero-time-rail span { display: flex; align-items: center; gap: 7px; }
.hero-time-rail span::after { content: ""; width: 11px; height: 1px; background: rgba(255,255,255,.25); }
.hero-layout { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(390px,.78fr) minmax(590px,1.22fr); align-items: center; gap: 65px; }
.hero h1 { margin: 0; font-size: clamp(52px,5.2vw,76px); line-height: .99; letter-spacing: -.055em; }
.hero h1 em { color: #78a3ff; font-style: normal; }
.hero-lead { max-width: 570px; margin: 27px 0 0; color: rgba(255,255,255,.68); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 27px; margin-top: 34px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 12px 19px; padding: 0; margin: 34px 0 0; color: rgba(255,255,255,.64); font-size: 12px; list-style: none; }
.hero-points span { display: inline-grid; width: 18px; height: 18px; margin-right: 5px; place-items: center; color: var(--navy-950); background: var(--mint); border-radius: 50%; font-size: 10px; font-weight: 900; }
.hero-product { position: relative; min-width: 0; padding: 30px 0 32px; }
.browser-frame { overflow: hidden; background: var(--white); border: 1px solid rgba(255,255,255,.25); border-radius: 15px; box-shadow: var(--shadow); transform: perspective(1500px) rotateY(-2deg); }
.browser-bar { height: 39px; display: flex; align-items: center; gap: 6px; padding: 0 12px; color: #7d899b; background: #f7f9fc; border-bottom: 1px solid #dce3eb; font: 8px Consolas,monospace; }
.browser-bar i { width: 7px; height: 7px; background: #c7d0dc; border-radius: 50%; }
.browser-bar span { margin-left: 8px; }
.browser-bar b { margin-left: auto; padding: 3px 6px; color: #137757; background: #def4eb; border-radius: 99px; font-size: 7px; }
.screen-link { display: block; overflow: hidden; background: var(--white); }
.screen-link img { width: 100%; height: auto; object-fit: contain; object-position: top; }
.browser-frame > .screen-link img { width: 100%; height: auto; }
.product-label { position: absolute; left: -24px; bottom: 0; display: grid; padding: 12px 17px; color: var(--navy-900); background: var(--mint); border: 1px solid var(--navy-900); box-shadow: 7px 7px 0 rgba(33,102,243,.75); transform: rotate(-1deg); }
.product-label span { font: 7px Consolas,monospace; letter-spacing: .11em; }
.product-label strong { font-size: 11px; }
.live-tag { position: absolute; right: -18px; top: 5px; display: grid; grid-template-columns: auto 1fr; gap: 0 8px; min-width: 145px; padding: 10px 13px; color: var(--navy-900); background: var(--white); border: 1px solid rgba(7,26,58,.22); border-radius: 9px; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.live-tag i { grid-row: 1/3; align-self: center; width: 8px; height: 8px; background: var(--mint); border-radius: 50%; }
.live-tag span { font-size: 8px; }
.live-tag b { color: var(--blue); font: 7px Consolas,monospace; }

.proof-strip { color: var(--white); background: var(--blue); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid p { min-height: 104px; display: grid; align-content: center; gap: 1px; margin: 0; padding: 0 27px; border-left: 1px solid rgba(255,255,255,.2); }
.proof-grid p:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.proof-grid strong { font-size: 16px; }
.proof-grid span { color: rgba(255,255,255,.7); font-size: 12px; }

/* Benefits */
.split-heading { display: grid; grid-template-columns: 1.08fr .7fr; align-items: end; gap: 90px; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 17px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 62px; }
.benefit-grid article { position: relative; min-height: 330px; padding: 33px; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 7px 22px rgba(7,26,58,.04); }
.benefit-grid .benefit-featured { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); box-shadow: 0 24px 50px rgba(7,26,58,.18); }
.benefit-number { position: absolute; right: 24px; top: 13px; color: #e8edf4; font-size: 54px; font-weight: 900; line-height: 1; }
.benefit-featured .benefit-number { color: rgba(255,255,255,.08); }
.icon-box { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 11px; }
.benefit-featured .icon-box { color: var(--white); background: var(--blue); }
.icon-box svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-grid h3 { max-width: 260px; margin: 59px 0 12px; color: var(--navy-900); font-size: 22px; line-height: 1.25; }
.benefit-featured h3 { color: var(--white); }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.benefit-featured p { color: rgba(255,255,255,.62); }

/* Actual application screenshots */
.product-section { background: var(--paper); }
.centered-heading { max-width: 790px; text-align: center; }
.centered-heading .eyebrow { justify-content: center; }
.centered-heading > p:last-child { max-width: 670px; margin: 20px auto 0; color: var(--muted); font-size: 17px; }
.feature-stack { display: grid; gap: 100px; margin-top: 82px; }
.feature-row { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.feature-row.reverse { grid-template-columns: 1.28fr .72fr; }
.feature-row.reverse .feature-copy { order: 2; }
.feature-copy { max-width: 430px; }
.feature-index { color: var(--blue); font: 9px Consolas,monospace; font-weight: 900; letter-spacing: .13em; }
.feature-copy h3 { margin: 16px 0 19px; color: var(--navy-900); font-size: clamp(31px,3vw,43px); line-height: 1.08; letter-spacing: -.035em; }
.feature-copy > p { margin: 0; color: var(--muted); font-size: 16px; }
.feature-copy ul { display: grid; gap: 9px; padding: 20px 0 0; margin: 25px 0 0; border-top: 1px solid var(--line); list-style: none; }
.feature-copy li { position: relative; padding-left: 24px; color: #33435b; font-size: 13px; font-weight: 700; }
.feature-copy li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; width: 15px; height: 15px; place-items: center; color: var(--navy-900); background: var(--mint); border-radius: 50%; font-size: 8px; }
.app-shot { position: relative; margin: 0; overflow: hidden; background: var(--white); border: 1px solid #cfd9e5; border-radius: 13px; box-shadow: 0 25px 55px rgba(7,26,58,.13); }
.shot-toolbar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; color: #728098; background: var(--white); border-bottom: 1px solid var(--line); font: 8px Consolas,monospace; letter-spacing: .08em; }
.shot-toolbar span::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: var(--mint); border-radius: 50%; }
.shot-toolbar a { color: var(--blue); font-weight: 900; transition: color .2s ease; }
.shot-toolbar a:hover { color: var(--navy-900); }
.app-shot img { width: 100%; height: auto; }
.app-shot figcaption { display: grid; gap: 3px; padding: 18px 20px 20px; border-top: 1px solid var(--line); }
.app-shot figcaption strong { color: var(--navy-900); font-size: 15px; }
.app-shot figcaption span { color: var(--muted); font-size: 12px; }
.module-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 95px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.module-grid article { min-height: 215px; padding: 29px 25px; border-left: 1px solid var(--line); }
.module-grid article:last-child { border-right: 1px solid var(--line); }
.module-grid span { color: var(--blue); font: 9px Consolas,monospace; }
.module-grid h3 { margin: 40px 0 8px; color: var(--navy-900); font-size: 18px; }
.module-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.worker-showcase { margin-top: 100px; padding-top: 92px; border-top: 1px solid var(--line); }
.worker-showcase-heading { display: grid; grid-template-columns: .78fr 1.22fr; column-gap: 60px; align-items: end; }
.worker-showcase-heading .eyebrow { grid-column: 1/-1; }
.worker-showcase-heading h2 { max-width: 600px; font-size: clamp(35px,4vw,50px); }
.worker-showcase-heading > p:last-child { max-width: 510px; margin: 0 0 7px; color: var(--muted); font-size: 16px; }
.worker-shot-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; margin-top: 48px; }

/* Process */
.process { color: var(--white); background: var(--navy-950); }
.process-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 105px; }
.process h2 { color: var(--white); }
.process-copy > p:not(.eyebrow) { max-width: 470px; margin: 24px 0 32px; color: rgba(255,255,255,.6); font-size: 17px; }
.process-steps { padding: 0; margin: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 23px; padding: 0 0 31px; margin-bottom: 31px; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-steps li:last-child { margin-bottom: 0; }
.process-steps > li > span { display: grid; width: 50px; height: 50px; place-items: center; color: var(--navy-950); background: var(--mint); border-radius: 50%; font-weight: 900; }
.process-steps small { color: #85acff; font: 8px Consolas,monospace; letter-spacing: .13em; }
.process-steps h3 { margin: 4px 0 6px; color: var(--white); font-size: 21px; }
.process-steps p { margin: 0; color: rgba(255,255,255,.55); font-size: 14px; }

/* Mobile — real application capture */
.mobile-section { overflow: hidden; }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 95px; }
.mobile-visual { position: relative; min-height: 660px; display: grid; place-items: center; }
.mobile-backdrop { position: absolute; inset: 35px 0; overflow: hidden; color: rgba(255,255,255,.45); background: var(--navy-900); border-radius: 16px; }
.mobile-backdrop::after { content: ""; position: absolute; inset: 0; opacity: .07; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 44px 44px; }
.mobile-backdrop > span { position: absolute; top: 18px; left: 20px; font: 25px Consolas,monospace; }
.mobile-backdrop > i { position: absolute; top: 63px; left: 20px; right: 20px; height: 1px; background: rgba(255,255,255,.18); }
.mobile-backdrop > b { position: absolute; right: 20px; bottom: 17px; font: 8px Consolas,monospace; letter-spacing: .1em; }
.phone-frame { position: relative; z-index: 2; width: 286px; padding: 9px; overflow: hidden; background: #020c1f; border: 1px solid rgba(255,255,255,.2); border-radius: 29px; box-shadow: 0 30px 65px rgba(7,26,58,.25); }
.phone-frame img { width: 100%; height: auto; border-radius: 21px; }
.real-badge { position: absolute; z-index: 3; right: -12px; bottom: 78px; display: flex; align-items: center; gap: 10px; margin: 0; padding: 12px 15px; color: var(--navy-900); background: var(--mint); border: 1px solid var(--navy-900); border-radius: 8px; box-shadow: 7px 7px 0 var(--blue); font-size: 11px; }
.real-badge span { display: grid; width: 23px; height: 23px; place-items: center; background: var(--white); border-radius: 50%; }
.mobile-copy > p:not(.eyebrow) { margin: 23px 0 33px; color: var(--muted); font-size: 17px; }
.mobile-points { display: grid; gap: 20px; }
.mobile-points p { display: grid; grid-template-columns: 39px 1fr; gap: 0 14px; margin: 0; }
.mobile-points p > span { grid-row: 1/3; display: grid; width: 39px; height: 39px; place-items: center; color: var(--blue); background: var(--blue-light); border-radius: 9px; font: 9px Consolas,monospace; font-weight: 900; }
.mobile-points strong { color: var(--navy-900); }
.mobile-points small { color: var(--muted); font-size: 13px; }

/* Security */
.security { color: var(--white); background: var(--navy-800); }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.security h2 { color: var(--white); }
.security-grid > div:first-child > p:last-child { margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: 17px; }
.security-list { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.security-list article { min-height: 200px; padding: 25px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.security-list span { color: var(--mint); font: 9px Consolas,monospace; }
.security-list h3 { margin: 36px 0 8px; color: var(--white); font-size: 17px; }
.security-list p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }

/* Pricing, existing users, contact */
.pricing { background: var(--paper); }
.pricing-panel { display: grid; grid-template-columns: 1.2fr .65fr; align-items: center; gap: 75px; padding: 58px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 16px 40px rgba(7,26,58,.07); }
.pricing-panel h2 { font-size: clamp(37px,4vw,53px); }
.pricing-panel > div:first-child > p:last-child { max-width: 650px; margin: 21px 0 0; color: var(--muted); font-size: 16px; }
.price-box { display: grid; padding: 31px; color: var(--white); background: var(--navy-900); border-top: 5px solid var(--mint); border-radius: 11px; }
.price-box > span { color: #92b4fa; font: 9px Consolas,monospace; letter-spacing: .12em; text-transform: uppercase; }
.price-box > strong { margin-top: 5px; font-size: 42px; line-height: 1.1; }
.price-box > small { color: rgba(255,255,255,.55); }
.price-box .button { margin-top: 25px; }
.existing { padding-block: 70px; }
.existing-panel { display: grid; grid-template-columns: 83px 1fr; align-items: center; gap: 30px; padding: 36px 42px; background: #edf3ff; border: 1px solid #c7d7f6; border-radius: 16px; }
.existing-panel > img { width: 72px; }
.existing-panel h2 { font-size: clamp(28px,3.1vw,42px); }
.existing-panel p:last-child { margin: 11px 0 0; color: var(--muted); }
.contact { position: relative; padding: 105px 0; overflow: hidden; color: var(--white); background: var(--blue); text-align: center; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size: 50px 50px; }
.contact-time { position: absolute; top: 21px; right: 32px; color: rgba(255,255,255,.42); font: 9px Consolas,monospace; letter-spacing: .1em; }
.contact-inner { position: relative; z-index: 2; display: grid; justify-items: center; }
.contact .eyebrow { justify-content: center; }
.contact h2 { max-width: 830px; color: var(--white); font-size: clamp(42px,5vw,64px); }
.contact-inner > p:not(.eyebrow) { max-width: 680px; margin: 23px 0 31px; color: rgba(255,255,255,.74); font-size: 17px; }
.contact-inner > div { display: flex; align-items: center; gap: 25px; }
.contact-inner > div > a:last-child { padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.45); font-weight: 800; }

.site-footer { padding: 53px 0; color: rgba(255,255,255,.62); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 45px; }
.footer-grid > div:first-child img { width: 142px; }
.footer-grid p { margin: 13px 0 0; font-size: 11px; }
.footer-grid > div:first-child p { max-width: 340px; }
.site-footer nav { display: flex; gap: 23px; font-size: 11px; font-weight: 800; }
.site-footer nav button { padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; font: inherit; }
.site-footer a:hover,.site-footer nav button:hover { color: var(--white); }
.footer-grid > div:last-child { justify-self: end; text-align: right; font-size: 11px; }
.footer-grid > div:last-child a { color: var(--white); font-weight: 800; }

/* Legal pages and analytics consent */
[hidden] { display: none !important; }
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-main { padding: 145px 0 95px; }
.legal-heading { max-width: 820px; }
.legal-heading h1 { margin: 0; color: var(--navy-900); font-size: clamp(42px,5vw,68px); line-height: 1.03; letter-spacing: -.045em; }
.legal-heading > p:last-child { max-width: 690px; margin: 22px 0 0; color: var(--muted); font-size: 17px; }
.legal-card { max-width: 900px; margin-top: 48px; padding: clamp(28px,5vw,58px); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 18px 45px rgba(7,26,58,.07); }
.legal-card section + section { padding-top: 30px; margin-top: 30px; border-top: 1px solid var(--line); }
.legal-card h2 { margin: 0 0 13px; color: var(--navy-900); font-size: 25px; letter-spacing: -.025em; }
.legal-card h3 { margin: 22px 0 8px; color: var(--navy-900); font-size: 17px; }
.legal-card p,.legal-card li { color: #43536a; }
.legal-card p { margin: 0 0 14px; }
.legal-card ul { margin: 12px 0 0; padding-left: 20px; }
.legal-card a { color: var(--blue); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.legal-details { display: grid; grid-template-columns: 190px 1fr; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.legal-details dt,.legal-details dd { padding: 13px 0; margin: 0; border-bottom: 1px solid var(--line); }
.legal-details dt { color: var(--muted); font-size: 13px; }
.legal-details dd { color: var(--navy-900); font-weight: 800; }
.cookie-table { width: 100%; margin-top: 18px; border-collapse: collapse; font-size: 14px; }
.cookie-table th,.cookie-table td { padding: 13px 12px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.cookie-table th { color: var(--navy-900); background: var(--soft); }
.cookie-panel { position: fixed; z-index: 300; right: 22px; bottom: 22px; left: 22px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; max-width: 1050px; margin-inline: auto; padding: 24px 26px; color: var(--white); background: #081a39; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.cookie-panel h2 { margin: 2px 0 7px; color: var(--white); font-size: 22px; line-height: 1.2; letter-spacing: -.02em; }
.cookie-panel p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.55; }
.cookie-panel .cookie-kicker { color: var(--mint); font: 8px Consolas,monospace; font-weight: 900; letter-spacing: .15em; }
.cookie-panel a { display: inline-block; margin-top: 9px; color: #a9c3ff; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-button { min-height: 45px; padding: 0 17px; border-radius: 9px; cursor: pointer; font-size: 12px; font-weight: 900; white-space: nowrap; }
.cookie-reject { color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.45); }
.cookie-accept { color: var(--navy-950); background: var(--mint); border: 1px solid var(--mint); }
.cookie-button:hover { transform: translateY(-1px); }

[data-reveal] { opacity: 1; transform: none; }
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease,transform .6s ease; }
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .main-nav { gap: 17px; font-size: 12px; }
    .hero-layout { grid-template-columns: .8fr 1.2fr; gap: 42px; }
    .hero-time-rail { display: none; }
    .feature-row,.feature-row.reverse { gap: 48px; }
    .process-grid,.security-grid { gap: 60px; }
    .mobile-grid { gap: 60px; }
}

@media (max-width: 900px) {
    html { scroll-padding-top: 70px; }
    .site-header,.site-header.is-scrolled { height: 70px; }
    .menu-toggle { display: block; position: relative; z-index: 2; }
    .main-nav { position: fixed; inset: 70px 0 auto; display: grid; gap: 0; padding: 16px 24px 25px; visibility: hidden; opacity: 0; background: var(--navy-950); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 22px 34px rgba(0,0,0,.2); transform: translateY(-12px); transition: opacity .2s ease,transform .2s ease,visibility .2s; }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: none; }
    .main-nav > a { display: flex; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 14px; }
    .main-nav .nav-cta { margin-top: 13px; padding-inline: 14px; border-bottom: 0; }
    .hero { min-height: auto; padding: 130px 0 115px; }
    .hero-layout { grid-template-columns: 1fr; gap: 68px; }
    .hero-copy { max-width: 690px; }
    .hero-product { max-width: 720px; }
    .proof-grid { grid-template-columns: repeat(2,1fr); }
    .proof-grid p:nth-child(2) { border-right: 1px solid rgba(255,255,255,.2); }
    .proof-grid p:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.2); }
    .split-heading { grid-template-columns: 1fr; gap: 25px; }
    .feature-row,.feature-row.reverse { grid-template-columns: 1fr; gap: 37px; }
    .feature-row.reverse .feature-copy { order: 0; }
    .feature-copy { max-width: 650px; }
    .worker-showcase-heading { grid-template-columns: 1fr; gap: 18px; }
    .worker-showcase-heading > p:last-child { margin: 0; }
    .worker-shot-grid { grid-template-columns: 1fr; }
    .module-grid { grid-template-columns: repeat(2,1fr); }
    .module-grid article:nth-child(2) { border-right: 1px solid var(--line); }
    .module-grid article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .process-grid,.security-grid,.mobile-grid,.pricing-panel { grid-template-columns: 1fr; }
    .process-copy { max-width: 690px; }
    .mobile-copy { order: -1; }
    .price-box { max-width: 430px; }
    .footer-grid { grid-template-columns: 1fr 1fr; align-items: start; }
    .site-footer nav { justify-self: end; }
    .footer-grid > div:last-child { grid-column: 1/-1; justify-self: auto; display: flex; justify-content: space-between; text-align: left; }
    .footer-grid > div:last-child p { margin: 0; }
    .cookie-panel { grid-template-columns: 1fr; align-items: stretch; gap: 18px; }
}

@media (max-width: 640px) {
    .shell { width: min(calc(100% - 32px),var(--shell)); }
    .brand img { width: 145px; }
    .hero { padding: 115px 0 87px; }
    .hero::after { width: 65%; opacity: .32; }
    .hero h1 { font-size: clamp(43px,12vw,55px); }
    .hero-lead { font-size: 16px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { justify-content: center; }
    .hero-points { display: grid; gap: 10px; }
    .hero-product { padding-top: 18px; }
    .browser-frame { border-radius: 10px; transform: none; }
    .browser-bar span { display: none; }
    .product-label { left: -5px; bottom: 7px; padding: 9px 11px; box-shadow: 5px 5px 0 rgba(33,102,243,.75); }
    .product-label strong { font-size: 9px; }
    .live-tag { top: -11px; right: -4px; min-width: 120px; padding: 8px 9px; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-grid p { min-height: 85px; padding-inline: 18px; border-right: 1px solid rgba(255,255,255,.2); border-top: 1px solid rgba(255,255,255,.2); }
    .proof-grid p:first-child { border-top: 0; }
    .section { padding: 80px 0; }
    .section h2,.contact h2 { font-size: clamp(34px,10vw,44px); }
    .split-heading > p,.centered-heading > p:last-child { font-size: 16px; }
    .benefit-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .benefit-grid article { min-height: 290px; padding: 28px; }
    .benefit-grid h3 { margin-top: 45px; }
    .feature-stack { gap: 68px; margin-top: 60px; }
    .feature-copy h3 { font-size: 31px; }
    .app-shot { border-radius: 9px; }
    .shot-toolbar { height: 36px; padding-inline: 9px; font-size: 6px; }
    .worker-showcase { margin-top: 70px; padding-top: 68px; }
    .worker-showcase-heading { grid-template-columns: 1fr; gap: 18px; }
    .worker-showcase-heading > p:last-child { margin: 0; }
    .worker-shot-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
    .module-grid { grid-template-columns: 1fr; margin-top: 65px; }
    .module-grid article { min-height: 170px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
    .module-grid article:first-child { border-top: 0; }
    .module-grid h3 { margin-top: 25px; }
    .process-grid { gap: 55px; }
    .process-steps li { grid-template-columns: 44px 1fr; gap: 15px; }
    .process-steps > li > span { width: 41px; height: 41px; }
    .process-steps h3 { font-size: 18px; }
    .mobile-grid { gap: 20px; }
    .mobile-visual { min-height: 610px; }
    .mobile-backdrop { inset: 40px -16px; border-radius: 0; }
    .phone-frame { width: 250px; }
    .real-badge { right: -7px; bottom: 62px; }
    .security-list { grid-template-columns: 1fr; }
    .security-list article { min-height: 160px; }
    .security-list h3 { margin-top: 23px; }
    .pricing-panel { gap: 38px; padding: 27px 21px; border-radius: 13px; }
    .price-box { padding: 25px 20px; }
    .existing { padding-block: 50px; }
    .existing-panel { grid-template-columns: 1fr; gap: 18px; padding: 26px 21px; }
    .existing-panel > img { width: 58px; }
    .contact { padding: 80px 0; }
    .contact-inner > p:not(.eyebrow) { font-size: 16px; }
    .contact-inner > div { width: 100%; flex-direction: column; }
    .contact-inner .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-footer nav { justify-self: auto; flex-wrap: wrap; gap: 13px 21px; }
    .footer-grid > div:last-child { grid-column: auto; display: grid; gap: 4px; }
    .legal-main { padding: 112px 0 70px; }
    .legal-card { margin-top: 32px; border-radius: 13px; }
    .legal-details { grid-template-columns: 1fr; }
    .legal-details dt { padding-bottom: 1px; border-bottom: 0; }
    .legal-details dd { padding-top: 1px; }
    .cookie-table { display: block; overflow-x: auto; white-space: nowrap; }
    .cookie-panel { right: 10px; bottom: 10px; left: 10px; padding: 19px; border-radius: 13px; }
    .cookie-actions { display: grid; grid-template-columns: 1fr; }
    .cookie-button { width: 100%; }
}

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