/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
    --color-bg: #000000;
    --color-accent: #c41dad;
    --color-accent-glow: rgba(196, 29, 173, 0.35);
    --color-accent-subtle: rgba(196, 29, 173, 0.1);
    --color-text: rgba(255, 255, 255, 0.96);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-surface: rgba(255, 255, 255, 0.04);
    --color-surface-hover: rgba(255, 255, 255, 0.07);
    --color-lightblack: #1a1a1a;

    --font-family: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;

    --container-max: 1200px;
    --container-pad: 1.5rem;
}

/* ============================================
   RESET & BASE
============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

svg {
    display: block;
}

/* ============================================
   UTILITIES
============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-2xl);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section__eyebrow {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--color-text);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8125rem 1.875rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    line-height: 1;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.app-store-icon {
    display: block;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.btn--primary {
    gap: 0.5rem;
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 0 28px var(--color-accent-glow);
}

.btn--primary:hover {
    background-color: #d820bb;
    box-shadow: 0 0 40px rgba(196, 29, 173, 0.55);
    transform: translateY(-2px);
}

.btn--ghost {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background-color: var(--color-surface-hover);
    transform: translateY(-2px);
}

/* ============================================
   REVEAL ANIMATION
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal--left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--left.is-visible,
.reveal--right.is-visible {
    opacity: 1;
    transform: translateX(0);
}


.values__grid .value-card:nth-child(2) {
    transition-delay: 0.1s;
}

.values__grid .value-card:nth-child(3) {
    transition-delay: 0.2s;
}

.steps .step:nth-child(3) {
    transition-delay: 0.1s;
}

.steps .step:nth-child(5) {
    transition-delay: 0.2s;
}

/* ============================================
   HEADER / NAV
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding-block: 1.25rem;
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base), border-color var(--transition-base);
}

.header.is-scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.nav__logo-mark {
    width: 38px;
    height: 40px;
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.nav__logo-img {
    width: 46px;
    height: auto;
    max-width: none;
    transform: translate(-6px, 0);
}

.nav__logo-text {
    font-size: 1.05rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    letter-spacing: -0.01em;
    line-height: 1;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-pill);
    transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-text);
    background-color: var(--color-surface);
}


/* ============================================
   HERO
============================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 5.75rem;
    overflow: hidden;
}

@keyframes glow-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(2%, 3%) scale(1.04);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero__glow {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 65%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(196, 29, 173, 0.18) 0%, transparent 65%);
    pointer-events: none;
    animation: glow-drift 18s ease-in-out infinite;
    will-change: transform;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
}

.hero__content {
    max-width: 540px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: var(--font-weight-semibold);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

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

.hero__subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 440px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: var(--space-md);
}

.hero__note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: var(--font-weight-light);
}

.hero__download-banner {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0.55rem 2rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    overflow: visible;
}

.hero__download-banner::before {
    content: none;
}

.hero__download-copy {
    position: absolute;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
    font-weight: var(--font-weight-regular);
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.hero__legal {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
}

.hero__legal-link {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    line-height: 1;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.hero__legal-link:hover {
    color: #ffffff;
}

.hero__social {
    position: absolute;
    right: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: rgba(255, 255, 255, 0.56);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.hero__social-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.hero__social-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal-page {
    min-height: 100svh;
    padding-top: 7rem;
    padding-bottom: var(--space-2xl);
}

.legal-section {
    padding-block: var(--space-xl);
}

.legal__container {
    max-width: 860px;
}

.legal__back {
    display: inline-flex;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.8125rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.legal__back:hover {
    color: #ffffff;
}

.legal__content {
    color: rgba(255, 255, 255, 0.72);
}

.legal__content h1 {
    color: var(--color-text);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-semibold);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.legal__content h2 {
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    line-height: 1.35;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal__content p,
.legal__content li {
    font-size: 0.9375rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.8;
}

.legal__content p {
    margin-bottom: 1rem;
}

.legal__content ul {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.legal__updated {
    color: rgba(255, 255, 255, 0.56);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 605px;
}

.hero__phone {
    position: relative;
    z-index: 2;
}

.hero__phone-frame {
    width: 270px;
    border-radius: 36px;
    overflow: hidden;
    background:
        #000000 padding-box,
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.40) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.00) 65%,
            rgba(255, 255, 255, 0.20) 100%) border-box;
    border: 1.5px solid transparent;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(196, 29, 173, 0.10),
        inset 1px 1px 0 rgba(255, 255, 255, 0.30);
}

.hero__phone-screen {
    width: 100%;
    height: auto;
    display: block;
}

.hero__card {
    position: absolute;
    z-index: 3;
    width: 157px;
    border-radius: 18px;
    overflow: hidden;
    background:
        #000000 padding-box,
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.40) 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.00) 65%,
            rgba(255, 255, 255, 0.20) 100%) border-box;
    border: 1px solid transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 1px 1px 0 rgba(255, 255, 255, 0.25);
}

.hero__card--top {
    top: 2%;
    right: -1%;
    transform: rotate(4deg);
}

.hero__card--bottom {
    bottom: 1%;
    left: -1%;
    transform: rotate(-4deg);
}

.hero__card-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero — hover interactions */
.hero__phone,
.hero__card {
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

/* Hover on phone: phone scales up, cards drift outward */
.hero__visual:has(.hero__phone:hover) .hero__phone {
    transform: scale(1.07);
}

.hero__visual:has(.hero__phone:hover) .hero__card--top {
    transform: rotate(4deg) translate(16px, -8px);
}

.hero__visual:has(.hero__phone:hover) .hero__card--bottom {
    transform: rotate(-4deg) translate(-16px, 8px);
}

/* Hover on top card: top card scales, others nudge away */
.hero__visual:has(.hero__card--top:hover) .hero__card--top {
    transform: rotate(2deg) scale(1.08);
}

.hero__visual:has(.hero__card--top:hover) .hero__phone {
    transform: translateX(-10px);
}

.hero__visual:has(.hero__card--top:hover) .hero__card--bottom {
    transform: rotate(-4deg) translateX(-8px);
}

/* Hover on bottom card: bottom card scales, others nudge away */
.hero__visual:has(.hero__card--bottom:hover) .hero__card--bottom {
    transform: rotate(-2deg) scale(1.08);
}

.hero__visual:has(.hero__card--bottom:hover) .hero__phone {
    transform: translateX(10px);
}

.hero__visual:has(.hero__card--bottom:hover) .hero__card--top {
    transform: rotate(4deg) translateX(8px);
}

/* ============================================
   FEATURES — SCROLL DECK
============================================ */
.features {
    padding-top: var(--space-2xl);
}

.features__reel {
    height: 600vh;
    margin-top: var(--space-xl);
}

.features__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.features__sticky-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features__deck {
    position: relative;
    height: 440px;
}

.features__deck-card {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    will-change: transform, opacity;
    transition: transform 0.55s cubic-bezier(0.35, 0, 0.25, 1), opacity 0.45s ease;
}

.features__deck-card:nth-child(1) {
    transform: rotate(0deg) scale(1);
    z-index: 5;
}

.features__deck-card:nth-child(2) {
    transform: rotate(-2deg) translateY(6px) scale(0.96);
    z-index: 4;
}

.features__deck-card:nth-child(3) {
    transform: rotate(-4deg) translateY(12px) scale(0.92);
    z-index: 3;
}

.features__deck-card:nth-child(4) {
    transform: rotate(-6deg) translateY(18px) scale(0.88);
    z-index: 2;
}

.features__deck-card:nth-child(5) {
    transform: rotate(-8deg) translateY(24px) scale(0.84);
    z-index: 1;
}

.features__deck-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.features__panel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.features__panel-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    line-height: 1.2;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.features__panel-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 38ch;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.features__panel-title.is-changing,
.features__panel-desc.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.features__dots {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.features__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-text-muted);
    opacity: 0.35;
    cursor: pointer;
    padding: 0;
    border: none;
    flex-shrink: 0;
    transition: opacity var(--transition-fast), width var(--transition-fast), border-radius var(--transition-fast), background-color var(--transition-fast);
}

