/* ===== ULTRA-PREMIUM HIVE LANDING PAGE ===== */
/* Luxury Black & Gold with Animations, Shimmer, Glass Effects */

/* ===== INTERACTIVE DEMO SECTION ===== */
.interactive-demo {
    padding: 180px 40px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-dark) 50%, var(--bg-void) 100%);
    position: relative;
}

.demo-badge {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gold);
    color: var(--bg-void);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 32px;
    animation: badgePulse 2s ease-in-out infinite;
}

.demo-subtitle {
    color: var(--text-dim);
    font-size: 1.15rem;
    margin-bottom: 56px;
}

.demo-container {
    max-width: 1100px;
    margin: 0 auto;
}

.demo-input-section {
    margin-bottom: 56px;
}

.demo-input-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.demo-input {
    flex: 1;
    min-width: 300px;
    padding: 20px 28px;
    background: var(--bg-card);
    border: 2px solid var(--border-gold);
    border-radius: 8px;
    color: var(--cream);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.demo-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.demo-input::placeholder {
    color: var(--text-muted);
}

.demo-button {
    padding: 20px 40px;
    background: var(--gold);
    border: none;
    color: var(--bg-void);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 8px;
    min-width: 220px;
}

.demo-button:hover:not(:disabled) {
    background: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.demo-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Demo Panels */
.demo-panels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}

.demo-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s ease;
}

.niche-scout-panel {
    border-color: rgba(59, 130, 246, 0.3);
}

.hive-panel {
    border-color: var(--border-gold);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.panel-icon {
    font-size: 1.3rem;
}

.panel-title {
    font-weight: 600;
    color: var(--cream);
    flex: 1;
}

.panel-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.panel-content {
    padding: 24px;
    min-height: 280px;
}

.panel-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
}

.panel-placeholder p {
    color: var(--text-muted);
    font-style: italic;
}

/* Demo Arrow */
.demo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-muted);
    transition: all 0.5s ease;
}

.demo-arrow.active {
    color: var(--gold);
    animation: arrowPulse 1s ease-in-out infinite;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 20px;
    justify-content: center;
}

.typing-indicator span {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: typingDot 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Scout Results */
.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    animation: fadeSlideUp 0.4s ease-out both;
}

.result-item:nth-child(1) {
    animation-delay: 0s;
}

.result-item:nth-child(2) {
    animation-delay: 0.1s;
}

.result-item:nth-child(3) {
    animation-delay: 0.2s;
}

.result-item:nth-child(4) {
    animation-delay: 0.3s;
}

.result-label {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.result-value {
    color: var(--cream);
    font-weight: 500;
}

.result-value.gold {
    color: var(--gold);
}

.result-value.score-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

.result-verdict {
    margin-top: 20px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
    color: #10b981;
    font-weight: 500;
    animation: fadeSlideUp 0.4s ease-out 0.4s both;
}

/* Content Cards */
.content-card {
    background: var(--bg-elevated);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    border-left: 3px solid var(--border-subtle);
    animation: fadeSlideUp 0.4s ease-out both;
}

.content-card:nth-child(1) {
    animation-delay: 0s;
}

.content-card:nth-child(2) {
    animation-delay: 0.15s;
}

.content-card:nth-child(3) {
    animation-delay: 0.3s;
}

.content-card:nth-child(4) {
    animation-delay: 0.45s;
}

.content-card.twitter {
    border-left-color: #1da1f2;
}

.content-card.youtube {
    border-left-color: #ff0000;
}

.content-card.instagram {
    border-left-color: #e4405f;
}

.content-card.linkedin {
    border-left-color: #0077b5;
}

.content-platform {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.content-text {
    color: var(--cream-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Demo CTA */
.demo-cta {
    margin-top: 56px;
    padding: 40px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}

.demo-cta p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.demo-cta strong {
    color: var(--gold);
}

.fade-in {
    animation: fadeSlideUp 0.6s ease-out both;
}

/* Responsive Demo */
@media (max-width: 900px) {
    .demo-panels {
        grid-template-columns: 1fr;
    }

    .demo-arrow {
        transform: rotate(90deg);
        padding: 12px 0;
    }

    .demo-input-wrapper {
        flex-direction: column;
    }

    .demo-input {
        min-width: 100%;
    }

    .demo-button {
        width: 100%;
    }
}

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
    --bg-void: #050505;
    --bg-dark: #0a0a0a;
    --bg-elevated: #111111;
    --bg-card: #161616;
    --gold: #d4af37;
    --gold-bright: #ffd700;
    --gold-light: #f4e4ba;
    --gold-dim: rgba(212, 175, 55, 0.12);
    --gold-glow: rgba(212, 175, 55, 0.4);
    --cream: #faf8f5;
    --cream-dim: rgba(250, 248, 245, 0.8);
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.55);
    --text-muted: rgba(255, 255, 255, 0.3);
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffd700 40%, #d4af37 60%, #f4e4ba 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.3) 50%, transparent 100%);
    --shadow-gold: 0 0 80px rgba(212, 175, 55, 0.2);
    --shadow-gold-intense: 0 0 120px rgba(212, 175, 55, 0.35);
    --shadow-depth: 0 30px 100px rgba(0, 0, 0, 0.7);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-void);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animated background grain texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
}

h3 {
    font-size: 1.4rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

p {
    font-weight: 300;
}

.gold-text {
    color: var(--gold);
}

/* Animated gradient text with shimmer */
.gradient-text {
    background: var(--gradient-gold);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 48px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-shimmer);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-void);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 24px 64px;
    font-size: 0.9rem;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 32px 0;
    transition: all 0.5s ease;
}

