/* ===========================
   SCOPE CREATIVE AGENCY
   Coming Soon Page - Vibrant Design
   =========================== */

/* --- CSS Custom Properties --- */
:root {
    --color-bg: #0a0b0b;
    --color-surface: #151616;
    --color-surface-hover: #1e2020;
    --color-border: rgba(255, 255, 255, 0.08);
    
    --color-text: #ffffff;
    --color-text-dim: #9ca3af;
    
    --color-primary: #9AFF01; /* Scope Neon Green */
    --color-primary-dim: #7acc01;
    --color-primary-glow: rgba(154, 255, 1, 0.4);
    
    --color-accent-1: #8B5CF6; /* Purple */
    --color-accent-2: #EC4899; /* Pink */
    --color-accent-3: #3B82F6; /* Blue */

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--color-bg);
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    line-height: 1.6;
}

::selection {
    background: var(--color-primary);
    color: #000;
}

/* --- Background Effects --- */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--color-bg);
}

/* Subtle Creative Design Grid Overlay */
.gradient-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 75%);
    pointer-events: none;
    opacity: 0.7;
}

.gradient-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.9;
    border-radius: 50%;
    animation: blobMorph 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(154,255,1,0.45) 0%, rgba(0,0,0,0) 70%);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.45) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(236,72,153,0.4) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -10s;
}

.blob-4 {
    top: 20%;
    left: 20%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(59,130,246,0.4) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -15s;
}

.blob-5 {
    bottom: 10%;
    left: 40%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(154,255,1,0.3) 0%, rgba(139,92,246,0.25) 40%, rgba(0,0,0,0) 70%);
    animation-delay: -8s;
    filter: blur(100px);
}

@keyframes blobMorph {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 10%) scale(1.1); }
    66% { transform: translate(-10%, -5%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* --- Orbiting Ring --- */
.orbit-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(154, 255, 1, 0.04);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: orbitSpin 60s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 12px var(--color-primary-glow), 0 0 4px var(--color-primary);
}

.dot-1 { top: 0; left: 50%; transform: translate(-50%, -50%); opacity: 0.7; }
.dot-2 { bottom: 0; left: 50%; transform: translate(-50%, 50%); opacity: 0.4; width: 3px; height: 3px; }
.dot-3 { top: 50%; right: 0; transform: translate(50%, -50%); opacity: 0.5; width: 4px; height: 4px; background: var(--color-accent-1); box-shadow: 0 0 12px rgba(139, 92, 246, 0.4); }

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- Light Rays --- */
.light-rays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.ray {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(154, 255, 1, 0.02), transparent);
    transform-origin: top center;
}

.ray-1 {
    top: -20%;
    left: 20%;
    width: 2px;
    height: 120%;
    transform: rotate(25deg);
    animation: rayPulse 8s ease-in-out infinite;
}

.ray-2 {
    top: -20%;
    right: 25%;
    width: 1px;
    height: 120%;
    transform: rotate(-15deg);
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.025), transparent);
    animation: rayPulse 10s ease-in-out 2s infinite;
}

.ray-3 {
    top: -20%;
    left: 55%;
    width: 1px;
    height: 120%;
    transform: rotate(10deg);
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.02), transparent);
    animation: rayPulse 12s ease-in-out 4s infinite;
}

@keyframes rayPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* --- Glowing Particles --- */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    animation: particleFloat 15s ease-in-out infinite;
}

.p1 { width: 3px; height: 3px; top: 12%; left: 25%; opacity: 0.5; animation-delay: 0s; }
.p2 { width: 2px; height: 2px; top: 30%; right: 20%; opacity: 0.3; animation-delay: -2s; background: var(--color-accent-1); }
.p3 { width: 4px; height: 4px; top: 55%; left: 8%; opacity: 0.4; animation-delay: -4s; }
.p4 { width: 2px; height: 2px; bottom: 25%; right: 35%; opacity: 0.35; animation-delay: -6s; background: var(--color-accent-2); }
.p5 { width: 3px; height: 3px; top: 70%; left: 45%; opacity: 0.25; animation-delay: -8s; background: var(--color-accent-3); }
.p6 { width: 2px; height: 2px; top: 20%; left: 65%; opacity: 0.4; animation-delay: -1s; }
.p7 { width: 3px; height: 3px; bottom: 15%; left: 20%; opacity: 0.3; animation-delay: -3s; background: var(--color-accent-1); }
.p8 { width: 2px; height: 2px; top: 40%; right: 8%; opacity: 0.35; animation-delay: -5s; }
.p9 { width: 4px; height: 4px; top: 8%; right: 40%; opacity: 0.2; animation-delay: -7s; background: var(--color-accent-3); }
.p10 { width: 2px; height: 2px; bottom: 40%; left: 55%; opacity: 0.3; animation-delay: -9s; }
.p11 { width: 3px; height: 3px; top: 85%; right: 15%; opacity: 0.25; animation-delay: -11s; background: var(--color-accent-2); }
.p12 { width: 2px; height: 2px; top: 48%; left: 30%; opacity: 0.35; animation-delay: -13s; background: var(--color-accent-1); }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.3);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-10px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-25px) translateX(20px) scale(1.1);
        opacity: 0.5;
    }
}

