/* ============================================
   PICUNI — DISTINCTIVE LANDING PAGE
   A Unique Visual Identity for Your Tribe
   ============================================ */

/* Design Tokens */
:root {
    /* Primary Palette - Warm & Distinctive */
    --coral: #E76F51;
    --coral-light: #F4A261;
    --coral-dark: #C4533A;
    
    /* Secondary - Sage & Natural */
    --sage: #2A9D8F;
    --sage-light: #40B4A5;
    --sage-dark: #1F7A6F;
    
    /* Neutrals - Warm Tones */
    --cream: #FDF6EC;
    --cream-dark: #F5EBD9;
    --charcoal: #2D3436;
    --charcoal-light: #4A4A4A;
    --stone: #636E72;
    --mist: #B2BEC3;
    
    /* Accent */
    --gold: #E9C46A;
    --navy: #264653;
    
    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

/* ============================================
   AMBIENT BACKGROUND
   ============================================ */
.ambient-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: linear-gradient(135deg, var(--coral-light), transparent);
    top: -10%;
    right: -10%;
    animation: orbFloat 30s ease-in-out infinite;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: linear-gradient(135deg, var(--sage), transparent);
    bottom: 10%;
    left: -10%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.orb-3 {
    width: 25vw;
    height: 25vw;
    background: linear-gradient(135deg, var(--gold), transparent);
    top: 40%;
    left: 30%;
    animation: orbFloat 35s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 10%) scale(1.05); }
    50% { transform: translate(-5%, -5%) scale(0.95); }
    75% { transform: translate(10%, -10%) scale(1.02); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--duration-base) var(--ease-out);
}

.navbar.scrolled {
    background: rgba(253, 246, 236, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 52, 54, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--charcoal);
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-mark {
    width: 44px;
    height: 44px;
}

.logo-mark svg,
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-ring {
    stroke: var(--coral);
    stroke-width: 1.5;
    fill: none;
}

.logo-dot {
    fill: var(--coral);
}

.logo-line {
    stroke: var(--coral);
    stroke-width: 1;
    opacity: 0.5;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone);
    text-decoration: none;
    transition: color var(--duration-fast);
    position: relative;
}

.nav-links a:not(.nav-claim):hover {
    color: var(--charcoal);
}

.nav-links a:not(.nav-claim)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--duration-base) var(--ease-out);
}

.nav-links a:not(.nav-claim):hover::after {
    width: 100%;
}

.nav-claim {
    background: var(--charcoal);
    color: var(--cream) !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--duration-base) var(--ease-out);
}

.nav-claim:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.toggle-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggle-inner span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-out);
}

.toggle-inner span:first-child {
    width: 16px;
}

.mobile-toggle.active .toggle-inner span:first-child {
    width: 100%;
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .toggle-inner span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: var(--space-xl);
    border-bottom: 1px solid rgba(45, 52, 54, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-nav a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    padding: var(--space-sm) 0;
}

.mobile-claim {
    background: var(--charcoal);
    color: var(--cream) !important;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5xl) var(--space-xl);
    z-index: 1;
}

.constellation-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.15;
}

.constellation-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
}

.constellation-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--coral), transparent);
    transform-origin: left center;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: var(--space-xl);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.hero-headline .line-1,
.hero-headline .line-3 {
    display: block;
    color: var(--stone);
}

.hero-headline .line-2,
.hero-headline .line-4 {
    display: block;
}

.hero-headline .highlight {
    color: var(--charcoal);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    width: 100%;
    height: 0.15em;
    background: var(--coral);
    opacity: 0.3;
    z-index: -1;
}

.hero-headline .highlight-alt {
    color: var(--coral);
}

.hero-body {
    font-size: 1.25rem;
    color: var(--stone);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.hero-body em {
    font-style: normal;
    color: var(--charcoal);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--coral);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-out);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform var(--duration-base) var(--ease-out);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--mist);
    border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-out);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: var(--cream);
}

.scroll-prompt {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--stone);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.prompt-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--coral), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION FRAME
   ============================================ */
