/* --------------------------------------------------
   CSS Custom Properties & Design Tokens (Ole Miss Colors + Editorial Scale)
   -------------------------------------------------- */
:root {
    --black:       #03050c; /* Deep Near-Black Midnight Navy */
    --surface:     #070b18; /* Surface Navy */
    --surface-2:   #0d1226; /* Surface Cards */
    --surface-3:   #121933;
    --border:      #192244; /* Clean crisp line divider */
    --border-light:#0e142e;

    --primary:     #ff1e27; /* Ole Miss Cardinal Crimson Accent */
    --primary-dim: rgba(255, 30, 39, 0.08);
    --primary-glow: rgba(255, 30, 39, 0.04);
    
    --secondary:   #4da6ff; /* Ole Miss Powder Blue */
    --secondary-dim: rgba(77, 166, 255, 0.08);
    
    --white:       #f1f3f9; /* Editorial Cream White */
    --white-dim:   #cbd5e1;
    --gray:        #94a3b8; /* Muted Slate Gray */
    --gray-dim:    #475569;

    --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

main {
    position: relative;
    z-index: 2;
}

/* Premium Tactile Grain Overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* --------------------------------------------------
   Dynamic Ambient Lighting
   -------------------------------------------------- */
.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.14;
    mix-blend-mode: screen;
}

.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -10vw;
    right: -5vw;
}

.orb-2 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: -5vw;
    left: -5vw;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: 40vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    opacity: 0.18;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* --------------------------------------------------
   Typography & Common Elements
   -------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
}

p {
    color: var(--text-muted);
}

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

.max-w-md {
    max-width: 700px;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8085 45%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 8s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    background: var(--primary-dim);
    border: 1px solid rgba(255, 30, 39, 0.15);
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.badge-accent {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    background: var(--secondary-dim);
    border: 1px solid rgba(77, 166, 255, 0.15);
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mono-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
}

/* Glassmorphism Styles (Editorial Glass) */
.glass {
    background: var(--surface-2);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.glass:hover {
    border-color: var(--border-glass-active);
}

/* SVG Custom Styling */
.svg-icon-red { stroke: var(--primary); }
.svg-icon-blue { stroke: var(--secondary); }
.svg-icon-white { stroke: var(--white); }
.svg-inline {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    margin-top: -2px;
}
.svg-inline-lightning {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3rem;
    margin-top: -2px;
    color: var(--secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.8rem;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-bounce);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(255, 30, 39, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 30, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-3);
    border-color: var(--white-dim);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* --------------------------------------------------
   Navigation Header
   -------------------------------------------------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, var(--black) 60%, transparent);
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    background: rgba(3, 5, 12, 0.95);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition-smooth);
}

.nav-num {
    color: var(--primary);
    margin-right: 2px;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 0.4rem 1.1rem;
    font-size: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--black);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------
   Hero Section
   -------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    padding: 180px 0 100px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(350px, 400px);
    gap: 4rem;
    align-items: center;
}

.hero-tagline {
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(34px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 350px;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    height: 420px;
}

/* Premium Interactive Card Stack */
.hero-card {
    position: absolute;
    width: 100%;
    padding: 2.2rem;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;

    transition: transform 0.5s var(--ease-out), 
                opacity 0.5s var(--ease-out), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--white-dim);
}

.card-active {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 1;
    z-index: 10;
    background: linear-gradient(135deg, rgba(8, 14, 34, 0.98) 0%, rgba(14, 23, 54, 0.8) 100%);
    border-color: rgba(255, 30, 39, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.card-active:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 45px rgba(255, 30, 39, 0.08);
}

.card-back {
    transform: translate(25px, 25px) scale(0.95) rotate(1deg);
    opacity: 0.5;
    z-index: 5;
    background: linear-gradient(135deg, rgba(8, 14, 34, 0.5) 0%, rgba(14, 23, 54, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.05);
}

.card-back:hover {
    opacity: 0.75;
    transform: translate(25px, 20px) scale(0.96) rotate(1deg);
}

.hero-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.hero-card .tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
}

.badge-mini {
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-family: var(--font-mono);
    font-weight: 500;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--gray);
}

/* --------------------------------------------------
   Ticker Section
   -------------------------------------------------- */
.ticker {
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: var(--surface);
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.ticker::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }

.ticker-track {
    display: inline-flex;
    animation: tickerScroll 35s linear infinite;
}

.ticker-segment {
    display: inline-flex;
    align-items: center;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    padding: 0 40px;
}

