/* ==========================================================================
   CSS RESET & LIQUID CHROME VARIABLES
   ========================================================================== */
:root {
    /* Backgrounds */
    --bg-obsidian: #050505;
    --bg-surface: #0a0a0a;
    --bg-elevated: #121212;

    /* Bio-Luminescent Accents */
    --neon-lime: #0044ff;
    --neon-lime-glow: rgba(198, 255, 0, 0.3);
    --neon-violet: #8A2BE2;
    --neon-violet-glow: rgba(138, 43, 226, 0.3);

    /* Chrome & Metallics */
    --chrome-light: #F0F0F0;
    --chrome-mid: #A0A0A0;
    --chrome-dark: #303030;
    --chrome-gradient: linear-gradient(135deg, #FFFFFF 0%, #A0A0A0 40%, #1A1A1A 50%, #606060 60%, #FFFFFF 100%);

    /* Text Colors */
    --text-primary: #F5F5F5;
    --text-muted: #8B8B8B;
    --text-dark: #050505;

    /* Borders */
    --border-thin: 1px solid rgba(255, 255, 255, 0.08);
    --border-lime: 1px solid rgba(198, 255, 0, 0.5);

    /* Typography */
    --font-heading: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;

    /* Sizing & Transitions */
    --max-width: 1440px;
    --header-height: 90px;
    --section-pad: 8rem;
    --trans-fast: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-obsidian);
}

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--neon-lime);
    color: var(--text-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}

::-webkit-scrollbar-thumb {
    background: var(--chrome-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-lime);
}

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--neon-lime);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--neon-lime);
    transition: transform 0.1s;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--neon-lime-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* ==========================================================================
   TYPOGRAPHY & EFFECTS
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.text-chrome {
    background: var(--chrome-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.text-lime {
    color: var(--neon-lime);
    text-shadow: 0 0 15px var(--neon-lime-glow);
}

.text-violet {
    color: var(--neon-violet);
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--chrome-light);
}

.heading-mega {
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
}

.heading-lg {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

.heading-md {
    font-size: 2rem;
}

p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    max-width: 750px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

/* ==========================================================================
   UTILITIES & LAYOUT
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 2;
}

.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.bento-box {
    background: var(--bg-elevated);
    border: var(--border-thin);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--trans-fast);
}

.bento-box:hover {
    border-color: rgba(198, 255, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(-5px);
}

/* Ambient Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.glow-violet {
    background: var(--neon-violet-glow);
    width: 400px;
    height: 400px;
    top: 10%;
    right: 10%;
}

.glow-lime {
    background: var(--neon-lime-glow);
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 10%;
    filter: blur(100px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 100px;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: var(--trans-fast);
    z-index: 1;
}

.btn-lime {
    background: var(--neon-lime);
    color: var(--text-dark);
    box-shadow: 0 0 20px var(--neon-lime-glow);
}

.btn-lime:hover {
    background: var(--chrome-light);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--chrome-mid);
}

.btn-outline:hover {
    border-color: var(--neon-lime);
    color: var(--neon-lime);
    background: rgba(198, 255, 0, 0.05);
}

/* ==========================================================================
   HEADER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--trans-fast);
}

.site-header.scrolled {
    height: 70px;
    border-bottom: var(--border-thin);
    background: rgba(5, 5, 5, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 45px;
    filter: invert(1);
    transition: var(--trans-fast);
}

.site-header.scrolled .logo img {
    height: 40px;
}

.main-nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    cursor: none;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--neon-lime);
    transition: var(--trans-fast);
}

.nav-link:hover {
    color: var(--neon-lime);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    width: 35px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: none;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: var(--trans-fast);
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 11px;
}

.mobile-toggle span:nth-child(3) {
    top: 22px;
}

/* ==========================================================================
   HERO SECTION & LIQUID CHROME SPHERE
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    align-self: flex-start;
    padding: 0.5rem 1.2rem;
    border: var(--border-thin);
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    color: var(--neon-lime);
    margin-bottom: 2rem;
    background: rgba(198, 255, 0, 0.05);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Liquid Chrome Sphere using CSS Gradients & Border Radius */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.chrome-sphere {
    width: 450px;
    height: 450px;
    background: var(--chrome-gradient);
    border-radius: 50%;
    background-size: 200% 200%;
    animation: morphSphere 10s ease-in-out infinite, shine 6s linear infinite;
    box-shadow: inset -20px -20px 50px rgba(0, 0, 0, 0.9), 0 30px 60px rgba(138, 43, 226, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sphere-data {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    border: var(--border-lime);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transform: translateZ(50px);
}

.sphere-data h3 {
    font-size: 3rem;
    color: var(--neon-lime);
    margin: 0;
    line-height: 1;
}

.sphere-data p {
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   INFINITE TICKER
   ========================================================================== */
.ticker-section {
    border-top: var(--border-thin);
    border-bottom: var(--border-thin);
    padding: 2rem 0;
    overflow: hidden;
    background: var(--bg-surface);
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    font-weight: 800;
}

.ticker-item span {
    color: var(--neon-violet);
    margin-right: 15px;
    font-size: 1.5rem;
}

/* ==========================================================================
   ABOUT / AGENCY PROFILE
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.about-title-block h2 {
    position: sticky;
    top: 150px;
}

.stats-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-bento-box {
    background: var(--bg-surface);
    border: var(--border-thin);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--trans-fast);
}

.stat-bento-box:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--chrome-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-mono);
    color: var(--neon-lime);
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* ==========================================================================
   CORE SERVICES (BENTO GRID)
   ========================================================================== */
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

/* Make first box span 2 columns */
.service-box:nth-child(1) {
    grid-column: span 2;
}

.service-box:nth-child(4) {
    grid-column: span 2;
}

.service-box {
    background: var(--bg-surface);
    border: var(--border-thin);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--trans-fast);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--neon-violet-glow) 0%, transparent 70%);
    opacity: 0;
    transition: var(--trans-fast);
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--chrome-light);
}

.service-box h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '>';
    color: var(--neon-lime);
}

