:root {
    color-scheme: light;
    --background: #f7f8fa;
    --surface: #ffffff;
    --surface-container: #eef2f5;
    --surface-strong: #e5ebef;
    --primary: #12304a;
    --primary-hover: #1a4263;
    --on-primary: #ffffff;
    --accent: #2e9e68;
    --accent-strong: #218555;
    --accent-container: #dff4e8;
    --accent-soft: #effaf4;
    --text: #12304a;
    --muted: #64748b;
    --outline: #d8e0e6;
    --warning: #b66a15;
    --warning-container: #fff1d6;
    --destructive: #d95c5c;
    --shadow: 0 24px 70px rgba(18, 48, 74, 0.14);
    --shadow-small: 0 12px 32px rgba(18, 48, 74, 0.1);
    --radius: 20px;
    --radius-small: 12px;
    --header-height: 76px;
    --max-width: 1180px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --background: #0b1118;
    --surface: #121c26;
    --surface-container: #182633;
    --surface-strong: #203241;
    --primary: #55c98a;
    --primary-hover: #6bd99c;
    --on-primary: #0b1118;
    --accent: #55c98a;
    --accent-strong: #6bd99c;
    --accent-container: #203d32;
    --accent-soft: #13281f;
    --text: #f2f6f8;
    --muted: #a9b6c2;
    --outline: #2a3c4b;
    --warning: #f2b65b;
    --warning-container: #2d2418;
    --destructive: #f07178;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --shadow-small: 0 12px 32px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.legal-page {
    background: var(--background);
}

.legal-header {
    border-bottom: 1px solid var(--outline);
    background: var(--surface);
}

.legal-header-inner,
.legal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.legal-header-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.legal-main {
    padding: clamp(56px, 8vw, 96px) 0;
}

.legal-document {
    width: min(calc(100% - 40px), 780px);
}

.legal-document h1 {
    max-width: 720px;
    margin: 10px 0 8px;
    font-size: clamp(2.4rem, 7vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.legal-document h2 {
    margin: 48px 0 12px;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.legal-document p,
.legal-document li {
    color: var(--muted);
}

.legal-document a,
.legal-footer a {
    color: var(--accent-strong);
    text-underline-offset: 3px;
}

.legal-document ul {
    display: grid;
    gap: 10px;
    padding-left: 22px;
}

.legal-updated {
    margin-top: 0;
}

.legal-summary {
    margin: 36px 0 12px;
    padding: 22px 24px;
    border: 1px solid var(--outline);
    border-radius: var(--radius-small);
    background: var(--accent-soft);
}

.legal-summary p {
    margin: 6px 0 0;
}

.legal-note {
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--outline);
    font-size: 0.92rem;
}

.legal-footer p {
    margin: 0;
}

@media (max-width: 520px) {
    .legal-header-inner,
    .legal-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 16px;
        gap: 8px;
    }

    .legal-header-links {
        width: 100%;
        justify-content: space-between;
    }

    .legal-document h2 {
        margin-top: 38px;
    }
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
}

a {
    color: inherit;
}

img,
svg {
    display: block;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--on-primary);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: color-mix(in srgb, var(--background) 82%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--outline);
    box-shadow: 0 6px 26px rgba(18, 48, 74, 0.06);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.26rem;
    font-weight: 790;
    letter-spacing: -0.035em;
    text-decoration: none;
}

.brand img {
    width: 42px;
    height: 42px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.desktop-nav a,
.footer-links a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 14px;
    color: var(--muted);
    font-size: 0.93rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.desktop-nav a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button {
    display: inline-grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--outline);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.language-link {
    display: inline-grid;
    min-width: 48px;
    height: 48px;
    padding: 0 10px;
    place-items: center;
    border: 1px solid var(--outline);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 160ms ease, color 160ms ease;
}

.language-link:hover {
    border-color: var(--accent);
    color: var(--accent-strong);
}

.theme-toggle {
    display: none;
}

.js .theme-toggle {
    display: inline-grid;
}

.icon-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.moon-icon,
:root[data-theme="dark"] .sun-icon {
    display: none;
}

:root[data-theme="dark"] .moon-icon {
    display: block;
}

.menu-toggle {
    display: none;
}

.mobile-nav {
    padding: 8px 20px 24px;
    border-bottom: 1px solid var(--outline);
    background: var(--background);
}

.mobile-nav a:not(.button) {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid var(--outline);
    font-weight: 680;
    text-decoration: none;
}

.mobile-nav .button {
    width: 100%;
    margin-top: 16px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius-small);
    background: var(--primary);
    color: var(--on-primary);
    font-size: 0.96rem;
    font-weight: 760;
    text-decoration: none;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 20%, transparent);
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    background: var(--primary-hover);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--primary) 26%, transparent);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.button-small {
    min-height: 46px;
    padding-inline: 18px;
}

