/* ═══════════════════════════════════════════════════════════
   RUSH PRODUCTION HOUSE — Design System v3
   ═══════════════════════════════════════════════════════════ */
:root {
  --rush-black:#050505; --rush-dark:#0a0a0a; --rush-panel:#111111; --rush-card:#161616;
  --rush-border:rgba(255,255,255,0.07); --rush-border2:rgba(255,255,255,0.14);
  --rush-teal:#3ec9d0; --rush-teal-dim:#2a9da3; --rush-teal-glow:rgba(62,201,208,0.22);
  --text-white:#ffffff; --text-off:#e8e8e8; --text-muted:#8a8a8a; --text-faint:#3a3a3a;
  --font-display:'Bebas Neue',sans-serif; --font-body:'DM Sans',sans-serif; --font-mono:'Space Mono',monospace;
  --r-sm:6px; --r-md:12px; --r-lg:20px; --r-pill:999px;
  --ease:cubic-bezier(0.25,0.46,0.45,0.94); --t-fast:0.18s var(--ease); --t-base:0.3s var(--ease);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
::selection{background:var(--rush-teal);color:var(--rush-black)}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);background:var(--rush-black);color:var(--text-off);line-height:1.65;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block} a{color:inherit;text-decoration:none} button{cursor:pointer;border:none;background:none;font:inherit}
body::after{content:'';position:fixed;inset:0;z-index:9999;pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");background-size:200px;opacity:.4;mix-blend-mode:overlay}
::-webkit-scrollbar{width:5px} ::-webkit-scrollbar-track{background:var(--rush-black)} ::-webkit-scrollbar-thumb{background:var(--rush-border2);border-radius:3px} ::-webkit-scrollbar-thumb:hover{background:var(--rush-teal-dim)}

/* ── LOADER ── */
#loader{position:fixed;inset:0;z-index:99999;background:var(--rush-black);display:flex;align-items:center;justify-content:center;flex-direction:column;gap:1.5rem;transition:opacity .7s ease}
#loader.out{opacity:0;pointer-events:none}
.loader-ring-wrap{position:relative;width:96px;height:96px;display:flex;align-items:center;justify-content:center}
.loader-logo-img{width:64px;height:64px;object-fit:contain;border-radius:50%;position:relative;z-index:1}
.loader-ring{position:absolute;inset:0;border-radius:50%;border:2px solid transparent;border-top-color:var(--rush-teal);border-right-color:rgba(62,201,208,.3);animation:loaderSpin 1.1s linear infinite}
@keyframes loaderSpin{to{transform:rotate(360deg)}}

@keyframes fadeIn{to{opacity:1}}

/* ── NAVBAR ── */
#navbar{position:fixed;top:0;left:0;right:0;z-index:1000;padding:1.2rem 0;background:rgba(5,5,5,0);border-bottom:1px solid transparent;transition:all .4s var(--ease)}
#navbar.scrolled{padding:.75rem 0;background:rgba(5,5,5,.94);backdrop-filter:blur(24px) saturate(160%);border-bottom:1px solid var(--rush-border)}
.nav-inner{max-width:1280px;margin:0 auto;padding:0 2.5rem;display:flex;align-items:center;justify-content:space-between}
.nav-logo img{height:64px;width:auto;transition:opacity var(--t-fast)}
.nav-logo:hover img{opacity:.85}
.nav-links{display:flex;align-items:center;gap:.25rem;list-style:none}
.nav-links a{font-size:.78rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);padding:.5rem 1rem;position:relative;transition:color var(--t-fast)}
.nav-links a::after{content:'';position:absolute;bottom:0;left:1rem;width:0;height:1px;background:var(--rush-teal);transition:width var(--t-base)}
.nav-links a:hover{color:var(--text-white)} .nav-links a:hover::after{width:calc(100% - 2rem)}
.nav-cta{padding:.55rem 1.5rem!important;border-radius:var(--r-pill)!important;background:var(--rush-teal)!important;color:var(--rush-black)!important;font-weight:700!important;transition:all var(--t-base)!important}
.nav-cta::after{display:none!important} .nav-cta:hover{background:transparent!important;color:var(--rush-teal)!important;box-shadow:0 0 0 1px var(--rush-teal),0 0 24px var(--rush-teal-glow)!important}
.nav-hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem;cursor:pointer}
.nav-hamburger span{display:block;width:24px;height:1.5px;background:var(--text-off);transition:all var(--t-base)}
.nav-mobile{display:none;position:fixed;inset:0;background:rgba(5,5,5,.98);backdrop-filter:blur(30px);z-index:999;flex-direction:column;align-items:center;justify-content:center;gap:1.5rem}
.nav-mobile.open{display:flex}
.nav-mobile a{font-family:var(--font-display);font-size:3rem;letter-spacing:.1em;color:var(--text-white);transition:color var(--t-fast)} .nav-mobile a:hover{color:var(--rush-teal)}
.nav-mobile-close{position:absolute;top:2rem;right:2rem;font-size:2rem;color:var(--text-muted);cursor:pointer;transition:color var(--t-fast)} .nav-mobile-close:hover{color:var(--text-white)}
@media(max-width:900px){.nav-links{display:none}.nav-hamburger{display:flex}}

