/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */

:root {
    /* Brand Colors */
    --primary: #ef4444;
    --primary-dark: #dc2626;
    --primary-light: #fca5a5;
    --secondary: #fbbf24;
    --secondary-dark: #f59e0b;
    --secondary-light: #fde68a;
    --accent: #3b82f6;
    --accent-dark: #2563eb;
    --accent-light: #93c5fd;

    /* Neutrals */
    --black: #0a0a0a;
    --dark: #141418;
    --dark-2: #1c1c22;
    --dark-3: #26262e;
    --gray-dark: #3a3a44;
    --gray: #6b6b78;
    --gray-light: #9ca3af;
    --gray-lighter: #d1d5db;
    --light: #f3f4f6;
    --white: #ffffff;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Chakra Petch', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    /* Spacing */
    --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: 12px;
    --radius-xl: 16px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-glow-primary: 0 0 30px rgba(239,68,68,0.3);
    --shadow-glow-secondary: 0 0 30px rgba(251,191,36,0.3);
    --shadow-glow-accent: 0 0 30px rgba(59,130,246,0.3);

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-lighter);
    background-color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input {
    font-family: inherit;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }

/* ============================================================
   GEOMETRIC BACKGROUND PATTERN (Repeating)
   ============================================================ */

.geo-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--dark-2);
    border-top: 3px solid var(--primary);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    transition: transform var(--transition-slow);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cookie-geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.08;
}

.cookie-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--primary);
    top: -30px;
    right: 50px;
}

.cookie-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--secondary);
    bottom: -20px;
    left: 30px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-essential {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-cookie-essential:hover {
    background: rgba(251, 191, 36, 0.1);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--gray-light);
    border-color: var(--gray-dark);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-cookie-decline:hover {
    color: var(--white);
    border-color: var(--gray);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: var(--header-height);
    background: rgba(20, 20, 24, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 2px solid rgba(239, 68, 68, 0.15);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(20, 20, 24, 0.95);
    border-bottom-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--white);
}

.logo-hex {
    width: 42px;
    height: 42px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-spring);
}

.nav-logo:hover .logo-hex {
    transform: rotate(30deg) scale(1.1);
}

.logo-letter {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1;
    margin-top: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    padding: 8px 16px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    padding: 10px 24px 10px 28px;
    margin-left: var(--space-sm);
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 100;
}

.toggle-bar {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(239,68,68,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(59,130,246,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(251,191,36,0.06) 0%, transparent 50%),
        var(--dark);
    padding-top: var(--header-height);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* Geometric floating shapes */
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-tri-1 {
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(239, 68, 68, 0.06);
    top: 10%;
    left: 5%;
    animation: floatSlow 12s ease-in-out infinite;
}

.geo-tri-2 {
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(59, 130, 246, 0.05);
    top: 60%;
    right: 8%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.geo-tri-3 {
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid rgba(251, 191, 36, 0.05);
    bottom: 20%;
    left: 15%;
    animation: floatSlow 10s ease-in-out infinite 2s;
}

.geo-hex {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.geo-hex-1 {
    width: 120px;
    height: 120px;
    background: rgba(239, 68, 68, 0.04);
    border: 2px solid rgba(239, 68, 68, 0.08);
    top: 15%;
    right: 15%;
    animation: rotateSlow 20s linear infinite;
}

.geo-hex-2 {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.04);
    bottom: 25%;
    right: 25%;
    animation: rotateSlow 25s linear infinite reverse;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circ-1 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.06);
    top: 30%;
    left: -60px;
    animation: pulseSlow 8s ease-in-out infinite;
}

.geo-circ-2 {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(239, 68, 68, 0.05);
    bottom: 10%;
    right: -40px;
    animation: pulseSlow 10s ease-in-out infinite 3s;
}

.geo-diamond {
    position: absolute;
    transform: rotate(45deg);
}

.geo-dia-1 {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(251, 191, 36, 0.08);
    top: 50%;
    left: 10%;
    animation: floatSlow 14s ease-in-out infinite 1s;
}

.geo-dia-2 {
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.04);
    top: 20%;
    right: 30%;
    animation: floatSlow 11s ease-in-out infinite 4s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    margin-bottom: var(--space-xl);
    animation: fadeSlideDown 0.8s ease-out 0.2s both;
}

.badge-icon {
    font-size: 0.6rem;
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    line-height: 0.95;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.title-line-1 {
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--white);
    letter-spacing: 6px;
    animation: fadeSlideDown 0.8s ease-out 0.4s both;
}

.title-line-2 {
    font-size: clamp(3.5rem, 10vw, 9rem);
    color: var(--primary);
    letter-spacing: 8px;
    animation: fadeSlideDown 0.8s ease-out 0.6s both;
    text-shadow: 0 0 60px rgba(239, 68, 68, 0.3);
}

.title-line-3 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--secondary);
    letter-spacing: 10px;
    animation: fadeSlideDown 0.8s ease-out 0.8s both;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-light);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
    animation: fadeSlideDown 0.8s ease-out 1s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeSlideDown 0.8s ease-out 1.2s both;
}

