:root {
    --font-heading: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    --accent: #05ae74;
    --accent-strong: #048d5f;
    --accent-soft: rgba(5, 174, 116, 0.14);
    --accent-soft-strong: rgba(5, 174, 116, 0.22);
    --bg-base: #f5f5f2;
    --bg-canvas: #fbfaf7;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.94);
    --surface-muted: rgba(255, 255, 255, 0.72);
    --bg-secondary: rgba(32, 33, 36, 0.04);
    --header-bg: rgba(20, 21, 23, 0.8);
    --panel-dark: #202124;
    --text-primary: #202124;
    --text-secondary: rgba(32, 33, 36, 0.74);
    --text-muted: rgba(32, 33, 36, 0.56);
    --border: rgba(32, 33, 36, 0.1);
    --border-strong: rgba(32, 33, 36, 0.16);
    --border-color: rgba(32, 33, 36, 0.1);
    --shadow-sm: 0 14px 30px rgba(18, 20, 22, 0.08);
    --shadow-md: 0 24px 54px rgba(18, 20, 22, 0.12);
    --shadow-lg: 0 34px 80px rgba(18, 20, 22, 0.16);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --content-width: 1240px;
    --screen-bg: linear-gradient(180deg, #202124 0%, #16181a 100%);
    --screen-panel: rgba(247, 255, 251, 0.08);
    --screen-panel-strong: rgba(247, 255, 251, 0.12);
    --screen-border: rgba(255, 255, 255, 0.08);
    --screen-ink: #f2fcf7;
    --screen-muted: rgba(242, 252, 247, 0.74);
    --screen-accent: #6ce0c0;
    --screen-accent-strong: #2eb18c;
    --device-shell: #16181a;
}

:root[data-theme="dark"] {
    --accent-soft: rgba(109, 230, 201, 0.12);
    --accent-soft-strong: rgba(109, 230, 201, 0.2);
    --bg-base: #0b1413;
    --bg-canvas: #101a18;
    --surface: rgba(18, 30, 28, 0.82);
    --surface-strong: rgba(17, 28, 26, 0.94);
    --surface-muted: rgba(17, 28, 26, 0.72);
    --bg-secondary: rgba(17, 28, 26, 0.72);
    --header-bg: rgba(9, 15, 14, 0.82);
    --panel-dark: #0d1715;
    --text-primary: #edf8f3;
    --text-secondary: #c1d2cb;
    --text-muted: #91a59d;
    --border: rgba(239, 248, 243, 0.1);
    --border-strong: rgba(239, 248, 243, 0.16);
    --border-color: rgba(239, 248, 243, 0.1);
    --shadow-sm: 0 16px 34px rgba(0, 0, 0, 0.26);
    --shadow-md: 0 24px 56px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.42);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --accent-soft: rgba(109, 230, 201, 0.12);
        --accent-soft-strong: rgba(109, 230, 201, 0.2);
        --bg-base: #0b1413;
        --bg-canvas: #101a18;
        --surface: rgba(18, 30, 28, 0.82);
        --surface-strong: rgba(17, 28, 26, 0.94);
        --surface-muted: rgba(17, 28, 26, 0.72);
        --bg-secondary: rgba(17, 28, 26, 0.72);
        --header-bg: rgba(9, 15, 14, 0.82);
        --panel-dark: #0d1715;
        --text-primary: #edf8f3;
        --text-secondary: #c1d2cb;
        --text-muted: #91a59d;
        --border: rgba(239, 248, 243, 0.1);
        --border-strong: rgba(239, 248, 243, 0.16);
        --border-color: rgba(239, 248, 243, 0.1);
        --shadow-sm: 0 16px 34px rgba(0, 0, 0, 0.26);
        --shadow-md: 0 24px 56px rgba(0, 0, 0, 0.34);
        --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.42);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(5, 174, 116, 0.12), transparent 34%),
        radial-gradient(circle at top right, rgba(32, 33, 36, 0.06), transparent 26%),
        linear-gradient(180deg, var(--bg-canvas) 0%, var(--bg-base) 100%);
    line-height: 1.6;
    position: relative;
}

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

body.page-home::before,
body.page-home::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
    filter: blur(36px);
    opacity: 0.7;
}