/* ── LAYOUT ── */
.section{padding:7rem 0} .section--tight{padding:4rem 0}
.container{max-width:1280px;margin:0 auto;padding:0 2.5rem}
.eyebrow{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.25em;text-transform:uppercase;color:var(--rush-teal);display:block;margin-bottom:1.25rem}
.section-title{font-family:var(--font-body);font-weight:800;font-size:clamp(2.2rem,1rem + 3.5vw,3.8rem);color:var(--text-white);line-height:1.08}
.section-divider{width:36px;height:2px;background:var(--rush-teal);border-radius:2px;margin:1.5rem 0 2.5rem} .section-divider.center{margin-inline:auto}

/* ── MARQUEE ── */
.marquee-section{border-top:1px solid var(--rush-border);border-bottom:1px solid var(--rush-border);background:var(--rush-panel);padding:1.1rem 0;overflow:hidden}
.marquee-track{display:flex}
.marquee-inner{display:flex;align-items:center;gap:3rem;animation:marquee 30s linear infinite;white-space:nowrap;flex-shrink:0}
.marquee-item{font-family:var(--font-display);font-size:1rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-faint);flex-shrink:0}
.marquee-dot{color:var(--rush-teal);font-size:.5rem}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ── BUTTONS ── */
.btn-primary{display:inline-flex;align-items:center;gap:.6rem;padding:1rem 2.2rem;border-radius:var(--r-pill);background:var(--rush-teal);color:var(--rush-black);font-weight:700;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;transition:all var(--t-base)}
.btn-primary:hover{background:transparent;color:var(--rush-teal);box-shadow:0 0 0 1px var(--rush-teal),0 0 40px var(--rush-teal-glow);transform:translateY(-2px)}
.btn-ghost{display:inline-flex;align-items:center;gap:.6rem;padding:1rem 2.2rem;border-radius:var(--r-pill);border:1px solid var(--rush-border2);color:var(--text-white);font-weight:600;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;transition:all var(--t-base)}
.btn-ghost:hover{border-color:var(--rush-teal);color:var(--rush-teal);transform:translateY(-2px)}
.btn-outline-teal{display:inline-flex;align-items:center;gap:.5rem;padding:.7rem 1.6rem;border-radius:var(--r-pill);border:1px solid var(--rush-teal);color:var(--rush-teal);font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;transition:all var(--t-base)}
.btn-outline-teal:hover{background:var(--rush-teal);color:var(--rush-black)}

/* ── HERO ── */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-canvas{position:absolute;inset:0;z-index:0}
#waveCanvas{position:absolute;inset:0;width:100%;height:100%;opacity:.35}
.hero-grid-overlay{position:absolute;inset:0;z-index:1;background-image:linear-gradient(rgba(62,201,208,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(62,201,208,.03) 1px,transparent 1px);background-size:80px 80px;mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);-webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%)}
.hero-glow{position:absolute;z-index:1;width:900px;height:900px;border-radius:50%;background:radial-gradient(circle,rgba(62,201,208,.08) 0%,transparent 65%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none}
.hero-vline{position:absolute;left:0;top:0;bottom:0;z-index:2;width:3px;background:linear-gradient(180deg,transparent 0%,var(--rush-teal) 40%,var(--rush-teal) 60%,transparent 100%);opacity:.6}
.hero-bg-img{position:absolute;inset:0;z-index:0;background-size:cover;background-position:center;filter:brightness(.25) saturate(.6)}
.hero-content{position:relative;z-index:3;max-width:1280px;margin:0 auto;padding:10rem 2.5rem 6rem;width:100%}
.hero-badge{display:inline-flex;align-items:center;gap:.6rem;padding:.4rem 1.1rem;border:1px solid rgba(62,201,208,.3);border-radius:var(--r-pill);font-family:var(--font-mono);font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;color:var(--rush-teal);margin-bottom:2rem;opacity:0;animation:fadeUp .7s var(--ease) 1.6s forwards}
.hero-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--rush-teal);box-shadow:0 0 8px var(--rush-teal);animation:pulseDot 2s infinite}
@keyframes pulseDot{0%,100%{opacity:1}50%{opacity:.25}}
.hero-title{font-family:var(--font-display);font-size:clamp(5rem,4rem + 8vw,13rem);line-height:.88;letter-spacing:.02em;color:var(--text-white);text-transform:uppercase;margin-bottom:.5rem;opacity:0;animation:fadeUp .8s var(--ease) 1.7s forwards}
.hero-title-accent{color:var(--rush-teal)}
.hero-subtitle{font-family:var(--font-display);font-size:clamp(1.5rem,1rem + 3vw,4rem);line-height:1;letter-spacing:.25em;color:var(--text-muted);text-transform:uppercase;margin-bottom:2.5rem;opacity:0;animation:fadeUp .8s var(--ease) 1.85s forwards}
.hero-desc{font-size:clamp(1rem,.9rem + .4vw,1.15rem);color:var(--text-muted);line-height:1.85;max-width:520px;margin-bottom:3rem;opacity:0;animation:fadeUp .8s var(--ease) 2s forwards}
.hero-actions{display:flex;align-items:center;gap:1.25rem;flex-wrap:wrap;opacity:0;animation:fadeUp .8s var(--ease) 2.1s forwards}
.hero-scroll{position:absolute;bottom:2.5rem;left:2.5rem;z-index:3;display:flex;align-items:center;gap:1rem;font-family:var(--font-mono);font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-faint);opacity:0;animation:fadeIn 1s ease 2.5s forwards}
.hero-scroll-line{width:40px;height:1px;background:var(--rush-border2)}
.hero-counter{position:absolute;bottom:2.5rem;right:2.5rem;z-index:3;display:flex;align-items:flex-end;gap:3rem;opacity:0;animation:fadeIn 1s ease 2.5s forwards}
.hero-stat{text-align:right}
.hero-stat-num{font-family:var(--font-display);font-size:2.2rem;line-height:1;color:var(--text-white)}
.hero-stat-label{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted);margin-top:.25rem}
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}

