:root {
    --black: #080608;
    --deep: #0e080a;
    --surface: #150a0c;
    --card: #1c0d10;
    --border: #2e1318;
    --red: #8B0000;
    --red-light: #b30000;
    --red-bright: #cc1a1a;
    --red-glow: rgba(139, 0, 0, 0.15);
    --cream: #f5f0ee;
    --muted: #7a6a6c;
    --text: #ede5e6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: default;
}

/* ── GRAIN OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
    z-index: 9999;
}

/* ── CUSTOM CURSOR ── */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(139, 0, 0, 0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.25s ease;
    transform: translate(-50%, -50%);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(8, 8, 7, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(0px);
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .bold {
    font-weight: 700;
}

.logo .light {
    font-weight: 300;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--cream);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
}

.nav-cta:hover {
    background: var(--red-bright);
    transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--red);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 5.5vw, 6.5rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--red-bright);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.9s forwards;
}

.btn-primary {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-bright);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-primary:hover::after {
    transform: translateX(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-ghost {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--cream);
}

.btn-ghost svg {
    transition: transform 0.2s;
}

.btn-ghost:hover svg {
    transform: translateX(4px);
}

/* hero right — visual */
.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.08) 0%, transparent 60%),
        linear-gradient(to right, var(--black) 0%, transparent 30%);
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(139, 0, 0, 0.15) 0%, transparent 70%),
        var(--deep);
}

/* floating dashboard mockup */
.dashboard-mock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 480px;
    z-index: 3;
    opacity: 0;
    animation: slideLeft 1s ease 0.8s forwards;
}

.mock-window {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(139, 0, 0, 0.06);
}

.mock-titlebar {
    background: var(--surface);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}

.mock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-left: auto;
}

.mock-body {
    padding: 20px;
}

.mock-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.mock-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 2px;
}

.mock-stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--red-bright);
    line-height: 1;
}

.mock-stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
}

.mock-order-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-order {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 2px;
}

.mock-order-id {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
}

.mock-order-item {
    font-size: 0.78rem;
    color: var(--text);
    flex: 1;
    padding: 0 12px;
}

.mock-order-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
}

.badge-green {
    background: rgba(80, 180, 100, 0.15);
    color: #5cb86a;
    border: 1px solid rgba(80, 180, 100, 0.2);
}

.badge-amber {
    background: rgba(139, 0, 0, 0.15);
    color: var(--red-bright);
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.badge-muted {
    background: rgba(122, 114, 104, 0.15);
    color: var(--muted);
    border: 1px solid rgba(122, 114, 104, 0.2);
}

/* ai bubble */
.mock-ai {
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.10) 0%, transparent 100%);
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 2px;
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mock-ai-icon {
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
    color: #fff;
    font-weight: 600;
}

.mock-ai-text {
    font-size: 0.72rem;
    color: var(--text);
    line-height: 1.5;
}

.mock-ai-text strong {
    color: var(--red-bright);
    font-weight: 500;
}

/* ── SECTION COMMON ── */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--red);
}

/* ── STATS BAR ── */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
    background: var(--deep);
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    padding: 0 48px;
    border-right: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.stat-item:first-child {
    padding-left: 60px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
}

.stat-unit {
    color: var(--red);
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 6px;
}

/* ── FEATURES ── */
.features {
    padding: 120px 0;
}

.features-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.features-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
}

.features-title em {
    font-style: italic;
    color: var(--red-bright);
}

.features-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.feature-card {
    background: var(--surface);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    background: var(--card);
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--card);
    font-size: 1.1rem;
}

.feature-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    color: var(--border);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 14px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ── AI SECTION ── */
.ai-section {
    padding: 120px 0;
    background: var(--deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ai-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.ai-content {}

.ai-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 3.8vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 28px;
}

.ai-title em {
    font-style: italic;
    color: var(--red-bright);
}

.ai-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.ai-capabilities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-cap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--text);
}

.ai-cap::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.ai-terminal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
    background: var(--surface);
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.terminal-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-left: 8px;
}

.terminal-body {
    padding: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    line-height: 1.8;
}