.text-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    color: var(--text);
    font-weight: 740;
    text-underline-offset: 5px;
    transition: color 160ms ease;
}

:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 72%, white);
    outline-offset: 3px;
}

.hero {
    position: relative;
    min-height: 820px;
    padding: calc(var(--header-height) + 84px) 0 96px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(color-mix(in srgb, var(--outline) 28%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--outline) 28%, transparent) 1px, transparent 1px);
    background-size: 58px 58px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 75%);
    opacity: 0.42;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.hero-glow-one {
    top: 110px;
    right: -80px;
    width: 520px;
    height: 520px;
    background: color-mix(in srgb, var(--accent-container) 76%, transparent);
}

.hero-glow-two {
    bottom: 60px;
    left: -190px;
    width: 420px;
    height: 420px;
    background: color-mix(in srgb, #72b9e8 15%, transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
    align-items: center;
    gap: 84px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow,
.kicker {
    color: var(--accent-strong);
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 999px;
    background: var(--accent-soft);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 15%, transparent);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
}

h1 {
    max-width: 720px;
    margin: 28px 0 26px;
    font-size: clamp(3.8rem, 7vw, 6.8rem);
    font-weight: 830;
    letter-spacing: -0.072em;
}

h1 span {
    color: var(--accent);
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.62;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 32px 0 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 650;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-list svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
}

.demo-column {
    position: relative;
    display: grid;
    justify-items: center;
}

.phone-shell {
    position: relative;
    width: min(100%, 382px);
    aspect-ratio: 0.505;
    padding: 10px;
    border: 1px solid #42515f;
    border-radius: 52px;
    background: #071019;
    box-shadow: 0 40px 90px rgba(18, 48, 74, 0.25), inset 0 0 0 2px #172838;
    transform: rotate(2deg);
}

.phone-speaker {
    position: absolute;
    z-index: 5;
    top: 18px;
    left: 50%;
    width: 74px;
    height: 22px;
    border-radius: 999px;
    background: #071019;
    transform: translateX(-50%);
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 42px;
    background: #eaf1f1;
    color: #12304a;
}

.demo-map {
    position: absolute;
    inset: 0 0 40%;
    overflow: hidden;
    background-color: #dceae6;
    background-image: linear-gradient(29deg, transparent 48%, rgba(255, 255, 255, 0.76) 49%, rgba(255, 255, 255, 0.76) 52%, transparent 53%), linear-gradient(102deg, transparent 44%, rgba(163, 200, 216, 0.58) 45%, rgba(163, 200, 216, 0.58) 50%, transparent 51%), linear-gradient(155deg, transparent 38%, rgba(255, 255, 255, 0.62) 39%, rgba(255, 255, 255, 0.62) 42%, transparent 43%);
}

:root[data-theme="dark"] .demo-map {
    background-color: #152b30;
    background-image: linear-gradient(29deg, transparent 48%, rgba(64, 85, 95, 0.76) 49%, rgba(64, 85, 95, 0.76) 52%, transparent 53%), linear-gradient(102deg, transparent 44%, rgba(17, 70, 89, 0.72) 45%, rgba(17, 70, 89, 0.72) 50%, transparent 51%), linear-gradient(155deg, transparent 38%, rgba(52, 75, 80, 0.72) 39%, rgba(52, 75, 80, 0.72) 42%, transparent 43%);
}

.map-road {
    position: absolute;
    height: 8px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(211, 219, 217, 0.72);
    transform-origin: left center;
}

.map-road-one {
    top: 30%;
    left: -10%;
    width: 130%;
    transform: rotate(-17deg);
}

.map-road-two {
    top: 63%;
    left: -20%;
    width: 150%;
    transform: rotate(12deg);
}

.map-road-three {
    top: -2%;
    left: 23%;
    width: 120%;
    transform: rotate(73deg);
}

.wake-radius {
    position: absolute;
    top: 93px;
    right: 35px;
    width: 158px;
    height: 158px;
    border: 2px dashed #28b877;
    border-radius: 50%;
    background: rgba(72, 218, 144, 0.22);
    transition: transform 300ms ease, background 300ms ease;
}

.destination-pin {
    position: absolute;
    z-index: 2;
    top: 145px;
    right: 97px;
    width: 29px;
    height: 38px;
    border-radius: 50% 50% 50% 0;
    background: #2ed084;
    box-shadow: 0 5px 14px rgba(18, 48, 74, 0.24);
    transform: rotate(-45deg);
}

.destination-pin span {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 13px;
    height: 13px;
    border: 3px solid #12304a;
    border-radius: 50%;
}

.route-line {
    position: absolute;
    top: 136px;
    left: 31px;
    width: 265px;
    height: 230px;
    overflow: visible;
}

.route-line path {
    fill: none;
    stroke: #12304a;
    stroke-dasharray: 7 7;
    stroke-linecap: round;
    stroke-width: 3;
}

:root[data-theme="dark"] .route-line path {
    stroke: #d7e1e7;
}

.location-dot {
    position: absolute;
    z-index: 2;
    top: 321px;
    left: 60px;
    width: 22px;
    height: 22px;
    border: 4px solid white;
    border-radius: 50%;
    background: #2589e8;
    box-shadow: 0 0 0 10px rgba(37, 137, 232, 0.18);
}

.map-label {
    position: absolute;
    z-index: 2;
    top: 185px;
    right: 38px;
    width: 128px;
    color: #12304a;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
}

:root[data-theme="dark"] .map-label {
    color: #f2f6f8;
}

.demo-topbar {
    position: absolute;
    z-index: 4;
    top: 24px;
    right: 18px;
    left: 18px;
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 20px rgba(18, 48, 74, 0.08);
    backdrop-filter: blur(12px);
}

:root[data-theme="dark"] .demo-topbar {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(18, 28, 38, 0.84);
    color: #f2f6f8;
}

.demo-topbar img {
    width: 32px;
    height: 32px;
}

.demo-clock {
    margin-left: auto;
    color: #64748b;
    font-size: 0.76rem;
    font-weight: 740;
}

.trip-sheet {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 43%;
    padding: 25px 20px 22px;
    border-radius: 30px 30px 0 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -16px 40px rgba(18, 48, 74, 0.1);
}

:root[data-theme="dark"] .trip-sheet {
    background: rgba(18, 28, 38, 0.98);
    color: #f2f6f8;
}

.distance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.distance,
.distance-label {
    display: block;
}

.distance {
    font-size: 2.25rem;
    font-weight: 850;
    letter-spacing: -0.055em;
    line-height: 1;
}

.distance-label {
    margin-top: 8px;
    color: #64748b;
    font-size: 0.85rem;
}

.transport-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 14px;
    background: #eef2f5;
}