/* ── SERVICES PANELS ── */
.services-section{background:var(--rush-black)}
.services-header{text-align:center;margin-bottom:5rem}
.services-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.5px;background:var(--rush-border);border:1px solid var(--rush-border);border-radius:var(--r-lg);overflow:hidden}
@media(max-width:860px){.services-grid{grid-template-columns:1fr}}
.service-panel{background:var(--rush-dark);padding:4rem 3.5rem;position:relative;overflow:hidden;transition:background var(--t-base)}
.service-panel::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--rush-teal);transform:scaleX(0);transform-origin:left;transition:transform .5s var(--ease)}
.service-panel:hover{background:var(--rush-panel)} .service-panel:hover::before{transform:scaleX(1)}
.service-panel-bg-num{position:absolute;top:1rem;right:2rem;font-family:var(--font-display);font-size:8rem;line-height:1;color:rgba(62,201,208,.04);pointer-events:none;transition:color var(--t-base)}
.service-panel:hover .service-panel-bg-num{color:rgba(62,201,208,.08)}
.service-icon-wrap{width:52px;height:52px;border-radius:var(--r-sm);background:rgba(62,201,208,.06);border:1px solid rgba(62,201,208,.15);display:flex;align-items:center;justify-content:center;margin-bottom:2rem;transition:all var(--t-base)}
.service-panel:hover .service-icon-wrap{background:rgba(62,201,208,.12);box-shadow:0 0 20px var(--rush-teal-glow)}
.service-icon-wrap svg{width:24px;height:24px;stroke:var(--rush-teal);fill:none;stroke-width:1.8}
.service-label{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1rem}
.service-name{font-family:var(--font-display);font-size:clamp(2.5rem,1.5rem + 3vw,4rem);line-height:.95;color:var(--text-white);text-transform:uppercase;margin-bottom:1.5rem;letter-spacing:.03em}
.service-divider{width:24px;height:1px;background:var(--rush-teal);margin-bottom:1.75rem}
.service-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2.5rem}
.service-tag{font-size:.75rem;color:var(--text-muted);padding:.3rem .85rem;border:1px solid var(--rush-border);border-radius:var(--r-pill);transition:all var(--t-fast);flex-shrink:0}
.service-panel:hover .service-tag{border-color:rgba(62,201,208,.2);color:var(--text-off)}
.service-link{display:inline-flex;align-items:center;gap:.6rem;font-size:.82rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);transition:all var(--t-fast)}
.service-link svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;transition:transform var(--t-fast)}
.service-link:hover{color:var(--rush-teal)} .service-link:hover svg{transform:translateX(4px)}

/* ── STATS ── */
.stats-section{background:var(--rush-black);border-top:1px solid var(--rush-border);border-bottom:1px solid var(--rush-border);padding:5rem 0}
.stats-grid{display:grid;grid-template-columns:repeat(var(--stats-cols,4),1fr)}
@media(max-width:860px){.stats-grid{grid-template-columns:repeat(2,1fr)}}
.stat-item{text-align:center;padding:2.5rem 1.5rem;border-right:1px solid var(--rush-border)}
.stat-item:last-child{border-right:none}
@media(max-width:860px){.stats-grid{grid-template-columns:repeat(2,1fr)}.stat-item:nth-child(even){border-right:none}.stat-item:nth-child(n+3){border-top:1px solid var(--rush-border)}}
.stat-num{font-family:var(--font-display);font-size:clamp(3.5rem,2rem + 4vw,5.5rem);color:var(--rush-teal);line-height:1;display:block}
.stat-suffix{color:var(--text-muted)}
.stat-label{font-family:var(--font-mono);font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted);margin-top:.6rem}

