:root {
    --bg: #eef4fb;
    --bg-soft: #ffffff;
    --surface: rgba(255, 255, 255, 0.68);
    --surface-raised: rgba(255, 255, 255, 0.78);
    --surface-muted: rgba(239, 246, 252, 0.74);
    --glass: rgba(255, 255, 255, 0.58);
    --glass-strong: rgba(255, 255, 255, 0.78);
    --glass-dark: rgba(13, 22, 32, 0.62);
    --ink: #111827;
    --ink-soft: #445063;
    --ink-faint: #768196;
    --line: rgba(255, 255, 255, 0.58);
    --line-strong: rgba(135, 153, 176, 0.36);
    --accent: #0f766e;
    --accent-deep: #0b5f59;
    --accent-soft: #d9f4ef;
    --signal: #f59e0b;
    --signal-soft: #fff4d6;
    --danger: #dc2626;
    --blue: #2563eb;
    --violet: #7c3aed;
    --shadow-sm: 0 10px 24px rgba(17, 24, 39, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    --shadow-md: 0 22px 54px rgba(17, 24, 39, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    --shadow-lg: 0 34px 80px rgba(17, 24, 39, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.76);
    --radius-sm: 18px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --radius-pill: 999px;
    --container: 1180px;
    --header-height: 76px;
    --font-sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background:
        linear-gradient(90deg, rgba(191, 207, 224, 0.24) 1px, transparent 1px),
        linear-gradient(180deg, rgba(191, 207, 224, 0.22) 1px, transparent 1px),
        radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.96) 0%, rgba(244, 249, 253, 0.82) 42%, rgba(229, 240, 250, 0.96) 100%);
    background-size: 44px 44px, 44px 44px, auto;
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

button {
    color: inherit;
}

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

.page-shell {
    overflow: clip;
    max-width: 100%;
}

.container,
.nav-container {
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.section-muted {
    background: rgba(255, 255, 255, 0.34);
    border-block: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(150%);
}

.eyebrow,
.story-eyebrow,
.fact-kicker,
.stage-label,
.step-number {
    color: var(--accent-deep);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 0 0 6px rgba(15, 118, 110, 0.11);
}

.section-title {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.06;
    text-wrap: balance;
}

.section-copy {
    max-width: 620px;
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.75;
}

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

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
    gap: 40px;
    align-items: end;
}

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

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

.section-heading-center .section-title,
.section-heading-center .section-copy {
    margin-inline: auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--header-height);
    background: rgba(252, 254, 255, 0.54);
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(26px) saturate(170%);
    transition: box-shadow var(--transition), background var(--transition);
}

.nav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: env(safe-area-inset-top);
    background: inherit;
    border-bottom: inherit;
    backdrop-filter: inherit;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-lockup {
    display: flex;
    flex-direction: column;
}

.logo-lockup strong {
    font-size: 0.98rem;
    font-weight: 800;
}

.logo-lockup span {
    color: var(--ink-faint);
    font-size: 0.82rem;
}

.nav-actions,
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-actions {
    gap: 14px;
}

.nav-menu {
    gap: 2px;
    list-style: none;
}

.nav-item-mobile {
    display: none;
}

.nav-link,
.nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.nav-link {
    padding: 0 13px;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-link:hover,
.nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

.nav-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08)),
        rgba(15, 118, 110, 0.9);
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(16px) saturate(160%);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
        rgba(11, 95, 89, 0.94);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-pill);
    background: var(--glass-strong);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(160%);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span:first-child {
    transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.nav-toggle span:last-child {
    transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle.active span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
    padding: 70px 0 42px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.86fr);
    gap: 52px;
    align-items: center;
}

.hero-title {
    max-width: 780px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 1.02;
    text-wrap: balance;
}

.hero-description {
    max-width: 660px;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.72;
}

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

.btn {
    position: relative;
    overflow: hidden;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.98rem;
    font-weight: 800;
    isolation: isolate;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(18px) saturate(170%);
}

.btn::before,
.nav-cta::before {
    content: "";
    position: absolute;
    inset: 1px 1px auto;
    height: 45%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent);
    pointer-events: none;
    z-index: -1;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn-primary {
    border-color: rgba(255, 255, 255, 0.52);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)),
        rgba(15, 118, 110, 0.92);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.07)),
        rgba(11, 95, 89, 0.96);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.76);
}