/* --- Shooting Stars --- */
.shooting-stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, rgba(154, 255, 1, 0.6), transparent);
    border-radius: 50px;
    transform: rotate(-35deg);
    animation: shootingStar 6s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}

.star-2 {
    top: 40%;
    left: -10%;
    width: 70px;
    animation-delay: 2s;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.4), transparent);
}

.star-3 {
    top: 65%;
    left: -10%;
    width: 50px;
    animation-delay: 4s;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), transparent);
}

@keyframes shootingStar {
    0% {
        transform: rotate(-35deg) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        transform: rotate(-35deg) translateX(calc(100vw + 200px));
        opacity: 0;
    }
    100% {
        transform: rotate(-35deg) translateX(calc(100vw + 200px));
        opacity: 0;
    }
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

/* --- Floating Icons --- */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    color: var(--color-primary);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite alternate;
}

.float-icon svg {
    width: 24px;
    height: 24px;
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; color: var(--color-primary); }
.icon-2 { top: 25%; right: 15%; animation-delay: -1s; color: var(--color-accent-1); }
.icon-3 { bottom: 20%; left: 15%; animation-delay: -2s; color: var(--color-accent-2); }
.icon-4 { bottom: 30%; right: 10%; animation-delay: -3s; color: var(--color-primary); }
.icon-5 { top: 50%; left: 5%; animation-delay: -4s; color: var(--color-accent-3); opacity: 0.4; transform: scale(0.8); }
.icon-6 { top: 10%; right: 30%; animation-delay: -5s; color: var(--color-primary); opacity: 0.3; transform: scale(0.7); }
.icon-7 { bottom: 10%; left: 40%; animation-delay: -1.5s; color: var(--color-accent-1); opacity: 0.5; transform: scale(0.9); }
.icon-8 { top: 60%; right: 5%; animation-delay: -2.5s; color: var(--color-accent-2); opacity: 0.4; transform: scale(0.8); }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(10deg); }
}

/* --- Container & Layout --- */
.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 11, 11, 0.9) 0%, rgba(10, 11, 11, 0) 100%);
    backdrop-filter: blur(10px);
    transition: padding 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, transform 0.3s ease;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-text);
}

.logo-dot {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin: 0 1px;
    animation: pulse 2s infinite;
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    cursor: default;
    z-index: 10;
}

.badge-prefix-line {
    width: 16px;
    height: 1px;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    transition: all 0.3s ease;
}

.badge:hover .badge-prefix-line {
    width: 24px;
    box-shadow: 0 0 16px var(--color-primary);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-shadow: 0 0 12px rgba(154, 255, 1, 0.4);
    transition: all 0.3s ease;
}

.badge:hover .badge-text {
    color: #fff;
    text-shadow: 0 0 16px #fff;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 13vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.hero-title .word-reveal {
    background: linear-gradient(135deg, #ffffff 60%, rgba(154, 255, 1, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.serif-italic {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.75) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 255, 1, 0.2) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 100%);
    filter: blur(120px);
    z-index: 1;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulseHeroGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseHeroGlow {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* --- Hero Center Decorative Circle (O-logo Concept) --- */
.hero-circle-container {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(460px, 90vw, 55vh);
    height: min(460px, 90vw, 55vh);
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(154, 255, 1, 0.02) 40%, transparent 80%);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.01), 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: rotateHeroCircle 30s linear infinite;
}

/* Small riding dot matching the sc●pe logo */
.hero-circle::after {
    content: '';
    position: absolute;
    top: 14.6%;
    left: 14.6%;
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--color-primary), 0 0 4px var(--color-primary);
    animation: beaconDot 2s infinite alternate ease-in-out;
}

@keyframes rotateHeroCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes beaconDot {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 1; }
}

.title-line {
    display: block;
    overflow: hidden;
}

