:root {
    --navy-950: #04101f;
    --navy-900: #07111f;
    --navy-850: #0a1628;
    --navy-800: #0a1d36;
    --blue-600: #146ef5;
    --blue-500: #2688ff;
    --blue-400: #28a8ff;
    --blue-100: #eaf4ff;
    --cyan-100: #d8f2ff;
    --white: #ffffff;
    --ink: #091321;
    --ink-soft: #34465d;
    --muted: #687d96;
    --line: #dce6f1;
    --line-dark: rgba(255, 255, 255, 0.12);
    --surface: #f5f9fd;
    --surface-2: #edf5fb;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-xl: 42px;
    --shadow: 0 24px 70px rgba(8, 29, 54, 0.12);
    --shadow-soft: 0 14px 40px rgba(8, 29, 54, 0.08);
    --shell: 1240px;
    --header-height: 82px;
    --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

:focus-visible {
    outline: 3px solid var(--blue-400);
    outline-offset: 3px;
}

::selection {
    background: var(--blue-600);
    color: var(--white);
}

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

.section {
    padding: clamp(82px, 9vw, 132px) 0;
}

.section-dark,
.section-ink {
    color: var(--white);
    background: var(--navy-900);
}

.section-light {
    background: var(--surface);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    color: var(--white);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(4, 16, 31, 0.9);
    border-color: var(--line-dark);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand-mark {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(38, 136, 255, 0.24), rgba(40, 168, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-size: 22px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 15px;
    letter-spacing: -0.02em;
}

.brand-copy span {
    margin-top: 4px;
    color: #99b6d6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 750;
}

.site-nav > a:not(.button) {
    color: #c6d6e7;
    transition: color 150ms ease;
}

.site-nav > a:not(.button):hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.menu-toggle-icon {
    width: 20px;
    display: grid;
    gap: 5px;
    margin: auto;
}

.menu-toggle-icon span {
    display: block;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.15;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--blue-600);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(20, 110, 245, 0.28);
}

.button-primary:hover {
    background: #0e62e4;
    box-shadow: 0 16px 36px rgba(20, 110, 245, 0.34);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.09);
}

.button-white {
    background: var(--white);
    color: var(--navy-900);
}

.button-small {
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
}

.button-large {
    min-height: 56px;
    padding-inline: 24px;
}

.hero {
    position: relative;
    min-height: min(940px, 100svh);
    overflow: hidden;
    padding: calc(var(--header-height) + 78px) 0 92px;
    background:
        linear-gradient(180deg, rgba(4, 16, 31, 0.1), rgba(4, 16, 31, 0.9)),
        radial-gradient(circle at 68% 34%, rgba(20, 110, 245, 0.18), transparent 32%),
        var(--navy-950);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}

.hero-glow {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-one {
    width: 360px;
    height: 360px;
    top: 16%;
    right: 8%;
    background: rgba(36, 130, 255, 0.2);
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    bottom: 12%;
    left: 0;
    background: rgba(20, 110, 245, 0.12);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: clamp(50px, 7vw, 94px);
    align-items: center;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #95b7da;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 1px;
    background: var(--blue-400);
}

.eyebrow-blue {
    color: #4c6f94;
}

.hero h1,
.section-heading h2,
.code-copy h2,
.centered-heading h2,
.safety-grid h2,
.faq-heading h2,
.final-cta h2,
.visual-copy h2 {
    margin: 0;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 6.2vw, 5.7rem);
    font-weight: 900;
}

.hero-lead {
    max-width: 680px;
    margin: 30px 0 0;
    color: #a9bdd2;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-line {
    margin: 24px 0 0;
    color: #d4e2ef;
    font-size: 14px;
    font-weight: 750;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.hero-stats div {
    display: grid;
    gap: 4px;
}

.hero-stats strong {
    font-size: 15px;
}

.hero-stats span {
    color: #7f99b5;
    font-size: 12px;
}

.hero-visual {
    position: relative;
    justify-self: end;
    width: min(100%, 520px);
}

.hero-image-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 540px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top right, rgba(37, 132, 255, 0.18), transparent 34%), #07111f;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
}