.btn-large {
    min-height: 56px;
    padding-inline: 26px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.hero-facts,
.proof-grid,
.steps-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-facts {
    margin-top: 36px;
}

.fact-card,
.proof-item,
.step-card,
.testimonial-card,
.faq-item,
.coverage-list li,
.feature-tab {
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.45)),
        rgba(255, 255, 255, 0.46);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(22px) saturate(155%);
}

.fact-card {
    padding: 18px;
}

.fact-kicker {
    display: block;
    margin-bottom: 8px;
}

.fact-card strong,
.proof-value,
.step-title,
.map-caption strong,
.download-point {
    font-weight: 800;
}

.fact-card strong {
    display: block;
    font-size: 1rem;
    line-height: 1.35;
}

.fact-card p,
.stage-note p,
.stage-card p,
.proof-label,
.coverage-list span,
.map-caption p,
.step-description,
.testimonial-meta span,
.faq-answer p,
.download-description,
.footer-copy,
.footer-links a {
    color: var(--ink-soft);
}

.fact-card p {
    margin-top: 8px;
    font-size: 0.93rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
}

.device-stage {
    position: relative;
    min-height: 690px;
    display: grid;
    place-items: center;
    padding: 28px 0;
}

.iphone-shell {
    position: relative;
    isolation: isolate;
    padding: 7px;
    border-radius: 44px;
    background: linear-gradient(180deg, #3f4652 0%, #151a22 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -10px 22px rgba(0, 0, 0, 0.32),
        0 24px 60px rgba(17, 24, 39, 0.28);
}

.phone-frame {
    z-index: 1;
    width: min(330px, 100%);
    margin: 0 auto;
}

.phone-screen-bezel {
    position: relative;
    padding: 4px;
    border-radius: 38px;
    background: #06080d;
}

.phone-screen {
    overflow: hidden;
    border-radius: 34px;
    background: #10131a;
}

.device-image,
.download-device img {
    width: 100%;
    height: auto;
    border-radius: 34px;
}

.stage-note,
.stage-card {
    position: absolute;
    z-index: 3;
    width: min(230px, 44%);
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
        rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(24px) saturate(170%);
}

.stage-note-top {
    top: 22px;
    right: 8px;
}

.stage-card-left {
    left: 4px;
    bottom: 96px;
}

.stage-card-right {
    right: 0;
    bottom: 22px;
}

.stage-label {
    display: block;
    margin-bottom: 8px;
}

.stage-note strong,
.stage-card strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.stage-note p,
.stage-card p {
    margin-top: 7px;
    font-size: 0.9rem;
    line-height: 1.55;
}

.proof-strip {
    padding: 28px 0 14px;
}

.proof-grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(13, 22, 32, 0.94), rgba(17, 32, 43, 0.9)),
        #111827;
    box-shadow: 0 26px 62px rgba(17, 24, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(135%);
}

.proof-item {
    position: relative;
    min-height: 172px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 26px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 62%),
        rgba(255, 255, 255, 0.03);
    box-shadow: none;
    backdrop-filter: none;
}

.proof-item:last-child {
    border-right: 0;
}

.proof-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
        rgba(255, 255, 255, 0.14);
    color: #74d6c9;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.proof-icon svg {
    width: 23px;
    height: 23px;
}

.proof-value {
    display: block;
    color: #ffffff;
    font-size: 1.12rem;
    letter-spacing: 0;
}

.proof-label {
    display: block;
    max-width: 310px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.58;
}

.feature-slider {
    display: grid;
    gap: 16px;
}

.feature-slider-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.feature-slider-arrow {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(160%);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), opacity var(--transition);
}

.feature-slider-arrow:hover,
.feature-slider-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.78);
    transform: translateY(-1px);
}

.feature-slider-arrow[disabled] {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.feature-slider-arrow span {
    font-size: 1.15rem;
}

.feature-slider-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.feature-slider-track {
    display: flex;
    transition: transform 380ms ease;
    will-change: transform;
}

.feature-slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 24px;
    align-items: stretch;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.42);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(26px) saturate(160%);
}

.feature-slide-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 620px;
}

.story-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
}

.story-title {
    font-size: clamp(1.55rem, 2.6vw, 2.7rem);
    font-weight: 800;
    line-height: 1.14;
    text-wrap: balance;
}