.section-frame {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.chapter {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */
.manifesto {
    position: relative;
    padding: var(--space-5xl) 0;
    z-index: 1;
}

.manifesto-intro {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

.data-harvest-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

.harvest-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid rgba(45, 52, 54, 0.08);
    transition: box-shadow var(--duration-base) var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
}

.harvest-card:hover {
    box-shadow: 0 20px 40px rgba(45, 52, 54, 0.08);
}

.harvest-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-lg);
    color: var(--stone);
}

.harvest-icon svg {
    width: 100%;
    height: 100%;
}

.harvest-content {
    margin-bottom: var(--space-lg);
}

.harvest-label {
    display: block;
    font-size: 0.875rem;
    color: var(--stone);
    margin-bottom: var(--space-xs);
}

.harvest-result {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--coral);
}

.harvest-price {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(45, 52, 54, 0.08);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}

.price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--charcoal);
}

.price-real {
    display: block;
    font-size: 0.875rem;
    color: var(--coral);
    margin-top: var(--space-xs);
}

.manifesto-statement {
    text-align: center;
}

.manifesto-statement p {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--charcoal);
    line-height: 1.3;
}

.manifesto-statement strong {
    position: relative;
}

.manifesto-statement strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1em;
    background: var(--coral);
    z-index: -1;
}

.statement-final {
    color: var(--coral) !important;
    margin-top: var(--space-md);
}

/* ============================================
   LIVING ROOM SECTION
   ============================================ */
.living-room {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--charcoal);
    z-index: 1;
}

.living-room .chapter {
    color: var(--coral-light);
}

.living-room-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.living-room-copy {
    color: var(--cream);
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xl);
}

.section-lede {
    font-size: 1.125rem;
    color: var(--mist);
    margin-bottom: var(--space-lg);
}

.section-lede strong {
    color: var(--cream);
}

.section-body {
    color: var(--mist);
    margin-bottom: var(--space-2xl);
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.principle {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.principle-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--coral);
}

.principle-icon svg {
    width: 100%;
    height: 100%;
}

.principle-text strong {
    display: block;
    color: var(--cream);
    margin-bottom: var(--space-xs);
}

.principle-text span {
    font-size: 0.875rem;
    color: var(--mist);
}

/* Hub Visualization */
.living-room-visual {
    display: flex;
    justify-content: center;
}

.hub-visualization {
    position: relative;
    width: 500px;
    height: 500px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 2;
}

.hub-pulse {
    position: absolute;
    inset: -20px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    opacity: 0;
    animation: hubPulse 3s ease-out infinite;
}

.hub-pulse:nth-child(2) {
    animation-delay: 1s;
}

.hub-pulse:nth-child(3) {
    animation-delay: 2s;
}

@keyframes hubPulse {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.hub-core {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral), var(--coral-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 40px rgba(231, 111, 81, 0.4);
}

.hub-core span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hub-core strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

.hub-members {
    position: absolute;
    inset: 0;
}

.member-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50) rotate(var(--angle)) translateX(var(--distance)) rotate(calc(-1 * var(--angle)));
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.member-avatar {
    width: 70px;
    height: 70px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.member-node[data-status="home"] .member-avatar {
    background: var(--sage);
}

.member-node[data-status="active"] .member-avatar::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--coral);
    border: 2px solid var(--charcoal);
    border-radius: 50%;
}

.member-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
}

.member-status {
    font-size: 0.75rem;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hub-connections {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* ============================================
   ENGINE SECTION
   ============================================ */
.engine {
    position: relative;
    padding: var(--space-5xl) 0;
    z-index: 1;
}

.engine-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--stone);
    margin-top: var(--space-lg);
}

.engine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.engine-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(45, 52, 54, 0.08);
    transition: box-shadow var(--duration-base) var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
}

.engine-card:hover {
    box-shadow: 0 20px 60px rgba(45, 52, 54, 0.1);
}