:root[data-theme="dark"] .transport-icon {
    background: #203241;
}

.transport-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 24px;
}

.status-card {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #d8e0e6;
    border-radius: 14px;
}

:root[data-theme="dark"] .status-card {
    border-color: #2a3c4b;
}

.status-card strong,
.status-card span {
    display: block;
}

.status-card strong {
    font-size: 0.74rem;
    line-height: 1.25;
}

.status-card > div > span {
    margin-top: 4px;
    color: #64748b;
    font-size: 0.65rem;
    line-height: 1.25;
}

.status-icon {
    flex: 0 0 auto;
}

.status-icon-gps {
    position: relative;
    width: 18px;
    height: 18px;
    border: 3px solid #2e9e68;
    border-radius: 50%;
}

.status-icon-gps::after {
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 7px;
    height: 7px;
    border: 2px solid white;
    border-radius: 50%;
    background: #2e9e68;
    content: "";
}

.status-icon-bell svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.progress-track {
    height: 7px;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6ebef;
}

:root[data-theme="dark"] .progress-track {
    background: #263746;
}

.progress-track span {
    display: block;
    width: 36%;
    height: 100%;
    border-radius: inherit;
    background: #2e9e68;
    transition: width 350ms ease, background 350ms ease;
}

.phone-screen[data-state="lost"] .wake-radius {
    background: rgba(242, 182, 91, 0.2);
    border-color: #b66a15;
}