.story-description {
    margin-top: 16px;
    color: var(--ink-soft);
    line-height: 1.72;
}

.story-list {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    list-style: none;
}

.story-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
}

.story-list li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--signal);
    box-shadow: 0 0 0 5px rgba(245, 158, 11, 0.12);
}

.feature-slide-visual {
    display: grid;
    place-items: center;
    min-height: 440px;
    padding: 24px;
}

.feature-device {
    width: min(246px, 100%);
    border-radius: 38px;
}

.feature-device .phone-screen-bezel {
    border-radius: 34px;
}

.feature-device .phone-screen,
.feature-device .device-image {
    border-radius: 30px;
}

.feature-slider-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.feature-tab {
    display: grid;
    gap: 5px;
    padding: 16px;
    color: var(--ink-soft);
    text-align: left;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.feature-tab:hover,
.feature-tab:focus-visible,
.feature-tab.is-active {
    border-color: rgba(15, 118, 110, 0.34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
        rgba(217, 244, 239, 0.42);
    transform: translateY(-1px);
}

.feature-tab-title {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
}

.feature-tab-copy {
    font-size: 0.92rem;
}

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

.results-tool-card {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 360px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
        rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(24px) saturate(160%);
}

.results-tool-card-accent {
    background:
        linear-gradient(180deg, rgba(217, 244, 239, 0.72), rgba(255, 255, 255, 0.5)),
        rgba(255, 255, 255, 0.44);
}

.results-tool-kicker {
    color: var(--accent-deep);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.results-tool-card h3 {
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.14;
}

.results-tool-card p {
    color: var(--ink-soft);
    line-height: 1.68;
}

.results-tool-pills,
.number-stat-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.results-tool-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.56);
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.number-stat-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.number-stat-preview div {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-sm);
}

.number-stat-preview strong {
    color: var(--ink);
    font-size: 0.86rem;
}

.number-stat-preview span {
    color: var(--accent-deep);
    font-family: var(--font-mono);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

.coverage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.08fr);
    gap: 42px;
    align-items: center;
}

.coverage-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
    list-style: none;
}

.coverage-list li {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px;
}

.coverage-list strong {
    color: var(--ink);
    font-size: 0.98rem;
}

.coverage-detail {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.coverage-detail p {
    line-height: 1.62;
}

.coverage-compact-text {
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.52;
}

.coverage-list span {
    line-height: 1.62;
}

.country-flag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.country-flag-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.6);
    color: var(--ink-soft);
    line-height: 1.2;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(150%);
}

.flag-emoji {
    display: inline-block;
    flex: 0 0 auto;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1.05rem;
    line-height: 1;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.coverage-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.54);
    color: var(--ink-soft);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(150%);
}

.map-panel {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
        rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(24px) saturate(160%);
}

.map-surface {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: var(--radius-md);
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 99, 235, 0.07) 1px, transparent 1px),
        rgba(248, 251, 255, 0.54);
    background-size: 34px 34px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(16px) saturate(150%);
}

.map-svg {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.coverage-surface {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-content: start;
    padding: 18px;
}

.coverage-stat {
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow-sm);
}

.coverage-stat strong {
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.coverage-stat span {
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.35;
}

.coverage-region-list {
    display: grid;
    grid-column: 1 / -1;
    margin-top: 8px;
    border-top: 1px solid rgba(15, 23, 42, 0.09);
}

.coverage-region-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.coverage-region-row strong {
    color: var(--ink);
}

.coverage-region-row span {
    color: var(--ink-soft);
    line-height: 1.56;
}

.map-point {
    position: absolute;
    z-index: 2;
    width: 12px;
    height: 12px;
    background: var(--danger);
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: 0 0 0 7px rgba(220, 38, 38, 0.14), 0 8px 18px rgba(17, 24, 39, 0.14);
}

.map-point:nth-of-type(2) {
    background: var(--signal);
    box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.16);
}

.map-point:nth-of-type(3) {
    background: var(--blue);
    box-shadow: 0 0 0 7px rgba(37, 99, 235, 0.14);
}

.map-point:nth-of-type(4) {
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(15, 118, 110, 0.15);
}

.map-point:nth-of-type(5) {
    background: var(--violet);
    box-shadow: 0 0 0 7px rgba(124, 58, 237, 0.14);
}