.nav.scrolled {
    background: rgba(5, 5, 5, 0.92);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border-gold);
    padding: 18px 0;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.nav-cta {
    padding: 14px 32px;
    background: transparent;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 1px solid var(--gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: -1;
}

.nav-cta:hover {
    color: var(--bg-void);
}

.nav-cta:hover::before {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
    padding: 160px 40px 120px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

/* Animated gold orb glow */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    filter: blur(80px);
    animation: orbFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: orbFloat 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 1;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    font-size: 0.7rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    animation: fadeSlideDown 1s ease-out;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    margin-bottom: 32px;
    color: var(--cream);
    animation: fadeSlideUp 1s ease-out 0.2s both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-dim);
    margin-bottom: 56px;
    max-width: 500px;
    line-height: 1.9;
    animation: fadeSlideUp 1s ease-out 0.4s both;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    margin-bottom: 72px;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s ease-out 0.6s both;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    animation: fadeSlideUp 1s ease-out 0.8s both;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 2px solid var(--gold-dim);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    margin-left: -12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: scale(1.1);
    border-color: var(--gold);
    z-index: 1;
}

/* Hero Visual / Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    animation: fadeSlideUp 1.2s ease-out 0.5s both;
}

.dashboard-mockup {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 540px;
    box-shadow: var(--shadow-depth), var(--shadow-gold);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dashboard-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-depth), var(--shadow-gold-intense);
}

.mockup-header {
    background: var(--bg-elevated);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-subtle);
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:nth-child(3) {
    background: #28c840;
}

.mockup-title {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mockup-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 340px;
}

.mockup-sidebar {
    background: var(--bg-elevated);
    padding: 24px 16px;
    border-right: 1px solid var(--border-subtle);
}

.mockup-item {
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mockup-item:hover {
    color: var(--cream);
    background: var(--bg-card);
}

.mockup-item.active {
    background: var(--gold);
    color: var(--bg-void);
    font-weight: 500;
}

.mockup-main {
    padding: 28px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.platform-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.72rem;
    transition: all 0.4s ease;
    cursor: pointer;
}

.platform-card:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    transform: translateY(-3px);
}

/* ===== PROBLEM SECTION ===== */
.problem {
    padding: 180px 40px;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative line */
.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
}

/* Subtle pattern */
.problem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.problem h2 {
    margin-bottom: 80px;
    color: var(--cream);
    position: relative;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
    position: relative;
}

.cost-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-subtle);
    padding: 44px 32px;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cost-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: background 0.4s ease;
}

.cost-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cost-card:hover::before {
    background: var(--gold);
}

