/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
    --ink: #07070D;
    --ink2: #0F1018;
    --white: #F9F9F7;
    --blue: #2563FF;
    --blue-l: #5585FF;
    --blue-d: #1A4FD8;
    --teal: #00D9B8;
    --teal-l: #2FEDD8;
    --red: #FF5C3A;
    --mid: #6B7280;
    --muted: #9CA3AF;
    --border: #1E2030;
    --border-l: #E2E4EF;
    --surface: #F0F2FF;
    --card-d: #0D0E1A;
    --card-d2: #111220;

    --grad-main: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    --grad-text: linear-gradient(90deg, var(--blue-l), var(--teal-l));
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Outfit', sans-serif;
}

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

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

body {
    font-family: var(--font-b);
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

html,
body {
    max-width: 100%;
}

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

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

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-right: 4px;
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
}

/* ═══════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 66px;
    display: flex;
    align-items: center;
    background: rgba(7, 7, 13, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.nav.scrolled {
    background: rgba(7, 7, 13, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    cursor: pointer;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--grad-main);
    border-radius: 9px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5px;
    padding: 7px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(37, 99, 255, 0.4);
}

.logo-sq {
    background: #fff;
    border-radius: 2px;
}

.logo-sq:nth-child(2) {
    opacity: 0.6;
}

.logo-sq:nth-child(3) {
    opacity: 0.6;
}

.logo-sq:nth-child(4) {
    opacity: 0.28;
}

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

.nav-links a {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

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

.nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.2s !important;
    box-shadow: 0 4px 20px rgba(37, 99, 255, 0.35);
}

.nav-cta:hover {
    background: var(--blue-l) !important;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(7, 7, 13, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 28px 32px;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
}

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

.mobile-menu a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #fff;
}

.mobile-menu .nav-cta {
    text-align: center;
    padding: 12px;
    border-radius: 10px;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 28px 100px;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orb-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.22) 0%, transparent 65%);
    top: -300px;
    right: -250px;
    animation: floatA 10s ease-in-out infinite;
}

.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 184, 0.14) 0%, transparent 65%);
    bottom: -200px;
    left: -200px;
    animation: floatB 13s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 92, 58, 0.09) 0%, transparent 65%);
    top: 45%;
    left: 15%;
    animation: floatA 16s ease-in-out infinite reverse;
}

@keyframes floatA {

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

    50% {
        transform: translate(-40px, 30px) scale(1.08);
    }
}

@keyframes floatB {

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

    50% {
        transform: translate(30px, -40px) scale(1.06);
    }
}

/* Grid lines bg */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 217, 184, 0.25);
    background: rgba(0, 217, 184, 0.06);
    color: var(--teal-l);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 48px;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 36px;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: var(--grad-main);
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 19px;
    box-shadow:
        0 0 0 1px rgba(37, 99, 255, 0.3),
        0 0 60px rgba(37, 99, 255, 0.45),
        0 0 120px rgba(0, 217, 184, 0.15);
}

.hero-icon-sq {
    background: #fff;
    border-radius: 5px;
}

.hero-icon-sq:nth-child(2) {
    opacity: 0.6;
}

.hero-icon-sq:nth-child(3) {
    opacity: 0.6;
}

.hero-icon-sq:nth-child(4) {
    opacity: 0.28;
}

.icon-ring {
    position: absolute;
    inset: -14px;
    border-radius: 42px;
    border: 1px solid rgba(37, 99, 255, 0.15);
    animation: ringPulse 3s ease infinite;
}

.icon-ring-2 {
    inset: -28px;
    border-color: rgba(0, 217, 184, 0.08);
    animation-delay: 1s;
    border-radius: 56px;
}

@keyframes ringPulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.04);
    }
}

.hero-title {
    font-family: var(--font-h);
    font-size: clamp(64px, 12vw, 112px);
    font-weight: 800;
    letter-spacing: -1px;
    padding-right: 0.2em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero-tagline {
    font-size: clamp(16px, 2.5vw, 21px);
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 480px;
    line-height: 1.75;
    margin: 0 auto 48px;
    animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 72px;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-h);
    cursor: pointer;
    transition: all 0.22s;
    border: none;
    letter-spacing: 0.2px;
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 99, 255, 0.4);
}

.btn-blue:hover {
    background: var(--blue-l);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(37, 99, 255, 0.5);
}

.btn-green {
    background: #1DA462;
    color: #fff;
    box-shadow: 0 8px 28px rgba(29, 164, 98, 0.35);
}

.btn-green:hover {
    background: #22BD72;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: default;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.stat {
    text-align: center;
}

.stat-n {
    font-family: var(--font-h);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-l {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(52px, 8vw, 80px);
    }
}

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        letter-spacing: -2px;
        font-size: clamp(40px, 10vw, 56px);
    }

    .hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero-stats {
        gap: 24px;
    }

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

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

    .apps-header {
        align-items: flex-start;
    }

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

    .footer-nav {
        gap: 36px;
    }

    .notify-form {
        flex-direction: column;
    }

    .about-card {
        padding: 40px 24px;
    }

    .section-title {
        font-size: clamp(28px, 6vw, 40px);
    }

    .hero {
        padding: 110px 20px 80px;
    }

    .orb-1 {
        width: 600px;
        height: 600px;
        top: -200px;
        right: -150px;
    }

    .orb-2 {
        width: 500px;
        height: 500px;
        bottom: -100px;
        left: -100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .hero-btns .btn,
    .hero-btns .btn-disabled {
        width: 100%;
        justify-content: center;
    }

    .notify-btn {
        width: 100%;
    }

    .app-card {
        padding: 24px 20px;
    }

    .feat-card {
        padding: 24px 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }

    .about-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-trust {
        flex-direction: column;
        gap: 8px;
    }

    .trust-dot {
        display: none;
    }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
    background: var(--white);
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about .section-title {
    color: var(--ink);
}

.about .section-sub {
    color: #4B5563;
    margin-bottom: 20px;
}

.about .eyebrow {
    color: var(--blue);
}

.about-body {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 36px;
}

.about-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border-l);
    color: var(--ink);
    background: #fff;
}