/* ── PROJECT GRID ── */
.work-section{background:var(--rush-panel)}
.work-tabs{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap;margin-bottom:2.5rem}
.work-tab{font-family:var(--font-mono);font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;padding:.55rem 1.25rem;border-radius:var(--r-pill);border:1px solid var(--rush-border2);color:var(--text-muted);cursor:pointer;transition:all var(--t-fast);background:transparent}
.work-tab.active,.work-tab:hover{border-color:var(--rush-teal);color:var(--rush-teal);background:rgba(62,201,208,.06)}

/* Masonry-style project grid */
.projects-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:var(--rush-border)}
@media(max-width:900px){.projects-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.projects-grid{grid-template-columns:1fr}}
/* First item spans 2 cols for visual interest */
.projects-grid .proj-card:first-child{grid-column:span 2}
@media(max-width:900px){.projects-grid .proj-card:first-child{grid-column:span 1}}

.proj-card{position:relative;overflow:hidden;cursor:pointer;background:var(--rush-dark);aspect-ratio:4/3}
.proj-card:first-child{aspect-ratio:16/7}
.proj-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s var(--ease),filter .5s ease;filter:grayscale(.4) brightness(.8)}
.proj-card:hover img{transform:scale(1.06);filter:grayscale(0) brightness(1)}
.proj-card-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(5,5,5,.9) 0%,rgba(5,5,5,.2) 55%,transparent 100%);opacity:0;transition:opacity var(--t-base)}
.proj-card:hover .proj-card-overlay{opacity:1}
.proj-card-body{position:absolute;bottom:0;left:0;right:0;padding:1.75rem 1.5rem;transform:translateY(12px);opacity:0;transition:all var(--t-base)}
.proj-card:hover .proj-card-body{transform:translateY(0);opacity:1}
.proj-card-cat{font-family:var(--font-mono);font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:var(--rush-teal);margin-bottom:.4rem}
.proj-card-title{font-weight:700;font-size:1rem;color:var(--text-white);line-height:1.3}
.proj-card-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(.8);opacity:0;transition:all var(--t-base);width:56px;height:56px;border-radius:50%;border:1.5px solid rgba(255,255,255,.6);display:flex;align-items:center;justify-content:center;backdrop-filter:blur(4px)}
.proj-card-play svg{width:18px;height:18px;fill:white;stroke:none;margin-left:3px}
.proj-card:hover .proj-card-play{opacity:1;transform:translate(-50%,-50%) scale(1)}
.proj-card-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:var(--rush-card);color:var(--text-faint);font-family:var(--font-display);font-size:1.2rem;letter-spacing:.15em}

/* ── CLIENTS GRID ── */
.clients-section{background:var(--rush-black)}
.clients-header{text-align:center;margin-bottom:4rem}
.clients-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--rush-border);border:1px solid var(--rush-border);border-radius:var(--r-lg);overflow:hidden}
@media(max-width:900px){.clients-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.clients-grid{grid-template-columns:repeat(2,1fr)}}
.client-cell{background:var(--rush-dark);padding:2.5rem 2rem;display:flex;align-items:center;justify-content:center;min-height:110px;transition:background var(--t-base)}
.client-cell:hover{background:var(--rush-panel)}
.client-cell img{max-height:48px;width:auto;max-width:120px;filter:grayscale(1) brightness(.45);transition:filter var(--t-base);margin:0 auto}
.client-cell:hover img{filter:grayscale(0) brightness(1)}
.client-cell-text{font-family:var(--font-display);font-size:.95rem;letter-spacing:.08em;color:var(--text-faint);text-align:center;transition:color var(--t-base)}
.client-cell:hover .client-cell-text{color:var(--rush-teal)}