.cost-role {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cost-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #dc2626;
}

.problem-total {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--cream);
    position: relative;
}

.problem-total strong {
    color: #dc2626;
}

.problem-kicker {
    color: var(--text-muted);
    font-style: italic;
    font-size: 1.15rem;
}

/* ===== SOLUTION SECTION ===== */
.solution {
    padding: 180px 40px;
    text-align: center;
    position: relative;
}

.solution-badge {
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
}

.solution h2 {
    margin-bottom: 100px;
    color: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.benefit-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-subtle);
    padding: 56px 44px;
    border-radius: 8px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 28px;
    display: inline-block;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.benefit-card h3 {
    margin-bottom: 18px;
    color: var(--cream);
    font-size: 1.5rem;
}

.benefit-card p {
    color: var(--text-dim);
    line-height: 1.9;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 180px 40px;
    background: var(--bg-dark);
}

.features>.container>h2 {
    text-align: center;
    margin-bottom: 120px;
    color: var(--cream);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block.reverse {
    direction: rtl;
}

.feature-block.reverse>* {
    direction: ltr;
}

.feature-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gold-dim);
    border-left: 2px solid var(--gold);
    font-size: 0.65rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.feature-content h3 {
    margin-bottom: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--cream);
    font-weight: 400;
}

.feature-content>p {
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--cream-dim);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    padding-left: 12px;
    border-bottom-color: var(--gold);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li strong {
    color: var(--gold-light);
}

/* Feature Visuals */
.agent-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.agent-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--cream);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    transition: width 0.4s ease;
}

.agent-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.agent-card:hover::before {
    width: 100%;
    opacity: 0.1;
}

.agent-card.analyst::before {
    background: #3b82f6;
}

.agent-card.manager::before {
    background: #10b981;
}

.agent-card.creator::before {
    background: var(--gold);
}

.agent-card.designer::before {
    background: #ec4899;
}

.studio-preview {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-depth);
}

.studio-tabs {
    display: flex;
    gap: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
}

.studio-tabs span {
    padding: 16px 28px;
    font-size: 0.7rem;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.studio-tabs span:hover {
    color: var(--cream);
}

.studio-tabs span.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.studio-output {
    padding: 56px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, transparent 0%, var(--gold-dim) 100%);
}

.generated-image {
    width: 160px;
    height: 160px;
    background: var(--gradient-gold);
    background-size: 200% 200%;
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: 3rem;
    animation: gradientShift 4s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.intel-panel {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 32px;
}

.intel-item {
    padding: 20px;
    background: var(--bg-card);
    border-left: 2px solid var(--gold);
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--cream-dim);
    transition: all 0.3s ease;
}

.intel-item:hover {
    transform: translateX(8px);
    background: var(--gold-dim);
}

.intel-item:last-child {
    margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 180px 40px;
    text-align: center;
    position: relative;
}

.how-it-works h2 {
    margin-bottom: 100px;
    color: var(--cream);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.step-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 1px solid var(--border-subtle);
    padding: 56px 44px;
    border-radius: 8px;
    max-width: 320px;
    text-align: left;
    flex: 1;
    min-width: 280px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.step-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 32px;
    transition: all 0.4s ease;
}

.step-card:hover .step-number {
    background: var(--gold);
    color: var(--bg-void);
}

.step-card h3 {
    margin-bottom: 16px;
    color: var(--cream);
}

.step-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.9;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(10px);
        opacity: 0.5;
    }
}

/* ===== BONUS SECTION ===== */
.bonus {
    padding: 180px 40px;
    background: var(--bg-dark);
}

.bonus-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-void) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 80px;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-gold-intense);
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--gold-dim), transparent 30%);
    animation: rotateBorder 8s linear infinite;
    z-index: 0;
    opacity: 0.3;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bonus-card>* {
    position: relative;
    z-index: 1;
}

.bonus-badge {
    display: inline-block;
    padding: 12px 32px;
    background: var(--gold);
    color: var(--bg-void);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 36px;
}

.bonus-card h2 {
    margin-bottom: 24px;
    color: var(--cream);
}

