/* ================================================================
   GIOVANNI CORTAZZO — "Anti-Template" Design System
   Typography: Clash Display / Satoshi / Inter
   Grid: 8pt | Layout: Asymmetric | Texture: Grain + Depth
   ================================================================ */

/* === FONT FACES === */
@font-face {
    font-family: 'Clash Display';
    src: url('/fonts/ClashDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Clash Display';
    src: url('/fonts/ClashDisplay-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Clash Display';
    src: url('/fonts/ClashDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/Satoshi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Satoshi', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: 'Inter', 'Satoshi', sans-serif; font-size: inherit; }

/* === DESIGN TOKENS === */
:root {
    /* Primary — Verde Campo */
    --primary: #1B8F5A;
    --primary-dark: #14703F;
    --primary-light: #22B96E;
    /* Accent — Oro Trofei */
    --accent: #D4A843;
    --accent-dark: #B8912E;
    --accent-light: #E4C06A;
    /* Backgrounds */
    --bg-primary: #0A0E13;
    --bg-secondary: #10151C;
    --bg-tertiary: #161D27;
    --bg-card: #121920;
    /* Text */
    --text-primary: #EAEEF2;
    --text-secondary: #7D8590;
    --text-muted: #545D68;
    /* Borders */
    --border: #242C38;
    --border-hover: #3D4854;
    /* Semantic */
    --danger: #DA3633;
    --success: #2EA043;
    /* Shadows */
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.45);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.5);
    --glow-gold: 0 0 40px rgba(212,168,67,0.12);
    --glow-green: 0 0 30px rgba(27,143,90,0.1);
    /* Font families */
    --font-display: 'Clash Display', 'Satoshi', sans-serif;
    --font-heading: 'Satoshi', 'Inter', sans-serif;
    --font-body: 'Inter', 'Satoshi', sans-serif;
    /* Spacing 8pt */
    --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
    --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;
    --s-16: 64px; --s-20: 80px; --s-24: 96px; --s-32: 128px;
    --s-40: 160px;
    /* Radius */
    --r-sm: 6px; --r-md: 10px; --r-lg: 16px; --r-xl: 24px;
    --r-full: 9999px;
}

/* === GRAIN TEXTURE OVERLAY === */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 9998;
}

/* === FONT UTILITIES === */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* === FLUID TYPOGRAPHY (clamp) === */
.text-hero { font-size: clamp(3rem, 8vw, 7rem); line-height: 0.95; letter-spacing: -0.03em; font-family: var(--font-display); font-weight: 700; }
.text-section { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; font-family: var(--font-display); font-weight: 700; }
.text-subtitle { font-size: clamp(0.8rem, 1.2vw, 1rem); letter-spacing: 0.2em; text-transform: uppercase; font-family: var(--font-heading); font-weight: 500; }
.text-card-title { font-size: 1.125rem; line-height: 1.3; font-family: var(--font-heading); font-weight: 600; }
.text-body { font-size: 1rem; line-height: 1.7; font-family: var(--font-body); }
.text-caption { font-size: 0.8125rem; line-height: 1.5; font-family: var(--font-body); color: var(--text-muted); }
.text-cta { font-size: 0.875rem; letter-spacing: 0.05em; text-transform: uppercase; font-family: var(--font-heading); font-weight: 600; }
.text-stat { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1; font-family: var(--font-display); font-weight: 700; }

