@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;900&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    --bg-dark: #06060c;
    --bg-card: rgba(13, 13, 23, 0.65);
    --border-glow: rgba(124, 58, 237, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.05);
    
    --primary: #7C3AED;      /* Astral Violet */
    --primary-glow: rgba(124, 58, 237, 0.4);
    --secondary: #06B6D4;    /* Aurora Cyan */
    --secondary-glow: rgba(6, 182, 212, 0.4);
    --accent: #E02424;       /* Neon Crimson */
    
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #4B5563;
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #A78BFA 0%, #7C3AED 50%, #4C1D95 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #A5F3FC 0%, #06B6D4 50%, #0891B2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #D97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 6, 12, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(6, 6, 12, 0.95);
    border-bottom-color: var(--border-glow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
    height: 60px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--text-main);
}

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

.btn-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

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

#canvas-visualizer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    right: -200px;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0,0,0,0) 70%);
    bottom: -150px;
    left: -150px;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: pulse 3s infinite alternate;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 2.5rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 50%, var(--secondary) 100%);
    background-size: 200% auto;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* --- Section Global --- */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-label {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* --- Vision & Strategy Section --- */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: inset 0 2px 5px rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.vision-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vision-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.vision-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    border-left: 2px solid var(--secondary);
    padding-left: 1rem;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.graphic-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.interactive-globe-mock {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, rgba(6,182,212,0.05) 50%, rgba(0,0,0,0) 70%);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotateGlobe 40s linear infinite;
}

.globe-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.ring-1 { width: 80%; height: 80%; transform: rotateX(45deg) rotateY(15deg); }
.ring-2 { width: 60%; height: 60%; transform: rotateX(-45deg) rotateY(-15deg); }
.ring-3 { width: 40%; height: 40%; transform: rotateY(90deg); }

.globe-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary);
}

.node-1 { top: 20%; left: 40%; background: var(--primary); box-shadow: 0 0 12px var(--primary); }
.node-2 { top: 50%; right: 15%; }
.node-3 { bottom: 30%; left: 25%; }
.node-4 { top: 70%; right: 35%; background: var(--primary); box-shadow: 0 0 12px var(--primary); }

.globe-core {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    box-shadow: 0 0 40px var(--primary);
    animation: pulseCore 3s infinite alternate;
}

/* --- Services & Pillars Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1.5rem;
}

.service-bullets li {
    font-size: 0.88rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.service-bullets li::before {
    content: '▲';
    font-size: 0.5rem;
    color: var(--secondary);
}

/* --- Roster Carousel Section --- */
.roster-swiper-container {
    overflow: hidden;
    padding: 2rem 0;
}

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

.artist-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    group: hover;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.artist-img-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1f1f2e 0%, #06060c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artist-card:nth-child(1) .artist-img-fallback {
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
}
.artist-card:nth-child(2) .artist-img-fallback {
    background: linear-gradient(135deg, #0f172a 0%, #0c353d 100%);
}
.artist-card:nth-child(3) .artist-img-fallback {
    background: linear-gradient(135deg, #270914 0%, #0f172a 100%);
}

.artist-img-fallback::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 80%);
    animation: rotateGlobe 60s linear infinite;
}

.artist-hologram {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    position: absolute;
    pointer-events: none;
    letter-spacing: -5px;
    text-transform: uppercase;
}

.artist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(6, 6, 12, 0.95) 0%, rgba(6, 6, 12, 0.4) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.artist-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.artist-genre {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.artist-discover {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.artist-card:hover .artist-overlay {
    background: linear-gradient(to top, rgba(124, 58, 237, 0.85) 0%, rgba(6, 6, 12, 0.5) 70%, rgba(0,0,0,0) 100%);
}

.artist-card:hover .artist-discover {
    opacity: 1;
    transform: translateY(0);
}

/* --- Estimator Tool Section --- */
.estimator-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.estimator-info {
    max-width: 500px;
}

.calculator-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.calculator-card::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(0,0,0,0) 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.form-group {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.slider-label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-main);
}

.slider-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.6);
    transition: var(--transition-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

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

.radio-btn {
    position: relative;
}

.radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.radio-btn input:checked + .radio-label {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.result-box {
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.result-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.8rem;
}

.result-helper {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}

/* --- Submit Demo Form --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.meta-pitch {
    max-width: 400px;
}

.meta-pitch h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.meta-pitch p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.office-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.office-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    background: rgba(6, 182, 212, 0.08);
    padding: 0.5rem;
    border-radius: 8px;
    margin-top: 0.2rem;
}

.office-city {
    font-weight: 600;
    font-size: 1rem;
}

.office-address {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.submission-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.submission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-span {
    grid-column: span 2;
}

.input-box {
    position: relative;
}

.input-box input, 
.input-box textarea,
.input-box select {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-box input:focus, 
.input-box textarea:focus,
.input-box select:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

.input-box label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-box input:focus ~ label,
.input-box input:not(:placeholder-shown) ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--secondary);
    background: var(--bg-dark);
    padding: 0 0.4rem;
}

.input-box select {
    appearance: none;
}

.select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.btn-form {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 1.1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--primary-glow);
    transition: var(--transition-smooth);
}

.btn-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

/* Form Message Styles */
.form-notification {
    grid-column: span 2;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-notification.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34D399;
}

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

/* --- Footer --- */
footer {
    border-top: 1px solid var(--border-subtle);
    background: #020205;
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-pitch {
    max-width: 320px;
}

.footer-pitch p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-main);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    color: var(--text-dark);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--text-dark);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--text-muted);
}

/* --- Animations & Keyframes --- */
@keyframes rotateGlobe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseCore {
    0% { transform: scale(0.9); box-shadow: 0 0 20px var(--primary-glow); }
    100% { transform: scale(1.1); box-shadow: 0 0 45px rgba(6, 182, 212, 0.6); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(6, 182, 212, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

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

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .vision-grid, .estimator-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .graphic-wrapper { margin-top: 2rem; }
    .services-grid, .roster-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.8rem; }
    .services-grid, .roster-grid {
        grid-template-columns: 1fr;
    }
    .submission-grid {
        grid-template-columns: 1fr;
    }
    .grid-span { grid-column: span 1; }
    .calculator-card, .submission-card {
        padding: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