.bonus-value {
    color: var(--gold);
}

.bonus-card>p {
    color: var(--text-dim);
    margin-bottom: 48px;
    font-size: 1.15rem;
}

.bonus-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.bonus-feature {
    background: var(--gold-dim);
    border: 1px solid var(--border-gold);
    padding: 16px 28px;
    font-size: 0.85rem;
    color: var(--cream);
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    background: var(--gold);
    color: var(--bg-void);
    transform: translateY(-3px);
}

.bonus-included {
    font-size: 1.2rem;
    color: var(--cream);
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background glow */
.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 60%);
    filter: blur(100px);
    pointer-events: none;
}

/* Top line */
.pricing::after {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: var(--gold);
}

.pricing-badge {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--bg-void);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    position: relative;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }
}

.pricing h2 {
    margin-bottom: 72px;
    color: var(--cream);
    position: relative;
}

.pricing-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-void) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 72px;
    max-width: 660px;
    margin: 0 auto 48px;
    box-shadow: var(--shadow-gold-intense);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    background-size: 200% 100%;
    animation: shimmerText 3s ease-in-out infinite;
}

.pricing-header {
    margin-bottom: 56px;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 12px;
}

.price-current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 500;
    background: var(--gradient-gold);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    animation: shimmerText 3s ease-in-out infinite;
}

.price-terms {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.pricing-features {
    text-align: left;
    margin-bottom: 56px;
}

.pricing-feature {
    padding: 18px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--cream-dim);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-feature:hover {
    padding-left: 12px;
    color: var(--cream);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 24px;
}

.pricing-guarantee {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.urgency {
    display: inline-block;
    padding: 24px 48px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid #dc2626;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        border-color: #dc2626;
    }

    50% {
        border-color: #ef4444;
        box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
    }
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 180px 40px;
    background: var(--bg-dark);
}

.faq h2 {
    text-align: center;
    margin-bottom: 100px;
    color: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
    max-width: 1080px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    padding: 44px;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--cream);
}

.faq-item p {
    color: var(--text-dim);
    line-height: 1.9;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 200px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, var(--gold-dim) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta h2 {
    margin-bottom: 32px;
    color: var(--cream);
    position: relative;
}

.final-cta>.container>p {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 24px;
    position: relative;
}

.cta-or {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 48px !important;
}

.cta-or strong {
    color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
    padding: 72px 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-void);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--cream);
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-social-proof {
        justify-content: center;
    }

    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .mockup-content {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar {
        display: none;
    }

    .step-arrow {
        display: none;
    }

    .bonus-card {
        padding: 56px 32px;
    }

    .pricing-card {
        padding: 56px 32px;
    }

    .price-current {
        font-size: 4.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 24px;
    }

    .btn {
        padding: 18px 32px;
        font-size: 0.8rem;
    }

    .btn-large {
        padding: 20px 40px;
    }

    .hero {
        padding-top: 140px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
    }

    .footer-links {
        gap: 28px;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: var(--gold);
    color: var(--bg-void);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-void);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 120px 40px;
    background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-dark) 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 64px;
    color: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.testimonial-stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-quote {
    color: var(--cream-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-dim);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

.author-info strong {
    display: block;
    color: var(--cream);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Secondary Pricing Card */
.pricing-secondary {
    margin-top: 40px;
    background: var(--bg-elevated);
    border-color: var(--border-subtle);
    opacity: 0.9;
}

.pricing-secondary:hover {
    opacity: 1;
    border-color: var(--border-gold);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}/* Cryptic Teaser Section */
.teaser {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

.teaser-card {
    position: relative;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.teaser-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.teaser-content {
    position: relative;
    z-index: 1;
}

.teaser-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.teaser h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 800;
}

.teaser-hint {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 40px;
}

.teaser-mystery {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    font-weight: 600;
}

.teaser-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.teaser-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teaser-stat .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.teaser-stat .stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .teaser-card {
        padding: 40px 20px;
    }

    .teaser h2 {
        font-size: 1.8rem;
    }

    .teaser-stats {
        gap: 30px;
    }
}

.footer-whisper {
    margin-top: 15px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}