/* ==========================================================================
   INTERACTIVE CAMPAIGN DASHBOARD
   ========================================================================== */
.dashboard-wrap {
    background: var(--bg-surface);
    border: var(--border-thin);
    border-radius: 30px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    position: relative;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: var(--border-thin);
    padding-right: 2rem;
}

.dash-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: none;
    transition: var(--trans-fast);
}

.dash-btn.active,
.dash-btn:hover {
    background: var(--bg-elevated);
    color: var(--neon-lime);
    box-shadow: inset 2px 0 0 var(--neon-lime);
}

.dash-display {
    position: relative;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.dash-title {
    margin: 0;
    font-size: 2.5rem;
}

.dash-metric {
    font-size: 4rem;
    color: var(--chrome-light);
    line-height: 1;
    font-weight: 800;
}

/* Dynamic SVG Line & Bar Hybrid Chart */
.chart-container {
    height: 300px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bar-col {
    flex: 1;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    background: var(--chrome-gradient);
    border-radius: 8px;
    height: 0%;
    /* JS animated */
    transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill.highlight {
    background: var(--neon-lime);
    box-shadow: 0 0 20px var(--neon-lime-glow);
}

/* ==========================================================================
   INDUSTRY FOCUS
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    background: transparent;
    border: var(--border-thin);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    transition: var(--trans-fast);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    background: var(--bg-elevated);
    border-color: var(--chrome-light);
}

.ind-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.industry-card:hover .ind-icon {
    color: var(--neon-lime);
}

/* ==========================================================================
   TIMELINE / PROCESS
   ========================================================================== */
.process-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-number {
    font-size: 5rem;
    font-family: var(--font-heading);
    color: transparent;
    -webkit-text-stroke: 1px var(--chrome-mid);
    line-height: 0.8;
}

.step-info h3 {
    color: var(--neon-lime);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.step-info p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 0.95rem;
}

/* ==========================================================================
   TESTIMONIALS (HORIZONTAL SWIPE SIMULATION)
   ========================================================================== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testi-card {
    background: var(--bg-surface);
    border: var(--border-thin);
    border-radius: 20px;
    padding: 3rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--neon-violet);
    line-height: 1;
    margin-bottom: 1rem;
}

.testi-text {
    font-size: 1.1rem;
    color: var(--chrome-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: var(--border-thin);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--chrome-dark);
    border-radius: 50%;
}

.author-info h5 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.author-info span {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--bg-surface);
    border-top: var(--border-thin);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--neon-violet-glow) 0%, transparent 70%);
}

/* ==========================================================================
   LEGAL & CONTACT PAGES (PAGES SPECIFIC)
   ========================================================================== */
.page-hero {
    padding: 200px 0 100px;
    text-align: center;
    border-bottom: var(--border-thin);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: var(--bg-surface);
    padding: 4rem;
    border-radius: 20px;
    border: var(--border-thin);
}

.c-item {
    margin-bottom: 3rem;
}

.c-item h5 {
    color: var(--neon-lime);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.c-item p {
    font-size: 1.3rem;
    color: var(--chrome-light);
}

.contact-form {
    padding: 4rem;
    background: var(--bg-surface);
    border-radius: 20px;
    border: var(--border-thin);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-obsidian);
    border: var(--border-thin);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--trans-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-lime);
    box-shadow: 0 0 10px var(--neon-lime-glow);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: 5rem;
    border-radius: 20px;
    border: var(--border-thin);
}

.legal-content h2 {
    color: var(--chrome-light);
    margin-top: 3rem;
    font-size: 2rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #aaa;
    font-size: 1rem;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    color: #aaa;
    margin-bottom: 0.8rem;
}

.legal-content ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--neon-lime);
    font-family: var(--font-mono);
}

