:root {
    --bg: #0b1933;
    --bg-soft: #11264a;
    --surface: rgba(18, 41, 81, 0.72);
    --surface-strong: #132b52;

    --blue: #0a7ff2;
    --cyan: #13d6ff;
    --blue-soft: #7bdcff;

    --gold: #e4b650;
    --gold-soft: #ffe7aa;

    --text: #f7fbff;
    --text-soft: #d1def5;
    --border: rgba(116, 185, 255, 0.24);

    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;

    --shadow:
        0 24px 70px rgba(0, 0, 0, 0.22),
        0 0 45px rgba(0, 126, 255, 0.07);

    --max-width: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background:
        radial-gradient(
            circle at 18% 14%,
            rgba(27, 128, 255, 0.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(14, 216, 255, 0.10),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #10264c 0%,
            #0b1933 46%,
            #081224 100%
        );

    color: var(--text);
}

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

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(7, 20, 43, 0.74);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 74px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

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

    font-weight: 700;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 46px;
    height: 46px;

    object-fit: contain;

    border-radius: 13px;

    background: rgba(255,255,255,0.96);
    padding: 4px;

    box-shadow:
        0 0 22px rgba(0, 142, 255, 0.18);
}

.brand-name {
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;

    color: var(--text-soft);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--text);
}

.hero {
    min-height: calc(100vh - 74px);

    display: grid;
    align-items: center;

    padding: 76px 0 92px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;

    gap: 76px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 8px 13px;
    margin-bottom: 22px;

    border: 1px solid rgba(231, 184, 75, 0.38);
    border-radius: 999px;

    background: rgba(255, 244, 209, 0.06);

    color: var(--gold-soft);

    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;

    margin: 0;

    font-size: clamp(3rem, 7vw, 6.3rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero h1 span {
    background:
        linear-gradient(
            100deg,
            #ffffff 0%,
            #a7e9ff 42%,
            #16d4ff 70%,
            #eac55f 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero-copy {
    max-width: 660px;

    margin: 28px 0 0;

    color: var(--text-soft);

    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}

.actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 22px;

    border-radius: 15px;

    font-weight: 700;
    font-size: 0.95rem;

    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

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

.button-primary {
    background:
        linear-gradient(
            135deg,
            #1292ff,
            #1ce0ff
        );

    color: #ffffff;

    box-shadow:
        0 14px 36px rgba(0, 150, 255, 0.22);
}

.button-secondary {
    border: 1px solid rgba(163, 197, 255, 0.20);

    background: rgba(255, 255, 255, 0.045);

    color: var(--text);
}

.hero-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 520px;
}

.logo-card {
    position: relative;

    width: min(100%, 470px);

    padding: 30px;

    border: 1px solid rgba(216, 228, 255, 0.88);
    border-radius: 42px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(241, 247, 255, 0.96)
        );

    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.18),
        0 10px 28px rgba(0, 94, 255, 0.10);
}

.logo-card::before {
    content: "";

    position: absolute;
    inset: -1px;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(112, 206, 255, 0.22),
            transparent 42%
        );

    pointer-events: none;
}

.logo-main {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    max-height: 500px;

    object-fit: contain;
}

.feature-strip {
    padding: 0 0 90px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}

.feature-card {
    min-height: 150px;

    padding: 22px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background: rgba(17, 39, 77, 0.60);
    backdrop-filter: blur(14px);

    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-card strong {
    display: block;

    margin-bottom: 9px;

    color: var(--text);

    font-size: 1rem;
}

.feature-card p {
    margin: 0;

    color: var(--text-soft);

    font-size: 0.93rem;
    line-height: 1.55;
}

.site-footer {
    padding: 30px 0 38px;

    border-top: 1px solid var(--border);

    color: #9fb2d4;

    font-size: 0.85rem;
}

.footer-row {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero {
        padding-top: 58px;
    }

    .hero-visual {
        min-height: auto;
    }

    .logo-card {
        max-width: 390px;
        margin: 0 auto;
    }

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

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

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5rem);
    }

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

    .footer-row {
        flex-direction: column;
    }
}

/* S7B – informational sections */

.info-section {
    padding: 96px 0;
}

.info-section-alt {
    background: rgba(5, 15, 34, 0.28);
    border-top: 1px solid rgba(116, 185, 255, 0.10);
    border-bottom: 1px solid rgba(116, 185, 255, 0.10);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

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

.section-kicker {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-soft);

    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-heading h2,
.support-panel h2,
.app-panel h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.section-heading p,
.support-panel p,
.app-panel p {
    margin: 18px 0 0;

    color: var(--text-soft);

    font-size: 1.05rem;
    line-height: 1.65;
}

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

.info-card,
.step-card {
    padding: 26px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(25, 57, 106, 0.66),
            rgba(10, 28, 57, 0.66)
        );

    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.12);
}

