:root {
    --navy-950: #04101c;
    --navy-900: #07111f;
    --navy-850: #091a2c;
    --navy-800: #0b223a;
    --navy-700: #123d67;
    --blue-500: #2ea9ff;
    --blue-400: #5cc4ff;
    --blue-300: #8fd7ff;
    --ice-100: #f4fbff;
    --ice-200: #d7e7f7;
    --chrome-400: #9aaec4;
    --chrome-300: #c7d4e5;
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(143, 215, 255, 0.28);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.36);
    --container: min(1400px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ice-200);
    background:
        radial-gradient(circle at top right, rgba(46, 169, 255, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(18, 61, 103, 0.22), transparent 30%),
        linear-gradient(180deg, #04101c 0%, #06111d 28%, #07111f 64%, #040c16 100%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
    border-radius: 999px;
    filter: blur(90px);
}

body::before {
    top: 12vh;
    right: -140px;
    width: 300px;
    height: 300px;
    background: rgba(46, 169, 255, 0.16);
}

body::after {
    bottom: 16vh;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(18, 61, 103, 0.2);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: rgba(92, 196, 255, 0.24);
    color: var(--ice-100);
}

[x-cloak] {
    display: none !important;
}

.site-shell {
    position: relative;
    overflow: clip;
}

.container-wide {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    z-index: 120;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ice-100);
    color: var(--navy-950);
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--blue-300);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;
    padding-top: 12px;
    transition: transform 0.3s ease;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: rgba(4, 16, 28, 0.56);
    backdrop-filter: blur(18px);
    transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled .header-bar {
    background: rgba(4, 16, 28, 0.86);
    border-color: rgba(143, 215, 255, 0.16);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

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

.brand-mark {
    flex: none;
    width: 52px;
    height: 52px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.brand-subtitle {
    margin-top: 3px;
    color: rgba(207, 221, 234, 0.78);
    font-size: 0.78rem;
    line-height: 1.4;
}

.desktop-nav {
    display: none;
}

.nav-link {
    position: relative;
    color: var(--chrome-400);
    font-size: 0.96rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(143, 215, 255, 0.9) 50%, transparent 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--ice-100);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

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

.header-cta {
    display: none;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 74, 121, 0.72), rgba(46, 169, 255, 0.18));
    color: var(--ice-100);
    font-weight: 800;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    border-color: rgba(143, 215, 255, 0.48);
}

.mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: transparent;
}

.mobile-toggle span {
    width: 18px;
    height: 1.5px;
    background: var(--ice-100);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    padding: 16px;
    background: rgba(2, 8, 15, 0.6);
    backdrop-filter: blur(14px);
    z-index: 80;
}

.mobile-nav-panel {
    width: min(420px, 100%);
    margin-top: 8px;
    padding: 22px;
    border: 1px solid var(--line-strong);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.86));
    box-shadow: var(--shadow-lg);
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    color: var(--blue-300);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
}

.mobile-nav-link,
.mobile-nav-cta {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

.mobile-nav-link.is-active {
    color: var(--blue-300);
}

.mobile-nav-cta {
    border-bottom: none;
    color: var(--blue-300);
    font-weight: 700;
}

main {
    padding-top: 94px;
}

.hero-section,
.page-hero,
.section-stream,
.metrics-band,
.journey-section,
.app-section,
.faq-section,
.contact-section,
.cta-section,
.site-footer {
    position: relative;
}

.hero-section {
    padding: 26px 0 18px;
}

.hero-grid {
    align-items: stretch;
}

.hero-copy {
    padding-right: 0;
}

.hero-copy h1 {
    margin: 0 0 20px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(2.55rem, 10vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.96;
}

.hero-lead {
    max-width: 58ch;
    margin: 0 0 14px;
    color: var(--ice-200);
    font-size: clamp(1.06rem, 2.4vw, 1.34rem);
    line-height: 1.62;
}

.hero-supporting {
    max-width: 56ch;
    margin: 0 0 28px;
    color: var(--chrome-400);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 26px;
}

.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button-primary {
    border: 1px solid rgba(167, 227, 255, 0.6);
    background: linear-gradient(135deg, #82d6ff 0%, #2ea9ff 58%, #1c88db 100%);
    color: var(--navy-950);
    box-shadow: 0 18px 32px rgba(46, 169, 255, 0.28);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 38px rgba(46, 169, 255, 0.32);
}

.button-primary:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.button-secondary {
    border: 1px solid var(--line-strong);
    background: rgba(7, 17, 31, 0.34);
    color: var(--ice-100);
}

.button-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(143, 215, 255, 0.52);
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.store-badges.vertical {
    flex-direction: column;
    align-items: flex-start;
}

.store-badges.is-compact img {
    max-height: 52px;
}

.store-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22));
    transition: transform 0.25s ease;
}

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