.word-reveal {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: revealUp 0.8s var(--ease-out-expo) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    background: linear-gradient(90deg, var(--color-primary), #d9ff80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 5px;
}

.blink-cursor {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 300;
    -webkit-text-fill-color: var(--color-primary);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

@keyframes revealUp {
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-subtitle {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out-expo) 0.6s forwards;
    
    /* Clean text, no frame as preferred */
    display: inline-block;
}

.desktop-br {
    display: none;
}

@media (min-width: 768px) {
    .desktop-br { display: block; }
}




/* --- Ticker --- */
.ticker-wrapper {
    position: absolute;
    top: calc(100vh - 6.5rem);
    left: 0;
    width: 100%;
    overflow: hidden;
    padding: 1.8rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
    z-index: 10;
}


.ticker-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.ticker-item:hover {
    color: var(--color-primary);
    -webkit-text-stroke: 0;
}

.ticker-separator {
    color: var(--color-primary);
    font-size: 1rem;
}

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

/* --- Section Labels --- */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.label-line {
    height: 1px;
    width: 60px;
    background: var(--color-border);
}

.label-text {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
}

/* --- About Section --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.125rem;
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-pill:hover {
    background: rgba(154, 255, 1, 0.1);
    border-color: rgba(154, 255, 1, 0.3);
    transform: translateY(-2px);
}

.service-pill.service-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(154, 255, 1, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-pill.service-ai:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(154, 255, 1, 0.15) 100%);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.pill-icon {
    font-size: 1.125rem;
}

/* --- Contact Section --- */
.contact {
    text-align: center;
    padding-bottom: 8rem;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dim);
    margin-bottom: 4rem;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(21, 22, 22, 0.7) 0%, rgba(10, 11, 11, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 300px;
    text-decoration: none;
    color: var(--color-text);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0px rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.5s var(--ease-out-expo);
    transform-origin: left;
    z-index: 2;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

/* Color-Specific Card Hover and Accent Styling */
#contact-email::before {
    background: linear-gradient(90deg, var(--color-primary), transparent);
}
#contact-email:hover {
    border-color: rgba(154, 255, 1, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(154, 255, 1, 0.08), inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

#contact-phone::before {
    background: linear-gradient(90deg, var(--color-accent-1), transparent);
}
#contact-phone:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(139, 92, 246, 0.08), inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

#contact-location::before {
    background: linear-gradient(90deg, var(--color-accent-3), transparent);
}
#contact-location:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(59, 130, 246, 0.08), inset 0 1px 0px rgba(255, 255, 255, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-text-dim);
    transition: all 0.3s ease;
}

#contact-email .contact-card-icon { color: var(--color-primary); }
#contact-email:hover .contact-card-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

#contact-phone .contact-card-icon { color: var(--color-accent-1); }
#contact-phone:hover .contact-card-icon {
    background: var(--color-accent-1);
    border-color: var(--color-accent-1);
    color: var(--color-text);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

#contact-location .contact-card-icon { color: var(--color-accent-3); }
#contact-location:hover .contact-card-icon {
    background: var(--color-accent-3);
    border-color: var(--color-accent-3);
    color: var(--color-text);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card-label {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-card-value {
    font-size: 1.25rem;
    font-weight: 600;
}

.contact-card-value a:hover {
    color: var(--color-accent-1) !important;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

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

/* --- Footer --- */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

/* --- Animations --- */
@keyframes fadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE — Complete Multi-Breakpoint System
   Breakpoints: 1200px · 992px · 768px · 480px · 360px
   ========================================================================== */

/* --- Large Tablets & Small Laptops (≤1200px) --- */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .orbit-ring {
        width: 400px;
        height: 400px;
    }

    .hero-glow {
        width: 500px;
        height: 350px;
    }
}

/* --- Tablets (≤992px) --- */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding-top: 5rem;
        padding-bottom: 6rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4.5rem);
        letter-spacing: -1.5px;
    }

    .hero-glow {
        width: 400px;
        height: 300px;
    }

    .orbit-ring {
        width: 350px;
        height: 350px;
    }

    .contact-card {
        max-width: 280px;
        padding: 2rem 1.5rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }

    .about-description {
        font-size: 1rem;
    }

    .ticker-item {
        font-size: 1.25rem;
    }

    .ticker-track {
        gap: 2rem;
    }
}

