@font-face {
    font-family: "Outfit";
    src: url("../themes/default/fonts/outfit-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
}

:root {
    --ink: #122c2a;
    --petrol: #123f3a;
    --petrol-deep: #082d2b;
    --petrol-soft: #1c514b;
    --signal-dark: #9fc710;
    --mint: #edf6f1;
    --paper: #fbfcfa;
    --white: #fff;
    --line: #dbe4df;
    --system-muted: #617572;
    --danger: #a72e34;
    --shadow: 0 24px 70px rgba(8, 45, 43, .12);
    --shell: 1180px;
    --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --default-font-family: var(--font-sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 10px 16px; background: var(--signal); color: var(--petrol-deep); font-weight: 800; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: relative; z-index: 50; background: var(--petrol-deep); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.11); }
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.legacy-brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(199,239,53,.75); border-radius: 50%; color: var(--signal); font: 800 22px/1 Georgia, serif; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 21px; letter-spacing: .08em; }
.brand-copy strong span { color: var(--signal); }
.brand-copy small { margin-top: 6px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 700; }
.main-nav a { color: rgba(255,255,255,.84); text-decoration: none; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--signal); }
.main-nav a.is-active { color: var(--signal); }
.main-nav .nav-login { padding: 11px 18px; border-radius: 999px; background: var(--signal); color: var(--petrol-deep); }
.main-nav .nav-login:hover, .main-nav .nav-login:focus-visible { background: #dcff5c; color: var(--petrol-deep); }
.mobile-navigation { display: none; position: relative; }
.mobile-navigation summary { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; cursor: pointer; list-style: none; }
.mobile-navigation summary::-webkit-details-marker { display: none; }
.mobile-navigation summary span { width: 26px; height: 2px; margin-left: auto; background: var(--white); }
.mobile-navigation nav { position: absolute; right: 0; top: 52px; width: 230px; display: grid; padding: 14px; border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
.mobile-navigation nav a { padding: 10px 12px; color: var(--ink); text-decoration: none; font-weight: 700; }

.hero { position: relative; min-height: 680px; isolation: isolate; overflow: hidden; color: var(--white); }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -3; object-fit: cover; object-position: 64% center; }
.hero-shade { z-index: -2; background: linear-gradient(90deg, rgba(5,31,30,.96) 0%, rgba(7,39,37,.84) 42%, rgba(8,45,43,.25) 73%, rgba(8,45,43,.08) 100%); }
.hero-content { min-height: 680px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding-block: 86px; }
.hero-content h1 { max-width: 780px; margin: 16px 0 24px; font-size: clamp(45px, 6vw, 76px); line-height: 1.02; letter-spacing: -.055em; }
.hero-content h1 em { color: var(--signal); font-style: normal; }
.hero-lead { max-width: 680px; margin: 0; color: rgba(255,255,255,.84); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin: 38px 0 0; padding: 0; color: rgba(255,255,255,.72); list-style: none; font-size: 13px; font-weight: 700; }
.hero-trust li::before { content: "✓"; margin-right: 8px; color: var(--signal); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; color: var(--petrol-soft); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--signal-dark); }
.eyebrow-light { color: rgba(255,255,255,.74); }
.eyebrow-light span { background: var(--signal); }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 22px; border: 0; border-radius: 9px; text-decoration: none; cursor: pointer; font-weight: 800; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-signal { background: var(--signal); color: var(--petrol-deep); }
.button-signal:hover, .button-signal:focus-visible { background: #dcff5c; }
.button-glass { border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.08); color: var(--white); backdrop-filter: blur(8px); }

.benefit-strip { background: var(--mint); border-bottom: 1px solid var(--line); }
.benefit-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.benefit-grid article { min-height: 114px; display: flex; align-items: center; gap: 13px; padding: 20px 18px; border-right: 1px solid var(--line); }
.benefit-grid article:first-child { border-left: 1px solid var(--line); }
.benefit-grid article > span { color: var(--signal-dark); font-size: 12px; font-weight: 900; }
.benefit-grid strong, .benefit-grid small { display: block; }
.benefit-grid strong { font-size: 15px; }
.benefit-grid small { margin-top: 3px; color: var(--system-muted); font-size: 11px; }