.hero-game-icon {
    animation: fadeSlideDown 0.8s ease-out 1.4s both;
}

.hero-game-icon img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    border: 3px solid rgba(239, 68, 68, 0.3);
    margin: 0 auto;
    box-shadow: var(--shadow-glow-primary);
    transition: transform var(--transition-spring);
}

.hero-game-icon img:hover {
    transform: scale(1.08) rotate(2deg);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background: var(--primary);
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-geo {
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    padding: 14px 36px 14px 40px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    background: transparent;
    padding: 14px 32px;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-secondary.btn-geo {
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeSlideDown 0.8s ease-out 1.6s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.tag-diamond {
    width: 10px;
    height: 10px;
    background: var(--primary);
    transform: rotate(45deg);
    display: inline-block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    color: var(--white);
    letter-spacing: 4px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-light);
    max-width: 520px;
    margin: var(--space-lg) auto 0;
    line-height: 1.6;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    position: relative;
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: var(--space-2xl) var(--space-xl);
    transition: all var(--transition-base);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-primary);
}

.feature-card-large {
    grid-column: span 1;
}

.card-geo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.card-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(239, 68, 68, 0.03);
    top: -10px;
    right: -10px;
}

.card-hex {
    position: absolute;
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(59, 130, 246, 0.03);
    bottom: -15px;
    left: -15px;
}

.card-circle-sm {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.05);
    top: -20px;
    right: -20px;
}

.card-diamond-sm {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.03);
    transform: rotate(45deg);
    bottom: -10px;
    right: 20px;
}

.card-triangle-sm {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid rgba(59, 130, 246, 0.03);
    top: -5px;
    left: 20px;
}

.card-hex-sm {
    position: absolute;
    width: 50px;
    height: 50px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(251, 191, 36, 0.03);
    top: -10px;
    right: 10px;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
    position: relative;
}

.feature-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(239, 68, 68, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.feature-icon {
    width: 36px;
    height: 36px;
}

.feature-card:nth-child(2) .feature-icon-wrap { color: var(--secondary); }
.feature-card:nth-child(2) .feature-icon-wrap::before { border-color: rgba(251, 191, 36, 0.2); }
.feature-card:nth-child(3) .feature-icon-wrap { color: var(--accent); }
.feature-card:nth-child(3) .feature-icon-wrap::before { border-color: rgba(59, 130, 246, 0.2); }
.feature-card:nth-child(4) .feature-icon-wrap { color: var(--secondary); }
.feature-card:nth-child(4) .feature-icon-wrap::before { border-color: rgba(251, 191, 36, 0.2); }
.feature-card:nth-child(5) .feature-icon-wrap { color: var(--accent); }
.feature-card:nth-child(5) .feature-icon-wrap::before { border-color: rgba(59, 130, 246, 0.2); }
.feature-card:nth-child(6) .feature-icon-wrap { color: var(--primary); }

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(239, 68, 68, 0.06) 0%, transparent 50%),
        var(--dark-2);
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.gallery-item {
    position: relative;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
    border: 2px solid var(--dark-3);
    transition: all var(--transition-base);
}

.gallery-frame:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-primary);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform var(--transition-slow);
}

.gallery-frame:hover img {
    transform: scale(1.05);
}

.frame-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: 3;
    pointer-events: none;
}

.frame-tl {
    top: 0;
    left: 0;
    border-top: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
}

.frame-tr {
    top: 0;
    right: 0;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.frame-bl {
    bottom: 0;
    left: 0;
    border-bottom: 3px solid var(--primary);
    border-left: 3px solid var(--primary);
}

.frame-br {
    bottom: 0;
    right: 0;
    border-bottom: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
}

.overlay-label {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 4px;
}

/* Gallery background shapes */
.gallery-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.gal-geo {
    position: absolute;
}

.gal-hex-1 {
    width: 160px;
    height: 160px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(239, 68, 68, 0.04);
    top: 10%;
    right: -40px;
    animation: rotateSlow 30s linear infinite;
}

.gal-tri-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(59, 130, 246, 0.03);
    bottom: 10%;
    left: -20px;
}