.store-link img {
    width: auto;
    height: auto;
    max-height: 56px;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-top: 26px;
    margin-top: 30px;
    border-top: 1px solid var(--line);
}

.hero-visual-top {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--chrome-400);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-visual-top span {
    position: relative;
    padding-right: 18px;
}

.hero-visual-top span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 1px;
    height: 12px;
    background: var(--line);
    transform: translateY(-50%);
}

.hero-device {
    position: relative;
}

.hero-device::before {
    content: "";
    position: absolute;
    inset: 18px 4% 36px 16%;
    background: radial-gradient(circle at top, rgba(92, 196, 255, 0.26), transparent 60%);
    filter: blur(18px);
}

.hero-device-screen {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    padding: 24px 24px 16px 28px;
    border: 1px solid rgba(143, 215, 255, 0.22);
    border-radius: 28px 28px 110px 28px;
    background: linear-gradient(180deg, rgba(8, 21, 37, 0.9), rgba(4, 14, 25, 0.94));
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-device-screen::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(143, 215, 255, 0.65) 100%);
}

.hero-device-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--ice-100);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 8px rgba(46, 169, 255, 0.14);
}

.hero-route-line {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.route-index {
    min-width: 2.4ch;
    color: rgba(143, 215, 255, 0.4);
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    line-height: 1;
}

.hero-route-line strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: 1.04rem;
    line-height: 1.1;
}

.hero-route-line p {
    margin: 0;
    color: var(--chrome-400);
    line-height: 1.65;
}

.hero-visual-bottom {
    max-width: 420px;
    margin-left: auto;
}

.display-number {
    display: block;
    margin-bottom: 12px;
    color: rgba(143, 215, 255, 0.14);
    font-family: "Sora", sans-serif;
    font-size: clamp(4.8rem, 15vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.hero-visual-bottom p {
    margin: 0;
    color: var(--chrome-300);
    line-height: 1.78;
}

.section-stream {
    padding: 42px 0 16px;
}

.section-stream.is-tighter {
    padding-top: 26px;
}

.section-intro {
    max-width: 760px;
    margin-bottom: 24px;
}

.section-intro h2 {
    margin: 0 0 12px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.9rem, 5.5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.section-intro p {
    margin: 0;
    color: var(--chrome-400);
    font-size: 1.04rem;
    line-height: 1.78;
}

.value-stream,
.journey-stream,
.line-list,
.needs-stream,
.doubt-stream,
.contact-stream,
.legal-stream,
.faq-list {
    border-top: 1px solid var(--line);
}

.value-row {
    display: grid;
    gap: 10px;
    padding: 22px 0 28px;
    border-bottom: 1px solid var(--line);
}

.value-number {
    color: rgba(143, 215, 255, 0.28);
    font-family: "Sora", sans-serif;
    font-size: clamp(2.3rem, 7vw, 3.8rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.value-row h3 {
    margin: 0;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.24rem, 4vw, 2rem);
    line-height: 1.14;
}

.value-row p {
    margin: 0;
    max-width: 70ch;
    color: var(--chrome-400);
    line-height: 1.8;
}

.signal-band {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.signal-track {
    display: flex;
    gap: 34px;
    min-width: max-content;
    padding: 0 16px;
    color: var(--blue-300);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: signal-move 24s linear infinite;
}

.signal-track span {
    position: relative;
    padding-right: 34px;
}

.signal-track span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 1px;
    background: rgba(143, 215, 255, 0.32);
    transform: translateY(-50%);
}

@keyframes signal-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}

.metrics-band {
    padding: 36px 0;
}

.metrics-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.metric-line {
    padding: 20px 0 22px;
    border-bottom: 1px solid var(--line);
}

.metric-line:last-child {
    border-bottom: none;
}

.metric-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-300);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.metric-line strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.3rem, 4vw, 2.2rem);
    line-height: 1.12;
}

.metric-line p {
    margin: 0;
    max-width: 34ch;
    color: var(--chrome-400);
    line-height: 1.78;
}

.journey-section {
    padding: 38px 0 24px;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: flex-start;
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--line);
}

.journey-number {
    min-width: 2.5ch;
    color: rgba(143, 215, 255, 0.24);
    font-family: "Sora", sans-serif;
    font-size: clamp(2.6rem, 7vw, 4.5rem);
    line-height: 1;
}

.journey-copy h3 {
    margin: 0 0 10px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 3.6vw, 2rem);
    line-height: 1.14;
}

