/* ============================================
   ALTUX — DESIGN SYSTEM
   Style: Linear-inspired
   Base: Cool near-black #0D0D0F
   Accent: #5B47EB indigo
   Type: Inter
============================================ */

:root {
    /* Backgrounds */
    --bg:       #0D0D0F;
    --bg-2:     #141416;
    --bg-3:     #1A1A1C;
    --bg-4:     #202024;

    /* Text */
    --fg:       #F2F2F3;
    --fg-2:     #8A8A8E;
    --fg-3:     #4C4C52;

    /* Borders */
    --border:   #252528;
    --border-2: #333338;

    /* Brand */
    --blue:      #5B47EB;
    --blue-2:    #818CF8;
    --blue-dark: #4435C8;
    --blue-bg:   rgba(91, 71, 235, 0.08);
    --blue-glow: rgba(91, 71, 235, 0.12);

    /* Success */
    --green:    #22C55E;
    --green-bg: rgba(34, 197, 94, 0.08);

    /* Gradient */
    --gradient: linear-gradient(135deg, #5B47EB 0%, #818CF8 100%);

    /* Layout */
    --section:   96px;
    --container: 1040px;
    --radius:    8px;
    --radius-sm: 5px;
    --banner-h:  40px;

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
.display {
    font-family: 'Inter', sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg-3);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- LAYOUT ---- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: var(--section) 0; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.15s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    --btn-x: 0px;
    --btn-y: 0px;
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 8px 28px rgba(91, 71, 235, 0.38);
}

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

.btn-ghost:hover {
    color: var(--fg);
    border-color: var(--fg-3);
}

.btn svg { transition: transform 0.12s var(--ease); }
.btn:hover svg { transform: translateX(2px); }

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: var(--banner-h); left: 0; right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(13, 13, 15, 0.80);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, border-color 0.2s, top 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(13, 13, 15, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.logo-mark-img {
    height: 52px;
    width: auto;
    vertical-align: middle;
}

.logo-mark-img--sm { height: 20px; }

.logo-text {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--fg-2);
    transition: color 0.12s;
    letter-spacing: -0.01em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.nav-login {
    font-size: 13px;
    color: var(--fg-2);
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: color 0.12s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 6px 8px;
}

.nav-login:hover { color: var(--fg); }

/* ---- HERO ---- */
.hero {
    padding-top: calc(88px + var(--banner-h));
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Very subtle center radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 500px;
    background: radial-gradient(ellipse at 50% 0%,
        rgba(91, 71, 235, 0.07) 0%,
        transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 580px;
    padding-bottom: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 11.5px;
    color: var(--fg-2);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero-badge-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 6px rgba(91, 71, 235, 0.6);
}

.hero-title { color: var(--fg); }

.hero-sub {
    max-width: 440px;
    font-size: 16px;
    color: var(--fg-2);
    line-height: 1.65;
    letter-spacing: -0.015em;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-proof { margin-top: 4px; }

.hero-proof-text span {
    font-size: 12px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

.hero-proof-text a {
    color: var(--fg-2);
    transition: color 0.12s;
}
.hero-proof-text a:hover { color: var(--fg); }

/* Hero visual — full-width mockup at the bottom of hero */
.hero-visual {
    width: 100%;
    padding: 0 24px;
    max-width: var(--container);
    margin: 0 auto;
}

/* The 3D perspective tilt on the mockup, less than before */
.hero-mockup {
    width: 100%;
}

.mockup-window {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 -1px 0 rgba(255,255,255,0.05),
        0 24px 80px rgba(0,0,0,0.85),
        0 0 80px rgba(91,71,235,0.06);
}

.mockup-bar {
    padding: 11px 14px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mockup-dot { width: 9px; height: 9px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F56; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }

.mockup-body {
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 360px;
}

/* 3-column layout for hero mockup */
.mockup-body-3col {
    grid-template-columns: 155px 1fr 220px;
    min-height: 500px;
}

/* URL bar label */
.mockup-url {
    font-size: 11px;
    color: var(--fg-3);
    margin-left: 10px;
    letter-spacing: -0.01em;
}

/* Sidebar brand row */
.mockup-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
}

.mockup-logo-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.mockup-logo-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg);
    letter-spacing: -0.02em;
}

/* Module steps in mockup */
.mockup-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mockup-step {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    font-size: 11px;
    color: var(--fg-3);
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
}

.mockup-step.done { color: var(--fg-2); }
.mockup-step.active { color: var(--fg); }

.mockup-step span { line-height: 1.3; }

.mockup-step-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bg-4);
    border: 1px solid var(--border-2);
    flex-shrink: 0;
}

.mockup-step-dot.done {
    background: var(--green);
    border-color: var(--green);
}

.mockup-step-dot.active {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 5px rgba(91,71,235,0.5);
}

/* AI chat panel (right column of 3-col mockup) */
.mockup-chat-panel {
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mockup-chat-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    font-weight: 500;
    color: var(--fg-2);
    letter-spacing: -0.01em;
}

.mockup-chat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 5px rgba(91,71,235,0.5);
    flex-shrink: 0;
}