/* === BASIC TYPOGRAPHY === */
.text-xs { font-size: 0.75rem; line-height: 1.5; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.7; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.25rem; line-height: 1.4; }
.text-2xl { font-size: 1.5rem; line-height: 1.3; }
.text-3xl { font-size: 2rem; line-height: 1.15; }
.text-4xl { font-size: 3rem; line-height: 1.05; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }
.tracking-widest { letter-spacing: 0.2em; }
.tracking-tight { letter-spacing: -0.02em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.1; }
.leading-snug { line-height: 1.3; }
.leading-normal { line-height: 1.7; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* === TEXT COLORS === */
.text-white { color: #fff; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-accent-light { color: var(--accent-light); }
.text-green { color: var(--primary); }
.text-green-light { color: var(--primary-light); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-light { color: var(--text-primary); }
.text-red-400 { color: #f87171; }
.text-red-300 { color: #fca5a5; }
.text-green-300 { color: #86efac; }
.text-blue-400 { color: #60a5fa; }
.text-blue-300 { color: #93c5fd; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-purple-400 { color: #c084fc; }

/* === BACKGROUNDS === */
.bg-primary { background-color: var(--bg-primary); }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-tertiary { background-color: var(--bg-tertiary); }
.bg-card { background-color: var(--bg-card); }
.bg-dark { background-color: var(--bg-primary); }
.bg-dark-card { background-color: var(--bg-card); }
.bg-dark-deeper { background-color: #060910; }
.bg-accent-fill { background-color: var(--primary); }
.bg-accent-gold { background-color: var(--accent); }
.bg-transparent { background-color: transparent; }
.bg-white { background-color: #fff; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-green-800 { background-color: #166534; }
.bg-red-800 { background-color: #991b1b; }
.bg-red-600 { background-color: #dc2626; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-black\/50 { background-color: rgba(0,0,0,0.5); }
.bg-green-800\/50 { background-color: rgba(22,101,52,0.5); }
.bg-red-800\/50 { background-color: rgba(153,27,27,0.5); }
.bg-yellow-800\/50 { background-color: rgba(133,77,14,0.5); }
.bg-primary\/5 { background-color: rgba(27,143,90,0.05); }
.bg-primary\/10 { background-color: rgba(27,143,90,0.1); }
.bg-accent\/10 { background-color: rgba(212,168,67,0.1); }
.bg-blue-500\/10 { background-color: rgba(59,130,246,0.1); }
.bg-yellow-500\/10 { background-color: rgba(234,179,8,0.1); }
.bg-purple-500\/10 { background-color: rgba(168,85,247,0.1); }
.bg-section-a { background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%); }
.bg-section-b { background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, var(--bg-primary) 100%); }

/* === LAYOUT === */
.container { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: var(--s-6); padding-right: var(--s-6); }
.container-wide { max-width: 1400px; margin-left: auto; margin-right: auto; padding-left: var(--s-6); padding-right: var(--s-6); }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-prose { max-width: 68ch; }
.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }
.px-2 { padding-left: 8px; padding-right: 8px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }
.py-section { padding-top: clamp(64px, 10vw, 128px); padding-bottom: clamp(64px, 10vw, 128px); }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.pt-4 { padding-top: 16px; }
.pt-24 { padding-top: 96px; }
.pb-4 { padding-bottom: 16px; }
.pb-6 { padding-bottom: 24px; }

/* Margin */
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; } .mt-16 { margin-top: 64px; } .mt-20 { margin-top: 80px; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; } .mb-16 { margin-bottom: 64px; }
.ml-2 { margin-left: 8px; } .ml-4 { margin-left: 16px; }
.mr-2 { margin-right: 8px; } .mr-3 { margin-right: 12px; }
.mx-1 { margin-left: 4px; margin-right: 4px; }

/* Flex */
.flex { display: flex; } .inline-flex { display: inline-flex; }
.inline-block { display: inline-block; } .inline { display: inline; }
.block { display: block; } .hidden { display: none; }
.flex-col { flex-direction: column; } .flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; } .flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }
.items-center { align-items: center; } .items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; } .justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; } .justify-start { justify-content: flex-start; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.gap-6 { gap: 24px; } .gap-8 { gap: 32px; } .gap-12 { gap: 48px; }
.space-x-2 > * + * { margin-left: 8px; } .space-x-3 > * + * { margin-left: 12px; }
.space-x-4 > * + * { margin-left: 16px; } .space-x-8 > * + * { margin-left: 32px; }
.space-y-2 > * + * { margin-top: 8px; } .space-y-3 > * + * { margin-top: 12px; }
.space-y-4 > * + * { margin-top: 16px; } .space-y-6 > * + * { margin-top: 24px; }
.space-y-8 > * + * { margin-top: 32px; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Sizing */
.w-full { width: 100%; } .w-auto { width: auto; }
.w-1 { width: 4px; } .w-2 { width: 8px; } .w-3 { width: 12px; }
.w-4 { width: 16px; } .w-5 { width: 20px; } .w-6 { width: 24px; }
.w-8 { width: 32px; } .w-10 { width: 40px; } .w-12 { width: 48px; }
.w-14 { width: 56px; } .w-16 { width: 64px; } .w-20 { width: 80px; }
.w-48 { width: 192px; } .w-64 { width: 256px; }
.h-0\.5 { height: 2px; } .h-1 { height: 4px; } .h-2 { height: 8px; }
.h-3 { height: 12px; } .h-4 { height: 16px; } .h-5 { height: 20px; }
.h-6 { height: 24px; } .h-8 { height: 32px; } .h-10 { height: 40px; }
.h-12 { height: 48px; } .h-14 { height: 56px; } .h-16 { height: 64px; }
.h-20 { height: 80px; } .h-32 { height: 128px; } .h-48 { height: 192px; }
.h-56 { height: 224px; } .h-auto { height: auto; } .h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; } .max-h-32 { max-height: 128px; }

/* Borders */
.border { border: 1px solid; } .border-2 { border: 2px solid; } .border-3 { border: 3px solid; }
.border-t { border-top: 1px solid; } .border-b { border-bottom: 1px solid; }
.border-l { border-left: 1px solid; } .border-l-3 { border-left: 3px solid; }
.border-r { border-right: 1px solid; } .border-r-2 { border-right: 2px solid; }
.border-color { border-color: var(--border); }
.border-gray-700 { border-color: var(--border); }
.border-gray-800 { border-color: #1f2937; }
.border-white { border-color: #fff; }
.border-primary { border-color: var(--primary); }
.border-accent { border-color: var(--accent); }
.border-red-500 { border-color: #ef4444; }
.border-transparent { border-color: transparent; }
.rounded { border-radius: var(--r-sm); } .rounded-sm { border-radius: var(--r-sm); }
.rounded-md { border-radius: var(--r-md); } .rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); } .rounded-2xl { border-radius: var(--r-xl); }
.rounded-full { border-radius: var(--r-full); }
.overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; }
.divide-y > * + * { border-top: 1px solid; }
.divide-gray-700 > * + * { border-color: var(--border); }

/* Position */
.relative { position: relative; } .absolute { position: absolute; }
.fixed { position: fixed; } .sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; } .left-0 { left: 0; } .right-0 { right: 0; } .bottom-0 { bottom: 0; }
.top-4 { top: 16px; } .right-4 { right: 16px; } .right-8 { right: 32px; }
.bottom-4 { bottom: 16px; } .bottom-8 { bottom: 32px; }
.left-1\/2 { left: 50%; }
.z-0 { z-index: 0; } .z-10 { z-index: 10; } .z-20 { z-index: 20; }
.z-30 { z-index: 30; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }

/* Transforms */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-x-full { transform: translateX(-100%); }
.translate-x-0 { transform: translateX(0); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Effects */
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-glow-gold { box-shadow: var(--glow-gold); }
.shadow-glow-green { box-shadow: var(--glow-green); }
.opacity-0 { opacity: 0; } .opacity-5 { opacity: 0.05; }
.opacity-8 { opacity: 0.08; } .opacity-10 { opacity: 0.1; }
.opacity-40 { opacity: 0.4; } .opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; } .opacity-80 { opacity: 0.8; }

/* Transitions */
.transition-all { transition: all 200ms ease-out; }
.transition-colors { transition: color 200ms ease-out, background-color 200ms ease-out, border-color 200ms ease-out; }
.transition-transform { transition: transform 200ms ease-out; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Object */
.object-cover { object-fit: cover; } .object-center { object-position: center; }
.resize-none { resize: none; }

/* Table */
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; }

/* === HOVER STATES === */
.hover\:text-accent:hover { color: var(--accent); }
.hover\:text-green:hover { color: var(--primary-light); }
.hover\:text-white:hover { color: #fff; }
.hover\:text-primary:hover { color: var(--primary); }
.hover\:text-red-400:hover { color: #f87171; }
.hover\:text-red-300:hover { color: #fca5a5; }
.hover\:text-blue-300:hover { color: #93c5fd; }
.hover\:text-yellow-300:hover { color: #fde047; }
.hover\:bg-accent-fill:hover { background-color: var(--primary); }
.hover\:bg-primary-dark:hover { background-color: var(--primary-dark); }
.hover\:bg-accent:hover { background-color: var(--accent); }
.hover\:bg-accent-dark:hover { background-color: var(--accent-dark); }
.hover\:bg-white:hover { background-color: #fff; }
.hover\:bg-tertiary:hover { background-color: var(--bg-tertiary); }
.hover\:bg-gray-600:hover { background-color: #4b5563; }
.hover\:bg-gray-700\/50:hover { background-color: rgba(55,65,81,0.5); }
.hover\:bg-gray-800:hover { background-color: #1f2937; }
.hover\:bg-yellow-700:hover { background-color: #a16207; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:border-primary:hover { border-color: var(--primary); }
.hover\:border-accent:hover { border-color: var(--accent); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:opacity-100:hover { opacity: 1; }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }

/* Focus */
.focus\:border-primary:focus { border-color: var(--primary); }
.focus\:ring-1:focus { box-shadow: 0 0 0 3px rgba(27,143,90,0.15); }
.focus\:ring-primary:focus { box-shadow: 0 0 0 3px rgba(27,143,90,0.15); }
.focus\:outline-none:focus { outline: none; }

/* ================================================================
   COMPONENTS
   ================================================================ */

/* === HEADER === */
#main-header {
    background-color: transparent;
    transition: all 300ms ease;
    height: 96px;
}
#main-header.scrolled {
    background-color: rgba(10, 14, 19, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: inset 0 -1px 0 rgba(36,44,56,0.6);
    height: 72px;
}

/* Nav link underline grow effect */
.nav-link {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 200ms ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transition: width 300ms ease;
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

/* Logo glow hover */
.gc-logo { transition: filter 300ms ease; }
.gc-logo:hover { filter: drop-shadow(0 0 8px rgba(212,168,67,0.4)); }

/* === HERO === */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, rgba(20,112,63,0.15) 100%);
}
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52' viewBox='0 0 60 52'%3E%3Cpath d='M30 0L60 17.32v17.32L30 52 0 34.64V17.32z' fill='none' stroke='%231B8F5A' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 52px;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, transparent 30%, rgba(10,14,19,0.8) 100%);
}
.hero-scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { opacity: 0.2; transform: translateX(-50%) scaleY(0.4); transform-origin: top; }
    50% { opacity: 0.8; transform: translateX(-50%) scaleY(1); }
}
/* Hero watermark GC */
.hero-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    opacity: 0.03;
    pointer-events: none;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    transition: all 250ms ease-out;
    box-shadow: 0 4px 20px rgba(27,143,90,0.2);
}
.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27,143,90,0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    background: transparent;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1.5px solid var(--accent);
    border-radius: var(--r-sm);
    transition: all 250ms ease-out;
}
.btn-secondary:hover {
    background-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}
.btn-sm { padding: 10px 28px; font-size: 0.8125rem; }

/* === SECTION HEADING === */
.section-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-top: 24px;
}

/* === TIMELINE CARD (stacked full-width) === */
.timeline-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--r-md);
    padding: 32px;
    transition: all 250ms ease-out;
}
.timeline-item:hover {
    border-left-color: var(--accent);
    background: var(--bg-tertiary);
    transform: translateX(4px);
}
.timeline-year {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
}

/* === BLOG CARD === */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: all 250ms ease-out;
}
.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image { position: relative; overflow: hidden; }
.blog-card-image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}
.blog-card-image img { transition: transform 400ms ease-out; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-category {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Featured blog card (first article bigger) */
.blog-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.blog-card-featured .blog-card-image { height: 100%; }
.blog-card-featured .blog-card-image img { height: 100%; }

/* === STAT NUMBER === */
.stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    color: var(--accent);
}
.stat-label {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* === PHILOSOPHY CARD === */
.philosophy-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 40px 32px;
    transition: all 250ms ease-out;
    position: relative;
    overflow: hidden;
}
.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 250ms ease;
}
.philosophy-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.philosophy-card:hover::before { opacity: 1; }

/* === FORM === */
.form-input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 250ms ease-out;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27,143,90,0.12);
}