/* --- Mobile Landscape & Small Tablets (≤768px) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Navigation */
    .nav {
        padding: 0.9rem 1rem;
    }

    .nav-logo {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-link {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    /* Hero */
    .hero {
        padding-top: 4.5rem;
        padding-bottom: 5rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        max-width: 90%;
        margin-bottom: 2rem;
    }

    /* Badge */
    .badge {
        margin-bottom: 1.8rem;
    }

    .badge-text {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    /* Hero glow & circle */
    .hero-glow {
        width: 300px;
        height: 250px;
    }

    .hero-circle-container {
        width: min(320px, 80vw, 45vh);
        height: min(320px, 80vw, 45vh);
        top: 46%;
    }

    .hero-circle::after {
        width: 8px;
        height: 8px;
    }

    /* Orbit ring */
    .orbit-ring {
        width: 280px;
        height: 280px;
    }

    /* Floating icons — shrink on tablets */
    .float-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        opacity: 0.4;
    }

    .float-icon svg {
        width: 18px;
        height: 18px;
    }

    /* Ticker */
    .ticker-wrapper {
        top: calc(100vh - 5.5rem);
        padding: 1.2rem 0;
    }

    .ticker-item {
        font-size: 1.1rem;
    }

    .ticker-track {
        gap: 1.5rem;
    }

    .ticker-separator {
        font-size: 0.8rem;
    }

    /* About section */
    .about-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .about-description {
        font-size: 0.95rem;
    }

    .service-pill {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .pill-icon {
        font-size: 1rem;
    }

    .section-label {
        margin-bottom: 2.5rem;
    }

    /* Contact section */
    .contact {
        padding-bottom: 5rem;
    }

    .contact-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .contact-cards {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .contact-card {
        max-width: 260px;
        padding: 2rem 1.5rem;
    }

    .contact-card-value {
        font-size: 1.1rem;
    }

    /* Social */
    .social-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

    .social-row {
        gap: 1rem;
    }

    /* Footer */
    .footer-text {
        font-size: 0.8rem;
    }
}

/* --- Mobile Portrait (≤480px) --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Navigation */
    .nav {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    /* Hero */
    .hero {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem);
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 95%;
    }

    .badge-text {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }

    .badge-prefix-line {
        width: 12px;
    }

    /* Hero circle */
    .hero-circle-container {
        width: min(260px, 75vw, 40vh);
        height: min(260px, 75vw, 40vh);
        top: 45%;
    }

    .hero-circle::after {
        width: 7px;
        height: 7px;
    }

    .hero-glow {
        width: 250px;
        height: 200px;
        filter: blur(80px);
    }

    /* Orbit ring */
    .orbit-ring {
        width: 220px;
        height: 220px;
    }

    /* Floating icons — hide some on very small screens */
    .icon-5,
    .icon-6,
    .icon-7,
    .icon-8 {
        display: none;
    }

    .float-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        opacity: 0.35;
    }

    .float-icon svg {
        width: 16px;
        height: 16px;
    }

    /* Ticker */
    .ticker-wrapper {
        top: calc(100vh - 4.5rem);
        padding: 1rem 0;
    }

    .ticker-item {
        font-size: 0.9rem;
    }

    .ticker-track {
        gap: 1.2rem;
    }

    .ticker-separator {
        font-size: 0.7rem;
    }

    /* About */
    .about-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-services {
        gap: 0.6rem;
    }

    .service-pill {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
    }

    .section-label {
        margin-bottom: 2rem;
        gap: 0.6rem;
    }

    .label-line {
        width: 30px;
    }

    .label-text {
        font-size: 0.75rem;
    }

    /* Contact */
    .contact {
        padding-bottom: 3rem;
    }

    .contact-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .contact-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .contact-card {
        max-width: 100%;
        width: 100%;
        padding: 1.8rem 1.5rem;
        border-radius: 16px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .contact-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .contact-card-label {
        font-size: 0.75rem;
    }

    .contact-card-value {
        font-size: 1rem;
    }

    /* Social */
    .social-row {
        gap: 0.8rem;
    }

    .social-btn {
        padding: 0.55rem 1rem;
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .social-btn span {
        display: none;
    }

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

/* --- Very Small Phones (≤360px) --- */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .nav {
        padding: 0.7rem 0.75rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 0;
    }

    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .badge-text {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .hero-circle-container {
        width: min(220px, 70vw, 36vh);
        height: min(220px, 70vw, 36vh);
    }

    .hero-circle::after {
        width: 6px;
        height: 6px;
    }

    .orbit-ring {
        width: 180px;
        height: 180px;
    }

    .about-title {
        font-size: 1.3rem;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .service-pill {
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* --- Short Viewport Height (landscape phones, etc.) --- */
@media (max-height: 600px) {
    .hero {
        padding-top: 3.5rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        margin-bottom: 1rem;
    }

    .badge {
        margin-bottom: 1rem;
    }

    .hero-circle-container {
        width: min(200px, 50vw, 35vh);
        height: min(200px, 50vw, 35vh);
    }

    .ticker-wrapper {
        position: relative;
        top: auto;
        margin-top: 1rem;
    }
}

/* --- Safe area for notched phones (iPhone X+, etc.) --- */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }

    .nav {
        padding-left: calc(1rem + env(safe-area-inset-left));
        padding-right: calc(1rem + env(safe-area-inset-right));
    }
}