.mockup-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 10px;
    overflow: hidden;
}

.mockup-msg {
    font-size: 10.5px;
    line-height: 1.5;
    padding: 7px 9px;
    border-radius: 6px;
    letter-spacing: -0.01em;
}

.mockup-msg code {
    background: var(--bg-4);
    border-radius: 3px;
    padding: 1px 4px;
    font-size: 10px;
    color: var(--blue-2);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.mockup-msg-ai {
    background: var(--bg-3);
    border: 1px solid var(--border);
    color: var(--fg-2);
    align-self: flex-start;
    max-width: 95%;
}

.mockup-msg-user {
    background: var(--blue-bg);
    border: 1px solid rgba(91,71,235,0.15);
    color: var(--fg);
    align-self: flex-end;
    max-width: 90%;
    text-align: right;
}

/* Free CTA section (replaces pricing section) */
.free-cta-section {
    padding: var(--section) 0;
    border-top: 1px solid var(--border);
}

.free-cta-section .section-header p {
    max-width: 440px;
    margin: 0 auto;
}

.mockup-sidebar {
    border-right: 1px solid var(--border);
    padding: 10px 7px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--fg-2);
    cursor: default;
    transition: all 0.1s;
    letter-spacing: -0.01em;
}

.sidebar-item svg { width: 13px; height: 13px; flex-shrink: 0; }

.sidebar-item.active {
    background: var(--bg-4);
    color: var(--fg);
}

.sidebar-item:not(.active):hover {
    background: var(--bg-3);
    color: var(--fg);
}

.mockup-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mockup-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--fg-3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.mockup-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 13px 15px;
}

.mockup-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mockup-card-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.mockup-card-sub {
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

.tag {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.tag-green { background: rgba(34, 197, 94, 0.10); color: #22C55E; }
.tag-blue  { background: var(--blue-bg); color: var(--blue-2); }

.progress-track {
    background: var(--bg);
    border-radius: 100px;
    height: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--gradient);
    width: 0%;
    transition: width 1.2s var(--ease);
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 10px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

/* ---- SKILLS BAR ---- */
.skills-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

.skills-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scrollbar-width: none;
}

.skills-bar-inner::-webkit-scrollbar { display: none; }

.skills-label {
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.skills-list {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}

.skill-item {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--fg-3);
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: color 0.12s;
}

.skill-item:hover { color: var(--fg-2); }

/* ---- FEATURE SECTIONS (Linear pattern) ---- */
.feature-section {
    padding: var(--section) 0;
    border-top: 1px solid var(--border);
}

/* Section intro: left h2, right description */
.section-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 36px;
}

.section-intro .h2 { color: var(--fg); }

.section-intro-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 4px;
}

.section-intro-right p {
    font-size: 16px;
    color: var(--fg-2);
    line-height: 1.7;
    letter-spacing: -0.015em;
    max-width: 360px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--fg-2);
    letter-spacing: -0.01em;
    transition: color 0.12s, gap 0.15s;
    font-weight: 400;
}

.section-link:hover {
    color: var(--fg);
    gap: 7px;
}

.section-link svg {
    width: 12px; height: 12px;
    flex-shrink: 0;
    transition: transform 0.12s var(--ease);
}

.section-link:hover svg { transform: translateX(2px); }