/* === AVAILABILITY BADGE === */
.badge-available {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(27,143,90,0.08);
    border: 1px solid rgba(27,143,90,0.2);
    border-radius: var(--r-full);
    font-family: var(--font-heading);
    color: var(--primary-light);
    font-weight: 500;
    font-size: 0.8125rem;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,185,110,0.5); }
    50% { box-shadow: 0 0 0 6px rgba(34,185,110,0); }
}

/* === FAQ CARD === */
.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 32px;
    transition: all 200ms ease-out;
}
.faq-card:hover { border-color: var(--border-hover); }
.faq-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 12px;
}
.faq-card p { color: var(--text-secondary); line-height: 1.7; }

/* === DIAGONAL SECTION SEPARATOR === */
.section-sep {
    height: 80px;
    position: relative;
    overflow: hidden;
}
.section-sep::before {
    content: '';
    position: absolute;
    bottom: 0; left: -5%; right: -5%;
    height: 100%;
    background: var(--bg-secondary);
    transform: skewY(-2deg);
    transform-origin: bottom left;
}
.section-sep-reverse::before { transform: skewY(2deg); transform-origin: bottom right; }
.section-sep-to-primary::before { background: var(--bg-primary); }

/* === PROSE === */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.25em; line-height: 1.8; color: var(--text-primary); }
.prose h2 { font-family: var(--font-display); font-size: 1.5em; font-weight: 700; color: #fff; margin: 2em 0 0.75em; }
.prose h3 { font-family: var(--font-heading); font-size: 1.25em; font-weight: 600; color: #fff; margin: 1.5em 0 0.5em; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: var(--primary); }
.prose a:hover { text-decoration: underline; }
.prose ul, .prose ol { margin-bottom: 1.25em; padding-left: 1.5em; }
.prose li { margin-bottom: 0.5em; }
.prose blockquote { border-left: 3px solid var(--accent); padding-left: 1em; margin: 1.5em 0; font-style: italic; color: var(--text-secondary); }
.prose img { border-radius: var(--r-lg); margin: 1.5em 0; }
.prose-invert { color: var(--text-primary); }

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* Stagger */
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* Compat alias */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.animate-slide-in { animation: slideIn 0.3s ease-out; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Word reveal for headings (JS adds spans) */
.word-reveal .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 400ms ease, transform 400ms ease;
}
.word-reveal.visible .word { opacity: 1; transform: translateY(0); }

/* Mobile fullscreen menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,14,19,0.96);
    backdrop-filter: blur(20px);
    z-index: 45;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-overlay .mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 300ms ease;
}
.mobile-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
    .sm\:block { display: block; }
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:table-cell { display: table-cell; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:text-left { text-align: left; }
}
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:block { display: block; }
    .md\:grid { display: grid; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:table-cell { display: table-cell; }
    .md\:p-8 { padding: 32px; }
    .md\:px-8 { padding-left: 32px; padding-right: 32px; }
    .md\:ml-64 { margin-left: 256px; }
    .md\:translate-x-0 { transform: translateX(0); }
    .md\:justify-start { justify-content: flex-start; }
    .md\:justify-end { justify-content: flex-end; }
    .md\:gap-12 { gap: 48px; }
    .md\:flex-row { flex-direction: row; }
    .md\:w-golden-sm { width: 38.2%; }
    .md\:w-golden-lg { width: 61.8%; }
    .blog-card-featured { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
    .blog-card-featured { grid-template-columns: 1fr; }
    .blog-card-featured .blog-card-image { height: 200px; }
    .btn-primary, .btn-secondary { padding: 12px 28px; width: 100%; justify-content: center; }
}
@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:block { display: block; }
    .lg\:table-cell { display: table-cell; }
    .lg\:flex { display: flex; }
}
