/* ============================================
   CLAWD LANDING — Cyberpunk Neon Redesign
   ============================================ */

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

:root {
    --bg-primary: #06060e;
    --bg-secondary: #0c0c1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.15);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.3);
    --accent-indigo: #6366f1;
    --accent-cyan: #06b6d4;
    --accent-rose: #f43f5e;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --gradient-main: linear-gradient(135deg, #6366f1, #06b6d4);
    --gradient-hot: linear-gradient(135deg, #f43f5e, #f59e0b);
    --gradient-mesh: radial-gradient(at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                     radial-gradient(at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
                     radial-gradient(at 50% 50%, rgba(244, 63, 94, 0.06) 0%, transparent 50%);
    --glow-indigo: 0 0 40px rgba(99, 102, 241, 0.3);
    --glow-cyan: 0 0 40px rgba(6, 182, 212, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.announcement-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.announcement-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-rose);
    animation: pulse 2s infinite;
}

.announcement-live {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-rose);
    padding: 2px 6px;
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: var(--radius-sm);
}

.announcement-bar strong {
    color: var(--text-primary);
}

.announcement-bar a {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 41px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
}

.navbar.scrolled .nav-container {
    background: rgba(6, 6, 14, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    border-color: var(--border-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    margin-top: 12px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 24px;
    right: 24px;
    background: rgba(6, 6, 14, 0.97);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
    backdrop-filter: blur(24px);
}

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

.mobile-menu a {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3), 0 0 60px rgba(99, 102, 241, 0.1);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5), 0 0 80px rgba(99, 102, 241, 0.2);
}

.btn-glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
}

.btn-block {
    width: 100%;
}

/* Button shimmer */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 60px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    top: -10%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: rgba(99, 102, 241, 0.2);
    animation: floatOrb 15s ease-in-out infinite;
}

.hero-orb-2 {
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.15);
    animation: floatOrb 20s ease-in-out infinite reverse;
}

.hero-orb-3 {
    bottom: 0;
    left: 40%;
    width: 600px;
    height: 300px;
    background: rgba(244, 63, 94, 0.08);
    animation: floatOrb 18s ease-in-out infinite 3s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero .container {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
    animation: pulse 2s infinite;
}

.hero-badge strong {
    color: var(--text-primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-line:nth-child(1) { animation-delay: 0.1s; }
.hero-line:nth-child(2) { animation-delay: 0.25s; }

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.55s forwards;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}

.avatar:first-child { margin-left: 0; }

.proof-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.proof-count {
    color: var(--text-primary);
    font-weight: 700;
}

/* Terminal Demo */
.hero-terminal {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.85s forwards;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border-subtle);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f57; }
.terminal-dots span:nth-child(2) { background: #febc2e; }
.terminal-dots span:nth-child(3) { background: #28c840; }

.terminal-title {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 14px;
    min-height: 80px;
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terminal-prompt {
    color: var(--accent-emerald);
    font-weight: 700;
}

.terminal-command {
    color: var(--text-primary);
}

.terminal-cursor {
    color: var(--accent-cyan);
    animation: blink 1s step-end infinite;
}

.terminal-output {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* --- Trust Marquee --- */
.trust-marquee {
    padding: 20px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-separator {
    color: var(--accent-indigo);
    font-size: 10px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Section Commons --- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

/* --- How it Works --- */
.how-it-works {
    background: var(--gradient-mesh);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 56px;
}

.step-connector {
    flex-shrink: 0;
    padding: 0 8px;
    opacity: 0.5;
}

.step-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 320px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.step-number-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.step-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-indigo);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-time {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 12px;
    letter-spacing: 0.5px;
}

/* --- Bento Features Grid --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bento-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: left;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition);
}

.bento-card:hover {
    border-color: var(--border-strong);
    background: var(--bg-card-hover);
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.bento-small {
    grid-column: span 1;
}

.bento-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.bento-card-content p,
.bento-small p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.bento-small h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-indigo);
}

.feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.tag-green {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
}

.tag-violet {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-indigo);
}

/* Savings Chart */
.savings-chart {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 140px;
    padding: 0 20px;
    position: relative;
}

.chart-bar {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-fill span {
    font-size: 11px;
    font-weight: 600;
}

.bar-them {
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.6), rgba(244, 63, 94, 0.2));
    color: var(--accent-rose);
}

.bar-us {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.2));
    color: var(--accent-emerald);
}

.chart-label {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
}

.savings-badge {
    margin-top: 20px;
    text-align: center;
}

.savings-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-emerald);
    display: block;
}

.savings-text {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Model Orbit */
.model-orbit {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    box-shadow: var(--glow-indigo);
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px dashed var(--border-subtle);
}

.ring-1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation: spinRing 20s linear infinite;
}

.ring-2 {
    width: 180px;
    height: 180px;
    margin: -90px 0 0 -90px;
    animation: spinRing 30s linear infinite reverse;
}

.orbit-dot {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--text-secondary);
    top: -18px;
    left: calc(50% - 18px);
}