.t-prompt {
    color: var(--red);
}

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

.t-response {
    color: #82c9a0;
    margin-left: 16px;
}

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

.t-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background: var(--red);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 2px;
}

/* ── APPS SECTION ── */
.apps-section {
    padding: 120px 0;
}

.apps-header {
    text-align: center;
    margin-bottom: 80px;
}

.apps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 20px;
}

.apps-title em {
    font-style: italic;
    color: var(--red-bright);
}

.apps-subtitle {
    font-size: 0.92rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.app-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.app-card:hover {
    border-color: rgba(139, 0, 0, 0.3);
}

.app-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 5px 12px;
    display: inline-block;
    margin-bottom: 28px;
}

.app-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.app-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 36px;
}

.app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-feat {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-feat::before {
    content: '→';
    color: var(--red);
    font-size: 0.7rem;
}

/* ── PRICING ── */
.pricing-section {
    padding: 120px 0;
    background: var(--deep);
    border-top: 1px solid var(--border);
}

.pricing-header {
    text-align: center;
    margin-bottom: 72px;
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 16px;
}

.pricing-sub {
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}

.pricing-card {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background 0.3s;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.featured {
    background: var(--card);
    border-top: 2px solid var(--red);
}

.pricing-card:not(.featured) {
    background: var(--surface);
}

.pricing-card:not(.featured):hover {
    background: var(--card);
}

.pricing-badge {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 4px 10px;
    margin-bottom: 24px;
    display: inline-block;
}

.pricing-plan {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-price sup {
    font-size: 1.5rem;
    color: var(--red);
}

.pricing-period {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 36px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 32px;
}

.pricing-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.pricing-perk {
    font-size: 0.83rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.perk-check {
    color: var(--red);
    font-size: 0.9rem;
}

.perk-x {
    color: var(--border);
    font-size: 0.9rem;
}

.pricing-btn {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    border: 1px solid var(--border);
    color: var(--muted);
    background: transparent;
}

.pricing-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.pricing-btn.primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.pricing-btn.primary:hover {
    background: var(--red-bright);
}

/* ── CTA ── */
.cta-section {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 28px;
}

.cta-title em {
    font-style: italic;
    color: var(--red-bright);
}

.cta-sub {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 52px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--deep);
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--cream);
}

.footer-copy {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

.footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

/* ── APP STORE BUTTONS ── */
.store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 10px 18px;
    text-decoration: none;
    color: var(--cream);
    background: var(--card);
    transition: border-color 0.2s, background 0.2s;
    border-radius: 2px;
}

.store-btn:hover {
    border-color: var(--red);
    background: var(--surface);
}

.store-btn svg {
    flex-shrink: 0;
}

.store-btn-label {
    display: flex;
    flex-direction: column;
}

.store-btn-sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
}

.store-btn-name {
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ── FOOTER STORE BUTTONS ── */
.footer-stores {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    padding: 8px 14px;
    text-decoration: none;
    color: var(--cream);
    background: transparent;
    transition: border-color 0.2s;
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 500;
}

.footer-store-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.footer-store-btn svg {
    flex-shrink: 0;
}

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

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translate(-30%, -50%);
    }

    to {
        opacity: 1;
        transform: translate(-40%, -50%);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* animated X when open */
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE DROPDOWN MENU ── */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(14, 8, 10, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 99;
    transform: translateY(-8px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile-link {
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-mobile-link:last-of-type {
    border-bottom: none;
}

.nav-mobile-link:hover {
    color: var(--cream);
}

.nav-mobile-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    text-decoration: none;
    text-align: center;
    padding: 14px;
    margin-top: 12px;
    transition: background 0.2s;
}

.nav-mobile-cta:hover {
    background: var(--red-bright);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        padding: 24px 24px;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .logo-text {
        display: none;
    }

    .footer-stores {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .footer-store-btn {
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        padding: 120px 24px 60px;
    }

    .hero-right {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 0 24px;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .stat-item:first-child {
        padding-left: 24px;
    }

    .features-header {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .ai-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

    .pricing-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .cta-buttons {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }
}