:root {
    --bg: #050407;
    --bg-top: #09070c;
    --bg-elevated: #120e18;
    --surface: #1e1825;
    --surface-soft: #2b2233;
    --outline: rgba(182, 167, 175, 0.18);
    --outline-strong: rgba(231, 216, 222, 0.2);
    --text: #f6efe9;
    --text-soft: #e7d8de;
    --text-muted: #b6a7af;
    --crimson: #b84b63;
    --blood: #6c2037;
    --glow: rgba(184, 75, 99, 0.28);
    --mist: rgba(247, 237, 235, 0.12);
    --glass: rgba(247, 237, 235, 0.08);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --content-width: 1180px;
    --streaming: #ad97cc;
    --software: #7fa5d6;
    --workout: #7cb59a;
    --utility: #d9b17b;
    --music: #d992a8;
    --cloud: #94b5d3;
    --gaming: #b288c9;
    --ai: #72afa9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 82% 18%, rgba(184, 75, 99, 0.22), transparent 0 26rem),
        radial-gradient(circle at 12% 88%, rgba(70, 80, 110, 0.28), transparent 0 32rem),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 48%, #09070c 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: -8rem;
    right: -8rem;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 75, 99, 0.18), transparent 72%);
    filter: blur(12px);
}

body::after {
    left: -10rem;
    bottom: -10rem;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(70, 80, 110, 0.18), transparent 72%);
    filter: blur(18px);
}

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

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

.container {
    width: min(100% - 2rem, var(--content-width));
    margin: 0 auto;
}

.display {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.02em;
}

.muted {
    color: var(--text-muted);
}

.accent {
    color: var(--crimson);
}

.section {
    position: relative;
    padding: 5.5rem 0;
}

.section-header {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-header h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.section-header p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(247, 237, 235, 0.05);
    border: 1px solid rgba(247, 237, 235, 0.08);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0b0bd 0%, var(--crimson) 100%);
    box-shadow: 0 0 16px rgba(184, 75, 99, 0.55);
}

.glass-panel,
.content-card,
.feature-card,
.support-card,
.contact-card,
.page-card,
.stat-card {
    background: linear-gradient(180deg, rgba(30, 24, 37, 0.92), rgba(18, 14, 24, 0.96));
    border: 1px solid var(--outline);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(5, 4, 7, 0.68);
    border-bottom: 1px solid rgba(247, 237, 235, 0.06);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand img {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 1rem;
    box-shadow: 0 12px 24px rgba(184, 75, 99, 0.24);
}

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

.site-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-menu a {
    color: var(--text-muted);
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-menu a:hover,
.site-menu a.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.button,
.lang-button,
.menu-button {
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.45rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.button:hover,
.lang-button:hover,
.menu-button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: var(--text);
    background: linear-gradient(180deg, var(--crimson), var(--blood));
    box-shadow: 0 18px 32px rgba(108, 32, 55, 0.35);
}

.button.primary:hover {
    box-shadow: 0 22px 40px rgba(108, 32, 55, 0.42);
}

.button.ghost {
    color: var(--text-soft);
    background: rgba(247, 237, 235, 0.04);
    border-color: rgba(247, 237, 235, 0.1);
}

.lang-button,
.menu-button {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 237, 235, 0.04);
    border-color: rgba(247, 237, 235, 0.1);
    color: var(--text-soft);
    font-weight: 800;
}

.menu-button {
    display: none;
    font-size: 1rem;
}

.hero {
    padding: 4.5rem 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 1.2rem 0 1rem;
    font-size: clamp(3.4rem, 7vw, 6.3rem);
    line-height: 0.92;
}

.hero-copy p {
    max-width: 40rem;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 2rem 0 1.4rem;
}

.trust-row,
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.trust-pill,
.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0.92rem;
    border-radius: 999px;
    background: rgba(247, 237, 235, 0.04);
    border: 1px solid rgba(247, 237, 235, 0.08);
    color: var(--text-soft);
    font-size: 0.92rem;
    font-weight: 600;
}

.chip::before,
.trust-pill::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: rgba(244, 234, 228, 0.6);
}

.hero-stats {
    margin-top: 1.7rem;
}

.stat-card {
    min-width: 11.5rem;
    padding: 1rem 1.05rem;
    border-radius: var(--radius-sm);
}

.stat-card span {
    display: block;
}

.stat-card .label {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.stat-card .value {
    font-size: 1.25rem;
    font-weight: 800;
}

.hero-stage {
    position: relative;
}

.hero-stage::before {
    content: "";
    position: absolute;
    inset: 6% 12% auto auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 75, 99, 0.28), transparent 70%);
    filter: blur(18px);
}