/* ── ABOUT ── */
.about-section{background:var(--rush-panel)}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:6rem;align-items:center}
@media(max-width:860px){.about-grid{grid-template-columns:1fr;gap:3rem}}
.about-visual{position:relative;aspect-ratio:4/5;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--rush-border)}
.about-visual-inner{width:100%;height:100%;background:var(--rush-dark);display:flex;align-items:center;justify-content:center;position:relative}
.about-vis-text{font-family:var(--font-display);font-size:12rem;line-height:1;color:rgba(62,201,208,.04);position:absolute;bottom:0;left:50%;transform:translateX(-50%);white-space:nowrap}
.about-canvas-wrap{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
#aboutWave{width:100%;height:100%;opacity:.6}
.about-pill{position:absolute;bottom:1.5rem;left:1.5rem;background:rgba(5,5,5,.85);border:1px solid var(--rush-border2);border-radius:var(--r-md);padding:1rem 1.25rem;backdrop-filter:blur(12px)}
.about-pill-num{font-family:var(--font-display);font-size:2rem;color:var(--rush-teal);line-height:1}
.about-pill-label{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:var(--text-muted);margin-top:.2rem}
.about-content{padding-left:1rem}
.about-desc{font-size:1.1rem;color:var(--text-muted);line-height:1.9;margin-bottom:2.5rem}
.about-values{display:flex;flex-direction:column;gap:1rem;margin-bottom:3rem}
.about-value{display:flex;align-items:flex-start;gap:1rem;padding:1.25rem 1.5rem;border-radius:var(--r-md);border:1px solid var(--rush-border);background:rgba(22,22,22,.6);transition:border-color var(--t-base)}
.about-value:hover{border-color:rgba(62,201,208,.25)}
.about-value-icon{width:36px;height:36px;flex-shrink:0;border-radius:var(--r-sm);background:rgba(62,201,208,.08);display:flex;align-items:center;justify-content:center}
.about-value-icon svg{width:16px;height:16px;stroke:var(--rush-teal);fill:none;stroke-width:2}
.about-value-title{font-weight:700;font-size:.9rem;color:var(--text-white);margin-bottom:.2rem}
.about-value-desc{font-size:.82rem;color:var(--text-muted);line-height:1.6}

/* ── PROCESS ── */
.process-section{background:var(--rush-black)}
.process-header{text-align:center;margin-bottom:5rem}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--rush-border);border:1px solid var(--rush-border);border-radius:var(--r-lg);overflow:hidden}
@media(max-width:860px){.process-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.process-grid{grid-template-columns:1fr}}
.process-step{background:var(--rush-dark);padding:2.5rem 2rem;position:relative;overflow:hidden;transition:background var(--t-base)}
.process-step:hover{background:var(--rush-panel)}
.process-step-num{font-family:var(--font-display);font-size:5rem;line-height:1;color:rgba(62,201,208,.06);position:absolute;top:.5rem;right:1rem;transition:color var(--t-base)}
.process-step:hover .process-step-num{color:rgba(62,201,208,.12)}
.process-step-icon{width:44px;height:44px;border-radius:var(--r-sm);background:rgba(62,201,208,.06);border:1px solid rgba(62,201,208,.15);display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem}
.process-step-icon svg{width:18px;height:18px;stroke:var(--rush-teal);fill:none;stroke-width:1.8}
.process-step-title{font-weight:700;font-size:1rem;color:var(--text-white);margin-bottom:.6rem}
.process-step-desc{font-size:.82rem;color:var(--text-muted);line-height:1.7}

/* ── CTA ── */
.cta-section{position:relative;overflow:hidden;background:var(--rush-panel);border-top:1px solid var(--rush-border);padding:8rem 0;text-align:center}
.cta-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:700px;height:700px;border-radius:50%;background:radial-gradient(circle,rgba(62,201,208,.1) 0%,transparent 65%);pointer-events:none}
.cta-title{font-family:var(--font-display);font-size:clamp(3.5rem,2rem + 6vw,8rem);letter-spacing:.03em;color:var(--text-white);text-transform:uppercase;line-height:.9;margin-bottom:1.5rem;position:relative;z-index:1}
.cta-title span{color:var(--rush-teal)}
.cta-sub{font-size:1.1rem;color:var(--text-muted);max-width:480px;margin:0 auto 3rem;line-height:1.8;position:relative;z-index:1}
.cta-actions{display:flex;align-items:center;justify-content:center;gap:1.25rem;flex-wrap:wrap;position:relative;z-index:1}
.cta-contact-row{display:flex;align-items:center;justify-content:center;gap:3rem;flex-wrap:wrap;margin-top:4rem;position:relative;z-index:1}
.cta-contact-item{display:flex;align-items:center;gap:.75rem;font-size:.9rem;color:var(--text-muted);transition:color var(--t-fast)}
.cta-contact-item:hover{color:var(--text-white)}
.cta-contact-item svg{width:18px;height:18px;stroke:var(--rush-teal);fill:none;stroke-width:1.8}

/* ── PAGE HEADER ── */
.page-header{padding:9rem 0 5rem;position:relative;overflow:hidden;border-bottom:1px solid var(--rush-border)}
.page-header::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,var(--rush-teal) 30%,var(--rush-teal) 70%,transparent)}
.page-header-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.18) saturate(.5);z-index:0}
.page-header-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(5,5,5,.97) 0%,rgba(5,5,5,.7) 100%);z-index:1}
.page-header>.container{position:relative;z-index:2}
.page-header-num{font-family:var(--font-display);font-size:18rem;line-height:.85;color:rgba(62,201,208,.03);position:absolute;right:2rem;top:50%;transform:translateY(-50%);pointer-events:none;z-index:0}
.page-header-title{font-family:var(--font-display);font-size:clamp(4rem,3rem + 6vw,9rem);line-height:.9;letter-spacing:.03em;color:var(--text-white);text-transform:uppercase;margin-bottom:1.25rem}
.page-header-sub{font-size:1.05rem;color:var(--text-muted);max-width:560px;line-height:1.8}

/* ── CONTACT CARDS ── */
.contact-card{background:var(--rush-card);border:1px solid var(--rush-border);border-radius:var(--r-lg);padding:2.5rem 2rem;text-align:center;transition:all var(--t-base);position:relative;overflow:hidden}
.contact-card::before{content:'';position:absolute;top:0;left:0;right:0;height:2px;background:var(--rush-teal);transform:scaleX(0);transform-origin:left;transition:transform .5s var(--ease)}
.contact-card:hover{border-color:rgba(62,201,208,.25);transform:translateY(-5px);box-shadow:0 20px 60px rgba(0,0,0,.5)}
.contact-card:hover::before{transform:scaleX(1)}
.contact-card-icon{font-size:2.2rem;color:var(--rush-teal);margin-bottom:1.25rem}
.contact-card h3{font-size:1.05rem;font-weight:700;color:var(--text-white);margin-bottom:.6rem}
.contact-card p{color:var(--text-muted);font-size:.9rem;line-height:1.7;margin-bottom:1.5rem}