.hero-image-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(4, 16, 31, 0.5));
    pointer-events: none;
}

.hero-image-shell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

.hero-image-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(38,136,255,.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38,136,255,.35) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(90deg, #000, transparent 46%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.8);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.floating-card-top {
    top: 28px;
    left: -30px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 9px;
    padding: 14px 16px;
}

.floating-card-top strong {
    grid-column: 2;
    font-size: 14px;
}

.floating-card-top > span:not(.status-dot) {
    color: #8ea9c5;
    font-size: 11px;
}

.status-dot {
    width: 9px;
    height: 9px;
    align-self: center;
    border-radius: 50%;
    background: #5df0bc;
    box-shadow: 0 0 0 5px rgba(93, 240, 188, 0.12);
}

.floating-card-bottom {
    right: -22px;
    bottom: 34px;
    display: grid;
    gap: 2px;
    padding: 15px 18px;
}

.floating-card-bottom strong {
    font-size: 19px;
}

.floating-card-bottom > span:last-child {
    color: #91a9c3;
    font-size: 11px;
}

.mini-label {
    margin: 0 0 4px;
    color: var(--blue-400);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.value-strip {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
    min-height: 244px;
    padding: 36px 30px;
    border-right: 1px solid var(--line);
}

.value-card:first-child {
    border-left: 1px solid var(--line);
}

.value-number,
.step-index {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.step-index {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.value-number {
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.08em;
}

.value-card h2 {
    margin: 52px 0 10px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

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

.section-heading h2,
.code-copy h2,
.centered-heading h2,
.safety-grid h2,
.faq-heading h2,
.final-cta h2,
.visual-copy h2 {
    font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.split-heading,
.locations-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    gap: 60px;
    align-items: end;
}

.split-heading > p,
.locations-heading > p,
.centered-heading > p,
.faq-heading > p,
.safety-grid > div > p:last-child {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.step-card {
    min-height: 330px;
    position: relative;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--blue-600);
    transition: transform 180ms ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-top: 28px;
    border: 1px solid #cfe0f0;
    border-radius: 20px;
    background: var(--blue-100);
    color: var(--blue-600);
    font-size: 24px;
    font-weight: 900;
}

.step-card h3 {
    margin: 24px 0 10px;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.step-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.alt-flow-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    margin-top: 18px;
    padding: 30px 32px;
    border: 1px solid #cfe0f0;
    border-radius: var(--radius-md);
    background: linear-gradient(110deg, #edf6ff, #f9fcff);
}

.alt-flow-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.alt-flow-card p:not(.mini-label) {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
}

.code-section {
    background:
        radial-gradient(circle at 15% 25%, rgba(20, 110, 245, 0.14), transparent 30%),
        var(--navy-900);
}

.code-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.code-copy p:last-child {
    max-width: 580px;
    margin: 28px 0 0;
    color: #98aec5;
}

.code-cards {
    display: grid;
    gap: 14px;
}

.code-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 28px;
    align-items: center;
    min-height: 188px;
    padding: 28px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
}

.code-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.code-card p:last-child {
    margin: 0;
    color: #9eb2c8;
    font-size: 14px;
}

.qr-demo {
    width: 92px;
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 10px;
    border-radius: 14px;
    background: var(--white);
}

.qr-demo span {
    border-radius: 2px;
    background: var(--navy-900);
}

.qr-demo span:nth-child(2),
.qr-demo span:nth-child(4),
.qr-demo span:nth-child(8) {
    background: var(--blue-500);
}

.barcode-demo {
    width: 92px;
    height: 72px;
    display: flex;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 14px;
    background: var(--white);
}

.barcode-demo span {
    width: 5px;
    background: var(--navy-900);
}

.barcode-demo span:nth-child(2n) {
    width: 10px;
}

.barcode-demo span:nth-child(3n) {
    background: var(--blue-500);
}

.locations-section {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.location-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.location-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    padding: 0;
    background: linear-gradient(180deg, rgba(20,110,245,.08), rgba(255,255,255,1));
}

.location-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(4, 16, 31, 0.42));
}

.location-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 260ms ease;
}

.location-card:hover .location-image img {
    transform: translateY(-2px);
}

.location-city {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 10px;
    background: rgba(4,16,31,.62);
    color: var(--white);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.location-content {
    padding: 22px;
}

.location-content h3 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -0.04em;
}

.location-address {
    min-height: 48px;
    margin: 8px 0 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.location-meta {
    display: grid;
    gap: 12px;
    padding: 16px 0;
    border-block: 1px solid var(--line);
}

.location-meta div {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    font-size: 12px;
}

.location-meta span {
    color: var(--muted);
}

.location-meta strong {
    font-weight: 800;
    line-height: 1.5;
}

.location-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.text-link {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 850;
}

.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-link-muted {
    color: #6a7f96;
}

.why-section {
    background: linear-gradient(180deg, var(--surface), var(--white));
}

.centered-heading {
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p {
    max-width: 600px;
    margin: 22px auto 0;
}

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

.benefit-grid article {
    min-height: 290px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--navy-900);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.benefit-grid h3 {
    margin: 64px 0 10px;
    font-size: 22px;
    letter-spacing: -0.035em;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.visual-section {
    padding-top: 0;
    background: var(--white);
}

.visual-panel {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at top right, rgba(40,168,255,.2), transparent 26%), var(--navy-900);
}

.visual-panel img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 16, 31, 0.9) 0%, rgba(4, 16, 31, 0.6) 42%, rgba(4, 16, 31, 0.18) 72%, rgba(4, 16, 31, 0.1) 100%),
        linear-gradient(0deg, rgba(4, 16, 31, 0.22), transparent 45%);
}