.phone-shell {
    width: min(100%, 23rem);
    margin-inline: auto;
    padding: 0.9rem;
    border-radius: 3rem;
    background: linear-gradient(180deg, rgba(28, 22, 33, 0.98), rgba(8, 7, 12, 0.98));
    border: 1px solid rgba(247, 237, 235, 0.12);
    box-shadow: var(--shadow);
}

.phone-screen {
    position: relative;
    overflow: hidden;
    border-radius: 2.35rem;
    background:
        radial-gradient(circle at 78% 16%, rgba(184, 75, 99, 0.18), transparent 0 10rem),
        radial-gradient(circle at 18% 92%, rgba(70, 80, 110, 0.2), transparent 0 14rem),
        linear-gradient(180deg, #09070c 0%, #120e18 54%, #0a090e 100%);
    padding: 1.1rem;
}

.phone-notch {
    width: 7rem;
    height: 1.15rem;
    border-radius: 0 0 0.9rem 0.9rem;
    background: rgba(5, 4, 7, 0.92);
    margin: -1.1rem auto 1rem;
}

.phone-head,
.list-item,
.bottom-pills,
.summary-strip {
    display: flex;
    align-items: center;
}

.phone-head {
    justify-content: space-between;
    margin-bottom: 1rem;
}

.phone-head h3 {
    margin: 0;
    font-size: 1.25rem;
}

.round-plus {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--crimson), var(--blood));
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(108, 32, 55, 0.34);
}

.summary-card {
    border-radius: 1.8rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(108, 32, 55, 0.66), rgba(30, 24, 37, 0.98) 68%);
    border: 1px solid rgba(247, 237, 235, 0.14);
    box-shadow: inset 0 1px 0 rgba(247, 237, 235, 0.08);
}

.summary-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.summary-title {
    color: var(--text-muted);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.summary-value {
    margin-top: 0.35rem;
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1;
}

.currency-pill {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    background: rgba(5, 4, 7, 0.32);
    border: 1px solid rgba(247, 237, 235, 0.12);
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.summary-strip {
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 237, 235, 0.1);
    color: var(--text-muted);
    font-size: 0.88rem;
}

.summary-strip strong {
    color: var(--text);
}

.frame-card {
    margin-top: 0.9rem;
    padding: 1rem;
    border-radius: 1.55rem;
    background: rgba(30, 24, 37, 0.92);
    border: 1px solid rgba(247, 237, 235, 0.08);
}

.frame-card h4,
.upcoming-title {
    margin: 0 0 0.7rem;
    font-size: 0.96rem;
}

.legend-row,
.bar-row {
    display: flex;
    gap: 0.42rem;
}

.bar-row {
    height: 0.75rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(5, 4, 7, 0.64);
    margin-bottom: 0.8rem;
}

.bar-row span {
    height: 100%;
    display: block;
}

.legend-row {
    flex-wrap: wrap;
}

.legend-chip {
    padding: 0.36rem 0.56rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-soft);
    background: rgba(247, 237, 235, 0.06);
}

.upcoming-list {
    display: grid;
    gap: 0.7rem;
}

.list-item {
    gap: 0.85rem;
    padding: 0.82rem;
    border-radius: 1.2rem;
    background: rgba(247, 237, 235, 0.03);
    border: 1px solid rgba(247, 237, 235, 0.06);
}

.list-icon {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(217, 146, 168, 0.22), rgba(30, 24, 37, 0.9));
    border: 1px solid rgba(217, 146, 168, 0.22);
}

.list-item strong {
    display: block;
    margin-bottom: 0.18rem;
}

.list-item span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.bottom-pills {
    justify-content: space-between;
    gap: 0.45rem;
    margin-top: 0.95rem;
    padding: 0.45rem;
    border-radius: 1.3rem;
    background: rgba(247, 237, 235, 0.04);
    border: 1px solid rgba(247, 237, 235, 0.08);
}

.bottom-pill {
    flex: 1;
    text-align: center;
    padding: 0.62rem 0.3rem;
    border-radius: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.bottom-pill.active {
    background: linear-gradient(180deg, rgba(184, 75, 99, 0.36), rgba(108, 32, 55, 0.12));
    color: var(--text);
    border: 1px solid rgba(247, 237, 235, 0.08);
}

.showcase-grid,
.feature-grid,
.support-grid,
.contact-grid,
.page-grid {
    display: grid;
    gap: 1.2rem;
}

.showcase-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    align-items: stretch;
}

.page-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
}