/* ── FOOTER ── */
footer{background:var(--rush-dark);border-top:1px solid var(--rush-border);padding:3.5rem 0 2rem;position:relative;overflow:hidden}
footer::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent 0%,var(--rush-teal) 30%,var(--rush-teal) 70%,transparent 100%)}
.footer-inner{display:flex;flex-direction:column;align-items:center;gap:2rem}
.footer-logo-wrap{display:flex;flex-direction:column;align-items:center;gap:.75rem}
.footer-logo-img{height:72px;width:auto;opacity:.85;transition:opacity var(--t-fast)}
.footer-logo-img:hover{opacity:1}
.footer-tagline{font-family:var(--font-mono);font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--text-muted)}
.footer-socials{display:flex;gap:.75rem}
.social-btn{width:40px;height:40px;border-radius:var(--r-md);border:1px solid var(--rush-border2);background:transparent;display:flex;align-items:center;justify-content:center;color:var(--text-muted);transition:all var(--t-base);cursor:pointer}
.social-btn svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8}
.social-btn:hover{background:var(--rush-teal);border-color:var(--rush-teal);color:var(--rush-black);transform:translateY(-3px);box-shadow:0 8px 20px var(--rush-teal-glow)}
.footer-divider{width:100%;height:1px;background:var(--rush-border)}
.footer-bottom{display:flex;align-items:center;justify-content:center;padding-top:.5rem}
.copyright{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.1em;color:var(--text-faint)}

/* ── MODALS ── */
.rush-modal .modal-content{background:var(--rush-panel);border:1px solid var(--rush-border);border-radius:var(--r-lg)}
.rush-modal .modal-header{border-bottom:1px solid var(--rush-border);padding:1.25rem 1.5rem}
.rush-modal .modal-title{color:var(--text-white);font-weight:700}
.rush-modal .btn-close{filter:invert(1) brightness(.6)}

/* ── REVEAL ── */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:.1s} .reveal-delay-2{transition-delay:.2s} .reveal-delay-3{transition-delay:.3s} .reveal-delay-4{transition-delay:.4s}

/* ── SWIPER ── */
.swiper-button-next,.swiper-button-prev{color:var(--rush-teal)!important}
.swiper-pagination-bullet{background:var(--rush-teal)!important;opacity:.4}
.swiper-pagination-bullet-active{opacity:1}

/* ── COMPAT ── */
.text-teal{color:var(--rush-teal)!important}
.navbar-glass,.navbar-bg{background:transparent!important;border:none!important}
.navbar2{display:none!important}
.alert-success{background:rgba(62,201,208,.1);border-color:var(--rush-teal);color:var(--rush-teal);border-radius:var(--r-md)}
.alert-danger{background:rgba(255,80,80,.1);border-color:#ff5050;color:#ff5050;border-radius:var(--r-md)}

/* ── MOBILE ── */
@media(max-width:600px){
  .section{padding:4.5rem 0} .container{padding:0 1.5rem}
  .service-panel{padding:2.5rem 2rem} .hero-counter{display:none}
  .about-content{padding-left:0} .page-header{padding:8rem 0 4rem}
  .projects-grid .proj-card:first-child{grid-column:span 1}
  .footer-inner{gap:1.5rem}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}}

/* ── PARTNERS FLOAT (no boxes, full colour) ───────────── */
.partners-float-track{
  display:flex;align-items:center;gap:4rem;
  animation:partnersFloat 35s linear infinite;
  white-space:nowrap;width:max-content;
}
.partners-float-track:hover{animation-play-state:paused}
@keyframes partnersFloat{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.partner-float-item{
  flex-shrink:0;display:flex;align-items:center;justify-content:center;
  height:64px;padding:0 1rem;
  transition:transform var(--t-base),filter var(--t-base);
}
.partner-float-item img{
  height:100%;width:auto;max-width:160px;object-fit:contain;
  /* Start slightly dimmed, pop to full on hover */
  filter:brightness(.75) saturate(.8);
  transition:filter var(--t-base),transform var(--t-base);
}
.partner-float-item:hover img{filter:brightness(1) saturate(1);transform:scale(1.08)}
.partner-float-text{
  font-family:var(--font-display);font-size:1.1rem;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--text-muted);
  transition:color var(--t-fast);
}
.partner-float-text:hover{color:var(--rush-teal)}