.phone-screen[data-state="lost"] .status-icon-gps {
    border-color: #b66a15;
}

.phone-screen[data-state="lost"] .status-icon-gps::after,
.phone-screen[data-state="lost"] .progress-track span {
    background: #b66a15;
}

.phone-screen[data-state="lost"] .progress-track span {
    width: 68%;
}

.phone-screen[data-state="arrival"] .wake-radius {
    transform: scale(1.08);
}

.phone-screen[data-state="arrival"] .progress-track span {
    width: 92%;
}

.demo-controls {
    position: relative;
    z-index: 8;
    display: flex;
    width: min(100%, 430px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: -5px;
    padding: 5px;
    border: 1px solid var(--outline);
    border-radius: 16px;
    background: var(--surface);
    box-shadow: var(--shadow-small);
}

.demo-control {
    min-height: 46px;
    padding: 0 16px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
    cursor: pointer;
}

.demo-control.is-active {
    background: var(--accent-container);
    color: var(--accent-strong);
}

.section {
    padding: 116px 0;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 56px;
}

.section-heading h2,
.preview-copy h2,
.privacy-copy h2,
.testing-card h2,
.final-cta h2 {
    margin: 14px 0 20px;
    font-size: clamp(2.35rem, 4.4vw, 4.25rem);
    font-weight: 820;
    letter-spacing: -0.055em;
}

.section-heading p,
.preview-copy > p,
.privacy-copy > p {
    max-width: 640px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-card {
    position: relative;
    min-height: 320px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    background: var(--surface);
}

.step-number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: var(--outline);
    font-size: 3rem;
    font-weight: 850;
    letter-spacing: -0.06em;
}

.feature-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 56px;
    place-items: center;
    border-radius: 16px;
    background: var(--accent-container);
    color: var(--accent-strong);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.step-card h3,
.bento-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    letter-spacing: -0.025em;
}

.step-card p,
.bento-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.whats-new {
    border-top: 1px solid var(--outline);
    background: var(--surface-container);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 34px color-mix(in srgb, var(--text) 7%, transparent);
}

.news-card-featured {
    min-height: 320px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    grid-column: 1 / -1;
}

.news-card-copy {
    max-width: 560px;
}

.news-label {
    color: var(--accent-strong);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 14px 0 12px;
    font-size: clamp(1.65rem, 2.6vw, 2.3rem);
    letter-spacing: -0.04em;
}

.news-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.news-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    place-items: center;
    border-radius: 15px;
    background: var(--accent-container);
    color: var(--accent-strong);
}

.news-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.timer-preview,
.report-preview,
.reliability-preview {
    width: min(100%, 390px);
    flex: 0 0 auto;
    padding: 24px;
    border: 1px solid var(--outline);
    border-radius: 17px;
    background: var(--background);
}

.timer-preview-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.timer-preview-head span,
.report-preview span,
.report-preview small {
    color: var(--muted);
    font-size: 0.78rem;
}

.timer-preview-head strong {
    color: var(--warning);
    font-size: 2.15rem;
    letter-spacing: -0.055em;
}

.timer-track {
    height: 7px;
    margin: 20px 0;
    overflow: hidden;
    border-radius: 999px;
    background: var(--surface-strong);
}

.timer-track span {
    display: block;
    width: 62%;
    height: 100%;
    border-radius: inherit;
    background: var(--warning);
}

.timer-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timer-options span,
.saved-routes span {
    padding: 7px 10px;
    border: 1px solid var(--outline);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 720;
}

.timer-options .is-current {
    border-color: color-mix(in srgb, var(--warning) 38%, var(--outline));
    background: var(--warning-container);
    color: var(--warning);
}

.saved-routes {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 26px;
}