.feature-grid,
.support-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-card,
.feature-card,
.page-card,
.support-card,
.contact-card {
    border-radius: var(--radius-lg);
    padding: 1.4rem;
}

.feature-card {
    min-height: 100%;
}

.feature-card .icon-badge,
.mini-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--text);
    font-weight: 800;
    background: linear-gradient(180deg, rgba(184, 75, 99, 0.18), rgba(43, 34, 51, 0.92));
    border: 1px solid rgba(247, 237, 235, 0.08);
}

.feature-card h3,
.content-card h3,
.support-card h3,
.contact-card h3,
.page-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.18rem;
}

.feature-card p,
.content-card p,
.support-card p,
.contact-card p,
.page-card p,
.page-card li {
    color: var(--text-muted);
    line-height: 1.72;
}

.ledger-card {
    position: relative;
    overflow: hidden;
}

.ledger-card::after {
    content: "";
    position: absolute;
    inset: auto -4rem -4rem auto;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 75, 99, 0.22), transparent 70%);
}

.ledger-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ledger-kpi {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin: 0.25rem 0 0.5rem;
}

.ledger-meta {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(247, 237, 235, 0.08);
}

.meta-row strong {
    color: var(--text);
}

.bullet-list,
.detail-list,
.page-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.bullet-list li,
.detail-list li,
.page-card li {
    position: relative;
    padding-left: 1.15rem;
}

.bullet-list li::before,
.detail-list li::before,
.page-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(180deg, #f0b0bd, var(--crimson));
    box-shadow: 0 0 14px rgba(184, 75, 99, 0.35);
}

.stat-cluster {
    display: grid;
    gap: 0.9rem;
}

.progress-card {
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(5, 4, 7, 0.3);
    border: 1px solid rgba(247, 237, 235, 0.06);
}

.progress-legend {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.progress-line {
    display: grid;
    gap: 0.4rem;
}

.progress-line .track {
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(247, 237, 235, 0.06);
    overflow: hidden;
}

.progress-line .fill {
    height: 100%;
    display: block;
    border-radius: inherit;
}

.cta-panel {
    border-radius: var(--radius-xl);
    padding: 2rem;
    background:
        radial-gradient(circle at top right, rgba(184, 75, 99, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(30, 24, 37, 0.95), rgba(9, 7, 12, 0.98));
    border: 1px solid var(--outline);
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-panel h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    line-height: 0.96;
}

.cta-panel p {
    max-width: 40rem;
    margin: 0 auto 1.4rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer {
    padding: 2.4rem 0 3rem;
    border-top: 1px solid rgba(247, 237, 235, 0.06);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
}

.page-hero {
    padding: 3.6rem 0 1.6rem;
}

.page-hero h1 {
    margin: 0.9rem 0 0.9rem;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 0.96;
}

.page-hero p {
    max-width: 44rem;
    margin: 0;
    line-height: 1.82;
    color: var(--text-muted);
    font-size: 1.04rem;
}

.page-shell {
    padding-bottom: 4.5rem;
}

.page-card strong,
.support-card strong,
.contact-card strong,
.content-card strong {
    color: var(--text);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.mini-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.help-block {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.1rem;
    background: rgba(5, 4, 7, 0.34);
    border: 1px solid rgba(247, 237, 235, 0.05);
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1.2rem;
    border-radius: 1.2rem;
    background: var(--text);
    color: var(--bg);
    font-weight: 800;
}

.store-badge small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(5, 4, 7, 0.6);
}

.store-badge strong {
    display: block;
    font-size: 1.05rem;
}

.hidden-mobile {
    display: inline-flex;
}

@media (max-width: 980px) {
    .hero-grid,
    .showcase-grid,
    .page-grid,
    .feature-grid,
    .support-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .support-grid,
    .contact-grid {
        gap: 1rem;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: 1.4rem;
        background: linear-gradient(180deg, rgba(30, 24, 37, 0.98), rgba(9, 7, 12, 0.98));
        border: 1px solid var(--outline);
        box-shadow: var(--shadow-soft);
    }

    .site-menu.open {
        display: flex;
    }

    .hidden-mobile {
        display: none;
    }

    .menu-button {
        display: inline-flex;
    }

    .hero {
        padding-top: 3rem;
    }

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

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

    .site-nav {
        min-height: 4.4rem;
    }

    .button,
    .store-badge {
        width: 100%;
    }

    .hero-copy h1,
    .page-hero h1 {
        line-height: 0.98;
    }

    .cta-panel,
    .content-card,
    .feature-card,
    .page-card,
    .support-card,
    .contact-card {
        padding: 1.2rem;
    }

    .phone-shell {
        width: 100%;
    }
}