.section { padding: 110px 0; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading-narrow { max-width: 670px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading h2, .calm-copy h2, .product-copy h2, .contact-copy h2, .legal-hero h1 { margin: 0; font-size: clamp(36px, 4.8vw, 58px); font-weight: 800; line-height: 1.08; letter-spacing: -.045em; }
.legal-hero h1 { overflow-wrap: anywhere; hyphens: auto; }
.section-heading p:last-child, .calm-copy > p, .product-copy > p, .contact-copy > p { margin: 18px 0 0; color: var(--system-muted); font-size: 18px; }

.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.challenge-grid article { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.line-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 13px; color: var(--petrol); font-size: 12px; font-weight: 900; }
.challenge-grid h3 { margin: 30px 0 12px; font-size: 23px; }
.challenge-grid p { margin: 0; color: var(--system-muted); }

.calm-section { padding: 110px 0; background: var(--petrol-deep); color: var(--white); }
.calm-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: center; }
.calm-copy > p { color: rgba(255,255,255,.68); }
.text-link-light { display: inline-flex; gap: 8px; margin-top: 26px; color: var(--signal); font-weight: 800; text-decoration: none; }
.calm-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.04); }
.noise-card { padding: 20px; border-radius: 13px; background: rgba(255,255,255,.07); }
.noise-card span, .noise-card strong, .noise-card small { display: block; }
.noise-card span { color: var(--signal); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.noise-card strong { margin: 8px 0 4px; font-size: 15px; }
.noise-card small { color: rgba(255,255,255,.55); }
.calm-result { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 13px; background: var(--signal); color: var(--petrol-deep); }
.calm-result i { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: rgba(8,45,43,.12); font-style: normal; font-weight: 900; }
.calm-result strong, .calm-result small { display: block; }
.calm-result small { opacity: .72; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-grid li { position: relative; padding: 28px 25px 20px; border-top: 1px solid var(--line); }
.process-grid li::before { content: ""; position: absolute; top: -5px; left: 25px; width: 9px; height: 9px; border-radius: 50%; background: var(--signal-dark); }
.process-grid li:not(:last-child)::after { content: ""; position: absolute; top: -1px; left: 29px; right: -29px; height: 1px; background: var(--line); }
.process-grid span { color: var(--signal-dark); font-size: 12px; font-weight: 900; }
.process-grid h3 { margin: 14px 0 8px; font-size: 21px; }
.process-grid p { margin: 0; color: var(--system-muted); font-size: 14px; }

.product-section { background: var(--petrol); color: var(--white); overflow: hidden; }
.product-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.product-copy > p { color: rgba(255,255,255,.68); }
.check-list { margin: 28px 0 34px; padding: 0; display: grid; gap: 10px; list-style: none; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--signal); font-weight: 900; }
.dashboard-figure { margin: 0; }
.dashboard-window { overflow: hidden; border: 7px solid rgba(255,255,255,.13); border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: 0 35px 80px rgba(0,0,0,.28); transform: rotate(1deg); }
.dashboard-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 15px; background: #e8efeb; }
.dashboard-bar span { width: 8px; height: 8px; border-radius: 50%; background: #b5c4bd; }
.dashboard-bar strong { margin-left: 8px; font-size: 11px; }
.dashboard-body { min-height: 370px; display: grid; grid-template-columns: 135px 1fr; }
.dashboard-body aside { display: flex; flex-direction: column; gap: 12px; padding: 25px 17px; background: var(--petrol-deep); color: rgba(255,255,255,.68); font-size: 11px; }
.dashboard-body aside b { color: var(--signal); }
.dashboard-content { padding: 24px; background: #f4f7f5; }
.dashboard-title { display: flex; align-items: center; justify-content: space-between; }
.dashboard-title small, .dashboard-title strong { display: block; }
.dashboard-title small { color: var(--system-muted); }
.dashboard-title strong { font-size: 20px; }
.dashboard-title i { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 50%; background: var(--petrol); color: var(--white); font-size: 11px; font-style: normal; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 22px 0; }
.dashboard-metrics article { padding: 14px; border-radius: 10px; background: var(--white); }
.dashboard-metrics small, .dashboard-metrics strong { display: block; }
.dashboard-metrics small { color: var(--system-muted); font-size: 9px; }
.dashboard-metrics strong { margin-top: 5px; font-size: 22px; }
.dashboard-table { overflow: hidden; border-radius: 10px; background: var(--white); }
.dashboard-table div { display: grid; grid-template-columns: .75fr 1.2fr .8fr; gap: 8px; padding: 13px; border-bottom: 1px solid var(--line); font-size: 9px; }
.dashboard-table em { color: var(--success); font-style: normal; font-weight: 800; }
.dashboard-figure figcaption { margin-top: 18px; color: rgba(255,255,255,.55); font-size: 12px; text-align: center; }

.scope-section { background: var(--mint); }
.scope-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.scope-grid article { padding: 27px; border-radius: 16px; background: var(--white); }
.scope-grid article > span { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: var(--mint); color: var(--success); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.scope-grid h3 { margin: 22px 0 10px; font-size: 19px; }
.scope-grid p { margin: 0; color: var(--system-muted); font-size: 14px; }
.scope-grid .scope-planned > span { background: #f3f0e5; color: #7d6b25; }

.trust-section { padding: 55px 0; background: var(--signal); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.trust-grid strong { font-size: 20px; }
.trust-grid p { margin: 8px 0 0; color: rgba(8,45,43,.75); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -4px 40px 23px 0; color: var(--system-muted); }

.contact-section { background: var(--petrol-deep); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.contact-copy > p { color: rgba(255,255,255,.67); }
.contact-direct { display: grid; gap: 6px; margin-top: 30px; }
.contact-direct a { color: var(--signal); font-size: 18px; font-weight: 800; text-decoration: none; }
.contact-direct small { margin-top: 7px; color: rgba(255,255,255,.55); }
.contact-form-card { padding: 34px; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label > span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.form-grid input, .form-grid textarea { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 8px; background: #fbfcfb; color: var(--ink); }
.form-grid input:focus, .form-grid textarea:focus { outline: 3px solid rgba(199,239,53,.35); border-color: var(--petrol); }
.form-grid textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.privacy-check { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; color: var(--system-muted); font-size: 12px; }
.privacy-check input { margin-top: 4px; accent-color: var(--petrol); }
.privacy-check a { color: var(--petrol); font-weight: 800; }
.form-actions { display: flex; align-items: center; gap: 18px; margin-top: 22px; }
.form-actions small { color: var(--system-muted); }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.field-error { display: block; margin-top: 5px; color: var(--danger); }
.form-notice { margin: 0 0 20px; padding: 13px 15px; border-radius: 9px; }
.form-success { background: #e9f7ef; color: var(--success); }
.form-error { background: #fff0f0; color: var(--danger); }

.site-footer { padding: 75px 0 30px; background: #061f1e; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr; gap: 65px; }
.footer-intro p { max-width: 390px; margin: 22px 0 0; }
.footer-column { display: flex; flex-direction: column; gap: 9px; }
.footer-column strong { margin-bottom: 7px; color: var(--white); }
.footer-column a { color: inherit; text-decoration: none; }
.footer-column a:hover { color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.floating-phone { position: fixed; z-index: 40; right: 24px; bottom: 24px; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--signal); color: var(--petrol-deep); box-shadow: 0 15px 35px rgba(8,45,43,.28); }
.floating-phone svg { width: 24px; height: 24px; fill: currentColor; }
.footer-cookie-button { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; text-align: left; cursor: pointer; }
.footer-cookie-button:hover, .footer-cookie-button:focus-visible { color: var(--signal); }

.platform-cookie[hidden] { display: none; }
.platform-cookie { position: fixed; z-index: 100; right: 20px; bottom: 20px; width: min(calc(100% - 40px), 720px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: #061f1e; color: var(--white); box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.platform-cookie__copy strong { display: block; color: var(--signal); font-size: 18px; }
.platform-cookie__copy p { margin: 7px 0 5px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.55; }
.platform-cookie__copy a { color: var(--white); font-size: 13px; font-weight: 800; }

.subpage-hero { position: relative; overflow: hidden; padding: 115px 0 105px; background: var(--petrol-deep); color: var(--white); }
.subpage-hero::after { position: absolute; right: -12%; bottom: -62%; width: 560px; height: 560px; border: 1px solid rgba(199,239,53,.18); border-radius: 50%; content: ""; box-shadow: 0 0 0 90px rgba(199,239,53,.035), 0 0 0 180px rgba(199,239,53,.025); pointer-events: none; }
.subpage-hero-copy { position: relative; z-index: 1; max-width: 900px; }
.subpage-hero h1 { max-width: 920px; margin: 16px 0 24px; font-size: clamp(40px, 5vw, 64px); font-weight: 800; line-height: 1.05; letter-spacing: -.045em; }
.subpage-hero p:last-child, .subpage-hero-grid > div > p { max-width: 750px; margin: 0; color: rgba(255,255,255,.76); font-size: 20px; line-height: 1.6; }
.subpage-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 85px; }
.subpage-hero-grid .hero-actions { margin-top: 30px; }

.platform-orbit { position: relative; width: min(100%, 440px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; background: rgba(255,255,255,.025); }
.platform-orbit::before { position: absolute; inset: 17%; border: 1px dashed rgba(199,239,53,.34); border-radius: 50%; content: ""; }
.platform-orbit > strong { width: 126px; height: 126px; display: grid; place-items: center; border-radius: 50%; background: var(--signal); color: var(--petrol-deep); font-size: 25px; letter-spacing: .08em; box-shadow: 0 22px 60px rgba(0,0,0,.28); }
.orbit-item { position: absolute; padding: 8px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: #123f3a; color: var(--white); font-size: 12px; font-weight: 800; }
.orbit-one { top: 6%; left: 38%; }.orbit-two { right: -1%; top: 45%; }.orbit-three { bottom: 8%; left: 36%; }.orbit-four { left: -3%; top: 45%; }

.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.story-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.story-grid article > span, .security-number { color: var(--signal-dark); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.story-grid h3 { margin: 24px 0 10px; font-size: 21px; line-height: 1.25; }
.story-grid p { margin: 0; color: var(--system-muted); font-size: 14px; }
.split-feature { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.brand-stack { display: grid; gap: 12px; }
.brand-stack > div { display: grid; grid-template-columns: .75fr 1fr 1.25fr; align-items: center; gap: 18px; padding: 24px 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.055); }
.brand-stack small { color: rgba(255,255,255,.52); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.brand-stack strong { color: var(--signal); font-size: 18px; }
.brand-stack span { color: rgba(255,255,255,.74); font-size: 13px; }
.callout-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.callout-grid h2 { margin: 0; font-size: clamp(35px, 4.5vw, 54px); line-height: 1.08; letter-spacing: -.045em; }
.callout-grid > div:last-child > p { margin: 0 0 22px; color: var(--system-muted); font-size: 18px; }
.text-link { color: var(--petrol); font-weight: 900; text-decoration: none; }
.compact-cta { padding: 85px 0; }
.calm-section .callout-grid > div:last-child > p { color: rgba(255,255,255,.68); }

.feature-catalog { display: grid; gap: 0; border-top: 1px solid var(--line); }
.feature-catalog article { display: grid; grid-template-columns: 120px 1fr; gap: 34px; padding: 48px 0; border-bottom: 1px solid var(--line); }
.feature-catalog article > span { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 14px; color: var(--signal-dark); font-size: 12px; font-weight: 900; }
.feature-catalog h2 { margin: 0; font-size: clamp(27px, 3vw, 38px); line-height: 1.15; }
.feature-catalog p { max-width: 780px; margin: 12px 0 18px; color: var(--system-muted); font-size: 17px; }
.feature-catalog ul, .responsibility-card ul { margin: 0; padding: 0; display: grid; gap: 7px; list-style: none; color: var(--system-muted); }
.feature-catalog li::before, .responsibility-card li::before { content: "✓"; margin-right: 9px; color: var(--signal-dark); font-weight: 900; }

.backend-showcase-section { overflow: hidden; background: #edf6f3; }
.backend-showcase-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(310px, .65fr); align-items: stretch; gap: 22px; }
.backend-window { overflow: hidden; margin: 0; border: 1px solid rgba(10, 72, 67, .15); border-radius: 18px; background: #fff; box-shadow: 0 24px 70px rgba(7, 47, 44, .11); }
.backend-window__bar { min-height: 52px; display: flex; align-items: center; gap: 13px; padding: 0 18px; border-bottom: 1px solid rgba(10, 72, 67, .12); background: #f7fbfa; color: #153b39; font-size: 13px; font-weight: 800; }
.backend-window__bar small { margin-left: auto; color: #6d8582; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.backend-window__dots { display: flex; gap: 5px; }
.backend-window__dots i { width: 7px; height: 7px; border-radius: 50%; background: #c2d3cf; }
.backend-window__dots i:first-child { background: #d7f547; }
.backend-window__layout { min-height: 475px; display: grid; grid-template-columns: 132px minmax(0, 1fr); background: #073a36; color: #fff; }
.backend-window__sidebar { display: flex; flex-direction: column; gap: 4px; padding: 27px 15px; border-right: 1px solid rgba(255,255,255,.09); background: #062d2b; }
.backend-window__sidebar strong { margin: 0 8px 25px; color: #fff; font-size: 18px; }
.backend-window__sidebar strong span { color: #d7f547; }
.backend-window__sidebar > span { padding: 9px 10px; border-radius: 7px; color: rgba(255,255,255,.61); font-size: 10px; font-weight: 700; }
.backend-window__sidebar > span.is-active { background: rgba(215,245,71,.12); color: #d7f547; }
.backend-window__content { min-width: 0; padding: 27px; }
.backend-window__welcome { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.backend-window__welcome small { color: #8bc0ba; font-size: 10px; }
.backend-window__welcome h3 { margin: 3px 0 0; color: #fff; font-size: 23px; }
.backend-window__welcome > span { padding: 10px 13px; border-radius: 7px; background: #d7f547; color: #103c38; font-size: 10px; font-weight: 900; }
.backend-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 24px; }
.backend-metrics > div { min-width: 0; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 9px; background: rgba(255,255,255,.025); }
.backend-metrics small { display: block; min-height: 28px; color: #8bc0ba; font-size: 9px; }
.backend-metrics strong { display: block; color: #fff; font-size: 21px; }
.backend-next-rides { margin-top: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; }
.backend-list-head, .backend-ride { display: grid; align-items: center; }
.backend-list-head { grid-template-columns: 1fr auto; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.backend-list-head strong { font-size: 13px; }
.backend-list-head span { color: #d7f547; font-size: 9px; font-weight: 800; }
.backend-ride { grid-template-columns: 55px minmax(0, 1fr) auto; gap: 12px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.backend-ride:last-child { border-bottom: 0; }
.backend-ride time { font-size: 11px; font-weight: 800; }
.backend-ride p { min-width: 0; margin: 0; }
.backend-ride p strong, .backend-ride p small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.backend-ride p strong { color: #fff; font-size: 11px; }
.backend-ride p small { margin-top: 2px; color: #8bc0ba; font-size: 9px; }
.backend-status { display: inline-flex; align-items: center; justify-content: center; width: max-content; border-radius: 999px; padding: 6px 9px; font-size: 8px; font-weight: 900; }
.backend-status-ok { background: rgba(215,245,71,.12); color: #d7f547; }
.backend-status-route { background: rgba(245,187,71,.14); color: #ffd367; }
.backend-status-open { background: #fff2d8; color: #9a6500; }
.backend-showcase-side { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.backend-window-detail { display: flex; flex-direction: column; }
.backend-detail-body { flex: 1; padding: 22px; }
.backend-detail-title { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 17px; border-bottom: 1px solid #e2ece9; }
.backend-detail-title small, .backend-detail-title strong { display: block; }
.backend-detail-title small { color: #7b918e; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.backend-detail-title strong { margin-top: 3px; color: #0d3e3a; font-size: 17px; }
.backend-detail-body dl { margin: 13px 0 0; }
.backend-detail-body dl div { display: grid; grid-template-columns: 100px 1fr; gap: 12px; padding: 8px 0; }
.backend-detail-body dt { color: #778e8b; font-size: 10px; }
.backend-detail-body dd { margin: 0; color: #173d3a; font-size: 11px; font-weight: 800; }
.backend-invoices { display: grid; flex: 1; padding: 10px 22px 18px; }
.backend-invoices > div { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 12px; padding: 12px 0; border-bottom: 1px solid #e2ece9; }
.backend-invoices > div:last-child { border-bottom: 0; }
.backend-invoices span { color: #173d3a; font-size: 11px; font-weight: 800; }
.backend-invoices strong { color: #173d3a; font-size: 13px; }
.backend-invoices small { grid-column: 1 / -1; }
.backend-showcase-note { max-width: 900px; margin: 22px auto 0; color: #647d79; font-size: 12px; line-height: 1.55; text-align: center; }

.security-section { background: var(--white); }
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.security-grid article { min-height: 310px; padding: 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.security-grid h2 { margin: 42px 0 14px; font-size: 28px; }
.security-grid p { margin: 0; color: var(--system-muted); }
.responsibility-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 18px; align-items: stretch; }
.responsibility-grid .section-heading { margin: 0 30px 0 0; }
.responsibility-card { padding: 30px; border-radius: 18px; background: var(--white); }
.responsibility-card strong { display: block; margin-bottom: 24px; font-size: 21px; }

.faq-page-grid { display: grid; grid-template-columns: 220px 1fr; gap: 75px; align-items: start; }
.faq-page-grid aside { position: sticky; top: 28px; display: grid; gap: 3px; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.faq-page-grid aside strong { margin-bottom: 8px; }
.faq-page-grid aside a { padding: 7px 0; color: var(--system-muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.faq-page-grid aside a:hover { color: var(--petrol); }
.faq-page-list { display: grid; gap: 60px; }
.faq-page-list section { scroll-margin-top: 30px; }
.faq-page-list details { border-bottom: 1px solid var(--line); }
.faq-page-list summary { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 800; }
.faq-page-list summary::-webkit-details-marker { display: none; }
.faq-page-list summary span { font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-page-list details[open] summary span { transform: rotate(45deg); }
.faq-page-list details p { max-width: 780px; margin: -3px 42px 24px 0; color: var(--system-muted); }

.contact-page-section { background: var(--mint); }
.contact-copy-light { color: var(--ink); }
.contact-copy-light > p { color: var(--system-muted); }
.contact-methods { display: grid; gap: 10px; margin-top: 32px; }
.contact-methods > * { display: grid; gap: 3px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); text-decoration: none; }
.contact-methods small { color: var(--system-muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.contact-methods strong { color: var(--petrol); font-size: 17px; }
.contact-methods span { color: var(--system-muted); font-size: 13px; }

.legal-hero { padding: 85px 0 60px; background: var(--mint); }
.legal-hero p:last-child { color: var(--system-muted); font-size: 18px; }
.legal-shell { max-width: 900px; }
.legal-content { padding: 80px 0 110px; }
.legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.legal-flow { display: grid; gap: 18px; }
.legal-card { padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.legal-card-wide { grid-column: 1 / -1; }
.legal-card h2 { margin: 0 0 14px; font-size: 23px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card address { font-style: normal; }
.legal-card a { color: var(--petrol-soft); font-weight: 700; }

@media (max-width: 980px) {
    .main-nav { display: none; }
    .mobile-navigation { display: block; }
    .benefit-grid { grid-template-columns: repeat(3, 1fr); }
    .benefit-grid article:nth-child(4), .benefit-grid article:nth-child(5) { border-top: 1px solid var(--line); }
    .challenge-grid, .scope-grid { grid-template-columns: 1fr 1fr; }
    .calm-grid, .product-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
    .calm-copy, .product-copy { max-width: 690px; }
    .process-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .process-grid li::after { display: none; }
    .subpage-hero-grid, .split-feature, .callout-grid, .responsibility-grid, .backend-showcase-grid { grid-template-columns: 1fr; }
    .platform-orbit { width: min(80vw, 410px); }
    .story-grid { grid-template-columns: 1fr 1fr; }
    .responsibility-grid .section-heading { margin-right: 0; }
    .backend-showcase-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
}

@media (max-width: 680px) {
    .shell { width: min(calc(100% - 28px), var(--shell)); }
    .header-inner { min-height: 72px; }
    .brand-copy small { display: none; }
    .legacy-brand-mark { width: 39px; height: 39px; }
    .hero, .hero-content { min-height: 650px; }
    .hero-image { object-position: 69% center; }
    .hero-shade { background: linear-gradient(90deg, rgba(5,31,30,.97), rgba(7,39,37,.78)); }
    .hero-content { justify-content: flex-end; padding-bottom: 58px; }
    .hero-content h1 { font-size: 44px; }
    .hero-actions { width: 100%; }
    .hero-actions .button { width: 100%; }
    .hero-trust { gap: 9px; display: grid; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }
    .benefit-grid article { min-height: 95px; border-top: 1px solid var(--line); }
    .section, .calm-section { padding: 76px 0; }
    .section-heading h2, .calm-copy h2, .product-copy h2, .contact-copy h2, .legal-hero h1 { font-size: 39px; }
    .challenge-grid, .scope-grid, .trust-grid, .process-grid { grid-template-columns: 1fr; }
    .calm-grid { gap: 45px; }
    .calm-contrast { grid-template-columns: 1fr; padding: 14px; }
    .calm-result { grid-column: auto; }
    .dashboard-body { grid-template-columns: 82px 1fr; min-height: 305px; }
    .dashboard-body aside { padding: 17px 10px; font-size: 8px; }
    .dashboard-content { padding: 14px; }
    .dashboard-metrics { grid-template-columns: 1fr; }
    .dashboard-metrics article:nth-child(n+2) { display: none; }
    .dashboard-table div { grid-template-columns: 1fr; }
    .dashboard-table div span { display: none; }
    .trust-grid { gap: 28px; }
    .contact-form-card { padding: 22px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-wide { grid-column: auto; }
    .form-actions { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; }
    .floating-phone { width: 50px; height: 50px; right: 15px; bottom: 15px; }
    .legal-grid { grid-template-columns: 1fr; }
    .legal-card-wide { grid-column: auto; }
    .platform-cookie { right: 14px; bottom: 14px; width: calc(100% - 28px); grid-template-columns: 1fr; gap: 16px; padding: 20px; }
    .platform-cookie__actions .button { width: 100%; }
    .subpage-hero { padding: 82px 0 76px; }
    .subpage-hero h1 { font-size: 38px; }
    .subpage-hero p:last-child, .subpage-hero-grid > div > p { font-size: 17px; }
    .platform-orbit { width: min(86vw, 340px); }
    .story-grid, .security-grid { grid-template-columns: 1fr; }
    .story-grid article, .security-grid article { padding: 26px; }
    .brand-stack > div { grid-template-columns: 1fr; gap: 5px; }
    .feature-catalog article { grid-template-columns: 1fr; gap: 18px; padding: 36px 0; }
    .faq-page-grid { grid-template-columns: 1fr; gap: 42px; }
    .faq-page-grid aside { position: static; grid-template-columns: repeat(2, 1fr); }
    .faq-page-grid aside strong { grid-column: 1 / -1; }
    .backend-window__layout { grid-template-columns: 72px minmax(0, 1fr); min-height: 405px; }
    .backend-window__sidebar { padding-inline: 8px; }
    .backend-window__sidebar strong { margin-inline: 4px; font-size: 14px; }
    .backend-window__sidebar > span { padding-inline: 5px; font-size: 0; }
    .backend-window__sidebar > span::first-letter { font-size: 10px; }
    .backend-window__content { padding: 16px; }
    .backend-metrics { grid-template-columns: 1fr 1fr; }
    .backend-showcase-side { grid-template-columns: 1fr; }
    .backend-window__bar small { display: none; }
    .backend-ride { grid-template-columns: 45px minmax(0, 1fr); }
    .backend-ride > .backend-status { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