.saved-routes span:first-child {
    border-color: color-mix(in srgb, var(--accent) 40%, var(--outline));
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.widget-preview {
    display: flex;
    min-height: 70px;
    align-items: center;
    gap: 11px;
    margin-top: 26px;
    padding: 12px;
    border: 1px solid var(--outline);
    border-radius: 16px;
    background: var(--background);
}

.widget-preview img {
    padding: 3px;
    border-radius: 9px;
    background: var(--accent-container);
}

.widget-preview div {
    min-width: 0;
}

.widget-preview strong,
.widget-preview span {
    display: block;
}

.widget-preview strong {
    font-size: 0.8rem;
}

.widget-preview span {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.widget-preview b {
    margin-left: auto;
    color: var(--destructive);
    font-size: 0.72rem;
}

.news-card-report {
    background: var(--accent-soft);
}

.news-card:not(.news-card-featured) .report-preview {
    margin-top: 26px;
}

.report-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: var(--surface);
}

.report-preview strong,
.report-preview span {
    display: block;
}

.report-preview strong {
    margin-top: 6px;
    font-size: 1rem;
}

.report-preview small {
    padding-top: 14px;
    border-top: 1px solid var(--outline);
    color: var(--accent-strong);
    font-weight: 720;
    grid-column: 1 / -1;
}

.reliability-preview {
    display: grid;
    gap: 10px;
}

.reliability-preview span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--outline));
    border-radius: 12px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 720;
}

.reliability-preview b {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 999px;
    background: var(--accent-container);
    color: var(--accent-strong);
}

.reliability-preview .has-warning {
    border-color: color-mix(in srgb, var(--warning) 36%, var(--outline));
}

.reliability-preview .has-warning b {
    background: var(--warning-container);
    color: var(--warning);
}

.reliability {
    position: relative;
    background: #0e2639;
    color: #f2f6f8;
}

.section-heading-light p {
    color: #afbdc8;
}

.reliability .kicker,
.bento-label {
    color: #55c98a;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
}

.bento-card {
    position: relative;
    min-height: 285px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #29445a;
    border-radius: var(--radius);
    background: #142f43;
}

.bento-large {
    display: grid;
    min-height: 390px;
    grid-template-columns: minmax(0, 0.9fr) minmax(250px, 1.1fr);
    align-items: center;
    grid-column: 1 / -1;
}

.bento-wide {
    display: grid;
    min-height: 270px;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    align-items: center;
    gap: 52px;
    grid-column: 1 / -1;
}

.bento-copy {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.bento-card h3 {
    margin: 15px 0 12px;
    color: #f2f6f8;
    font-size: 1.65rem;
}

.bento-card p {
    color: #afbdc8;
}

.bento-label {
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.14em;
}

.radar-visual {
    position: relative;
    height: 320px;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(85, 201, 138, 0.45);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-ring-one {
    width: 110px;
    height: 110px;
    background: rgba(85, 201, 138, 0.08);
}

.radar-ring-two {
    width: 200px;
    height: 200px;
}

.radar-ring-three {
    width: 290px;
    height: 290px;
    border-style: dashed;
}

.radar-dot,
.radar-traveller {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-dot {
    width: 22px;
    height: 22px;
    border: 5px solid #dff4e8;
    background: #55c98a;
    box-shadow: 0 0 0 10px rgba(85, 201, 138, 0.12);
}

.radar-traveller {
    width: 14px;
    height: 14px;
    border: 3px solid #dff4e8;
    background: #318ddd;
    transform: translate(104px, 74px);
}

.radar-traveller::before {
    position: absolute;
    right: 9px;
    bottom: 9px;
    width: 110px;
    border-top: 2px dashed rgba(215, 225, 231, 0.68);
    content: "";
    transform: rotate(34deg);
    transform-origin: right;
}

.countdown {
    margin: 31px 0 26px;
    color: #f2b65b;
    font-size: 4.2rem;
    font-variant-numeric: tabular-nums;
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 1;
}

.deadline-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin: 31px 0 26px;
}

.deadline-row span {
    color: #55c98a;
    font-size: 4.2rem;
    font-variant-numeric: tabular-nums;
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 1;
}

.deadline-row small {
    color: #afbdc8;
}

.notification-card {
    display: flex;
    min-height: 94px;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid #355269;
    border-radius: 18px;
    background: #203d50;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    transform: rotate(-1.5deg);
}

.notification-card img {
    padding: 4px;
    border-radius: 10px;
    background: #dff4e8;
}

.notification-card strong,
.notification-card span {
    display: block;
}

.notification-card strong {
    font-size: 0.9rem;
}

.notification-card div span {
    margin-top: 3px;
    color: #afbdc8;
    font-size: 0.76rem;
}

.notification-card .notification-stop {
    margin-left: auto;
    padding: 7px 12px;
    border-radius: 9px;
    background: rgba(240, 113, 120, 0.16);
    color: #f07178;
    font-size: 0.76rem;
    font-weight: 780;
}

.honesty-note {
    margin: 32px 0 0;
    padding: 20px 24px;
    border-left: 3px solid #f2b65b;
    border-radius: 0 12px 12px 0;
    background: rgba(242, 182, 91, 0.08);
    color: #afbdc8;
    font-size: 0.9rem;
}

.honesty-note strong {
    color: #f2f6f8;
}

.product-preview {
    overflow: hidden;
}

.preview-grid,
.privacy-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 70px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 660;
}

.check-list li::before {
    position: absolute;
    top: 6px;
    left: 0;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-container);
    color: var(--accent-strong);
    content: "✓";
    font-size: 0.72rem;
    font-weight: 900;
}