body.page-home::before {
    width: 340px;
    height: 340px;
    top: 90px;
    right: -80px;
    background: rgba(14, 154, 125, 0.14);
}

body.page-home::after {
    width: 280px;
    height: 280px;
    bottom: 80px;
    left: -80px;
    background: rgba(40, 94, 77, 0.12);
}

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

a {
    color: var(--accent-strong);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

a:hover {
    color: var(--accent);
}

p,
ul,
ol {
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

h1,
h2,
h3 {
    margin: 0 0 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
    line-height: 1.02;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.75rem, 6vw, 5.35rem);
}

h2 {
    font-size: clamp(1.95rem, 3vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
}

p {
    margin: 0 0 1rem;
}

ul,
ol {
    margin: 1rem 0 1rem 1.2rem;
}

li {
    margin-bottom: 0.55rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 0;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-container,
.footer-container,
.landing-shell,
.container {
    width: min(100%, var(--content-width));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.4rem;
    flex-wrap: wrap;
    padding: 0 1.5rem;
}

.header-nav-shell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo:hover {
    color: var(--text-primary);
}

.logo__asset {
    width: auto;
    display: block;
}

.logo__asset--light,
.logo__asset--dark {
    display: none;
}

.logo--on-light .logo__asset--light,
.logo--on-dark .logo__asset--dark {
    display: block;
}

.logo--header .logo__asset {
    height: clamp(26px, 2.4vw, 36px);
}

.logo--footer .logo__asset {
    height: 24px;
}

.site-nav {
    min-width: 0;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.32rem 0;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.32rem;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
}

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

.page-legal .site-header {
    background: rgba(20, 21, 23, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle__bars,
.mobile-menu-toggle__bars::before,
.mobile-menu-toggle__bars::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mobile-menu-toggle__bars {
    position: relative;
}

.mobile-menu-toggle__bars::before,
.mobile-menu-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-menu-toggle__bars::before {
    top: -6px;
}

.mobile-menu-toggle__bars::after {
    top: 6px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.24s ease;
}

.mobile-menu.is-open .mobile-menu__backdrop {
    background: rgba(0, 0, 0, 0.56);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 380px);
    height: 100%;
    padding: max(18px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #151618;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.34);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 48px 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__logo {
    display: block;
    width: auto;
    height: 32px;
}

.mobile-menu__title {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mobile-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu__close:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 1.25rem;
}

.mobile-menu__nav-shell {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__nav-shell .header-actions {
    order: 2;
    display: grid;
    width: 100%;
    gap: 0.72rem;
    margin-top: 1.45rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav-shell .header-actions .btn {
    width: 100%;
    min-height: 48px;
}

.mobile-menu__nav-shell .btn-primary {
    background: #fff;
    color: #202124;
    box-shadow: none;
}

.mobile-menu__nav-shell .btn-primary:hover {
    color: #202124;
    background: rgba(255, 255, 255, 0.92);
}

.mobile-menu__nav-shell .btn-quiet {
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
}

.mobile-menu__nav-shell .btn-quiet:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav-shell .site-nav {
    order: 1;
    width: 100%;
    overflow: visible;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__nav-shell .site-nav ul {
    display: grid;
    min-width: 0;
    gap: 0;
}

.mobile-menu__nav-shell .site-nav a {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
}

.mobile-menu__nav-shell .site-nav li:last-child a {
    border-bottom: 0;
}

.mobile-menu__nav-shell .site-nav a::after {
    position: static;
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 1rem;
    border-radius: 999px;
    background: #05ae74;
    opacity: 0;
    transform: none;
    transition: opacity 0.2s ease;
}

.mobile-menu__nav-shell .site-nav a:hover,
.mobile-menu__nav-shell .site-nav a.is-active {
    color: #fff;
    background: transparent;
}

.mobile-menu__nav-shell .site-nav a:hover::after,
.mobile-menu__nav-shell .site-nav a.is-active::after {
    opacity: 1;
}

body.mobile-menu-open {
    overflow: hidden;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 16px 30px rgba(7, 115, 93, 0.24);
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 18px 34px rgba(7, 115, 93, 0.3);
}

.btn-secondary {
    background: var(--surface-strong);
    border-color: var(--border);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
}

.btn-outline,
.btn-quiet {
    background: transparent;
    border-color: var(--border);
    color: var(--text-primary);
}

.btn-outline:hover,
.btn-quiet:hover {
    color: var(--text-primary);
    border-color: var(--border-strong);
    background: var(--surface-muted);
}

.btn-small {
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
}

.site-header--dark .btn-primary {
    background: #fff;
    color: #202124;
    box-shadow: none;
}

.site-header--dark .btn-primary:hover {
    color: #202124;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.92);
}

.site-header--dark .btn-quiet {
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.site-header--dark .btn-quiet:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
}

.landing-shell {
    padding: 1.5rem;
}

.hero-panel,
.showcase-card,
.access-panel,
.download-panel,
.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    filter: blur(14px);
}

.hero-panel::before {
    width: 360px;
    height: 360px;
    top: -120px;
    left: -80px;
    background: rgba(14, 154, 125, 0.16);
}

.hero-panel::after {
    width: 260px;
    height: 260px;
    right: -70px;
    bottom: -90px;
    background: rgba(16, 33, 29, 0.12);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.eyebrow,
.card-kicker {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-strong);
}

.hero-lead {
    max-width: 42rem;
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    color: var(--text-secondary);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-tags li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0.7rem 0.92rem;
    border-radius: 999px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.hero-actions,
.download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.68rem 0.92rem;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--accent-soft-strong);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 700;
}

.meta-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.device-shot {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 28px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.device-shot--large {
    grid-row: span 2;
}

.device-shot__frame {
    position: relative;
    padding: 10px;
    border-radius: 30px;
    background: linear-gradient(180deg, #162420 0%, #0f1816 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.05),
        0 24px 36px rgba(0, 0, 0, 0.22);
}

.device-shot__frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    max-width: 118px;
    height: 18px;
    border-radius: 999px;
    background: rgba(7, 13, 12, 0.96);
    z-index: 2;
}

.device-shot__caption {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.device-shot__caption strong {
    font-family: var(--font-heading);
    font-size: 1rem;
}

.device-shot__caption span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.app-shot {
    position: relative;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 24px;
    background: var(--screen-bg);
}

.app-shot img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.app-shot.has-image img {
    visibility: visible;
    opacity: 1;
}

.app-shot.has-image .shot-fallback {
    opacity: 0;
    visibility: hidden;
}

.shot-fallback {
    position: absolute;
    inset: 0;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--screen-bg);
    color: var(--screen-ink);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.shot-status-row,
.shot-chip-row,
.shot-stat-row,
.shot-avatar-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shot-badge,
.shot-chip,
.shot-label {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shot-badge {
    padding: 0.48rem 0.66rem;
    background: rgba(108, 224, 192, 0.14);
    color: var(--screen-accent);
    border: 1px solid rgba(108, 224, 192, 0.22);
}

.shot-meta {
    color: var(--screen-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.shot-title {
    margin: 0;
    color: var(--screen-ink);
    font-family: var(--font-body);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    line-height: 1.18;
}

.shot-chip {
    padding: 0.38rem 0.62rem;
    background: var(--screen-panel);
    color: var(--screen-ink);
    border: 1px solid var(--screen-border);
}

.shot-card,
.shot-offer-card,
.shot-stop,
.shot-checklist-item,
.shot-venue-hero {
    background: var(--screen-panel);
    border: 1px solid var(--screen-border);
    border-radius: 20px;
}

.shot-card,
.shot-offer-card,
.shot-venue-hero {
    padding: 0.95rem;
}

.shot-card strong,
.shot-offer-card strong,
.shot-venue-hero strong,
.shot-stop strong,
.shot-checklist-item strong {
    display: block;
    margin-bottom: 0.14rem;
    color: var(--screen-ink);
    font-size: 0.98rem;
}

.shot-card p,
.shot-offer-card p,
.shot-venue-hero p,
.shot-stop p,
.shot-checklist-item p {
    margin: 0;
    color: var(--screen-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.shot-label {
    margin-bottom: 0.55rem;
    color: var(--screen-accent);
}

.shot-card--hero {
    padding: 1.05rem;
    background:
        linear-gradient(145deg, rgba(108, 224, 192, 0.12), rgba(255, 255, 255, 0.02)),
        var(--screen-panel);
}

.shot-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.shot-map {
    position: relative;
    min-height: 138px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
        linear-gradient(rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 100%),
        rgba(255, 255, 255, 0.03);
    background-size: 28px 28px;
    overflow: hidden;
}

.shot-map-path {
    position: absolute;
    inset: 18px 20px 18px 28px;
    border-left: 2px dashed rgba(108, 224, 192, 0.56);
    border-bottom: 2px dashed rgba(108, 224, 192, 0.56);
    border-radius: 0 0 0 24px;
}

.shot-pin {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 224, 192, 0.16);
    border: 1px solid rgba(108, 224, 192, 0.28);
    color: var(--screen-ink);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
}

.shot-pin--one {
    top: 20px;
    left: 28px;
}

.shot-pin--two {
    top: 54px;
    right: 28px;
}

.shot-pin--three {
    bottom: 16px;
    left: 42%;
}

.shot-route-list,
.shot-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.shot-stop,
.shot-checklist-item {
    padding: 0.8rem 0.9rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
}

.shot-stop-dot,
.shot-check-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--screen-accent);
    margin-top: 0.34rem;
    box-shadow: 0 0 0 5px rgba(108, 224, 192, 0.12);
}

.shot-offer-card {
    background:
        linear-gradient(145deg, rgba(108, 224, 192, 0.12), rgba(255, 255, 255, 0.02)),
        var(--screen-panel);
}

.shot-stat {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.85rem 0.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--screen-border);
}

.shot-stat span {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--screen-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.shot-stat strong {
    color: var(--screen-ink);
    font-size: 0.92rem;
}

.shot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 224, 192, 0.14);
    border: 1px solid rgba(108, 224, 192, 0.26);
    color: var(--screen-ink);
    font-size: 0.76rem;
    font-weight: 800;
}

.shot-checklist-item.is-done .shot-check-icon,
.shot-checklist-item.is-active .shot-check-icon {
    background: var(--screen-accent);
}

.shot-checklist-item.is-active {
    border-color: rgba(108, 224, 192, 0.22);
    background: rgba(108, 224, 192, 0.08);
}

.section-block {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-heading {
    max-width: 52rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.showcase-card {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.showcase-card--wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
    gap: 1.5rem;
    align-items: center;
}

.showcase-copy,
.access-copy {
    max-width: 38rem;
}

.showcase-list {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.showcase-list li {
    margin: 0 0 0.7rem;
    padding-left: 1.05rem;
    position: relative;
}

.showcase-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px var(--accent-soft);
}

.showcase-device .device-shot__frame {
    max-width: 320px;
    margin-left: auto;
}

.access-panel {
    margin-top: 1.5rem;
    padding: clamp(1.35rem, 3vw, 2.2rem);
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 1.5rem;
}

.access-support {
    margin-top: 1rem;
}

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

.portal-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.7rem;
    padding: 1.4rem;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portal-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.portal-card p {
    margin: 0;
}

.portal-link {
    margin-top: auto;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 800;
}

.download-panel {
    margin-top: 1.5rem;
    padding: clamp(1.45rem, 3vw, 2.4rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    background:
        radial-gradient(circle at top right, rgba(108, 224, 192, 0.14), transparent 38%),
        linear-gradient(145deg, rgba(11, 23, 20, 0.96), rgba(14, 40, 34, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
}

.download-panel h2,
.download-panel p,
.download-panel .eyebrow {
    color: #eef8f5;
}

.download-panel p {
    color: rgba(238, 248, 245, 0.76);
}

.download-panel .btn-primary {
    box-shadow: none;
}

.download-panel .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #eef8f5;
    box-shadow: none;
}

.container {
    padding: 0 1.5rem 1rem;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 2.3rem 0 5.8rem;
    background: linear-gradient(180deg, #202124 0%, #171819 100%);
}

.legal-hero::before,
.legal-hero::after {
    display: none;
}

.legal-hero__inner {
    position: relative;
    z-index: 1;
    display: block;
}

.legal-hero__copy {
    max-width: 52rem;
}

.legal-hero__eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.legal-hero__title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.85rem);
}

.legal-hero__lead {
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
}

.legal-card-shell {
    margin-top: 0;
    padding-top: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.content-card {
    padding: clamp(1.5rem, 3vw, 2.6rem);
}

.page-legal .content-card {
    padding: 0 0 clamp(3rem, 6vw, 5rem);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.page-legal .content-card h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-legal .content-card h2 {
    margin-top: 2.1rem;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.page-legal .content-card h3 {
    margin-top: 1.45rem;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-family: var(--font-body);
    letter-spacing: -0.02em;
}

.last-updated {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.92rem;
    font-style: italic;
}

.notice {
    margin: 1.4rem 0;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    border-left: 3px solid var(--border-strong);
    background: var(--bg-secondary);
}

.notice-danger {
    border-left-color: var(--border-strong);
}

.notice-success {
    border-left-color: var(--border-strong);
}

.notice-warning {
    border-left-color: var(--border-strong);
}

.notice p,
.notice ul {
    color: inherit;
}

.notice p {
    margin: 0;
}

.notice p + p,
.notice p + ul {
    margin-top: 0.7rem;
}

.legal-list {
    margin: 0.75rem 0 0 1.25rem;
}

.legal-list--spaced {
    line-height: 1.8;
}

.legal-contact-link {
    margin: 1rem 0;
    font-size: 1.16rem;
    font-weight: 800;
}

.legal-example {
    margin: 1.4rem 0;
    padding: 1.15rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.9rem;
    line-height: 1.65;
}

.legal-example p {
    margin: 0;
}

.legal-example p + p {
    margin-top: 0.45rem;
}

.legal-contact-card {
    margin: 1.4rem 0;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
}

.legal-contact-card__title {
    margin: 0 0 0.85rem;
}

.legal-contact-card__section {
    margin: 1.3rem 0 0.5rem;
}

.site-footer {
    margin-top: 2.4rem;
    padding: 1.75rem 0 2rem;
    background: #151618;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1.5rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.78fr));
    gap: 1.5rem 1.25rem;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.96rem;
    letter-spacing: -0.02em;
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.footer-meta {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.92rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    text-align: left;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
}

.footer-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: #f5f5f2;
    color: #202124;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-store:hover {
    color: #202124;
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.9rem;
}

.reveal-ready {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes hover-card {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-6px);
    }
}

.page-home .hero-visual .device-shot__frame {
    animation: hover-card 7s ease-in-out infinite alternate;
}

.page-home .hero-visual .device-shot:nth-child(2) .device-shot__frame {
    animation-duration: 8.5s;
}

.page-home .hero-visual .device-shot:nth-child(3) .device-shot__frame {
    animation-duration: 6.5s;
}

@media (max-width: 1120px) {
    .hero-panel,
    .access-panel,
    .download-panel {
        grid-template-columns: 1fr;
    }

    .legal-hero__inner {
        grid-template-columns: 1fr;
    }

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

    .showcase-device .device-shot__frame {
        margin-left: 0;
    }

    .download-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 920px) {
    .site-header .header-container {
        flex-wrap: nowrap;
    }

    .site-header .header-nav-shell {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-header .logo--header .logo__asset {
        height: 30px;
    }

    .hero-visual,
    .portal-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .device-shot--large,
    .showcase-card--wide {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 720px) {
    .landing-shell,
    .container,
    .header-container,
    .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .legal-hero {
        padding-bottom: 4.25rem;
    }

    .legal-card-shell {
        margin-top: 0;
        padding-top: 2rem;
    }

    .hero-panel,
    .access-panel,
    .download-panel,
    .showcase-card,
    .content-card {
        border-radius: 28px;
    }

    .hero-actions .btn,
    .download-actions .btn {
        flex: 1 1 100%;
    }

    .hero-tags li {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .shot-mini-grid {
        grid-template-columns: 1fr;
    }

    .shot-stat-row {
        flex-direction: column;
    }

    .header-container {
        gap: 0.85rem;
    }

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

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

@media (max-width: 560px) {
    .site-header {
        padding: 0.8rem 0;
    }

    .mobile-menu__panel {
        width: min(92vw, 380px);
    }

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

    .footer-store {
        width: 100%;
    }

    .device-shot,
    .portal-card {
        padding: 0.9rem;
    }

    .shot-fallback {
        padding: 0.85rem;
    }

    .shot-title {
        font-size: 1rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