/* ── CLIENT CARDS GRID ──────────────────────────────── */
.rush-client-card{background:var(--rush-card);border:none;width:100%;height:120px;display:flex;align-items:center;justify-content:center;padding:1rem 1.25rem;transition:border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;}
.rush-client-card:hover{background:var(--rush-dark);box-shadow:inset 0 0 0 2px rgba(59,193,200,.4);transform:scale(1.04);z-index:2;position:relative;}
.rush-client-img{max-height:52px;max-width:140px;object-fit:contain;filter:grayscale(1) brightness(.5);transition:filter var(--t-base);}
.rush-client-card:hover .rush-client-img{filter:grayscale(0) brightness(1);}

/* ── CARD SLIDER (projects & clients) ────────────────── */
.card-slider-outer{position:relative;overflow:visible;padding-bottom:48px;padding-top:24px;}
/* Clip horizontal overflow WITHOUT clipping vertical, so the hover-lift and
   glow are never cut. overflow:clip (unlike hidden) does not force the other
   axis to "auto", so x-clip + y-visible is a valid, working combination. */
.card-slider-viewport{overflow-x:clip;overflow-y:visible;overflow-clip-margin:24px;margin:0 -1px;padding-top:24px;margin-top:-24px;}
.card-slider-track{
  display:flex;gap:2px;
  background:var(--rush-border);
  border:1px solid var(--rush-border);
  border-radius:var(--r-lg);
  overflow:visible;
  transition:transform .5s var(--ease);
  will-change:transform;
}
.slide-card{
  flex:0 0 300px;
  width:300px;
  height:390px;
  position:relative;overflow:hidden;cursor:pointer;
  background:var(--rush-dark);
  transition:flex var(--t-base), transform 0.35s ease, box-shadow 0.35s ease;
}
@media(max-width:900px){.slide-card{flex:0 0 300px;width:300px;height:390px;}}
@media(max-width:560px){.slide-card{flex:0 0 280px;width:280px;height:364px;}}
.slide-card img{
  width:100%;height:100%;object-fit:cover;display:block;
  transition:transform .7s var(--ease),filter .4s ease;
  filter:grayscale(.3) brightness(.8);
}
.slide-card:hover img{transform:scale(1.06);filter:grayscale(0) brightness(1)}
.slide-card:hover{box-shadow:0 18px 44px rgba(62,201,208,0.40), 0 6px 18px rgba(0,0,0,0.55);transform:translateY(-14px) scale(1.02);z-index:20;}
.slide-card-overlay{
  position:absolute;inset:0;
  background:linear-gradient(0deg,rgba(5,5,5,.88) 0%,rgba(5,5,5,.1) 55%,transparent 100%);
  opacity:0;transition:opacity var(--t-base);
}
.slide-card:hover .slide-card-overlay{opacity:1}
.slide-card-body{
  position:absolute;bottom:0;left:0;right:0;padding:1.5rem;
  transform:translateY(10px);opacity:0;
  transition:all var(--t-base);
}
.slide-card:hover .slide-card-body{transform:translateY(0);opacity:1}
.slide-card-cat{
  font-family:var(--font-mono);font-size:.58rem;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--rush-teal);margin-bottom:.4rem;
}
.slide-card-title{
  font-weight:700;font-size:.95rem;
  color:var(--text-white);line-height:1.3;
}
.slide-card-play{
  position:absolute;top:50%;left:50%;
  transform:translate(-50%,-50%) scale(.8);opacity:0;
  transition:all var(--t-base);
  width:56px;height:56px;border-radius:50%;
  border:1.5px solid rgba(255,255,255,.65);
  display:flex;align-items:center;justify-content:center;
  backdrop-filter:blur(4px);
}
.slide-card-play svg{width:18px;height:18px;fill:white;stroke:none;margin-left:3px}
.slide-card:hover .slide-card-play{opacity:1;transform:translate(-50%,-50%) scale(1)}
.slide-placeholder{
  width:100%;height:100%;display:flex;align-items:center;justify-content:center;
  background:var(--rush-card);color:var(--text-faint);
  font-family:var(--font-display);font-size:1.2rem;letter-spacing:.15em;
}
/* Logo variant cards (clients slider) */
.slide-card.client-card{height:200px;background:var(--rush-card);border:1px solid var(--rush-border);}
.slide-card.client-card img{
  object-fit:contain;padding:1.5rem;
  filter:grayscale(.4) brightness(.7);
}
.slide-card.client-card:hover img{filter:grayscale(0) brightness(1)}
.slide-card.client-card:hover{transform:none;box-shadow:0 0 0 2px var(--rush-teal) inset;}
/* Client slider cards in our_projects — same slide-card but logo-height */
/* Client cards inherit all .slide-card hover styles — only override is cursor */
.slide-card--client{cursor:default;}
/* Border-radius on first/last cards since track no longer clips them */
.card-slider-track .slide-card:first-child{border-radius:var(--r-lg) 0 0 var(--r-lg);}
.card-slider-track .slide-card:last-child{border-radius:0 var(--r-lg) var(--r-lg) 0;}
/* Nav buttons + dots */
.slider-nav-row{display:flex;align-items:center;justify-content:space-between;margin-top:1.5rem}
.slider-dots-wrap{display:flex;gap:.5rem}
.sdot{
  width:6px;height:6px;border-radius:50%;
  background:var(--rush-border2);cursor:pointer;
  transition:all var(--t-fast);
}
.sdot.on{background:var(--rush-teal);width:20px;border-radius:3px}
.slider-arrows{display:flex;gap:.75rem}
.sarrow{
  width:44px;height:44px;border-radius:50%;
  border:1px solid var(--rush-border2);background:transparent;
  color:var(--text-muted);display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:all var(--t-base);
}
.sarrow:hover{border-color:var(--rush-teal);color:var(--rush-teal);background:rgba(62,201,208,.06)}
.sarrow svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2}