.visual-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
    padding: clamp(48px, 7vw, 90px);
    color: var(--white);
}

.visual-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 26px 0 30px;
    color: #c0d0df;
    font-size: 17px;
}

.safety-section {
    background: var(--blue-100);
}

.safety-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.safety-grid > div > p:last-child {
    max-width: 560px;
    margin-top: 26px;
}

.safety-list {
    display: grid;
}

.safety-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 22px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid #c8ddec;
}

.safety-list > div:first-child {
    border-top: 1px solid #c8ddec;
}

.safety-list span {
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 900;
}

.safety-list p {
    margin: 0;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.45;
}

.faq-section {
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, .65fr) minmax(0, 1.35fr);
    gap: clamp(50px, 9vw, 120px);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: calc(var(--header-height) + 38px);
}

.faq-heading > p {
    margin-top: 24px;
}

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

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

.faq-list summary {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 820;
    letter-spacing: -0.02em;
}

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

.faq-list summary span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--blue-600);
    transition: transform 160ms ease;
}

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

.faq-list details p {
    max-width: 760px;
    margin: -4px 52px 26px 0;
    color: var(--muted);
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(86px, 10vw, 142px) 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(38, 136, 255, 0.2), transparent 38%),
        var(--navy-950);
}

.final-glow {
    position: absolute;
    width: 640px;
    height: 280px;
    left: 50%;
    bottom: -210px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(20, 110, 245, 0.34);
    filter: blur(70px);
}

.final-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.final-cta-inner .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    max-width: 900px;
    margin-inline: auto;
}

.final-cta p:not(.eyebrow) {
    max-width: 620px;
    margin: 26px auto 0;
    color: #a9bdd2;
    font-size: 17px;
}

.final-actions {
    justify-content: center;
}

.site-footer {
    padding: 72px 0 26px;
    background: #030c17;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(160px, .5fr) minmax(220px, .6fr);
    gap: 50px;
}

.brand-footer {
    width: max-content;
}

.footer-brand p {
    max-width: 420px;
    margin: 22px 0 0;
    color: #7991aa;
    font-size: 13px;
}