.card-visual {
    height: 240px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-content {
    padding: var(--space-xl);
}

.card-tag {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: var(--space-sm);
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.card-content p {
    font-size: 0.9375rem;
    color: var(--stone);
    line-height: 1.7;
}

/* Tribe Map Preview */
.tribe-map-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.map-bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(42, 157, 143, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(42, 157, 143, 0.1) 0%, transparent 50%);
}

.map-pins {
    position: absolute;
    inset: var(--space-xl);
}

.pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background: var(--sage);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.4);
}

.pin-pulse {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--sage);
    border-radius: 50%;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.pin-home { top: 40%; left: 45%; }
.pin-school { top: 20%; left: 70%; }
.pin-gym { top: 60%; left: 75%; }
.pin-library { top: 30%; left: 25%; }

.visibility-toggle {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    font-size: 0.75rem;
    color: var(--stone);
}

.toggle-switch {
    width: 36px;
    height: 20px;
    background: var(--mist);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: background var(--duration-fast);
}

.toggle-switch.active {
    background: var(--sage);
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform var(--duration-fast);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(16px);
}

/* Ambient Preview */
.ambient-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ambient-ring {
    position: relative;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(231, 111, 81, 0.2);
    border-radius: 50%;
}

.ambient-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pulse-live {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulseLive 1.5s ease-in-out infinite;
}

@keyframes pulseLive {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 111, 81, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(231, 111, 81, 0); }
}

.ambient-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-top: var(--space-sm);
}

.ambient-activities {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.activity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.activity-emoji {
    font-size: 1rem;
}

.activity-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--charcoal);
}

.activity-detail {
    font-size: 0.625rem;
    color: var(--stone);
    margin-left: var(--space-xs);
}

/* Sandbox Preview */
.sandbox-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: var(--space-lg);
}

.sandbox-feed {
    display: flex;
    gap: var(--space-md);
    overflow: hidden;
}

.feed-post {
    flex-shrink: 0;
    width: 120px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
}

.post-avatar {
    font-size: 1rem;
}

.post-author {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--charcoal);
}

.post-image {
    height: 80px;
    background: linear-gradient(135deg, #FFCDD2, #F8BBD9);
}

.post-image-2 {
    background: linear-gradient(135deg, #C8E6C9, #B2DFDB);
}

.post-reactions {
    padding: var(--space-xs) var(--space-sm);
    display: flex;
    gap: var(--space-xs);
}

.reaction {
    font-size: 0.625rem;
    color: var(--stone);
}

.sandbox-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sandbox-badge svg {
    width: 16px;
    height: 16px;
    color: var(--sage);
}

.sandbox-badge span {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--sage);
}

/* Bridge Preview */
.bridge-preview {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-xl);
}

.bridge-hub {
    background: white;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hub-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone);
    margin-bottom: var(--space-sm);
}

.hub-dots {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}

.hub-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
}

.hub-b .dot {
    background: var(--sage);
}

.bridge-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.bridge-connection svg {
    width: 80px;
    height: 20px;
}

.bridge-label {
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stone);
    white-space: nowrap;
}

/* ============================================
   SOVEREIGNTY SECTION
   ============================================ */
.sovereignty {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--cream-dark);
    z-index: 1;
}

.sovereignty-declaration {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.declaration-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: var(--space-3xl);
}

.declaration-title .line-through {
    text-decoration: line-through;
    color: var(--mist);
}

.declaration-title em {
    font-style: normal;
    color: var(--coral);
}

.comparison-table {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(45, 52, 54, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: var(--space-md) var(--space-xl);
    background: white;
}

.comparison-row:not(:last-child) {
    border-bottom: 1px solid rgba(45, 52, 54, 0.05);
}

.comparison-header {
    background: var(--charcoal);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.col-entity {
    font-weight: 600;
}

.comparison-facebook,
.comparison-google {
    color: var(--stone);
}

.comparison-picuni {
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.05), rgba(42, 157, 143, 0.05));
}

.comparison-picuni .col-entity {
    color: var(--coral);
}

.comparison-picuni .col-wants em {
    font-style: normal;
    font-weight: 600;
    color: var(--charcoal);
}