/* ---- DEMO FRAME (product screenshot replacement) ---- */
.demo-frame {
    width: 100%;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.demo-frame-bar {
    padding: 10px 14px;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-dot { width: 8px; height: 8px; border-radius: 50%; }
.demo-dot:nth-child(1) { background: #FF5F56; }
.demo-dot:nth-child(2) { background: #FEBC2E; }
.demo-dot:nth-child(3) { background: #28C840; }

.demo-body {
    padding: 20px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Chat inside demo frame */
.demo-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-chat-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.demo-avatar {
    width: 26px; height: 26px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.demo-avatar-user {
    background: var(--bg-4);
    border: 1px solid var(--border);
    color: var(--fg-2);
}

.demo-avatar-ai {
    background: var(--blue-bg);
    border: 1px solid rgba(91, 71, 235, 0.2);
    color: var(--blue-2);
    font-size: 12px;
    font-weight: 600;
}

.demo-bubble {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 12.5px;
    color: var(--fg-2);
    line-height: 1.6;
    letter-spacing: -0.01em;
    max-width: 580px;
}

.demo-bubble strong {
    color: var(--fg);
    font-weight: 500;
}

/* Typing dots */
.typing-indicator {
    display: flex !important;
    align-items: center;
    gap: 4px;
    padding: 12px 14px !important;
    min-width: 48px;
}

.typing-indicator span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--fg-3);
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.18s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.36s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
    40%           { transform: translateY(-5px); opacity: 0.8; }
}

/* Roadmap in demo frame */
.demo-roadmap {
    display: flex;
    flex-direction: column;
}

.roadmap-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.roadmap-row:last-child { border-bottom: none; }

.roadmap-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.roadmap-dot-done   { background: var(--blue); }
.roadmap-dot-active { background: transparent; border: 2px solid var(--blue); box-shadow: 0 0 8px var(--blue-glow); }
.roadmap-dot-pending { background: var(--bg-4); border: 1px solid var(--border); }

.roadmap-row-title {
    font-size: 12.5px;
    color: var(--fg-2);
    letter-spacing: -0.01em;
    flex: 1;
}

.roadmap-row-title.done { color: var(--fg-3); text-decoration: line-through; }
.roadmap-row-title.active { color: var(--fg); }

.roadmap-row-tag {
    padding: 2px 7px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.roadmap-row-meta {
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

/* Portfolio cards in demo frame */
.demo-projects {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.demo-project-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 14px;
}

.demo-project-card-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.demo-project-card-meta {
    font-size: 11px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.demo-project-tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.demo-project-tag {
    padding: 2px 6px;
    background: var(--bg-4);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 10px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

/* ---- WHAT YOU GET / STATS ---- */
.proof-band {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.proof-card {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    transition: background 0.15s;
}

.proof-card:last-child { border-right: none; }
.proof-card:hover { background: var(--bg-2); }

.proof-stat {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--fg);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.proof-detail {
    font-size: 13px;
    color: var(--fg-2);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* ---- SECTION HEADER (generic, used by pricing/FAQ/etc) ---- */
.section-header { max-width: 520px; }
.section-header.center { margin: 0 auto; text-align: center; }
.section-header .label { display: block; margin-bottom: 12px; }
.section-header p {
    margin-top: 12px;
    font-size: 14.5px;
    color: var(--fg-2);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ---- PRICING ---- */
.pricing { border-top: 1px solid var(--border); }

.pricing-solo {
    max-width: 420px;
    margin: 52px auto 0;
}

.pricing-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: border-color 0.15s;
}

.pricing-card:hover { border-color: var(--border-2); }

.pricing-card.featured {
    border-color: var(--border-2);
}

.pricing-badge {
    position: absolute;
    top: -11px; left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    color: var(--fg-2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-tagline {
    font-size: 13px;
    color: var(--fg-2);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.pricing-price {
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--fg);
}

.pricing-price sup {
    font-size: 18px;
    font-weight: 400;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    color: var(--fg-2);
}

.pricing-price sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--fg-2);
}

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

.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }

.pricing-feature {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--fg-2);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.pricing-check { color: var(--blue-2); font-weight: 500; flex-shrink: 0; }

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

.pricing-guarantee svg { color: var(--fg-3); flex-shrink: 0; }

.pricing-fine {
    margin-top: 10px;
    font-size: 11px;
    color: var(--fg-3);
    text-align: center;
    letter-spacing: -0.01em;
}

.pricing-trial-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--fg-3);
    text-align: center;
}

.pricing-trial-link {
    color: var(--blue);
    text-decoration: none;
}
.pricing-trial-link:hover { text-decoration: underline; }

.hero-trial-cta {
    margin-top: 10px;
    font-size: 13px;
    color: var(--fg-3);
}

.hero-trial-link {
    color: var(--blue);
    text-decoration: none;
}
.hero-trial-link:hover { text-decoration: underline; }

/* Spots bar */
.spots-bar { margin: 14px 0 22px; }

.spots-bar-track {
    height: 2px;
    background: var(--bg-4);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 8px;
}

.spots-bar-fill {
    height: 100%;
    background: var(--blue);
    border-radius: 100px;
    width: 0%;
    transition: width 0.8s var(--ease);
}

.spots-bar-label {
    font-size: 11px;
    color: var(--fg-3);
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* ---- AI SHOWCASE (kept for compatibility, uses .demo-frame) ---- */
.ai-showcase { border-top: 1px solid var(--border); }

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

.ai-showcase-text .label { display: block; margin-bottom: 12px; }
.ai-showcase-text .h2 { margin-bottom: 20px; }

.ai-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.ai-bullets li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--fg-2);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.ai-bullets li::before {
    content: '–';
    color: var(--fg-3);
    flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-list {
    max-width: 620px;
    margin: 48px auto 0;
    border-top: 1px solid var(--border);
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 18px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--fg-2);
    transition: color 0.12s;
    letter-spacing: -0.01em;
}

.faq-q:hover { color: var(--fg); }
.faq-item.open .faq-q { color: var(--fg); }

.faq-arrow {
    flex-shrink: 0;
    width: 15px; height: 15px;
    color: var(--fg-3);
    transition: transform 0.3s var(--ease), color 0.12s;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
    color: var(--fg-2);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner {
    overflow: hidden;
    font-size: 13.5px;
    color: var(--fg-2);
    line-height: 1.7;
    padding-bottom: 0;
    transition: padding-bottom 0.35s var(--ease);
    letter-spacing: -0.01em;
}

.faq-item.open .faq-a-inner { padding-bottom: 18px; }

/* ---- FOUNDING PERKS ---- */
.founding-perks { border-top: 1px solid var(--border); }

.founding-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--border);
}

.founding-perk-card {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    transition: background 0.15s;
}

.founding-perk-card:last-child { border-right: none; }
.founding-perk-card:hover { background: var(--bg-2); }

.founding-perk-icon {
    font-size: 16px;
    margin-bottom: 14px;
    filter: grayscale(1);
    opacity: 0.7;
}

.founding-perk-card h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--fg);
}

.founding-perk-card p {
    font-size: 13px;
    color: var(--fg-2);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

/* ---- FINAL CTA ---- */
.cta-section {
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-inner {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 80px 24px;
}

.cta-inner .h2 { margin-bottom: 14px; }

.cta-inner p {
    font-size: 14.5px;
    color: var(--fg-2);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    line-height: 1.65;
}

.cta-fine {
    margin-top: 14px;
    font-size: 11.5px;
    color: var(--fg-3);
    letter-spacing: -0.01em;
}

/* ---- FOOTER ---- */
.footer {
    padding: 52px 24px 36px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand { display: flex; flex-direction: column; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo .logo-text { font-size: 13px; }

.footer-tagline {
    font-size: 12.5px;
    color: var(--fg-2);
    margin-top: 10px;
    line-height: 1.6;
    max-width: 180px;
    letter-spacing: -0.01em;
}

.footer-copy {
    font-size: 11px;
    color: var(--fg-3);
    margin-top: 14px;
    letter-spacing: -0.01em;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-3);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--fg-2);
    transition: color 0.12s;
    letter-spacing: -0.01em;
}

.footer-col a:hover { color: var(--fg); }

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.reveal.visible { opacity: 1; }

.reveal-group > * {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.reveal-group.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0s;     }
.reveal-group.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.07s;  }
.reveal-group.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.14s;  }
.reveal-group.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.21s;  }
.reveal-group.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.28s;  }

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

.hamburger-line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--fg-2);
    border-radius: 2px;
    transition: all 0.25s var(--ease);
    transform-origin: center;
}

.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---- MOBILE MENU ---- */
.mobile-menu {
    position: fixed;
    top: calc(52px + var(--banner-h));
    left: 0; right: 0; bottom: 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-menu-link {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--fg-2);
    padding: 10px 32px;
    text-align: center;
    transition: color 0.12s;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.mobile-menu-link:hover { color: var(--fg); }
.mobile-menu-cta { margin-top: 20px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    :root { --section: 72px; }

    .section-intro { grid-template-columns: 1fr; gap: 20px; }
    .section-intro-right p { max-width: 100%; }

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

    .proof-grid { grid-template-columns: 1fr; }
    .proof-card { border-right: none; border-bottom: 1px solid var(--border); }
    .proof-card:last-child { border-bottom: none; }

    .founding-perks-grid { grid-template-columns: 1fr; }
    .founding-perk-card { border-right: none; border-bottom: 1px solid var(--border); }
    .founding-perk-card:last-child { border-bottom: none; }

    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { display: none; }

    .demo-projects { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
    :root { --section: 56px; --banner-h: 48px; }

    .nav-links  { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    .hero-content { gap: 14px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { justify-content: center; }

    .demo-body { padding: 14px; }
    .demo-projects { grid-template-columns: 1fr; }

    .pricing-solo { max-width: 100%; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .cta-inner { padding: 60px 24px; }
    .top-banner { font-size: 11px; padding: 0 40px 0 16px; text-align: center; }
    .top-banner-cta { display: none; }
}

/* ================================================================
   ADDITIONS — Banner · Marquee · Accent font · Animations · Indigo
================================================================ */

/* ---- TOP BANNER ---- */
.top-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 110;
    height: var(--banner-h);
    background: rgba(91, 71, 235, 0.13);
    border-bottom: 1px solid rgba(91, 71, 235, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
    letter-spacing: -0.01em;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    overflow: hidden;
}

/* Subtle shimmer sweep across banner */
.top-banner::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    animation: banner-sweep 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes banner-sweep {
    0%   { left: -60%; }
    100% { left: 160%; }
}

.top-banner.dismissed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

body.banner-dismissed .nav         { top: 0; }
body.banner-dismissed .hero        { padding-top: 96px; }
body.banner-dismissed .mobile-menu { top: 52px; }

.top-banner-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue-2);
    flex-shrink: 0;
    position: relative;
}

.top-banner-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--blue-2);
    animation: dot-ring-pulse 2.2s ease-out infinite;
}

.top-banner-text { color: var(--fg-2); }
.top-banner-text strong { color: var(--fg); }

.top-banner-cta {
    background: none;
    border: none;
    color: var(--blue-2);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: color 0.12s;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.top-banner-cta:hover { color: var(--fg); }

/* Top-banner "Claim yours" button — link style with indigo hover */
.top-banner .claim-btn,
.top-banner-claim {
    background: none;
    border: none;
    color: var(--fg);
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.top-banner .claim-btn:hover,
.top-banner-claim:hover {
    color: var(--blue);
}

.top-banner-close {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--fg-3);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 4px 6px;
    transition: color 0.12s;
    font-family: inherit;
}

.top-banner-close:hover { color: var(--fg-2); }

/* ---- ACCENT WORD — Playfair Display italic ---- */
.accent-word {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--fg);
    letter-spacing: -0.01em;
}

/* ---- HERO LINE REVEAL (cinematic) ---- */
.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.06em; /* prevent descender clip */
}

.hero-line-inner {
    display: block;
    animation: line-rise 1s var(--ease) both;
}

.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.05s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.18s; }