.about-card {
    background: var(--ink2);
    border-radius: 24px;
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(37, 99, 255, 0.2);
    box-shadow: 0 0 60px rgba(37, 99, 255, 0.1), 0 0 120px rgba(0, 217, 184, 0.05);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
}

.about-card-icon {
    width: 76px;
    height: 76px;
    background: var(--grad-main);
    border-radius: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
    padding: 15px;
    box-shadow: 0 0 40px rgba(37, 99, 255, 0.4);
}

.about-card-sq {
    background: #fff;
    border-radius: 4px;
}

.about-card-sq:nth-child(2) {
    opacity: 0.6;
}

.about-card-sq:nth-child(3) {
    opacity: 0.6;
}

.about-card-sq:nth-child(4) {
    opacity: 0.28;
}

.about-card-name {
    font-family: var(--font-h);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}

.about-card-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.platform-tags {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.platform-tag {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pt-android {
    background: rgba(29, 164, 98, 0.15);
    color: #2BD47A;
    border: 1px solid rgba(29, 164, 98, 0.2);
}

.pt-ios {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════
   OUR APPS
═══════════════════════════════════════════ */
.our-apps {
    background: var(--ink);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.our-apps::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.1) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.apps-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 52px;
    flex-wrap: wrap;
    gap: 20px;
}

.apps-header .section-title {
    color: #fff;
    margin-bottom: 8px;
}

.apps-header .section-sub {
    margin-bottom: 0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.app-card {
    background: var(--card-d);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.28s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.app-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.28s;
}

.app-card:nth-child(1)::after {
    background: linear-gradient(90deg, var(--blue), var(--teal));
}

.app-card:nth-child(2)::after {
    background: linear-gradient(90deg, #7C3AED, var(--blue-l));
}

.app-card:nth-child(3)::after {
    background: linear-gradient(90deg, var(--teal), #22C55E);
}

.app-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.app-card:hover::after {
    opacity: 1;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    flex-shrink: 0;
}

.app-icon-1 {
    background: linear-gradient(135deg, var(--blue), var(--teal));
}

.app-icon-2 {
    background: linear-gradient(135deg, #7C3AED, var(--blue-l));
}

.app-icon-3 {
    background: linear-gradient(135deg, var(--teal), #22C55E);
}

.app-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(0, 217, 184, 0.08);
    border: 1px solid rgba(0, 217, 184, 0.15);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.app-name {
    font-family: var(--font-h);
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.app-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.65;
    margin-bottom: 22px;
}

.app-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.app-platforms {
    display: flex;
    gap: 6px;
}

.ap-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.apt-live {
    background: rgba(29, 164, 98, 0.12);
    color: #2BD47A;
    border: 1px solid rgba(29, 164, 98, 0.18);
}

.apt-soon {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.app-play-btn {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #1DA462;
    padding: 7px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s, transform 0.2s;
}

.app-play-btn:hover {
    background: #22BD72;
    transform: translateY(-1px);
}

.apps-coming-soon {
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.22);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
    background: var(--white);
    padding: 120px 0;
}

.features .eyebrow {
    color: var(--blue);
}

.features .section-title {
    color: var(--ink);
}

.features .section-sub {
    color: #4B5563;
    margin-bottom: 60px;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feat-card {
    padding: 32px 28px;
    border-radius: 18px;
    border: 1.5px solid var(--border-l);
    background: #fff;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.feat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 255, 0.2);
    box-shadow: 0 16px 48px rgba(37, 99, 255, 0.08);
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feat-title {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.feat-desc {
    font-size: 13.5px;
    color: #6B7280;
    line-height: 1.65;
}

/* ═══════════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════════ */
.download {
    background: var(--ink2);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.download-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.download .section-title {
    color: #fff;
}

.download .section-sub {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 auto 52px;
}

.store-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.store-btn-play {
    background: #1DA462;
    color: #fff;
    box-shadow: 0 8px 32px rgba(29, 164, 98, 0.35);
}

.store-btn-play:hover {
    background: #22BD72;
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(29, 164, 98, 0.4);
}

.store-btn-apple {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: default;
}

.store-btn-icon {
    font-size: 22px;
}

.store-btn-text {
    text-align: left;
}

.store-btn-label {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
    display: block;
    margin-bottom: 1px;
}

.store-btn-name {
    font-size: 15px;
}

.notify-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 28px;
}

.notify-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 14px;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    padding: 12px 16px;
    font-size: 13.5px;
    color: #fff;
    font-family: var(--font-b);
    outline: none;
    transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.notify-input:focus {
    border-color: rgba(37, 99, 255, 0.5);
}

.notify-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-h);
    cursor: pointer;
    transition: background 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.notify-btn:hover {
    background: var(--blue-l);
}

.download-trust {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: 0.3px;
}

.trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 64px 0 36px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-stores {
    display: flex;
    gap: 8px;
}

.fsb {
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fsb-play {
    background: #1DA462;
    color: #fff;
}

.fsb-play:hover {
    background: #22BD72;
    transform: translateY(-1px);
}

.fsb-apple {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.07);
    cursor: default;
}

.footer-nav {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.footer-col {}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-meta {
    display: flex;
    gap: 20px;
}

.footer-meta span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.25, 1, 0.3, 1),
        filter 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}