.footer-nav,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-nav a,
.footer-contact a {
    width: max-content;
    color: #a9bdd2;
    font-size: 13px;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-label {
    margin: 0 0 8px;
    color: #607a95;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: #5f7891;
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.content-page {
    min-height: 70vh;
    padding: calc(var(--header-height) + 80px) 0 90px;
    background: var(--surface);
}

.content-page + .site-footer {
    margin-top: 0;
}

.content-shell {
    max-width: 860px;
}

.prose {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.prose h1 {
    margin-top: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.prose h2,
.prose h3 {
    letter-spacing: -0.035em;
}

.prose a {
    color: var(--blue-600);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
        gap: 44px;
    }

    .value-grid,
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-card:nth-child(odd) {
        border-left: 1px solid var(--line);
    }

    .location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    :root {
        --header-height: 72px;
    }

    .site-header {
        background: rgba(4, 16, 31, 0.86);
        border-color: var(--line-dark);
        backdrop-filter: blur(16px);
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 20px 24px;
        transform: translateY(-120%);
        visibility: hidden;
        opacity: 0;
        border-bottom: 1px solid var(--line-dark);
        background: rgba(4, 16, 31, 0.98);
        transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .site-nav > a:not(.button) {
        padding: 15px 2px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        font-size: 16px;
    }

    .nav-cta {
        margin-top: 16px;
    }

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

    .hero-grid,
    .code-grid,
    .safety-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-self: stretch;
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .hero-image-shell {
        aspect-ratio: 1 / 1;
        min-height: 460px;
    }

    .hero-image-shell img {
        object-position: center 42%;
    }

    .floating-card-top {
        left: 18px;
    }

    .floating-card-bottom {
        right: 18px;
    }

    .split-heading,
    .locations-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .code-copy {
        max-width: 720px;
    }

    .faq-heading {
        position: static;
    }

    .visual-panel {
        min-height: 600px;
    }

    .visual-overlay {
        background: linear-gradient(90deg, rgba(4,16,31,.9), rgba(4,16,31,.45));
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section {
        padding: 76px 0;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .hero h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-stats div {
        grid-template-columns: 140px 1fr;
        align-items: baseline;
    }

    .hero-image-shell {
        aspect-ratio: .86;
        border-radius: 28px;
    }

    .floating-card {
        min-width: 0;
    }

    .floating-card-top {
        top: 16px;
        left: 14px;
    }

    .floating-card-bottom {
        right: 14px;
        bottom: 16px;
    }

    .value-grid,
    .steps-grid,
    .location-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .value-card,
    .value-card:first-child,
    .value-card:nth-child(odd) {
        min-height: 0;
        border-left: 1px solid var(--line);
    }

    .value-card h2 {
        margin-top: 34px;
    }

    .step-card {
        min-height: 0;
    }

    .step-icon {
        margin-top: 38px;
    }

    .alt-flow-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .alt-flow-card .button {
        width: 100%;
    }

    .code-card {
        grid-template-columns: 84px 1fr;
        gap: 18px;
        padding: 22px;
    }

    .qr-demo,
    .barcode-demo {
        width: 76px;
    }

    .location-address {
        min-height: 0;
    }

    .location-actions {
        display: grid;
        justify-content: start;
    }

    .benefit-grid article {
        min-height: 0;
    }

    .benefit-grid h3 {
        margin-top: 38px;
    }

    .visual-panel {
        min-height: 650px;
        border-radius: 28px;
    }

    .visual-panel img {
        object-position: 58% center;
    }

    .visual-overlay {
        background: linear-gradient(0deg, rgba(4,16,31,.96) 0%, rgba(4,16,31,.72) 55%, rgba(4,16,31,.28) 100%);
    }

    .visual-copy {
        position: absolute;
        inset: auto 0 0;
        padding: 34px 26px;
    }

    .visual-copy h2 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .safety-list > div {
        grid-template-columns: 34px 1fr;
        gap: 14px;
    }

    .faq-list summary {
        font-size: 16px;
    }

    .faq-list details p {
        margin-right: 0;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 460px) {
    .brand-copy span {
        font-size: 9px;
    }

    .hero {
        padding-bottom: 64px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 14vw, 3.65rem);
    }

    .hero-image-shell {
        aspect-ratio: .76;
    }

    .floating-card-bottom {
        display: none;
    }

    .section-heading h2,
    .code-copy h2,
    .centered-heading h2,
    .safety-grid h2,
    .faq-heading h2,
    .final-cta h2 {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .code-card {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 20px;
    }

    .location-meta div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

@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;
    }
}