.features__dot.is-active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-accent);
    opacity: 1;
}

/* ============================================
   HOW IT WORKS
============================================ */
.how-it-works {
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196, 29, 173, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 1rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background:
        #1a1a1a padding-box,
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.06) 35%,
            rgba(255, 255, 255, 0.06) 65%,
            rgba(0, 0, 0, 0.06) 100%) border-box;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition:
        background var(--transition-base),
        box-shadow var(--transition-base),
        opacity 0.65s ease,
        transform 0.65s ease;
}

.step:hover {
    background:
        #1a1a1a padding-box,
        linear-gradient(to bottom,
            rgba(196, 29, 173, 0.45) 0%,
            rgba(196, 29, 173, 0.10) 35%,
            rgba(196, 29, 173, 0.10) 65%,
            rgba(196, 29, 173, 0.03) 100%) border-box;
}

.step__number {
    font-size: 2.75rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.step__title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 0.625rem;
}

.step__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.step__visual {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.step__connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
}

.step__connector::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, rgba(196, 29, 173, 0.6), rgba(196, 29, 173, 0.1));
}

/* ============================================
   VALUES
============================================ */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.value-card {
    padding: 2rem;
    background:
        #1a1a1a padding-box,
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.06) 35%,
            rgba(255, 255, 255, 0.06) 65%,
            rgba(0, 0, 0, 0.06) 100%) border-box;
    border: 1px solid transparent;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition:
        background var(--transition-base),
        box-shadow var(--transition-base),
        opacity 0.65s ease,
        transform 0.65s ease;
}