.gal-circ-1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(251, 191, 36, 0.04);
    top: 50%;
    left: -40px;
}

/* ============================================================
   STATS / SOCIAL PROOF SECTION
   ============================================================ */

.stats-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(239, 68, 68, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(239, 68, 68, 0.03) 87.5%, rgba(239, 68, 68, 0.03)),
        linear-gradient(150deg, rgba(239, 68, 68, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(239, 68, 68, 0.03) 87.5%, rgba(239, 68, 68, 0.03)),
        linear-gradient(30deg, rgba(239, 68, 68, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(239, 68, 68, 0.03) 87.5%, rgba(239, 68, 68, 0.03)),
        linear-gradient(150deg, rgba(239, 68, 68, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(239, 68, 68, 0.03) 87.5%, rgba(239, 68, 68, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.stat-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    position: relative;
    clip-path: polygon(0 12px, 12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
    transition: all var(--transition-base);
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-hex-bg {
    position: absolute;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(239, 68, 68, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-card:nth-child(2) .stat-number { color: var(--secondary); }
.stat-card:nth-child(2) .stat-hex-bg { background: rgba(251, 191, 36, 0.03); }
.stat-card:nth-child(3) .stat-number { color: var(--accent); }
.stat-card:nth-child(3) .stat-hex-bg { background: rgba(59, 130, 246, 0.03); }
.stat-card:nth-child(4) .stat-number { color: var(--secondary); }
.stat-card:nth-child(4) .stat-hex-bg { background: rgba(251, 191, 36, 0.03); }

.stat-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-light);
}

/* Live Feed */
.live-feed {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    padding: var(--space-xl);
    max-width: 600px;
    margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.feed-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--dark-3);
}

.feed-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: feedPulse 2s ease-in-out infinite;
}

.feed-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-height: 200px;
    overflow: hidden;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    font-size: 0.9rem;
    color: var(--gray-light);
    animation: feedSlideIn 0.5s ease-out;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feed-text {
    flex: 1;
}

.feed-time {
    font-size: 0.75rem;
    color: var(--gray);
    flex-shrink: 0;
}

/* ============================================================
   SIGNUP SECTION
   ============================================================ */

.signup-section {
    padding: var(--space-5xl) 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(239, 68, 68, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        var(--dark-2);
}

.signup-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.signup-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid rgba(239, 68, 68, 0.04);
    top: -40px;
    right: 10%;
}

.signup-tri-2 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(59, 130, 246, 0.03);
    bottom: 10%;
    left: 5%;
}

.signup-hex-1 {
    position: absolute;
    width: 140px;
    height: 140px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(251, 191, 36, 0.05);
    bottom: 20%;
    right: 5%;
    animation: rotateSlow 25s linear infinite;
}

.signup-circ-1 {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.04);
    top: 30%;
    left: -60px;
}

.signup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.signup-info {
    padding-right: var(--space-xl);
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.7;
    margin: var(--space-lg) 0 var(--space-2xl);
}

.signup-perks {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.signup-perks li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-lighter);
}

.perk-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.15);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    color: var(--primary);
    flex-shrink: 0;
}

/* Signup Form */
.signup-form-wrap {
    position: relative;
}

.signup-form {
    background: var(--dark);
    border: 2px solid var(--dark-3);
    padding: var(--space-2xl);
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}

.signup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: var(--space-xs);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-light);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    background: var(--dark-2);
    border: 2px solid var(--dark-3);
    outline: none;
    transition: all var(--transition-fast);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    padding-left: 20px;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(239, 68, 68, 0.03);
}

.form-input.error {
    border-color: var(--primary);
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: var(--space-xs);
    min-height: 1.2em;
}

.form-checkbox-group {
    margin-bottom: var(--space-md);
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--dark-3);
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 2px;
    position: relative;
}

.form-checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.form-checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin-top: -2px;
}

.form-checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: var(--space-md);
    position: relative;
}

.btn-loading {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-submit.loading .btn-text {
    opacity: 0.5;
}

.btn-submit.loading .btn-loading {
    display: block;
}

.spinner {
    animation: spin 1s linear infinite;
}

.form-message {
    margin-top: var(--space-lg);
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--primary);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: var(--space-lg);
    line-height: 1.5;
    text-align: center;
}