.map-point:nth-of-type(6) {
    background: #0891b2;
    box-shadow: 0 0 0 7px rgba(8, 145, 178, 0.14);
}

.map-point span {
    position: absolute;
    top: 17px;
    left: 50%;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.68);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
    transform: translateX(-50%);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px) saturate(150%);
}

.map-caption {
    display: grid;
    gap: 6px;
    margin-top: 16px;
}

.map-caption p {
    line-height: 1.68;
}

.step-card {
    padding: 24px;
}

.step-number {
    display: block;
    margin-bottom: 18px;
    color: var(--ink-faint);
}

.step-title {
    font-size: 1.25rem;
    line-height: 1.22;
}

.step-description {
    margin-top: 12px;
    line-height: 1.68;
}

.testimonial-card {
    min-height: 250px;
    display: grid;
    align-content: space-between;
    gap: 24px;
    padding: 24px;
}

.testimonial-quote {
    font-size: 1.08rem;
    line-height: 1.65;
}

.testimonial-meta {
    display: grid;
    gap: 4px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.faq-intro .section-copy {
    margin-top: 18px;
}

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

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-symbol {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.54);
    color: var(--accent);
    font-size: 1.35rem;
    line-height: 1;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    line-height: 1.68;
}

.faq-item.active .faq-answer {
    max-height: 240px;
}

.faq-item.active .faq-symbol {
    transform: rotate(45deg);
}

.section-download {
    padding-top: 104px;
    padding-bottom: 110px;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.78fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.24) 48%),
        linear-gradient(315deg, rgba(15, 118, 110, 0.16), transparent 42%),
        rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(28px) saturate(165%);
}

.download-title {
    max-width: 720px;
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 800;
    line-height: 1.06;
    text-wrap: balance;
}

.download-description {
    max-width: 620px;
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.72;
}

.download-points {
    display: grid;
    gap: 10px;
    margin: 26px 0 28px;
}

.download-point {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
}

.download-point::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, 0.12);
}

.download-visual {
    display: grid;
    justify-items: center;
}

.download-device {
    width: min(310px, 100%);
}

.footer {
    padding: 0 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
    gap: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.66);
}

.footer-copy {
    max-width: 540px;
    margin-top: 16px;
    line-height: 1.68;
}

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

.footer-links h3 {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a {
    width: fit-content;
    display: inline-flex;
    position: relative;
    padding: 7px 0;
}

.footer-bottom a {
    width: fit-content;
    display: inline-flex;
    position: relative;
    color: inherit;
}

.footer-links a::after,
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 1px;
    background: currentColor;
    opacity: 0;
    transform: scaleX(0.82);
    transform-origin: left;
    transition: opacity var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--ink);
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.footer-bottom a:hover::after,
.footer-bottom a:focus-visible::after {
    opacity: 0.34;
    transform: scaleX(1);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.66);
    color: var(--ink-faint);
    font-size: 0.92rem;
}

.legal-hero {
    padding: 72px 0 36px;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding-bottom: 96px;
}

.legal-summary {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
        rgba(255, 255, 255, 0.44);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(22px) saturate(155%);
}

.legal-summary strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
}

.legal-summary p,
.legal-summary a {
    font-size: 0.94rem;
    line-height: 1.62;
}

.legal-summary a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--accent-deep);
    font-weight: 800;
}

.legal-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.54)),
        rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(24px) saturate(160%);
}

.legal-card h2 {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--ink);
    font-size: 1.22rem;
    line-height: 1.2;
}

.legal-card h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-card p,
.legal-card li {
    color: var(--ink-soft);
    line-height: 1.7;
}

.legal-card p,
.legal-card ul {
    margin-top: 12px;
}

.legal-card ul {
    padding-left: 22px;
}

.legal-card li + li {
    margin-top: 7px;
}

.legal-card a {
    color: var(--accent-deep);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: rgba(15, 118, 110, 0.28);
    text-underline-offset: 3px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(15, 118, 110, 0.22);
    outline-offset: 4px;
}