@keyframes line-rise {
    from { transform: translateY(108%); }
    to   { transform: translateY(0); }
}

/* Stagger elements below hero title */
.hero-sub     { opacity: 0; animation: fade-up 0.7s var(--ease) 0.38s both; }
.hero-actions { opacity: 0; animation: fade-up 0.7s var(--ease) 0.50s both; }
.hero-proof   { opacity: 0; animation: fade-up 0.7s var(--ease) 0.60s both; }
.hero-badge   { opacity: 0; animation: fade-up 0.7s var(--ease) 0s    both; }

@keyframes fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- MARQUEE ---- */
.marquee-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    background: rgba(91, 71, 235, 0.025);
}

/* Fade edges */
.marquee-bar::before,
.marquee-bar::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-2);
    white-space: nowrap;
    padding: 0 32px;
    opacity: 0.65;
    transition: opacity 0.15s;
    cursor: default;
}

.marquee-item:hover { opacity: 1; }

.marquee-sep {
    color: rgba(91, 71, 235, 0.3);
    font-size: 8px;
    flex-shrink: 0;
    line-height: 1;
}

/* ---- BADGE DOT PULSE RING ---- */
.hero-badge-dot {
    position: relative;
}

.hero-badge-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--blue);
    animation: dot-ring-pulse 2.5s ease-out infinite;
}