.ui-preview {
    position: relative;
    width: 970px;
    margin: 0;
}

.ui-preview::after {
    position: absolute;
    z-index: -1;
    inset: 14% 7% 8%;
    border-radius: 50%;
    background: var(--accent-container);
    content: "";
    filter: blur(70px);
    opacity: 0.72;
}

.ui-preview img {
    width: 100%;
    height: auto;
    border: 1px solid var(--outline);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.preview-dark,
:root[data-theme="dark"] .preview-light {
    display: none;
}

:root[data-theme="dark"] .preview-dark {
    display: block;
}

.privacy {
    border-top: 1px solid var(--outline);
    border-bottom: 1px solid var(--outline);
    background: var(--surface);
}

.privacy-grid {
    grid-template-columns: 0.88fr 1.12fr;
}

.privacy-visual {
    position: relative;
    min-height: 460px;
}

.shield {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    border-radius: 42px;
    background: var(--accent-container);
    box-shadow: var(--shadow-small);
    transform: translate(-50%, -50%) rotate(-3deg);
}

.shield svg {
    width: 76px;
    height: 86px;
    fill: none;
    stroke: var(--accent-strong);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.5;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px dashed var(--outline);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 300px;
    height: 300px;
}

.orbit-two {
    width: 430px;
    height: 430px;
}

.privacy-chip {
    position: absolute;
    z-index: 4;
    padding: 9px 13px;
    border: 1px solid var(--outline);
    border-radius: 10px;
    background: var(--surface);
    color: var(--muted);
    box-shadow: var(--shadow-small);
    font-size: 0.75rem;
    font-weight: 760;
}

.privacy-chip-one {
    top: 15%;
    right: 8%;
}

.privacy-chip-two {
    bottom: 14%;
    left: 4%;
}

.privacy-chip-three {
    right: 1%;
    bottom: 23%;
    color: var(--accent-strong);
}

.privacy-points {
    display: grid;
    gap: 22px;
    margin: 34px 0 24px;
}

.privacy-points div {
    padding-left: 18px;
    border-left: 2px solid var(--accent);
}

.privacy-points strong,
.privacy-points span {
    display: block;
}

.privacy-points span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.9rem;
}

.field-testing {
    padding-bottom: 0;
}

.testing-card {
    display: flex;
    min-height: 350px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 58px 64px;
    border-radius: 28px;
    background: #12304a;
    color: #f2f6f8;
    box-shadow: var(--shadow);
}

.testing-card > div {
    max-width: 720px;
}

.testing-card .kicker {
    color: #55c98a;
}

.testing-card h2 {
    margin-bottom: 14px;
}

.testing-card p {
    margin: 0;
    color: #bdc9d1;
    font-size: 1.04rem;
}

.button-light {
    flex: 0 0 auto;
    background: #55c98a;
    color: #0b1118;
}

.button-light:hover {
    background: #6bd99c;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 88px;
}

.faq .section-heading {
    margin-bottom: 0;
}

.faq-list {
    border-top: 1px solid var(--outline);
}

.faq-list details {
    border-bottom: 1px solid var(--outline);
}

.faq-list summary {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-size: 1.04rem;
    font-weight: 740;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-container);
    color: var(--accent-strong);
    font-size: 1.25rem;
    font-weight: 400;
    transition: transform 180ms ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 680px;
    margin: -4px 58px 24px 0;
    color: var(--muted);
}

