/*
Theme Name: Zucitech Momentum
Theme URI: https://www.zucitech.com
Author: Zucitech Software Solutions
Author URI: https://www.zucitech.com
Description: Custom "Momentum" theme for Zucitech Software Solutions - a dark, gradient-accented design system covering Home, About, Team, Services, Products (Mira / Temple Management System / Accelerators / Solutions), Case Studies, Contact, Terms, and Privacy.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: zucitech-momentum
*/

/* =============================================================
   Zucitech — "Momentum" Design System
   ============================================================= */
:root{
  --orange:#F07E1E; --orange2:#FF9A42; --pink:#FF5F7E; --purple:#7C5CFF;
  --ink:#0B0C10; --ink2:#12141B; --ink3:#1A1D26;
  --text-muted:#9096A3; --text-soft:#C7CAD1;
  --border:rgba(255,255,255,0.08); --border-hover:rgba(255,255,255,0.22);
  --light:#F7F7F9; --maxw:1240px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0; background:var(--ink); color:#fff;
  font-family:'Inter',-apple-system,sans-serif; line-height:1.6; overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:'Space Grotesk',sans-serif; margin:0 0 .4em; line-height:1.08; letter-spacing:-0.02em; font-weight:700;}
p{margin:0 0 1em; color:var(--text-muted);}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{margin:0; padding:0;}
.container{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.grad-text{
  background:linear-gradient(100deg,var(--orange) 0%, var(--orange2) 30%, var(--pink) 65%, var(--purple) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* --- floating blobs (reusable) --- */
.blob-field{position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none;}
.blob{position:absolute; border-radius:50%; filter:blur(60px); opacity:0.5; will-change:transform;}
.blob1{width:520px; height:520px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); top:-160px; left:-120px; animation: float1 18s ease-in-out infinite;}
.blob2{width:460px; height:460px; background:radial-gradient(circle, var(--purple) 0%, transparent 70%); top:120px; right:-140px; animation: float2 22s ease-in-out infinite;}
.blob3{width:380px; height:380px; background:radial-gradient(circle, var(--pink) 0%, transparent 70%); bottom:-140px; left:35%; animation: float3 20s ease-in-out infinite;}
@keyframes float1{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(60px,50px) scale(1.15);}}
@keyframes float2{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-50px,60px) scale(0.9);}}
@keyframes float3{0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(40px,-40px) scale(1.1);}}