@keyframes dot-ring-pulse {
    0%   { transform: scale(1);   opacity: 0.9; }
    100% { transform: scale(3);   opacity: 0; }
}

/* ---- FLOATING HERO MOCKUP ---- */
@keyframes float-up-down {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-10px); }
}

.hero-mockup {
    animation: float-up-down 7s ease-in-out infinite;
    will-change: transform;
}

/* ---- DEMO FRAME — PERSPECTIVE REVEAL ---- */
.demo-frame.reveal {
    transform: perspective(1400px) rotateX(7deg) translateY(28px);
    opacity: 0;
    transition: transform 1.1s var(--ease), opacity 0.7s var(--ease);
}

.demo-frame.reveal.visible {
    transform: perspective(1400px) rotateX(0deg) translateY(0);
    opacity: 1;
}

/* ---- SECTION H2 — INDIGO UNDERLINE ---- */
.section-intro .h2 {
    position: relative;
    padding-bottom: 18px;
}

.section-intro .h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 1s var(--ease);
}

.section-intro.visible .h2::after { width: 52px; }

/* ---- PRICING CARD — GLOW PULSE ---- */
@keyframes pricing-glow-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(91, 71, 235, 0.28),
            0 0 20px rgba(91, 71, 235, 0.07);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(129, 140, 248, 0.50),
            0 0 60px rgba(91, 71, 235, 0.16),
            0 0 100px rgba(91, 71, 235, 0.05);
    }
}