.info-card h3,
.step-card h3 {
    margin: 0 0 10px;

    font-size: 1.05rem;
}

.info-card p,
.step-card p {
    margin: 0;

    color: var(--text-soft);

    line-height: 1.6;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 14px;
}

.check-list div {
    position: relative;

    padding: 18px 20px 18px 48px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.035);

    color: var(--text-soft);
}

.check-list div::before {
    content: "✓";

    position: absolute;
    left: 18px;
    top: 16px;

    color: var(--cyan);
    font-weight: 900;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.step-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 22px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(10, 127, 242, 0.26),
            rgba(19, 214, 255, 0.18)
        );

    color: var(--blue-soft);

    font-weight: 800;
}

.support-panel,
.app-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 48px;

    padding: 38px;

    border: 1px solid var(--border);
    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(19, 47, 90, 0.82),
            rgba(8, 24, 50, 0.82)
        );
}

.support-panel > div:first-child,
.app-panel > div:first-child {
    max-width: 700px;
}

.status-pill {
    display: inline-flex;

    padding: 11px 16px;

    border: 1px solid rgba(231, 184, 75, 0.30);
    border-radius: 999px;

    background: rgba(231, 184, 75, 0.07);

    color: var(--gold-soft);

    white-space: nowrap;
}

.store-placeholders {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.store-placeholder {
    min-width: 150px;

    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.045);

    color: var(--text-soft);

    text-align: center;
    font-weight: 700;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-links a:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .support-panel,
    .app-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .info-section {
        padding: 70px 0;
    }

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

    .support-panel,
    .app-panel {
        padding: 26px;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}

/* S7B.1 – store badges */

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    min-width: 220px;
    min-height: 72px;
    padding: 14px 18px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.03)
        );

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.12);

    transition:
        transform 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
}

.store-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(109, 202, 255, 0.34);
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.16);
}

.store-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    background: rgba(255, 255, 255, 0.08);
    flex: 0 0 auto;
}

.store-badge-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

.store-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.store-badge-text small {
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.02em;
}

.store-badge-text strong {
    margin-top: 4px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
}

.store-badge-apple .store-badge-icon {
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.12),
            rgba(155, 192, 255, 0.08)
        );
}

.store-badge-google .store-badge-icon {
    background:
        linear-gradient(
            135deg,
            rgba(19, 214, 255, 0.15),
            rgba(10, 127, 242, 0.10)
        );
}

@media (max-width: 640px) {
    .store-badge {
        width: 100%;
        min-width: 0;
    }
}

/* S7B.1 FIX – visible store icons */

.store-badge-icon,
.store-badge-apple .store-badge-icon,
.store-badge-google .store-badge-icon {
    width: 46px;
    height: 46px;

    background: #ffffff;

    border: 1px solid rgba(8, 31, 68, 0.12);
    border-radius: 12px;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.14);
}

.store-badge-icon svg {
    width: 25px;
    height: 25px;

    fill: #092b5b;
}

/* S7B.2 – compact mobile app section */

.app-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.app-panel {
    padding: 32px 34px;
    gap: 36px;
}

.app-panel h2 {
    font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.app-panel p {
    margin-top: 14px;
    max-width: 650px;
}

.store-placeholders {
    gap: 10px;
}

.store-badge {
    min-height: 66px;
    padding-top: 11px;
    padding-bottom: 11px;
}

@media (max-width: 640px) {
    .app-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .app-panel {
        padding: 24px;
        gap: 26px;
    }
}

/* S7C – legal + support pages */

.legal-main {
    min-height: calc(100vh - 150px);
    padding: 84px 0 100px;
}

.legal-container {
    max-width: 900px;
}

.legal-container > h1 {
    margin: 0 0 38px;

    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 1;
}

.legal-intro {
    max-width: 720px;

    margin: -14px 0 36px;

    color: var(--text-soft);

    font-size: 1.08rem;
    line-height: 1.7;
}

.legal-card {
    margin-bottom: 18px;
    padding: 28px 30px;

    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(24, 55, 104, 0.68),
            rgba(9, 27, 56, 0.72)
        );
}

.legal-card h2 {
    margin: 0 0 14px;

    font-size: 1.2rem;
}

.legal-card p {
    margin: 0 0 12px;

    color: var(--text-soft);

    line-height: 1.7;
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: var(--blue-soft);
}

.legal-card a:hover {
    color: var(--cyan);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.support-grid .legal-card {
    margin: 0;
}

@media (max-width: 640px) {
    .legal-main {
        padding: 60px 0 72px;
    }

    .legal-card {
        padding: 23px;
    }

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