/* ═══════════════════════════════════════════════════
   SLIDER CARDS — size + hover (matches original site)
   ═══════════════════════════════════════════════════ */

/* Swiper containers */
.h-400px { height: 500px !important; position: relative; overflow: visible !important; }
.h-300px { height: 400px !important; position: relative; overflow: visible !important; }

/* Swiper itself must not clip the lifted card */
.swiper-featured-container,
.swiper-featured-container-work {
  overflow: visible !important;
}
/* But the outer wrapper still clips horizontally */
.swiper-featured-container .swiper-wrapper,
.swiper-featured-container-work .swiper-wrapper {
  overflow: visible !important;
}

/* Card wrapper: fixed 300px wide, centered in slide */
.swiper-featured-container .swiper-slide .slide-trans,
.swiper-featured-container-work .swiper-slide .slide-trans {
  display: inline-block;
  max-width: 300px !important;
  width: 300px !important;
  height: auto !important;
  position: relative;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.25,.46,.45,.94),
              box-shadow 0.35s cubic-bezier(.25,.46,.45,.94) !important;
  background: var(--rush-dark);
  /* Ensure card is not clipped by parent */
  z-index: 1;
}

/* Hover: lift up + teal glow */
.swiper-featured-container .swiper-slide .slide-trans:hover,
.swiper-featured-container-work .swiper-slide .slide-trans:hover {
  transform: translateY(-14px) scale(1.02) !important;
  box-shadow: 0 18px 44px rgba(62,201,208,0.40),
              0 6px 18px rgba(0,0,0,0.55) !important;
  z-index: 20;
}

/* Image: fixed 300×390 */
.swiper-featured-container .swiper-slide .slide-trans img.f,
.swiper-featured-container-work .swiper-slide .slide-trans img.f {
  display: block !important;
  width: 300px !important;
  height: 390px !important;
  object-fit: cover !important;
  border-radius: 16px;
  transition: filter 0.35s ease, transform 0.35s ease;
  filter: brightness(0.88);
}

/* Image brightens on hover */
.swiper-featured-container .swiper-slide .slide-trans:hover img.f,
.swiper-featured-container-work .swiper-slide .slide-trans:hover img.f {
  filter: brightness(1.08) saturate(1.06) !important;
}

/* Anchor reset inside card */
.swiper-featured-container .swiper-slide .slide-trans .none-style,
.swiper-featured-container-work .swiper-slide .slide-trans .none-style {
  display: block;
  width: 300px;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: none;
  padding: 0;
}

/* Partner grid hover (Our Projects partnerships section) */
.rush-partner-item {
  background: var(--rush-card);
  border: 1px solid var(--rush-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  min-height: 100px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.rush-partner-item:hover {
  transform: translateY(-6px);
  border-color: rgba(62,201,208,0.4) !important;
  box-shadow: 0 12px 30px rgba(62,201,208,0.15);
}
.rush-partner-img {
  max-height: 56px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.5);
  transition: filter 0.3s ease;
}
.rush-partner-item:hover .rush-partner-img {
  filter: grayscale(0) brightness(1) !important;
}


/* ── PARTNER / CLIENT LOGO GRID (works for any logo, any aspect) ── */
.partner-logos{display:flex;flex-wrap:wrap;justify-content:center;align-items:stretch;gap:.85rem;max-width:1000px;margin:0 auto;}
.logo-tile{flex:0 0 auto;width:140px;height:84px;background:#f6f7f8;border:1px solid var(--rush-border);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;padding:.85rem 1rem;transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);}
.logo-tile img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block;}
.logo-tile:hover{transform:translateY(-5px);box-shadow:0 14px 30px rgba(62,201,208,.18);border-color:rgba(62,201,208,.45);}
.logo-tile--text{width:auto;min-width:140px;background:var(--rush-card);}
.logo-tile--text span{font-family:var(--font-display);font-size:.95rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);text-align:center;}
@media(max-width:560px){.logo-tile{width:112px;height:70px;}}
@media (max-width: 900px){
  #navbar, #navbar.scrolled{
    background:#050505 !important;
    -webkit-backdrop-filter:none !important;
    backdrop-filter:none !important;
    top:0 !important;
    padding:.6rem 0 !important;
    border-bottom:1px solid rgba(255,255,255,0.08) !important;
  }
  .nav-mobile{z-index:3000 !important;}
  .nav-mobile-close{z-index:3001 !important; position:fixed !important;}
}