.value-card:hover {
    background:
        #1a1a1a padding-box,
        linear-gradient(to bottom,
            rgba(196, 29, 173, 0.45) 0%,
            rgba(196, 29, 173, 0.10) 35%,
            rgba(196, 29, 173, 0.10) 65%,
            rgba(196, 29, 173, 0.03) 100%) border-box;
}

.value-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-subtle);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    color: var(--color-accent);
}

.value-card__icon svg {
    width: 24px;
    height: 24px;
}

.value-card__title {
    font-size: 1.0625rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 0.625rem;
}

.value-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA
============================================ */
.cta {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(196, 29, 173, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta__container {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: var(--font-weight-semibold);
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

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

.cta__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 460px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.cta__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.625rem;
    background:
        #1a1a1a padding-box,
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.06) 35%,
            rgba(255, 255, 255, 0.06) 65%,
            rgba(0, 0, 0, 0.06) 100%) border-box;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
    color: var(--color-text);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
    user-select: none;
}

.badge--active {
    opacity: 1;
    cursor: pointer;
    border-color: rgba(196, 29, 173, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 20px rgba(196, 29, 173, 0.15);
}

.badge--active:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 29, 173, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 32px rgba(196, 29, 173, 0.28);
}

.badge--coming-soon {
    opacity: 0.45;
    cursor: default;
}

.badge__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.badge__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
}

.badge__label {
    font-size: 0.6875rem;
    color: var(--color-text-muted);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.04em;
}

.badge__store {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    border-top: 1px solid var(--color-border);
    padding-block: var(--space-xl) var(--space-lg);
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer__logo-img {
    width: 22px;
    height: auto;
}

.footer__logo-text {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    background:
        #1a1a1a padding-box,
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.06) 35%,
            rgba(255, 255, 255, 0.00) 65%,
            rgba(255, 255, 255, 0.15) 100%) border-box;
    border: 1px solid transparent;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.18);
    transition: color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__social-link:hover {
    color: var(--color-accent);
    background:
        #1a1a1a padding-box,
        linear-gradient(135deg,
            rgba(196, 29, 173, 0.55) 0%,
            rgba(196, 29, 173, 0.10) 35%,
            rgba(196, 29, 173, 0.00) 65%,
            rgba(196, 29, 173, 0.22) 100%) border-box;
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.18), 0 0 16px rgba(196, 29, 173, 0.15);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.footer__copy {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__link {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-accent);
}

/* ============================================
   RESPONSIVE — TABLET (max-width: 991px)
============================================ */
@media (max-width: 991px) {
    :root {
        --container-pad: 1.25rem;
        --space-2xl: 5rem;
    }


    /* Hero */
    .hero {
        display: block;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        max-width: 100%;
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__download-banner {
        position: static;
        min-height: auto;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1.05rem;
        column-gap: 1rem;
        width: 100%;
        margin-top: 2.75rem;
        padding: 0.75rem 1rem 1.25rem;
    }

    .hero__legal,
    .hero__social,
    .hero__download-copy {
        position: static;
        transform: none;
    }

    .hero__legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.45rem 1rem;
        order: 2;
    }

    .hero__social {
        gap: 1.25rem;
        order: 1;
    }

    .hero__download-copy {
        width: 100%;
        order: 3;
        margin-top: 0.05rem;
    }

    .hero__visual {
        height: 440px;
        order: -1;
    }

    .hero__phone-frame {
        width: 210px;
    }

    .hero__card {
        width: 125px;
    }

    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step__connector {
        display: none;
    }

    /* Values */
    .values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values__grid .value-card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        margin-inline: auto;
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 600px)
============================================ */
@media (max-width: 600px) {
    :root {
        --space-2xl: 4rem;
        --space-xl: 3rem;
        --container-pad: 1rem;
    }

    /* Features deck: single column */
    .features__sticky-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features__deck {
        height: 300px;
        order: -1;
    }

    .features__panel-desc {
        max-width: 100%;
    }

    .reveal--left,
    .reveal--right {
        transform: translateY(28px);
    }

    /* Values: single column */
    .values__grid {
        grid-template-columns: 1fr;
    }

    .values__grid .value-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    /* Hero visual — hide floated cards, show only phone */
    .hero__visual {
        height: 304px;
    }

    .hero__phone-frame {
        width: 148px;
        border-radius: 28px;
    }

    .hero__card {
        width: 86px;
    }

    .hero__card--top {
        top: 8%;
        right: 9%;
    }

    .hero__card--bottom {
        bottom: 8%;
        left: 9%;
    }

    /* CTA badges: stack */
    .cta__badges {
        flex-direction: column;
        align-items: center;
    }

    /* Footer bottom: stack */
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__nav {
        justify-content: center;
    }
}