.ring-1 .orbit-dot:nth-child(1) { top: -18px; left: calc(50% - 18px); }
.ring-1 .orbit-dot:nth-child(2) { bottom: -18px; left: calc(50% - 18px); top: auto; }
.ring-2 .orbit-dot:nth-child(1) { top: -18px; left: calc(50% - 18px); }
.ring-2 .orbit-dot:nth-child(2) { top: calc(50% - 18px); right: -18px; left: auto; }
.ring-2 .orbit-dot:nth-child(3) { bottom: -18px; left: calc(50% - 18px); top: auto; }

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Counter-rotate text */
.ring-1 .orbit-dot { animation: counterSpin 20s linear infinite; }
.ring-2 .orbit-dot { animation: counterSpin 30s linear infinite reverse; }

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* --- Integration Marquee --- */
.integrations {
    padding: 100px 0;
}

.integration-marquee {
    overflow: hidden;
    margin-top: 48px;
}

.marquee-slow .marquee-content {
    animation-duration: 40s;
}

.int-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.int-chip svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.int-chip:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    color: var(--text-primary);
}

/* --- Use Cases --- */
.prompt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

.prompt-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
}

.prompt-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: var(--bg-card-hover);
}

.prompt-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-indigo);
}

.prompt-category svg {
    opacity: 0.7;
}

.prompt-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    flex-grow: 1;
}

.prompt-result {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--accent-emerald);
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}

.result-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-emerald);
    flex-shrink: 0;
    animation: pulse 2s ease infinite;
}

/* --- Pricing --- */
.pricing {
    background: var(--gradient-mesh);
}

.pricing-free {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-free-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--bg-primary);
    background: var(--accent-emerald);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pricing-free-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.plan-info {
    text-align: left;
}

.plan-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 4px 0;
}

.plan-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-credits {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.plan-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.spec-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.pricing-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: left;
    position: relative;
    transition: var(--transition);
}

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

.pricing-popular {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.04);
    box-shadow: var(--glow-indigo);
}

.popular-badge,
.value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.popular-badge {
    background: var(--accent-amber);
    color: #000;
}

.value-badge {
    background: var(--accent-rose);
    color: #fff;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 4px;
}

.bonus-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-indigo);
    background: rgba(99, 102, 241, 0.1);
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.plan-features {
    list-style: none;
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.plan-features li.included {
    color: var(--text-primary);
}

.highlight-feature {
    color: var(--accent-indigo) !important;
    font-weight: 600;
}

.pricing-note {
    margin-top: 32px;
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Waitlist --- */
.waitlist {
    position: relative;
    overflow: hidden;
}

.waitlist-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    background: rgba(244, 63, 94, 0.08);
    border: 1px solid rgba(244, 63, 94, 0.2);
    color: var(--accent-rose);
    margin-bottom: 24px;
    animation: pulseGlow 3s ease-in-out infinite;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-rose);
    animation: pulse 1.5s infinite;
}

.waitlist-urgency strong {
    color: var(--text-primary);
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(244, 63, 94, 0); }
    50% { box-shadow: 0 0 30px rgba(244, 63, 94, 0.15); }
}

.waitlist-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group select option {
    background: #0c0c1a;
    color: var(--text-primary);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

.waitlist-success {
    max-width: 520px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.success-check {
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-check svg {
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.waitlist-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.waitlist-success p {
    font-size: 16px;
    color: var(--text-secondary);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* --- FAQ --- */
.faq {
    background: var(--gradient-mesh);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    text-align: left;
}

.faq-question:hover {
    color: var(--accent-indigo);
}

.faq-toggle {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
    display: flex;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--accent-indigo);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 4s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(32px, 5vw, 56px);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 32px;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    text-align: left;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 4px 0;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger children */
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.4s; }

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 3D Tilt --- */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-wide {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .steps-grid {
        flex-direction: column;
        gap: 16px;
        max-width: 400px;
        margin: 24px auto 0;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
    }

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

    .bento-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .pricing-free-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .hero {
        padding: 140px 16px 60px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-social-proof {
        flex-direction: column;
        gap: 12px;
    }

    section {
        padding: 80px 0;
    }

    .model-orbit {
        width: 160px;
        height: 160px;
    }

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

@media (max-width: 480px) {
    .prompt-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .pricing-card,
    .pricing-free {
        padding: 24px;
    }

    .announcement-inner {
        font-size: 12px;
    }
}