.final-cta {
    padding: 110px 0;
    background: var(--accent-container);
}

.final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-cta-inner > img {
    width: 68px;
    height: 68px;
    margin-bottom: 4px;
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta p {
    max-width: 560px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--outline);
    background: var(--background);
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.footer-grid > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
}

.copyright {
    white-space: nowrap;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal-delay-small {
    transition-delay: 80ms;
}

.js .reveal-delay {
    transition-delay: 160ms;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1020px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .hero {
        padding-top: calc(var(--header-height) + 60px);
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 44px;
    }

    h1 {
        font-size: clamp(3.4rem, 7.5vw, 5rem);
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    .ui-preview {
        width: 1050px;
        max-width: none;
    }

    .privacy-grid {
        gap: 38px;
    }

    .faq-grid {
        gap: 50px;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 32px), var(--max-width));
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 48px) 0 78px;
    }

    .hero-grid,
    .preview-grid,
    .privacy-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 64px;
    }

    .hero-copy {
        max-width: 620px;
    }

    h1 {
        margin-top: 24px;
        font-size: clamp(3.3rem, 14vw, 5.4rem);
    }

    .phone-shell {
        width: min(88vw, 370px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .news-card-featured {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .timer-preview,
    .report-preview,
    .reliability-preview {
        width: 100%;
    }

    .step-card {
        min-height: 260px;
    }

    .feature-icon {
        margin-bottom: 38px;
    }

    .section {
        padding: 88px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large,
    .bento-wide {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        grid-column: auto;
    }

    .radar-visual {
        height: 290px;
    }

    .bento-wide {
        padding-bottom: 38px;
    }

    .ui-preview {
        width: 850px;
    }

    .privacy-grid {
        gap: 16px;
    }

    .privacy-visual {
        min-height: 410px;
        order: 2;
    }

    .privacy-copy {
        order: 1;
    }

    .testing-card {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
        padding: 44px 36px;
    }

    .faq-grid {
        gap: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr auto;
    }

    .footer-grid > p:first-of-type {
        display: none;
    }

    .footer-links {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 520px) {
    .header-actions {
        gap: 6px;
    }

    .icon-button {
        width: 46px;
        height: 46px;
    }

    .language-link {
        min-width: 46px;
        height: 46px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
    }

    .hero-actions .button,
    .hero-actions .text-link {
        justify-content: center;
    }

    .trust-list {
        display: grid;
        gap: 10px;
    }

    .phone-shell {
        border-radius: 46px;
    }

    .phone-screen {
        border-radius: 37px;
    }

    .demo-controls {
        width: 100%;
    }

    .demo-control {
        flex: 1;
        padding-inline: 8px;
    }

    .distance {
        font-size: 2rem;
    }

    .section-heading h2,
    .preview-copy h2,
    .privacy-copy h2,
    .testing-card h2,
    .final-cta h2 {
        font-size: clamp(2.25rem, 12vw, 3.2rem);
    }

    .section {
        padding: 76px 0;
    }

    .bento-card,
    .step-card,
    .news-card {
        padding: 25px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card,
    .news-card-featured {
        min-height: 0;
        grid-column: auto;
    }

    .news-icon {
        margin-bottom: 54px;
    }

    .report-preview {
        grid-template-columns: 1fr;
    }

    .report-preview small {
        grid-column: auto;
    }

    .radar-ring-three {
        width: 250px;
        height: 250px;
    }

    .radar-ring-two {
        width: 172px;
        height: 172px;
    }

    .countdown,
    .deadline-row span {
        font-size: 3.5rem;
    }

    .deadline-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .notification-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .notification-card .notification-stop {
        margin-left: 52px;
    }

    .ui-preview {
        width: 690px;
        transform: translateX(-3%);
    }

    .privacy-visual {
        min-height: 350px;
    }

    .orbit-two {
        width: 330px;
        height: 330px;
    }

    .orbit-one {
        width: 235px;
        height: 235px;
    }

    .shield {
        width: 126px;
        height: 126px;
    }

    .privacy-chip-one {
        right: 1%;
    }

    .testing-card {
        padding: 36px 25px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-column: auto;
        grid-row: auto;
        margin-left: -14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