.pricing-card.featured {
    animation: pricing-glow-pulse 3.5s ease-in-out infinite;
}

/* ---- MAGNETIC PRIMARY BUTTON ---- */
.btn-primary {
    will-change: transform;
    transition: background 0.15s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
}

.btn-primary:active {
    transform: scale(0.97) !important;
    box-shadow: 0 3px 10px rgba(91, 71, 235, 0.2) !important;
}

/* ---- PROOF STAT POP ENTRANCE ---- */
@keyframes stat-pop {
    from { transform: scale(0.75) translateY(12px); opacity: 0; }
    to   { transform: scale(1)    translateY(0);    opacity: 1; }
}

.reveal-group.visible .proof-card:nth-child(1) .proof-stat { animation: stat-pop 0.65s var(--ease) 0.0s  both; }
.reveal-group.visible .proof-card:nth-child(2) .proof-stat { animation: stat-pop 0.65s var(--ease) 0.12s both; }
.reveal-group.visible .proof-card:nth-child(3) .proof-stat { animation: stat-pop 0.65s var(--ease) 0.24s both; }

/* ---- ROADMAP ACTIVE DOT PULSE ---- */
@keyframes dot-active-pulse {
    0%, 100% { box-shadow: 0 0 0 0   rgba(91, 71, 235, 0.5); }
    50%      { box-shadow: 0 0 0 5px rgba(91, 71, 235, 0); }
}

.roadmap-dot-active {
    animation: dot-active-pulse 2s ease-in-out infinite;
}

/* ---- SECTION INTRO SLIDE UP ---- */
.section-intro.reveal {
    transition: opacity 0.6s var(--ease), transform 0.7s var(--ease);
    transform: translateY(24px);
}

.section-intro.reveal.visible {
    transform: translateY(0);
}

/* ---- INDIGO SIDEBAR ACTIVE ---- */
.sidebar-item.active {
    background: rgba(91, 71, 235, 0.10);
    color: var(--blue-2);
    border: none;
}

/* ---- SECTION LINK INDIGO ---- */
.section-link:hover { color: var(--blue-2); }

/* ---- CURSOR GLOW (follows mouse) ---- */
.cursor-glow {
    position: fixed;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(91, 71, 235, 0.05) 0%,
        transparent 65%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: left 0.12s ease, top 0.12s ease;
}

/* ---- NAV SCROLLED ADJUSTED ---- */
.nav.scrolled {
    background: rgba(13, 13, 15, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
}

/* ---- PROOF DETAIL SLIGHTLY BIGGER ---- */
.proof-detail {
    font-size: 14px;
}

/* ---- FOUNDING PERK ICON — indigo tint ---- */
.founding-perk-icon {
    filter: none;
    opacity: 1;
    color: var(--blue-2);
}

/* ================================================================
   ROUND 2 — Scramble · Chat stagger · Parallax · Card shimmer
================================================================ */

/* 3rd hero line delay fix */
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.28s; }

