/* =============================================
   DESIGN SYSTEM — Framer-Inspired Dark Canvas
   Tokens from DESIGN-framer.md
   ============================================= */

:root {
    /* Colors */
    --primary: #ffffff;
    --on-primary: #000000;
    --accent-blue: #0099ff;
    --ink: #ffffff;
    --ink-muted: #999999;
    --canvas: #090909;
    --surface-1: #141414;
    --surface-2: #1c1c1c;
    --hairline: #262626;
    --hairline-soft: #1a1a1a;
    --inverse-canvas: #ffffff;
    --inverse-ink: #000000;

    /* Gradient Anchors */
    --gradient-magenta: #d44df0;
    --gradient-violet: #6a4cf5;
    --gradient-orange: #ff7a3d;
    --gradient-coral: #ff5577;

    /* Semantic */
    --success: #22c55e;

    /* Rounded */
    --rounded-xs: 4px;
    --rounded-sm: 6px;
    --rounded-md: 10px;
    --rounded-lg: 15px;
    --rounded-xl: 20px;
    --rounded-xxl: 30px;
    --rounded-pill: 100px;
    --rounded-full: 9999px;

    /* Spacing */
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 15px;
    --space-lg: 20px;
    --space-xl: 30px;
    --space-xxl: 40px;
    --space-section: 96px;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease-in-out);
}

/* =============================================
   RESET & BASE
   ============================================= */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-feature-settings: 'cv01', 'cv05', 'cv09', 'cv11', 'ss03', 'ss07';
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.3;
    overflow-x: hidden;
    font-size: 15px;
    letter-spacing: -0.15px;
}

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

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

a:hover {
    opacity: 0.85;
}

/* =============================================
   TYPOGRAPHY SCALE
   ============================================= */

.display-xxl {
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 500;
    line-height: 0.85;
    letter-spacing: -0.05em;
}