.sovereignty-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.pillar {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 52, 54, 0.05);
    transition: box-shadow var(--duration-base) var(--ease-out);
    transform-style: preserve-3d;
    will-change: transform;
}

.pillar:hover {
    box-shadow: 0 20px 40px rgba(45, 52, 54, 0.08);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--mist);
    margin-bottom: var(--space-lg);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.pillar p {
    font-size: 0.9375rem;
    color: var(--stone);
    line-height: 1.7;
}

/* ============================================
   HARD TRUTH SECTION
   ============================================ */
.hard-truth {
    position: relative;
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, #FFF8E1, #FFECB3);
    z-index: 1;
}

.truth-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.truth-warning {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.truth-warning svg {
    width: 40px;
    height: 40px;
    color: #F57C00;
}

.truth-content {
    text-align: left;
}

.truth-content .chapter {
    color: #F57C00;
}

.truth-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
}

.truth-stat {
    font-size: 1.125rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.stat-highlight {
    color: #F57C00;
    font-weight: 600;
}

.truth-reveal {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

.truth-reveal strong {
    color: #F57C00;
}

.truth-cta {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ============================================
   CLAIM SECTION
   ============================================ */
.claim {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--charcoal);
    z-index: 1;
}

.claim-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.claim-visual {
    display: flex;
    justify-content: center;
}

.claim-constellation {
    position: relative;
    width: 300px;
    height: 300px;
}

.claim-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(231, 111, 81, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: nodeFloat 4s ease-in-out infinite;
}

.claim-node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.claim-node-2 { top: 30%; left: 0; animation-delay: 0.5s; }
.claim-node-3 { top: 30%; right: 0; animation-delay: 1s; }
.claim-node-4 { bottom: 10%; left: 15%; animation-delay: 1.5s; }
.claim-node-5 { bottom: 10%; right: 15%; animation-delay: 2s; }

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.claim-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    color: var(--coral);
}

.claim-center svg {
    width: 100%;
    height: 100%;
}

.claim-copy {
    text-align: center;
}

.claim-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.claim-copy > p {
    color: var(--mist);
    margin-bottom: var(--space-2xl);
}

.claim-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.store-button {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: white;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-button svg {
    width: 28px;
    height: 28px;
    color: var(--charcoal);
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-small {
    font-size: 0.625rem;
    color: var(--stone);
}

.store-large {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.claim-platforms {
    font-size: 0.875rem;
    color: var(--mist);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--charcoal);
    border-top: 1px solid rgba(253, 246, 236, 0.1);
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo-img {
    height: 40px;
}

.footer-brand p {
    color: var(--mist);
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: var(--space-lg);
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--mist);
    text-decoration: none;
    padding: var(--space-xs) 0;
    transition: color var(--duration-fast);
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-end {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(253, 246, 236, 0.1);
    text-align: center;
}

.footer-end p {
    font-size: 0.875rem;
    color: var(--mist);
}

.footer-tagline {
    color: var(--coral) !important;
    margin-top: var(--space-sm);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .living-room-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .living-room-visual {
        order: -1;
    }
    
    .engine-grid {
        grid-template-columns: 1fr;
    }
    
    .sovereignty-pillars {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .claim-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .claim-visual {
        order: -1;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .truth-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .truth-warning {
        margin: 0 auto;
    }
    
    .truth-content {
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .hero {
        padding: var(--space-4xl) var(--space-lg);
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-prompt {
        display: none;
    }
    
    .data-harvest-visual {
        grid-template-columns: 1fr;
    }
    
    .hub-visualization {
        width: 320px;
        height: 320px;
    }
    
    .hub-center {
        width: 80px;
        height: 80px;
    }
    
    .hub-core strong {
        font-size: 1.125rem;
    }
    
    .member-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .member-node {
        --distance: 100px !important;
    }
    
    .member-label {
        font-size: 0.75rem;
    }
    
    .member-status {
        font-size: 0.625rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .claim-buttons {
        flex-direction: column;
    }
    
    .store-button {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}