.journey-copy p {
    margin: 0;
    max-width: 66ch;
    color: var(--chrome-400);
    line-height: 1.8;
}

.app-section {
    padding: 38px 0;
}

.app-grid {
    align-items: start;
}

.line-list-row {
    display: grid;
    gap: 10px;
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--line);
}

.line-list-row strong {
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: 1.08rem;
}

.line-list-row span {
    max-width: 58ch;
    color: var(--chrome-400);
    line-height: 1.74;
}

.app-side-visual {
    padding-top: 24px;
    margin-top: 12px;
    border-top: 1px solid var(--line);
}

.app-side-copy {
    margin: 0 0 18px;
    max-width: 34ch;
    color: var(--ice-200);
    line-height: 1.8;
}

.cta-section {
    padding: 24px 0 52px;
}

.cta-band,
.footer-top-band,
.form-stage {
    position: relative;
    padding: clamp(24px, 4vw, 40px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-band::before,
.footer-top-band::before,
.form-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 34, 58, 0.4) 0%, rgba(46, 169, 255, 0.08) 50%, rgba(4, 16, 28, 0) 100%);
    pointer-events: none;
}

.cta-band h2,
.footer-top-band h2,
.form-stage h2 {
    position: relative;
    margin: 0 0 12px;
    max-width: 20ch;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.9rem, 5vw, 3.4rem);
    line-height: 1.02;
}

.cta-band p:not(.eyebrow),
.footer-top-band p:not(.eyebrow),
.form-stage > p:not(.eyebrow) {
    position: relative;
    margin: 0 0 22px;
    max-width: 56ch;
    color: var(--chrome-400);
    line-height: 1.78;
}

.page-hero {
    padding: 34px 0 14px;
}

.page-hero-copy {
    max-width: 840px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.page-hero-copy h1 {
    margin: 0 0 12px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(2.2rem, 8vw, 4.6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.page-hero-copy p:last-child {
    margin: 0;
    color: var(--chrome-400);
    font-size: 1.06rem;
    line-height: 1.8;
}

.needs-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--line);
}

.needs-row span {
    min-width: 2.4ch;
    color: rgba(143, 215, 255, 0.38);
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.needs-row p {
    margin: 0;
    color: var(--ice-200);
    line-height: 1.76;
}

.doubt-row {
    padding: 22px 0 26px;
    border-bottom: 1px solid var(--line);
}

.doubt-row h3 {
    margin: 0 0 10px;
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.15rem, 3.5vw, 1.9rem);
    line-height: 1.2;
}

.doubt-row p {
    margin: 0;
    max-width: 62ch;
    color: var(--chrome-400);
    line-height: 1.8;
}

.faq-section {
    padding: 18px 0 40px;
}

.faq-group + .faq-group {
    margin-top: 38px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 20px 0;
    list-style: none;
    cursor: pointer;
}

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

.faq-number {
    min-width: 2.4ch;
    color: rgba(143, 215, 255, 0.36);
    font-family: "Sora", sans-serif;
    font-size: 1.4rem;
    line-height: 1;
}

.faq-question {
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.04rem, 3.3vw, 1.44rem);
    line-height: 1.28;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 1.5px;
    background: var(--blue-300);
    transform: translate(-50%, -50%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-icon.is-open::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
    padding: 0 0 22px;
}

.faq-answer p {
    margin: 0;
    max-width: 72ch;
    color: var(--chrome-400);
    line-height: 1.82;
}

.contact-section {
    padding: 18px 0 60px;
}

.contact-grid {
    align-items: start;
}

.contact-row,
.legal-row {
    display: grid;
    gap: 8px;
    padding: 18px 0 20px;
    border-bottom: 1px solid var(--line);
}

.contact-label,
.legal-row span {
    color: var(--blue-300);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.contact-row a,
.contact-row strong,
.legal-row strong {
    color: var(--ice-100);
    font-family: "Sora", sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.32rem);
    line-height: 1.28;
}

.contact-row p {
    margin: 0;
    color: var(--chrome-400);
    line-height: 1.8;
}

.legal-stream {
    margin-top: 24px;
}

.form-flash {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 0 18px;
    margin: 0 0 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.form-flash p {
    margin: 0;
    line-height: 1.7;
}

.form-flash.is-success {
    color: #cff4ea;
}

.form-flash.is-error {
    color: #ffe2ba;
}

.flash-icon {
    flex: none;
    margin-top: 2px;
}

.lead-form {
    position: relative;
    margin-top: 22px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-grid {
    margin-bottom: 24px;
}

.form-field {
    position: relative;
    padding-top: 10px;
}

.form-field::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(143, 215, 255, 0.2) 0%, rgba(143, 215, 255, 0.06) 100%);
}

.form-field.is-textarea {
    padding-top: 14px;
}

.form-label {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-300);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    min-height: 56px;
    padding: 0 44px 14px 0;
    border: none;
    border-bottom: 1px solid rgba(143, 215, 255, 0.28);
    border-radius: 0;
    background: transparent;
    color: var(--ice-100);
    font-size: 1.04rem;
    line-height: 1.45;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.form-control::placeholder {
    color: rgba(207, 221, 234, 0.56);
}

.form-control:hover {
    border-bottom-color: rgba(143, 215, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--blue-300);
    box-shadow: inset 0 -1px 0 var(--blue-300), 0 10px 24px rgba(46, 169, 255, 0.08);
    transform: translateY(-1px);
}

.form-select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #8fd7ff 50%),
        linear-gradient(135deg, #8fd7ff 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    color: var(--navy-950);
}

.form-textarea {
    min-height: 164px;
    padding-top: 2px;
    padding-right: 0;
    line-height: 1.74;
    resize: vertical;
}

.consent-line {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 0 0 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(143, 215, 255, 0.14);
    color: var(--chrome-400);
    line-height: 1.7;
}

.consent-line input {
    flex: none;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--blue-500);
}