.display-xl {
    font-size: clamp(44px, 7vw, 85px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.display-lg {
    font-size: clamp(32px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.05em;
}

.display-md {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: -0.031em;
}

.headline {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.subhead {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01px;
}

.body-lg {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.18px;
}

.body {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.15px;
}

.body-sm {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.14px;
}

.caption {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.13px;
}

.micro {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.12px;
}

/* =============================================
   LAYOUT
   ============================================= */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--space-lg);
}

.section-divider {
    width: 100%;
    height: 1px;
    background: var(--hairline-soft);
}

/* =============================================
   BUTTONS (Pill CTAs)
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'cv01', 'cv05', 'cv09', 'cv11', 'ss03', 'ss07';
    font-size: 14px;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -0.14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--on-primary);
    border-radius: var(--rounded-pill);
    padding: 10px 20px;
    min-height: 44px;
}

.btn-primary:hover {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: var(--surface-1);
    color: var(--ink);
    border-radius: var(--rounded-pill);
    padding: 10px 20px;
    min-height: 44px;
}

.btn-secondary:hover {
    opacity: 1;
    background: var(--surface-2);
    transform: scale(1.03);
}

.btn-icon {
    background: var(--surface-1);
    color: var(--ink);
    border-radius: var(--rounded-full);
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--hairline-soft);
}

.btn-icon:hover {
    opacity: 1;
    background: var(--surface-2);
    border-color: var(--hairline);
}

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

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(9, 9, 9, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--hairline-soft);
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    flex-shrink: 0;
}

.nav-logo img {
    height: 32px;
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--ink-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.14px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--ink);
    opacity: 1;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: transparent;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 9, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay a {
    color: var(--ink);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1.4px;
    transition: var(--transition);
}

.mobile-nav-overlay a:hover {
    color: var(--ink-muted);
    opacity: 1;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-section);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(106, 76, 245, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 77, 240, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.hero-tagline {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.045em;
    color: var(--ink);
}

.hero-tagline .accent {
    background: linear-gradient(135deg, var(--gradient-violet) 0%, var(--gradient-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink-muted);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-social {
    display: flex;
    gap: 8px;
    margin-left: 8px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--rounded-xxl);
    overflow: hidden;
    position: relative;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--rounded-xxl);
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-image-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(106, 76, 245, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-banner {
    margin-top: 40px;
    margin-bottom: 48px;
    border-radius: var(--rounded-xxl);
    overflow: hidden;
    position: relative;
}

.about-banner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        var(--canvas) 0%,
        transparent 25%,
        transparent 75%,
        var(--canvas) 100%),
        linear-gradient(to bottom, transparent 50%, var(--canvas) 100%);
    border-radius: var(--rounded-xxl);
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.7;
}

.about-text strong {
    color: var(--ink);
}

.about-highlight {
    margin-top: 12px;
    padding: 24px;
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    border: 1px solid var(--hairline-soft);
    border-left: 3px solid var(--gradient-violet);
}

.about-highlight p {
    color: var(--ink) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 400;
    font-style: italic;
}

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

.stat-card {
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    padding: 28px 24px;
    border: 1px solid var(--hairline-soft);
    transition: var(--transition);
    text-align: center;
}

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

.stat-number {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-muted);
    letter-spacing: -0.13px;
}

/* =============================================
   LEADERSHIP / PILLARS SECTION
   ============================================= */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.pillar-card {
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    padding: 32px;
    border: 1px solid var(--hairline-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    border-color: var(--hairline);
    transform: translateY(-2px);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--rounded-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pillar-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.pillar-card p {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Gradient spotlight pillar */
.pillar-card.spotlight {
    background: linear-gradient(145deg, rgba(106, 76, 245, 0.35) 0%, rgba(106, 76, 245, 0.08) 50%, var(--surface-1) 100%);
    border-color: rgba(106, 76, 245, 0.2);
}

.pillar-card.spotlight:hover {
    border-color: rgba(106, 76, 245, 0.35);
}

/* =============================================
   VENTURES SECTION
   ============================================= */

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.venture-card {
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    padding: 28px;
    border: 1px solid var(--hairline-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.venture-card:hover {
    border-color: var(--hairline);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.venture-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--rounded-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 4px;
}

.venture-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.venture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.venture-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-pill);
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}

.venture-card p {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.venture-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-blue);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
}

.venture-link:hover {
    opacity: 1;
    gap: 10px;
}

.venture-link i {
    font-size: 11px;
    transition: var(--transition);
}

/* Gradient spotlight ventures */
.venture-card.spotlight-magenta {
    background: linear-gradient(155deg, rgba(212, 77, 240, 0.3) 0%, rgba(212, 77, 240, 0.06) 60%, var(--surface-1) 100%);
    border-color: rgba(212, 77, 240, 0.15);
}

.venture-card.spotlight-magenta:hover {
    border-color: rgba(212, 77, 240, 0.3);
}

.venture-card.spotlight-orange {
    background: linear-gradient(155deg, rgba(255, 122, 61, 0.3) 0%, rgba(255, 122, 61, 0.06) 60%, var(--surface-1) 100%);
    border-color: rgba(255, 122, 61, 0.15);
}

.venture-card.spotlight-orange:hover {
    border-color: rgba(255, 122, 61, 0.3);
}

.venture-card.spotlight-violet {
    background: linear-gradient(155deg, rgba(106, 76, 245, 0.3) 0%, rgba(106, 76, 245, 0.06) 60%, var(--surface-1) 100%);
    border-color: rgba(106, 76, 245, 0.15);
}

.venture-card.spotlight-violet:hover {
    border-color: rgba(106, 76, 245, 0.35);
}

.venture-card.spotlight-coral {
    background: linear-gradient(155deg, rgba(255, 85, 119, 0.3) 0%, rgba(255, 85, 119, 0.06) 60%, var(--surface-1) 100%);
    border-color: rgba(255, 85, 119, 0.15);
}

.venture-card.spotlight-coral:hover {
    border-color: rgba(255, 85, 119, 0.3);
}

/* =============================================
   INSIGHTS SECTION
   ============================================= */

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.insight-card {
    background: var(--surface-1);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    border: 1px solid var(--hairline-soft);
    transition: var(--transition);
}

.insight-card:hover {
    border-color: var(--hairline);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.insight-header {
    height: 210px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.insight-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--surface-1) 0%, transparent 65%);
    pointer-events: none;
}

.insight-header .insight-tag {
    position: relative;
    z-index: 1;
}

.insight-header-violet {
    background-color: rgba(106, 76, 245, 0.4);
}

.insight-header-magenta {
    background-color: rgba(212, 77, 240, 0.4);
}

.insight-header-orange {
    background-color: rgba(255, 122, 61, 0.4);
}

.insight-tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    padding: 6px 14px;
    border-radius: var(--rounded-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.insight-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-body h3 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.insight-body p {
    color: var(--ink-muted);
    font-size: 14px;
    line-height: 1.5;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-section {
    background: var(--surface-1);
    border-top: 1px solid var(--hairline-soft);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info p {
    color: var(--ink-muted);
    font-size: 15px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-detail-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.contact-detail-value {
    font-size: 15px;
    color: var(--ink);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface-2);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'cv01', 'cv05', 'cv09', 'cv11', 'ss03', 'ss07';
    font-size: 15px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-muted);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.form-group select {
    color: var(--ink-muted);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--surface-2);
    color: var(--ink);
}

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

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

.site-footer {
    background: var(--canvas);
    border-top: 1px solid var(--hairline-soft);
    padding: 48px 0 32px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-brand img:hover {
    opacity: 1;
}

.footer-brand p {
    color: var(--ink-muted);
    font-size: 13px;
    max-width: 280px;
    line-height: 1.5;
}

.footer-columns {
    display: flex;
    gap: 64px;
}

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

.footer-col a {
    display: block;
    color: var(--ink-muted);
    font-size: 13px;
    padding: 4px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--ink);
    opacity: 1;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   SKIP LINK & ACCESSIBILITY
   ============================================= */

.skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    background: var(--accent-blue);
    color: var(--ink);
    padding: 8px 16px;
    border-radius: var(--rounded-sm);
    font-size: 13px;
    font-weight: 500;
    z-index: 2000;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 8px;
}

*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   RESPONSIVE — Tablet (≤ 810px)
   ============================================= */

@media (max-width: 810px) {
    .nav-links,
    .nav-cta .btn-secondary {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-tagline {
        font-size: clamp(36px, 10vw, 56px);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-columns {
        gap: 40px;
    }
}

/* =============================================
   RESPONSIVE — Mobile (≤ 480px)
   ============================================= */

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 64px 0;
    }

    .hero {
        padding: 100px 0 64px;
    }

    .hero-tagline {
        font-size: clamp(32px, 12vw, 44px);
    }

    .hero-desc {
        font-size: 15px;
    }

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

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

    .hero-social {
        margin-left: 0;
        margin-top: 4px;
    }

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

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

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

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

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 24px;
    }

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