/* --- nav --- */
.nav{position:sticky; top:0; left:0; right:0; z-index:100; padding:20px 0; transition:background .3s, backdrop-filter .3s, padding .3s; background:transparent;}
.nav.scrolled{background:rgba(11,12,16,0.82); backdrop-filter:blur(14px); padding:14px 0; border-bottom:1px solid var(--border);}
.nav-inner{display:flex; align-items:center; justify-content:space-between;}
.brand{display:flex; align-items:center; gap:11px; font-family:'Space Grotesk'; font-weight:700; font-size:19px; letter-spacing:.02em;}
.brand img{height:46px;}
.nav-links{display:flex; gap:28px; font-size:14.5px; font-weight:500; align-items:center;}
.nav-links a{color:rgba(255,255,255,0.7); position:relative; padding:4px 0; white-space:nowrap;}
.nav-links a::after{content:"";position:absolute; left:0; bottom:-2px; width:0; height:2px; background:linear-gradient(90deg,var(--orange),var(--pink)); transition:width .25s;}
.nav-links a:hover, .nav-links a.active{color:#fff;}
.nav-links a:hover::after, .nav-links a.active::after{width:100%;}
.header-actions{display:flex; align-items:center; gap:14px;}
.cta-pill{
  display:inline-flex; align-items:center; gap:8px; padding:11px 22px; border-radius:999px;
  background:linear-gradient(100deg,var(--orange),var(--pink)); font-weight:700; font-size:14px; color:#fff;
  transition:transform .25s, box-shadow .25s; white-space:nowrap;
}
.cta-pill:hover{transform:translateY(-2px) scale(1.03); box-shadow:0 12px 30px rgba(240,126,30,0.35);}
.btn-ghost{
  display:inline-flex; align-items:center; gap:8px; padding:12px 24px; border-radius:999px;
  border:1px solid rgba(255,255,255,0.18); font-weight:600; font-size:14.5px; transition:border-color .2s, background .2s;
  white-space:nowrap;
}
.btn-ghost:hover{border-color:rgba(255,255,255,0.5); background:rgba(255,255,255,0.05);}

.nav-toggle{display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:110;}
.nav-toggle span{width:22px; height:2px; background:#fff; display:block; transition:transform .2s, opacity .2s;}
.nav-toggle.active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.active span:nth-child(2){opacity:0;}
.nav-toggle.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

@media (max-width:900px){
  .nav-links{
    position:fixed; top:0; left:0; right:0; bottom:0; height:100vh;
    background:var(--ink); flex-direction:column; align-items:flex-start; justify-content:center;
    padding:32px 32px; gap:6px;
    opacity:0; pointer-events:none; transform:translateY(-8px);
    transition:opacity .2s ease, transform .2s ease;
  }
  .nav-links.open{opacity:1; pointer-events:auto; transform:none;}
  .nav-links a{font-size:26px; padding:14px 0; width:100%; border-bottom:1px solid var(--border); color:#fff;}
  .header-actions .cta-pill{display:none;}
  .nav-links .mobile-cta{display:inline-flex; margin-top:20px;}
  .nav-toggle{display:flex;}
}
.mobile-cta{display:none;}

/* --- hero --- */
.hero{position:relative; min-height:92vh; display:flex; align-items:center; padding:64px 0 80px;}
.hero-inner{position:relative; z-index:2; max-width:880px;}
.tag{
  display:inline-flex; align-items:center; gap:8px; padding:7px 16px; border-radius:999px;
  border:1px solid var(--border); background:rgba(255,255,255,0.04); font-size:13px; font-weight:600; margin-bottom:28px;
}
.tag span.dot{width:7px; height:7px; border-radius:50%; background:var(--orange); box-shadow:0 0 12px var(--orange);}
.hero h1{font-size:clamp(38px,6.4vw,76px); font-weight:700;}
.hero .lede{font-size:19px; max-width:620px; color:rgba(255,255,255,0.65);}
.hero-ctas{display:flex; gap:16px; margin-top:36px; flex-wrap:wrap;}
.hero-tags{display:flex; flex-wrap:wrap; gap:10px 22px; margin-top:38px; padding-top:26px; border-top:1px solid var(--border);}
.hero-tags span{font-size:13px; color:rgba(255,255,255,0.6); font-weight:600;}

/* --- page header (non-home) --- */
.page-header{position:relative; padding:150px 0 70px; overflow:hidden;}
.page-header .container{position:relative; z-index:2;}
.page-header h1{font-size:clamp(32px,5vw,54px);}
.page-header p{font-size:17.5px; max-width:640px; color:rgba(255,255,255,0.65);}

/* --- marquee --- */
.marquee-wrap{border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:32px 0; overflow:hidden; position:relative; background:rgba(255,255,255,0.02);}
.marquee-track{display:flex; gap:56px; width:max-content; animation:scroll-left 28s linear infinite;}
.logo-chip{background:#fff; border-radius:12px; padding:10px 18px; display:flex; align-items:center; justify-content:center; opacity:0.85; transition:opacity .2s, transform .2s;}
.logo-chip:hover{opacity:1; transform:translateY(-2px);}
.marquee-track img{height:22px; width:auto; display:block;}
@keyframes scroll-left{from{transform:translateX(0);} to{transform:translateX(-50%);}}

/* --- larger, static logo grid variant (e.g. Case Studies "Portfolio Across Sectors") --- */
.portfolio-logos{border:none; background:none; padding:0;}
.portfolio-logos .logo-chip{padding:18px 30px; border-radius:14px;}
.portfolio-logos .marquee-track{gap:22px;}
.portfolio-logos img{height:38px !important; max-width:150px;}
@media (max-width:560px){
  .portfolio-logos .logo-chip{padding:14px 22px;}
  .portfolio-logos img{height:30px !important; max-width:120px;}
}

/* --- section shells --- */
.section{padding:110px 0; position:relative;}
@media (max-width:768px){ .section{padding:72px 0;} }
.eyebrow{display:inline-flex; align-items:center; gap:10px; font-size:12.5px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--orange); margin-bottom:18px;}
.eyebrow::before{content:""; width:22px; height:2px; background:linear-gradient(90deg,var(--orange),var(--pink));}
.eyebrow.center{justify-content:center;}
.section-head{max-width:660px; margin-bottom:56px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .eyebrow{justify-content:center; display:flex;}
.section-head h2{font-size:clamp(28px,3.6vw,44px);}
.section-head p{font-size:17px;}

/* --- split / orbit --- */
.split{display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;}
.split.rev{grid-template-columns:1fr 1fr;}
.split.rev .split-media{order:2;}
@media (max-width:900px){ .split, .split.rev{grid-template-columns:1fr;} .split.rev .split-media{order:0;} }
.orbit-visual{position:relative; aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; width:100%; max-width:460px; margin:0 auto;}
.orbit-ring{position:absolute; border:1px solid rgba(255,255,255,0.12); border-radius:50%;}
.orbit-ring.r1{width:100%; height:100%; animation:spin 40s linear infinite;}
.orbit-ring.r2{width:72%; height:72%; animation:spin 30s linear infinite reverse;}
.orbit-ring.r3{width:44%; height:44%; animation:spin 22s linear infinite;}
@keyframes spin{from{transform:rotate(0deg);} to{transform:rotate(360deg);}}
.orbit-core{width:30%; height:30%; border-radius:50%; background:radial-gradient(circle at 35% 30%, var(--orange2), var(--orange) 45%, var(--pink) 100%); box-shadow:0 0 80px rgba(240,126,30,0.55);}
.orbit-chip{position:absolute; width:88px; height:88px; border-radius:20px; background:#fff; box-shadow:0 10px 30px rgba(0,0,0,0.35); display:flex; align-items:center; justify-content:center; padding:12px;}
.orbit-chip img{height:34px; width:auto; max-width:64px; object-fit:contain;}
@media (max-width:560px){
  .orbit-chip{width:64px; height:64px; border-radius:16px; padding:9px;}
  .orbit-chip img{height:24px; max-width:46px;}
}
.chip-count{display:flex; flex-wrap:wrap; gap:10px; margin-top:26px;}
.chip-count span{padding:8px 14px; border-radius:999px; background:rgba(255,255,255,0.05); border:1px solid var(--border); font-size:13px; font-weight:600;}
.split-media{border-radius:26px; overflow:hidden; min-height:280px; background:var(--ink2); display:flex; align-items:center; justify-content:center; position:relative;}
.split-media img{width:100%; height:100%; object-fit:cover; opacity:0.85;}

/* --- feature ticks --- */
.feature-list{list-style:none; margin:22px 0 0; display:flex; flex-direction:column; gap:14px;}
.feature-list li{display:flex; gap:12px; align-items:flex-start; font-size:15.5px; color:var(--text-soft);}
.feature-list li svg{flex-shrink:0; width:20px; height:20px; margin-top:2px; stroke:var(--orange);}

/* --- stats --- */
.stats-strip{display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:24px; overflow:hidden;}
.stat-box{background:var(--ink2); padding:36px 26px; text-align:center;}
.stat-box .num{font-family:'Space Grotesk'; font-size:clamp(28px,4vw,40px); font-weight:700;}
.stat-box .lbl{font-size:12.5px; color:var(--text-muted); margin-top:6px;}
@media (max-width:768px){ .stats-strip{grid-template-columns:repeat(2,1fr);} }

/* --- bento grid --- */
.bento{display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:repeat(2,220px); grid-auto-rows:220px; gap:20px;}
.bento-card{
  border-radius:22px; padding:28px; position:relative; overflow:hidden; min-height:220px;
  background:var(--ink2); border:1px solid var(--border);
  transition:transform .3s ease, border-color .3s;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.bento-card:hover{transform:translateY(-6px); border-color:var(--border-hover);}
.bento-card.big{grid-column:span 2; grid-row:span 2;}
.bento-card.wide{grid-column:span 2;}
.bento-card .glow{position:absolute; width:220px; height:220px; border-radius:50%; filter:blur(50px); opacity:0.5; top:-60px; right:-60px;}
.bento-card h3{font-size:19px; position:relative; z-index:1;}
.bento-card p{font-size:14px; margin:6px 0 0; position:relative; z-index:1;}
.bento-card .idx{position:absolute; top:22px; left:24px; font-family:'Space Grotesk'; font-size:13px; font-weight:600; color:rgba(255,255,255,0.4); z-index:1;}
.bento-card .tagnew{position:absolute; top:22px; right:24px; background:var(--orange); font-size:10.5px; font-weight:800; letter-spacing:.06em; padding:3px 8px; border-radius:6px; z-index:1;}
@media (max-width:980px){ .bento{grid-template-columns:repeat(2,1fr); grid-template-rows:auto;} .bento-card{min-height:200px;} .bento-card.big{grid-column:span 2;} }
@media (max-width:560px){ .bento{grid-template-columns:1fr;} .bento-card.big, .bento-card.wide{grid-column:span 1;} }

/* --- generic content grid (for services page detail cards) --- */
.grid{display:grid; gap:22px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
@media (max-width:900px){ .grid-2, .grid-3, .grid-4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .grid-2, .grid-3, .grid-4{grid-template-columns:1fr;} }
.info-card{
  border-radius:18px; padding:26px; background:var(--ink2); border:1px solid var(--border);
  transition:transform .25s, border-color .25s;
}
.info-card:hover{transform:translateY(-4px); border-color:var(--border-hover);}
.info-card .num{display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:9px; background:rgba(240,126,30,0.15); color:var(--orange); font-weight:800; font-size:13px; margin-bottom:16px; font-family:'Space Grotesk';}
.info-card h3{font-size:17.5px;}
.info-card p{font-size:14.5px; margin:0;}
.pill-row{display:flex; flex-wrap:wrap; gap:8px; margin-top:20px;}
.pill{font-size:12.5px; font-weight:700; padding:6px 13px; border-radius:999px; background:rgba(255,255,255,0.05); border:1px solid var(--border); color:var(--text-soft);}
.mini-stat-row{display:flex; gap:32px; flex-wrap:wrap; margin-top:28px;}
.mini-stat .value{font-family:'Space Grotesk'; font-size:24px; font-weight:700; color:var(--orange);}
.mini-stat .label{font-size:12.5px; color:var(--text-muted); font-weight:600;}

/* --- service detail block (services page) --- */
.service-block{padding:76px 0; border-bottom:1px solid var(--border);}
.service-block:last-of-type{border-bottom:none;}
.service-top{display:flex; align-items:flex-start; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:30px;}
.service-index{font-family:'Space Grotesk'; font-size:56px; font-weight:700; color:rgba(255,255,255,0.06); line-height:1;}
.service-badge{display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--orange);}

/* --- case study scroller --- */
.case-scroll{display:flex; gap:22px; overflow-x:auto; padding-bottom:16px; scroll-snap-type:x mandatory; -ms-overflow-style:none; scrollbar-width:none; cursor:grab; touch-action:pan-y;}
.case-scroll::-webkit-scrollbar{display:none;}
.case-scroll.dragging{cursor:grabbing; scroll-snap-type:none; user-select:none;}
.case-scroll.dragging .case-slide{pointer-events:none;}
.case-slide{
  flex:0 0 340px; scroll-snap-align:start; border-radius:22px; padding:32px;
  background:linear-gradient(160deg,#15171f,#0d0e13); border:1px solid var(--border); position:relative; overflow:hidden;
}
.case-slide .metric{font-family:'Space Grotesk'; font-size:38px; font-weight:700;}
.case-slide .metric-lbl{font-size:13px; color:var(--text-muted); margin-bottom:18px;}
.case-slide h4{font-size:17px; margin:0 0 8px; font-family:'Inter'; font-weight:700; color:#fff;}
.case-slide p{font-size:14px;}
.scroll-hint{display:flex; align-items:center; gap:10px; margin-top:18px; font-size:13px; color:var(--text-muted);}
.scroll-hint .arrow{display:inline-block; animation:nudge 1.6s ease-in-out infinite;}
@keyframes nudge{0%,100%{transform:translateX(0);} 50%{transform:translateX(6px);}}

/* --- products fluid --- */
.product-fluid{display:grid; grid-template-columns:1fr 1fr; gap:26px;}
@media (max-width:900px){ .product-fluid{grid-template-columns:1fr;} }
.product-panel{
  border-radius:26px; padding:44px; position:relative; overflow:hidden; min-height:340px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.product-panel.p1{background:radial-gradient(120% 120% at 100% 0%, rgba(124,92,255,0.5), transparent 60%), var(--ink2);}
.product-panel.p2{background:radial-gradient(120% 120% at 0% 0%, rgba(255,95,126,0.4), transparent 60%), var(--ink2);}
.product-panel .ptag{display:inline-block; font-size:11px; font-weight:800; letter-spacing:.08em; background:rgba(255,255,255,0.12); padding:4px 10px; border-radius:6px; margin-bottom:16px; width:fit-content;}
.product-panel h3{font-size:26px; color:#fff;}
.product-panel .sub{color:rgba(255,255,255,0.7); font-weight:600; font-size:14px; margin-bottom:4px;}

/* --- team cards --- */
.team-card{
  border-radius:20px; padding:30px; background:var(--ink2); border:1px solid var(--border);
  transition:transform .25s, border-color .25s;
}
.team-card:hover{transform:translateY(-4px); border-color:var(--border-hover);}
.team-avatar{
  width:78px; height:78px; border-radius:50%; margin-bottom:18px; overflow:hidden;
  background:linear-gradient(135deg,var(--orange),var(--pink)); display:flex; align-items:center; justify-content:center;
  font-family:'Space Grotesk'; font-weight:700; font-size:26px; color:#fff; flex-shrink:0;
}
.team-avatar img{width:100%; height:100%; object-fit:cover; border-radius:50%;}
.team-card h3{font-size:18px; margin-bottom:2px;}
.team-card .role{color:var(--orange); font-weight:600; font-size:13.5px; margin-bottom:14px;}
.team-card p{font-size:14.5px;}
.team-placeholder{
  border:1px dashed var(--border-hover); border-radius:20px; padding:40px; text-align:center; color:var(--text-muted);
  background:rgba(255,255,255,0.02);
}

/* --- team cards: photo variant (Management Team page) --- */
.team-card.has-photo{display:flex; gap:26px; align-items:flex-start; padding:32px;}
.team-card.has-photo .team-avatar{width:104px; height:104px; margin-bottom:0;}
.team-card.has-photo .team-body{flex:1;}
@media (max-width:600px){
  .team-card.has-photo{flex-direction:column; align-items:flex-start;}
  .team-card.has-photo .team-avatar{width:88px; height:88px;}
}

/* --- legal / policy prose (Terms, Privacy) --- */
.legal-prose{max-width:760px;}
.legal-prose h2{font-size:24px; margin-top:2.2em;}
.legal-prose h2:first-child{margin-top:0;}
.legal-prose h3{font-size:17px; color:#fff; margin-top:1.6em;}
.legal-prose p, .legal-prose li{color:var(--text-soft); font-size:15.5px; line-height:1.75;}
.legal-prose ul, .legal-prose ol{margin:0 0 1.2em; padding-left:22px;}
.legal-prose li{margin-bottom:8px;}
.legal-updated{font-size:13.5px; color:var(--text-muted); margin-bottom:40px; padding-bottom:24px; border-bottom:1px solid var(--border);}
.legal-toc{background:var(--ink2); border:1px solid var(--border); border-radius:16px; padding:24px 26px; margin-bottom:48px;}
.legal-toc h4{font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); margin-bottom:14px;}
.legal-toc ol{list-style:none; padding:0; display:flex; flex-direction:column; gap:9px; counter-reset:toc;}
.legal-toc li{counter-increment:toc; font-size:14.5px;}
.legal-toc li::before{content:counter(toc) ". "; color:var(--orange); font-weight:700;}
.legal-toc a{color:var(--text-soft);}
.legal-toc a:hover{color:var(--orange);}
.legal-pending{
  background:rgba(240,126,30,0.08); border:1px solid rgba(240,126,30,0.3); border-radius:14px;
  padding:18px 22px; font-size:14.5px; color:var(--text-soft); margin-bottom:36px;
}
.legal-pending strong{color:var(--orange);}

/* --- final CTA --- */
.cta-final{
  border-radius:32px; padding:76px 56px; text-align:center; position:relative; overflow:hidden;
  background:linear-gradient(120deg, #17131f, #0b0c10 60%); border:1px solid var(--border);
}
.cta-final h2{font-size:clamp(30px,5vw,50px); position:relative; z-index:2;}
.cta-final p{font-size:17.5px; max-width:520px; margin:0 auto 32px; position:relative; z-index:2;}
.cta-final-actions{position:relative; z-index:2; display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

/* --- footer --- */
footer{padding:64px 0 30px; border-top:1px solid var(--border); font-size:13.5px; color:var(--text-muted);}
.footer-top{display:grid; grid-template-columns:1.3fr 1fr 1fr 1fr; gap:40px; padding-bottom:44px;}
@media (max-width:900px){ .footer-top{grid-template-columns:1fr 1fr;} }
@media (max-width:560px){ .footer-top{grid-template-columns:1fr;} }
.footer-top img{height:46px; margin-bottom:16px;}
.footer-top p{font-size:14px; max-width:280px;}
.footer-col h4{color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; font-family:'Space Grotesk';}
.footer-col ul{display:flex; flex-direction:column; gap:11px; list-style:none;}
.footer-col a{color:var(--text-muted); font-size:14px; transition:color .15s;}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{border-top:1px solid var(--border); padding:22px 0 0; margin-top:6px; display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap;}
.footer-bottom .legal-links{display:flex; gap:18px;}
.footer-bottom .legal-links a:hover{color:var(--orange);}
.footer-bottom .certs{display:flex; gap:14px; align-items:center;}
.footer-bottom .certs img{height:26px; opacity:0.7;}

/* --- reveal (progressive enhancement, never hides content without JS) --- */
.reveal{opacity:1; transform:none;}
.js-reveal .reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.js-reveal .reveal.in{opacity:1; transform:none;}

/* --- contact page --- */
.contact-grid{display:grid; grid-template-columns:1fr 1.15fr; gap:40px;}
@media (max-width:900px){ .contact-grid{grid-template-columns:1fr;} }
.contact-info-card{background:var(--ink2); border:1px solid var(--border); border-radius:22px; padding:34px;}
.contact-row{display:flex; gap:14px; padding:18px 0; border-top:1px solid var(--border);}
.contact-row:first-of-type{border-top:none; padding-top:0;}
.contact-row .icon-tile{width:42px; height:42px; border-radius:11px; background:rgba(240,126,30,0.14); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-row .icon-tile svg{width:20px; height:20px; stroke:var(--orange);}
.contact-row .lbl{font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); margin-bottom:4px;}
.contact-row .val{font-size:15px; font-weight:600; color:#fff;}
.contact-row a.val:hover{color:var(--orange);}
.form-card{background:var(--ink2); border:1px solid var(--border); border-radius:22px; padding:34px;}
.form-field{margin-bottom:18px;}
.form-field label{display:block; font-size:13px; font-weight:700; margin-bottom:7px; color:var(--text-soft);}
.form-field input, .form-field textarea, .form-field select{
  width:100%; padding:12px 14px; border-radius:10px; border:1px solid var(--border);
  font-family:inherit; font-size:15px; background:rgba(255,255,255,0.03); color:#fff;
}
.form-field select option{background:var(--ink2); color:#fff;}
.form-field input::placeholder, .form-field textarea::placeholder{color:var(--text-muted);}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline:none; border-color:var(--orange); box-shadow:0 0 0 3px rgba(240,126,30,0.15);
}
.form-row-2{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
@media (max-width:520px){ .form-row-2{grid-template-columns:1fr;} }
.form-note{font-size:13px; color:var(--text-muted); margin-top:14px;}
.btn-block{width:100%; justify-content:center; border:none; cursor:pointer; font-family:inherit;}
#form-success{display:none; background:rgba(80,200,120,0.1); border:1px solid rgba(80,200,120,0.35); color:#8FE0AE; padding:14px 16px; border-radius:10px; font-size:14.5px; font-weight:600; margin-bottom:18px;}
#form-success.show{display:block;}
.office-card{border:1px solid var(--border); border-radius:18px; padding:26px; background:var(--ink2);}
.office-card .city{font-weight:700; font-size:16.5px; margin-bottom:4px; font-family:'Space Grotesk';}
.office-card .region{color:var(--text-muted); font-size:14px;}

/* --- testimonial --- */
.testimonial{
  border-radius:26px; padding:48px; position:relative; overflow:hidden;
  background:linear-gradient(160deg,#15171f,#0d0e13); border:1px solid var(--border);
}
.testimonial .quote-mark{font-family:'Space Grotesk'; font-size:64px; line-height:1; color:var(--orange); opacity:0.5; margin-bottom:6px;}
.testimonial p.quote{font-size:19px; color:#fff; max-width:720px; line-height:1.55; margin-bottom:22px;}
.testimonial .attribution{display:flex; align-items:center; gap:12px; font-size:14px; color:var(--text-muted); font-weight:600;}
.testimonial .attribution span.name{color:#fff;}

/* --- case study category pills / filter --- */
.case-pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:44px;}

/* --- case card (used on Case Studies page) --- */
.case-card{
  border-radius:20px; padding:30px; position:relative; overflow:hidden;
  background:var(--ink2); border:1px solid var(--border);
  transition:transform .25s ease, border-color .25s;
}
.case-card:hover{transform:translateY(-4px); border-color:var(--border-hover);}
.case-card .glow{position:absolute; width:200px; height:200px; border-radius:50%; filter:blur(50px); opacity:0.45; top:-50px; right:-50px;}
.case-card .metric{font-family:'Space Grotesk'; font-size:32px; font-weight:700; position:relative; z-index:1;}
.case-card .metric-lbl{font-size:12px; color:var(--text-muted); margin:2px 0 16px; position:relative; z-index:1;}
.case-card h3{font-size:17px; position:relative; z-index:1; margin-bottom:8px;}
.case-card p{font-size:14px; position:relative; z-index:1;}
.case-card .tech-pills{display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; position:relative; z-index:1;}
.case-card .tech-pills span{font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; background:rgba(255,255,255,0.05); border:1px solid var(--border); color:var(--text-soft);}

/* --- content-pending placeholder (Accelerators/Solutions items awaiting real content) --- */
.content-pending{
  background:rgba(240,126,30,0.08); border:1px solid rgba(240,126,30,0.3); border-radius:14px;
  padding:16px 20px; font-size:14px; color:var(--text-soft); margin-top:18px;
}
.content-pending strong{color:var(--orange);}

/* --- Insights page: category filter pills --- */
.filter-pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px;}
.filter-pill{
  font-family:'Inter',sans-serif; font-size:13px; font-weight:700; padding:9px 18px; border-radius:999px;
  background:rgba(255,255,255,0.05); border:1px solid var(--border); color:var(--text-soft);
  cursor:pointer; transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.filter-pill:hover{border-color:var(--border-hover); color:#fff;}
.filter-pill.is-active{background:linear-gradient(90deg,var(--orange),var(--pink)); border-color:transparent; color:#fff;}

/* --- Insights cards (Press Releases / In the News / Blog) --- */
.insight-card{
  border-radius:18px; padding:26px; background:var(--ink2); border:1px solid var(--border);
  transition:transform .25s, border-color .25s; display:flex; flex-direction:column;
}
.insight-card:hover{transform:translateY(-4px); border-color:var(--border-hover);}
.insight-card .insight-meta{display:flex; align-items:center; gap:10px; margin-bottom:14px; flex-wrap:wrap;}
.insight-card .insight-cat{
  font-size:11px; font-weight:800; letter-spacing:.03em; text-transform:uppercase;
  padding:4px 10px; border-radius:999px; color:#fff; white-space:nowrap;
}
.insight-card .insight-cat.cat-press-release{background:linear-gradient(90deg,var(--orange),var(--orange2));}
.insight-card .insight-cat.cat-in-the-news{background:linear-gradient(90deg,var(--purple),var(--pink));}
.insight-card .insight-cat.cat-blog{background:linear-gradient(90deg,var(--pink),var(--orange2));}
.insight-card .insight-date{font-size:12.5px; color:var(--text-muted); font-weight:600;}
.insight-card h3{font-size:17.5px; margin-bottom:10px;}
.insight-card p{font-size:14.5px; color:var(--text-soft); flex-grow:1; margin:0;}
.insight-card .insight-link{margin-top:16px; font-size:13.5px; font-weight:700; color:var(--orange); text-decoration:none;}
.insight-card .insight-link:hover{text-decoration:underline;}

/* --- utility --- */
.text-center{text-align:center;}
.mx-auto{margin-left:auto; margin-right:auto;}
.mt-0{margin-top:0 !important;}