.consent-copy {
    display: block;
    max-width: 68ch;
}

.consent-line a {
    color: var(--blue-300);
    text-decoration: underline;
    text-decoration-color: rgba(143, 215, 255, 0.4);
    text-underline-offset: 3px;
}

.form-submit-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(143, 215, 255, 0.14);
}

.form-submit-button {
    min-width: 240px;
}

.form-note {
    margin: 0;
    max-width: 42ch;
    color: var(--chrome-400);
    line-height: 1.72;
}

.form-note a {
    color: var(--blue-300);
}

.site-footer {
    padding: 8px 0 34px;
}

.footer-top-band {
    margin-bottom: 28px;
}

.footer-main {
    display: grid;
    gap: 24px;
}

.brand-footer {
    margin-bottom: 16px;
}

.footer-note {
    margin: 0;
    max-width: 38ch;
    color: var(--chrome-400);
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.footer-nav a {
    color: var(--ice-200);
    font-weight: 700;
}

.footer-legal p {
    margin: 0 0 10px;
    color: var(--chrome-400);
    line-height: 1.72;
}

.footer-legal a {
    color: var(--blue-300);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: rgba(199, 212, 229, 0.74);
    font-size: 0.94rem;
    line-height: 1.72;
}

.footer-bottom p {
    margin: 0;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue-300);
    outline-offset: 4px;
}

@media (min-width: 768px) {
    :root {
        --container: min(1400px, calc(100vw - 48px));
    }

    .site-header {
        padding-top: 16px;
    }

    .header-bar {
        gap: 18px;
        padding: 14px 18px;
        border-radius: 999px;
    }

    main {
        padding-top: 112px;
    }

    .hero-copy {
        padding-right: 40px;
    }

    .value-row {
        grid-template-columns: 120px minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 18px 24px;
        align-items: start;
    }

    .value-row h3 {
        grid-column: 2;
    }

    .value-row p {
        grid-column: 3;
    }

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        border-bottom: 1px solid var(--line);
    }

    .metric-line {
        padding: 22px 24px 24px 0;
        border-bottom: none;
    }

    .metric-line:not(:last-child) {
        border-right: 1px solid var(--line);
    }

    .line-list-row,
    .contact-row,
    .legal-row {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 22px;
        align-items: start;
    }

    .form-grid {
        margin-bottom: 30px;
    }

    .form-submit-line {
        align-items: center;
    }

    .faq-answer {
        padding-left: 62px;
    }

    .footer-main {
        grid-template-columns: 1.3fr 0.9fr 1fr;
        align-items: start;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    :root {
        --container: min(1400px, calc(100vw - 72px));
    }

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

    .header-cta {
        display: inline-flex;
    }

    .mobile-toggle {
        display: none;
    }

    main {
        padding-top: 126px;
    }

    .hero-section {
        padding-top: 46px;
    }

    .hero-visual {
        height: 100%;
        margin-top: 0;
        padding-top: 0;
        padding-left: 36px;
        border-top: none;
        border-left: 1px solid var(--line);
    }

    .app-side-visual {
        margin-top: 0;
        padding-top: 0;
        padding-left: 34px;
        border-top: none;
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 1023.98px) {
    .header-cta {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .brand-subtitle {
        display: none;
    }

    .signal-track {
        animation-duration: 18s;
    }

    .form-submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1440px) {
    :root {
        --container: min(1440px, calc(100vw - 96px));
    }

    .hero-copy h1 {
        max-width: 11ch;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