/* Push hero sub/actions/proof so they don't overlap 3rd line */
.hero-sub     { animation-delay: 0.58s; }
.hero-actions { animation-delay: 0.72s; }
.hero-proof   { animation-delay: 0.84s; }

/* nav links — always visible, no entrance animation */
.nav-link   { opacity: 1; }
.nav-actions { opacity: 1; }

/* ---- DEMO CHAT BUBBLE STAGGER ---- */
.demo-chat-row {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.demo-chat-row.chat-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- PROOF CARD HOVER SHIMMER ---- */
.proof-card {
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0; left: -110%;
    width: 55%; height: 100%;
    background: linear-gradient(108deg, transparent, rgba(255,255,255,0.028), transparent);
    pointer-events: none;
    transition: left 0.7s var(--ease);
}

.proof-card:hover::before { left: 160%; }

/* ---- FOUNDING PERK CARD HOVER SHIMMER ---- */
.founding-perk-card {
    position: relative;
    overflow: hidden;
}

.founding-perk-card::before {
    content: '';
    position: absolute;
    top: 0; left: -110%;
    width: 55%; height: 100%;
    background: linear-gradient(108deg, transparent, rgba(255,255,255,0.025), transparent);
    pointer-events: none;
    transition: left 0.7s var(--ease);
}

.founding-perk-card:hover::before { left: 160%; }

/* ---- SECTION H2 FADE-UP ON SCROLL ---- */
.section-intro .h2,
.section-header .h2 {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.section-intro .h2.h2-visible,
.section-header .h2.h2-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- START FREE SECTION ---- */
.start-free-section {
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

.start-free-inner {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.start-free-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(91,71,235,0.10);
    border: 1px solid rgba(91,71,235,0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--blue-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.start-free-sub {
    font-size: 15px;
    color: var(--fg-2);
    line-height: 1.7;
    margin: 16px 0 28px;
    letter-spacing: -0.01em;
}

.start-free-fine {
    margin-top: 12px;
    font-size: 11px;
    color: var(--fg-3);
}

.start-free-pricing-link {
    margin-top: 8px;
    font-size: 12px;
    color: var(--fg-3);
}

.start-free-pricing-link a {
    color: var(--blue);
    text-decoration: none;
}
.start-free-pricing-link a:hover { text-decoration: underline; }

/* ---- PRICING TABS (3-column grid) ---- */
.pricing-tabs {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 52px;
}

.pricing-tabs .pricing-card {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
}

.pricing-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--fg-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.pricing-card-free {
    border-color: rgba(34,197,94,0.2);
}

.btn-secondary-card {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--bg-3);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-family: inherit;
    text-align: center;
    text-decoration: none;
}

.btn-secondary-card:hover {
    background: var(--bg-4, #202024);
    border-color: var(--fg-3);
}

@media (max-width: 860px) {
    .pricing-tabs { flex-direction: column; align-items: center; }
    .pricing-tabs .pricing-card { max-width: 420px; width: 100%; }
}

/* ============================================
   LANGUAGE SWITCHER
============================================ */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 400;
    color: var(--fg-2);
    background: none;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm, 8px);
    padding: 5px 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.12s, border-color 0.12s;
    white-space: nowrap;
}

.lang-switcher-btn:hover {
    color: var(--fg);
    border-color: var(--fg-3);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--bg-3, #1a1a1c);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm, 8px);
    overflow: hidden;
    min-width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 200;
}

.lang-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--fg-2);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.1s, color 0.1s;
}

.lang-option:hover {
    background: var(--border);
    color: var(--fg);
}

.lang-dropdown.hidden {
    display: none;
}

/* Mobile language row */
.mobile-lang-row {
    display: flex;
    gap: 12px;
    padding: 10px 32px;
    justify-content: center;
}

.mobile-lang-btn {
    font-size: 14px;
    color: var(--fg-2);
    background: none;
    border: 1px solid var(--border-2);
    border-radius: 8px;
    padding: 7px 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.12s, border-color 0.12s;
}

.mobile-lang-btn:hover {
    color: var(--fg);
    border-color: var(--fg-3);
}