.form-disclaimer a {
    color: var(--accent);
    text-decoration: underline;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
    padding: var(--space-5xl) 0;
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--dark-2);
    border: 1px solid var(--dark-3);
    transition: border-color var(--transition-fast);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    gap: var(--space-md);
}

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

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
}

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

/* FAQ background shapes */
.faq-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.faq-hex-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(59, 130, 246, 0.03);
    top: 10%;
    right: -60px;
}

.faq-tri-bg {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(251, 191, 36, 0.02);
    bottom: 5%;
    left: -30px;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */

.trust-section {
    padding: var(--space-4xl) 0;
    background: var(--dark-2);
    border-top: 1px solid var(--dark-3);
    border-bottom: 1px solid var(--dark-3);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-item {
    text-align: center;
    padding: var(--space-xl);
}

.trust-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
    background: rgba(239, 68, 68, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.trust-item:nth-child(2) .trust-icon-wrap {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
}

.trust-item:nth-child(3) .trust-icon-wrap {
    color: var(--secondary);
    background: rgba(251, 191, 36, 0.08);
}

.trust-item:nth-child(4) .trust-icon-wrap {
    color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    position: relative;
    background: var(--black);
    border-top: 3px solid var(--primary);
    overflow: hidden;
}

.footer-geo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid rgba(239, 68, 68, 0.02);
    top: -60px;
    right: 10%;
}

.footer-tri-2 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(59, 130, 246, 0.02);
    bottom: -40px;
    left: 5%;
}

.footer-hex-1 {
    position: absolute;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(251, 191, 36, 0.04);
    top: 30%;
    left: -30px;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links-group h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-group a {
    font-size: 0.9rem;
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-address p,
.footer-copy p {
    font-size: 0.8rem;
    color: var(--gray);
}

.footer-age {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--gray);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-3xl);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 60%),
        var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.legal-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.legal-tri-1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(239, 68, 68, 0.04);
    top: 20%;
    right: 10%;
}

.legal-hex-1 {
    position: absolute;
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 2px solid rgba(59, 130, 246, 0.04);
    bottom: 10%;
    left: 8%;
}

.legal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.legal-hero-sub {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.legal-content-section {
    padding: var(--space-4xl) 0;
    background: var(--dark);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-3xl);
    color: #1a1a2e;
    border: 2px solid var(--dark-3);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a1a;
    margin: var(--space-2xl) 0 var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary);
    letter-spacing: 0.5px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a3e;
    margin: var(--space-xl) 0 var(--space-sm);
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    color: #333;
}

.legal-content ul,
.legal-content ol {
    margin: var(--space-md) 0 var(--space-lg) var(--space-xl);
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    color: #444;
    list-style: disc;
}

.legal-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: #0a0a1a;
}

.legal-footer-note {
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.legal-footer-note p {
    font-size: 0.85rem;
    color: #666;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

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

@keyframes pulseSlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 0.8; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes feedPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

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

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

/* Scroll-triggered animation base states */
[data-anim] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-anim="slide-up"] {
    transform: translateY(40px);
}

[data-anim="slide-right"] {
    transform: translateX(-40px);
}

[data-anim="slide-left"] {
    transform: translateX(40px);
}

[data-anim="fade-in"] {
    transform: translateY(20px);
}

[data-anim].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

    .feature-card-large {
        grid-column: span 2;
    }

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

    .signup-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .signup-info {
        padding-right: 0;
        text-align: center;
    }

    .signup-perks {
        align-items: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-xs);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        border-left: 2px solid var(--dark-3);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        z-index: 50;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
        display: block;
    }

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

    .feature-card-large {
        grid-column: span 1;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }

    .hero-content {
        padding: var(--space-2xl) var(--space-md);
    }

    .section-container {
        padding: 0 var(--space-lg);
    }

    .legal-content {
        padding: var(--space-xl);
    }
}

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

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

    .hero-actions {
        flex-direction: column;
    }

    .btn-geo {
        width: 100%;
        justify-content: center;
    }

    .btn-secondary.btn-geo {
        width: 100%;
        justify-content: center;
    }

    .signup-form {
        padding: var(--space-xl) var(--space-lg);
    }

    .legal-content {
        padding: var(--space-lg);
        clip-path: none;
    }

    .legal-content h2 {
        font-size: 1.2rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .site-header,
    .cookie-banner,
    .hero-bg-shapes,
    .gallery-bg-shapes,
    .faq-bg-shapes,
    .signup-bg-shapes,
    .footer-geo-bg,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