.ticker-dot {
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --------------------------------------------------
   SECTIONS - SHARED STYLE
   -------------------------------------------------- */
.section-padding {
    padding: 120px 48px;
}

.section-header {
    margin-bottom: 64px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--primary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1.05;
}

/* --------------------------------------------------
   Pillars (Philosophy) Section
   -------------------------------------------------- */
.philosophy-section {
    border-top: 1px solid var(--border);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    padding: 3rem 2.2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

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

.pillar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pillar-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray-dim);
    letter-spacing: 1px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--surface);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.pillar-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white-dim);
}

/* --------------------------------------------------
   Timeline Section (Editorial Lists)
   -------------------------------------------------- */
.playbook-section {
    border-top: 1px solid var(--border);
}

.timeline {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: grid;
    grid-template-columns: 180px 1fr 200px;
    align-items: start;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.tl-item:first-child {
    border-top: 1px solid var(--border-light);
}

/* Hover Accent Bar Left */
.tl-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--primary);
    transition: height 0.4s var(--ease-out);
}

.tl-item:hover::before {
    height: 100%;
}

.tl-item:hover {
    padding-left: 16px;
}

.tl-date {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gray);
    padding-top: 4px;
}

.tl-details h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--white);
}

.tl-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 580px;
}

.tl-company {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    text-align: right;
    padding-top: 4px;
}

/* --------------------------------------------------
   Stats Section
   -------------------------------------------------- */
.stats-section {
    border-top: 1px solid var(--border);
    background: transparent;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 3rem 2.2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.stat-index {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--gray-dim);
    display: block;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* --------------------------------------------------
   Resilience Spotlight Section
   -------------------------------------------------- */
.resilience-section {
    border-top: 1px solid var(--border);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.lead-text {
    font-size: 1.25rem;
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
    color: var(--white);
}

.text-body {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--white-dim);
}

/* Quote Layout */
.quote-card {
    padding: 3.5rem 3rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    font-family: var(--font-display);
    color: rgba(255, 30, 39, 0.05);
    user-select: none;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-author h5 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.2rem;
}

.quote-author p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* --------------------------------------------------
   Interactive Mindset Section
   -------------------------------------------------- */
.interactive-section {
    border-top: 1px solid var(--border);
    background: transparent;
}

.drill-card {
    padding: 3rem;
    border-radius: 8px;
}

.drill-selector {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.drill-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 0.7rem 1.2rem;
    border-radius: 4px;
    color: var(--gray);
    font-family: var(--font-mono);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.drill-btn:hover {
    background: var(--surface-3);
    border-color: var(--white-dim);
    color: #fff;
}

.drill-btn.active {
    background: var(--primary-dim);
    border-color: var(--primary);
    color: var(--primary);
}

.drill-body {
    min-height: 200px;
}

.drill-content {
    animation: fadeIn 0.4s ease forwards;
    transition: opacity 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.drill-headline {
    font-size: 1.45rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.drill-desc {
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    color: var(--white-dim);
}

.drill-arrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
}

.drill-translation {
    padding: 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid rgba(77, 166, 255, 0.15);
    background: var(--surface-2);
}

/* --------------------------------------------------
   Connect Section
   -------------------------------------------------- */
.connect-section {
    border-top: 1px solid var(--border);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.method-icon {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-details h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
}

.method-details p {
    font-size: 0.85rem;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icon-btn:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

.svg-social {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form {
    padding: 3rem;
    border-radius: 8px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: #fff;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(77, 166, 255, 0.1);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-loader {
    display: none;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.success {
    color: var(--secondary);
}

.form-status.error {
    color: #ff5f56;
}

/* --------------------------------------------------
   Footer
   -------------------------------------------------- */
#main-footer {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    background: var(--black);
}

.footer-content p {
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-subtext {
    font-size: 0.75rem !important;
    color: var(--gray-dim) !important;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------
   Scroll Reveal Animations
   -------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------
   Responsive Design Breakpoints
   -------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid, .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tl-item {
        grid-template-columns: 120px 1fr 120px;
    }
    
    .tl-item::before {
        left: -20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--black);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tl-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .tl-company {
        text-align: left;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-width: 100%;
    }
    .hero-card-stack {
        height: 480px; /* Expand stack height for vertical text wrapping */
    }
    .hero-card {
        padding: 1.5rem;
    }
    .hero-card h3 {
        font-size: 1.3rem;
    }
}