/* ==========================================================================
   FOOTER (STRICTLY CONSISTENT SITE-WIDE)
   ========================================================================== */
.site-footer {
    background: var(--bg-obsidian);
    border-top: var(--border-thin);
    padding: 6rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 40px;
    filter: invert(1);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    color: var(--chrome-light);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--neon-lime);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: var(--border-thin);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--chrome-light);
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes shine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes morphSphere {
    0% {
        border-radius: 50%;
        transform: rotate(0deg);
    }

    25% {
        border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
    }

    50% {
        border-radius: 40% 60% 40% 60% / 60% 40% 50% 50%;
        transform: rotate(180deg);
    }

    75% {
        border-radius: 50% 50% 60% 40% / 40% 60% 40% 60%;
    }

    100% {
        border-radius: 50%;
        transform: rotate(360deg);
    }
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .heading-mega {
        font-size: 5rem;
    }

    .hero-grid,
    .about-grid,
    .dashboard-wrap,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-visual {
        height: 450px;
    }

    .chrome-sphere {
        width: 350px;
        height: 350px;
    }

    .services-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-box:nth-child(1),
    .service-box:nth-child(4) {
        grid-column: span 1;
    }

    .stats-bento {
        grid-template-columns: 1fr 1fr;
    }

    .dash-nav {
        border-right: none;
        border-bottom: var(--border-thin);
        padding-right: 0;
        padding-bottom: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dash-btn {
        flex: 1;
        min-width: 40%;
        text-align: center;
    }

    .dash-btn.active,
    .dash-btn:hover {
        box-shadow: inset 0 2px 0 var(--neon-lime);
    }
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--bg-obsidian);
        flex-direction: column;
        justify-content: center;
        transition: var(--trans-slow);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .heading-mega {
        font-size: 3.5rem;
    }

    .services-bento {
        grid-template-columns: 1fr;
    }

    .stats-bento {
        grid-template-columns: 1fr;
    }

    .dashboard-wrap {
        padding: 2rem;
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }

    .legal-content {
        padding: 2rem;
    }
}