@media (max-width: 1120px) {
    .hero-grid,
    .coverage-grid,
    .download-panel,
    .footer-grid,
    .faq-grid,
    .legal-layout,
    .section-heading-split {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }

    .hero-facts,
    .proof-grid,
    .results-tools-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-item:nth-child(2) {
        border-right: 0;
    }

    .proof-item:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .device-stage {
        min-height: auto;
        padding: 70px 0 150px;
    }

    .feature-slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav {
        height: calc(var(--header-height) + env(safe-area-inset-top));
        padding-top: env(safe-area-inset-top);
        background: #f8fbff;
        border-bottom-color: rgba(135, 153, 176, 0.22);
        backdrop-filter: none;
    }

    .nav.scrolled {
        background: #f8fbff;
    }

    .nav::before {
        display: none;
    }

    .nav-container {
        height: var(--header-height);
    }

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

    .section,
    .section-download {
        padding: 76px 0;
    }

    .hero {
        padding: 42px 0 34px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 8vw, 4rem);
        line-height: 1.06;
    }

    .section-title,
    .download-title {
        line-height: 1.1;
    }

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

    .section-heading-split {
        gap: 18px;
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--header-height) + 10px);
        left: 16px;
        right: 16px;
        z-index: 60;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        border: 1px solid rgba(135, 153, 176, 0.34);
        border-radius: var(--radius-lg);
        background: rgba(248, 251, 255, 0.94);
        box-shadow: 0 24px 70px rgba(17, 24, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(18px) saturate(135%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        justify-content: flex-start;
        min-height: 44px;
        padding: 0 14px;
        border: 1px solid rgba(135, 153, 176, 0.32);
        background: rgba(255, 255, 255, 0.96);
        color: var(--ink);
        box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .nav-item-mobile {
        display: block;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-facts,
    .proof-grid,
    .results-tools-grid,
    .steps-grid,
    .testimonials-grid,
    .footer-links,
    .feature-slider-nav {
        grid-template-columns: 1fr;
    }

    .proof-item,
    .proof-item:nth-child(3) {
        min-height: auto;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .proof-item:first-child {
        border-top: 0;
    }

    .device-stage {
        display: grid;
        gap: 12px;
        padding: 0;
    }

    .phone-frame,
    .download-device {
        width: min(315px, 100%);
    }

    .stage-note,
    .stage-card {
        position: static;
        width: 100%;
    }

    .feature-slider-shell {
        grid-template-columns: 1fr;
    }

    .feature-slider-arrow {
        display: none;
    }

    .feature-slide-visual {
        min-height: 330px;
        padding: 8px 0 0;
    }

    .map-surface,
    .map-svg {
        min-height: 360px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .section-title,
    .download-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
        line-height: 1.12;
    }

    .story-title,
    .results-tool-card h3,
    .legal-card h2 {
        line-height: 1.18;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(2.05rem, 9vw, 2.7rem);
        line-height: 1.08;
        text-wrap: balance;
        overflow-wrap: break-word;
    }

    .hero-description,
    .section-copy,
    .download-description {
        font-size: 0.98rem;
        line-height: 1.64;
    }

    .hero-copy,
    .hero-grid,
    .hero-visual,
    .device-stage,
    .stage-note,
    .stage-card,
    .hero-description,
    .hero-actions-row,
    .hero-facts,
    .fact-card,
    .proof-grid {
        max-width: calc(100vw - 32px);
        min-width: 0;
    }

    .stage-note,
    .stage-card {
        overflow-wrap: break-word;
    }

    .hero-actions-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .feature-slide,
    .download-panel,
    .map-panel,
    .legal-card {
        padding: 18px;
    }

    .feature-slide {
        gap: 18px;
    }

    .results-tool-card,
    .step-card,
    .testimonial-card {
        min-height: auto;
        padding: 20px;
    }

    .feature-tab {
        padding: 14px;
    }

    .coverage-list li {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 16px;
    }

    .coverage-surface {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 14px;
    }

    .coverage-region-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 13px 0;
    }

    .coverage-tags {
        margin-top: 18px;
    }

    .phone-frame,
    .download-device {
        width: min(100%, 292px);
    }

    .feature-device {
        width: min(210px, 100%);
    }

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

    .footer-links {
        gap: 14px;
    }

    .phone-screen-bezel {
        border-radius: 36px;
    }

    .phone-screen,
    .device-image,
    .download-device img {
        border-radius: 32px;
    }

    .map-point span {
        font-size: 0.7rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0ms !important;
        transition-delay: 0ms !important;
    }

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