/* ── RESET & TOKENS ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#0c0c0c;
  --surface:#141414;
  --border:rgba(255,255,255,0.07);
  --lime:#c8f135;
  --lime-dim:rgba(200,241,53,0.1);
  --text:#e8e8e8;
  --muted:rgba(232,232,232,0.45);
  --ease:cubic-bezier(0.22,1,0.36,1);
  --r:18px;
}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;background:var(--bg);overflow-x:hidden;}
body{background:transparent;color:var(--text);font-family:'Inter',sans-serif;font-size:16px;line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;max-width:100vw;}
::selection{background:var(--lime);color:#0c0c0c;}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}

/* ── REVEAL ON SCROLL ── */
.reveal{opacity:0;transform:translateY(26px);transition:opacity 0.7s var(--ease),transform 0.7s var(--ease);will-change:opacity,transform;}
.reveal.visible{opacity:1;transform:none;will-change:auto;}

/* ══════════════════════════════
   NAVIGATION — scrolls with page
   ══════════════════════════════ */
nav{
  position:relative;z-index:50;
  display:flex;align-items:center;
  padding:20px 40px;
  background:rgba(12,12,12,0.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:15px;letter-spacing:-0.02em;flex-shrink:0;}
.nav-logo-mark{width:32px;height:32px;border-radius:50%;flex-shrink:0;}
.nav-logo span{color:rgba(232,232,232,0.3);}
.nav-links{
  display:flex;gap:4px;list-style:none;
  margin-left:auto; /* push everything to the right */
  margin-right:16px;
}
.nav-a{
  display:block;padding:7px 15px;border-radius:100px;
  font-size:13px;font-weight:500;color:var(--muted);
  transition:color 0.25s;position:relative;isolation:isolate;
  /* pseudo-elements declared unconditionally but opacity stays 0 on touch */
}
.nav-a::before{
  content:'';position:absolute;inset:0;border-radius:100px;
  background:linear-gradient(120deg,var(--lime) 0%,#7cf016 100%);
  opacity:0;transition:opacity 0.28s;z-index:-1;
}
.nav-a::after{
  content:'';position:absolute;inset:0;border-radius:100px;
  background:linear-gradient(120deg,var(--lime) 0%,#7cf016 100%);
  filter:blur(14px);opacity:0;transition:opacity 0.28s;z-index:-2;
}
/* Only glow on real hover (mouse pointer), not on touch tap */
@media(hover:hover) and (pointer:fine){
  .nav-a:hover{color:#0c0c0c;}
  .nav-a:hover::before{opacity:1;}
  .nav-a:hover::after{opacity:0.45;}
}
.nav-cta{
  flex-shrink:0;
  padding:9px 22px;border-radius:100px;background:var(--lime);
  color:#0c0c0c;font-size:13px;font-weight:600;
  transition:transform 0.2s,opacity 0.2s;
}
@media(hover:hover) and (pointer:fine){
  .nav-cta:hover{opacity:0.88;transform:translateY(-1px);}
}
/* Hamburger */
.nav-ham{
  display:none;flex-shrink:0;margin-left:auto;
  background:none;border:1px solid var(--border);
  color:var(--text);border-radius:8px;
  width:36px;height:36px;cursor:pointer;
  font-size:18px;align-items:center;justify-content:center;
}
/* Mobile drawer — in-flow max-height animation (works as sibling of nav) */
.nav-mobile{
  display:flex;flex-direction:column;gap:4px;
  max-height:0;overflow:hidden;
  background:rgba(12,12,12,0.98);backdrop-filter:blur(18px);
  border-bottom:0px solid var(--border);
  padding:0 24px;
  transition:max-height 0.38s cubic-bezier(0.22,1,0.36,1),
             padding 0.3s,border-bottom-width 0.3s;
  z-index:49;position:relative;
}
.nav-mobile.open{
  max-height:420px;
  padding:16px 24px 20px;
  border-bottom-width:1px;
}
.nav-mobile .nav-a{color:var(--muted);font-size:15px;padding:12px 16px;border-radius:10px;display:block;}
@media(hover:hover) and (pointer:fine){.nav-mobile .nav-a:hover{color:var(--text);background:rgba(255,255,255,0.04);}}
.nav-mobile-cta{
  margin-top:8px;padding:13px;border-radius:100px;
  background:var(--lime);color:#0c0c0c;
  font-size:14px;font-weight:700;text-align:center;display:block;
}

/* ── SECTION BASE ── */
section{padding:72px 40px;contain:layout style;}
.section-label{font-size:11px;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--lime);margin-bottom:16px;}
.section-h2{font-size:clamp(30px,3.8vw,50px);font-weight:800;letter-spacing:-0.025em;line-height:1.1;margin-bottom:16px;}
.section-sub{font-size:17px;color:var(--muted);max-width:520px;line-height:1.65;}
.inner{max-width:1200px;margin:0 auto;width:100%;}

/* ── FOOTER ── */
footer {
  background: rgba(12, 12, 12, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 64px 40px 32px;
  color: var(--text);
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-desc strong { color: var(--text); font-weight: 700; }
.footer-brand-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.footer-brand-cta {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(200, 241, 53, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  transition: background 0.2s, transform 0.2s;
}
@media(hover:hover) and (pointer:fine){
  .footer-brand-cta:hover { background: var(--lime-dim); transform: translateY(-1px); }
}
.footer-brand-title span {
  color: rgba(232, 232, 232, 0.3);
}
.footer-brand-sub {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-link-a:hover {
  color: var(--lime);
  transform: translateX(3px);
}
.footer-divider {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 48px 0 24px;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(232, 232, 232, 0.35);
  line-height: 1.6;
}
.footer-copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media(max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  footer {
    padding: 48px 20px 24px;
  }
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media(max-width:1100px){
  .services-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:900px){
  nav{padding:16px 20px;}
  .nav-links,.nav-cta{display:none;}
  .nav-ham{display:flex;}
  nav{position:relative;}
  #hero{padding:56px 24px 60px;min-height:88vh;}
  section{padding:56px 24px;}
  .stats-grid{grid-template-columns:1fr;border:none;gap:1px;}
  .stat-item{border-right:none;border-bottom:1px solid var(--border);border-radius:0;padding:28px 20px;}
  .stat-item:last-child{border-bottom:none;}
  .services-grid{grid-template-columns:1fr;}
  .about-grid{flex-direction:column;gap:48px;}
  .about-img-wrap{flex:0 0 auto;width:100%;max-width:280px;margin:0 auto;}
  .recog-grid{grid-template-columns:1fr;}
  footer{flex-direction:column;align-items:flex-start;padding:26px 24px;}
  #stats{padding:48px 24px;}
  .tc-header{padding:0 24px;}
}
@media(max-width:600px){
  .hero-h1{font-size:clamp(40px,11vw,62px);}
  .hero-sub{font-size:14px;}
  .btn-primary,.btn-secondary{padding:12px 20px;font-size:14px;}
  .recog-card{flex-direction:column;}
  .recog-img{width:100%;height:160px;}
  .tc-card{width:285px;}
  .wa-slide{width:260px;}
  .about-img-frame{aspect-ratio:4/5;}
}

/* ══════════════════════════════
   SERVICE / LEGAL PAGE COMPONENTS
   ══════════════════════════════ */

/* ── PAGE HERO ── */
.ph{padding:76px 40px 56px;max-width:1200px;margin:0 auto;}
.ph-eyebrow{display:inline-flex;align-items:center;gap:8px;background:var(--surface);border:1px solid var(--border);border-radius:100px;padding:6px 14px;font-size:12px;color:var(--muted);letter-spacing:0.04em;margin-bottom:26px;}
.ph-eyebrow-dot{width:7px;height:7px;border-radius:50%;background:var(--lime);flex-shrink:0;animation:badgePulse 2.2s ease-in-out infinite;}
@keyframes badgePulse{0%,100%{opacity:1}50%{opacity:.5}}
.ph-h1{font-size:clamp(38px,6vw,68px);line-height:1.02;letter-spacing:-0.035em;font-weight:800;margin-bottom:22px;max-width:16ch;}
.ph-h1 em{font-style:normal;color:var(--lime);}
.ph-sub{font-size:clamp(15px,1.6vw,18px);color:var(--muted);max-width:60ch;margin-bottom:34px;}
.ph-btns{display:flex;gap:12px;flex-wrap:wrap;}

/* ── BUTTONS ── */
.btn{display:inline-flex;align-items:center;gap:9px;border-radius:100px;font-size:14px;font-weight:600;padding:13px 26px;cursor:pointer;border:1px solid transparent;transition:transform .2s var(--ease),opacity .2s,background .2s,border-color .2s;min-height:44px;}
.btn-lime{background:var(--lime);color:#0c0c0c;}
.btn-ghost{background:transparent;border-color:var(--border);color:var(--text);}
@media(hover:hover) and (pointer:fine){
  .btn-lime:hover{opacity:.88;transform:translateY(-2px);}
  .btn-ghost:hover{border-color:rgba(200,241,53,.35);background:var(--lime-dim);transform:translateY(-2px);}
}
.btn:focus-visible{outline:2px solid var(--lime);outline-offset:3px;}

/* ── GENERIC SECTION ── */
.pg{padding:64px 40px;max-width:1200px;margin:0 auto;}
.pg-label{font-size:12px;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--lime);margin-bottom:14px;}
.pg-h2{font-size:clamp(27px,3.6vw,42px);line-height:1.1;letter-spacing:-0.03em;font-weight:800;margin-bottom:14px;}
.pg-sub{font-size:16px;color:var(--muted);max-width:62ch;margin-bottom:38px;}

/* ── DELIVERABLE CARDS ── */
.dgrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(266px,1fr));gap:16px;}
.dcard{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:26px 24px;transition:transform .3s var(--ease),border-color .3s,background .3s;}
@media(hover:hover) and (pointer:fine){.dcard:hover{transform:translateY(-4px);border-color:rgba(200,241,53,.28);background:#181818;}}
.dcard-ico{width:38px;height:38px;border-radius:10px;background:var(--lime-dim);display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--lime);}
.dcard-ico svg{width:19px;height:19px;}
.dcard-name{font-size:16px;font-weight:700;letter-spacing:-0.01em;margin-bottom:8px;}
.dcard-desc{font-size:14px;color:var(--muted);line-height:1.62;}

/* ── PROCESS STEPS ── */
.steps{display:grid;gap:1px;background:var(--border);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;}
.step{background:var(--bg);padding:26px 28px;display:flex;gap:22px;align-items:flex-start;transition:background .3s;}
@media(hover:hover) and (pointer:fine){.step:hover{background:var(--surface);}}
.step-n{flex-shrink:0;width:34px;height:34px;border-radius:50%;border:1px solid rgba(200,241,53,.3);color:var(--lime);display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:700;}
.step-name{font-size:16px;font-weight:700;margin-bottom:6px;}
.step-desc{font-size:14px;color:var(--muted);line-height:1.62;}
.step-when{font-size:12px;color:var(--lime);opacity:.8;margin-top:8px;letter-spacing:.03em;}

/* ── CHIPS ── */
.chips{display:flex;flex-wrap:wrap;gap:9px;}
.chip2{background:var(--surface);border:1px solid var(--border);border-radius:100px;padding:8px 16px;font-size:13px;color:var(--muted);transition:border-color .25s,color .25s;}
@media(hover:hover) and (pointer:fine){.chip2:hover{border-color:rgba(200,241,53,.3);color:var(--text);}}

/* ── SCOPE PICKER ── */
.scope{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:30px 28px;}
.scope-q{font-size:13px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);margin-bottom:13px;}
.scope-row{margin-bottom:26px;}
.scope-opts{display:flex;flex-wrap:wrap;gap:9px;}
.scope-opt{background:var(--bg);border:1px solid var(--border);border-radius:100px;padding:10px 19px;font-size:14px;color:var(--muted);cursor:pointer;transition:all .22s var(--ease);min-height:44px;display:inline-flex;align-items:center;}
.scope-opt:focus-visible{outline:2px solid var(--lime);outline-offset:2px;}
@media(hover:hover) and (pointer:fine){.scope-opt:hover{border-color:rgba(200,241,53,.35);color:var(--text);}}
.scope-opt[aria-pressed="true"]{background:var(--lime);border-color:var(--lime);color:#0c0c0c;font-weight:600;}
.scope-out{border-top:1px solid var(--border);padding-top:24px;display:flex;flex-wrap:wrap;gap:30px;align-items:flex-end;}
.scope-fig-label{font-size:12px;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;margin-bottom:6px;}
.scope-fig{font-size:clamp(24px,3vw,32px);font-weight:800;color:var(--lime);letter-spacing:-0.02em;line-height:1;}
.scope-note{font-size:12px;color:var(--muted);margin-top:16px;width:100%;}
.scope-cta{margin-left:auto;}

/* ── FAQ ── */
.faq{border:1px solid var(--border);border-radius:var(--r);overflow:hidden;}
.faq details{border-bottom:1px solid var(--border);}
.faq details:last-child{border-bottom:none;}
.faq summary{padding:21px 26px;font-size:15px;font-weight:600;cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:20px;transition:background .25s,color .25s;min-height:44px;}
.faq summary::-webkit-details-marker{display:none;}
.faq summary::after{content:'+';color:var(--lime);font-size:21px;font-weight:400;flex-shrink:0;transition:transform .3s var(--ease);}
.faq details[open] summary::after{transform:rotate(45deg);}
.faq summary:focus-visible{outline:2px solid var(--lime);outline-offset:-2px;}
@media(hover:hover) and (pointer:fine){.faq summary:hover{background:var(--surface);color:var(--lime);}}
.faq-a{padding:0 26px 22px;font-size:14.5px;color:var(--muted);line-height:1.68;max-width:75ch;}

/* ── CONNECT ── */
.connect{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:clamp(32px,5vw,56px);text-align:center;}
.connect-h{font-size:clamp(24px,3.4vw,38px);font-weight:800;letter-spacing:-0.03em;margin-bottom:14px;}
.connect-p{font-size:15.5px;color:var(--muted);max-width:52ch;margin:0 auto 32px;}
.connect-grid{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
.cbtn{display:inline-flex;align-items:center;gap:10px;background:var(--bg);border:1px solid var(--border);border-radius:100px;padding:13px 24px;font-size:14px;font-weight:600;color:var(--text);transition:all .22s var(--ease);min-height:44px;}
.cbtn svg{width:17px;height:17px;flex-shrink:0;}
.cbtn:focus-visible{outline:2px solid var(--lime);outline-offset:3px;}
@media(hover:hover) and (pointer:fine){.cbtn:hover{transform:translateY(-3px);border-color:rgba(200,241,53,.4);background:#181818;}}
.cbtn-primary{background:var(--lime);border-color:var(--lime);color:#0c0c0c;}
@media(hover:hover) and (pointer:fine){.cbtn-primary:hover{background:var(--lime);opacity:.9;}}
.cbtn-wa{background:#25D366;border-color:#25D366;color:#fff;}
@media(hover:hover) and (pointer:fine){.cbtn-wa:hover{background:#25D366;opacity:.9;}}

/* ── LEGAL PROSE ── */
.legal{max-width:820px;margin:0 auto;padding:0 40px 76px;}
.legal-updated{font-size:13px;color:var(--muted);border:1px solid var(--border);border-radius:100px;padding:7px 16px;display:inline-block;margin-bottom:38px;}
.legal h2{font-size:22px;font-weight:700;letter-spacing:-0.02em;margin:42px 0 14px;scroll-margin-top:20px;}
.legal h3{font-size:16.5px;font-weight:700;margin:26px 0 10px;color:var(--text);}
.legal p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:15px;}
.legal ul,.legal ol{margin:0 0 16px 21px;}
.legal li{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:9px;}
.legal strong{color:var(--text);font-weight:600;}
.legal a{color:var(--lime);}
@media(hover:hover) and (pointer:fine){.legal a:hover{text-decoration:underline;}}
.legal-box{background:var(--surface);border:1px solid var(--border);border-left:3px solid var(--lime);border-radius:10px;padding:20px 24px;margin:24px 0;}
.legal-box p{margin-bottom:0;font-size:14.5px;}
.legal-toc{background:var(--surface);border:1px solid var(--border);border-radius:var(--r);padding:24px 28px;margin-bottom:40px;}
.legal-toc-t{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--lime);margin-bottom:14px;}
.legal-toc ol{margin:0 0 0 18px;}
.legal-toc li{margin-bottom:7px;font-size:14px;}
.legal-toc a{color:var(--muted);}
@media(hover:hover) and (pointer:fine){.legal-toc a:hover{color:var(--lime);}}

/* ── RELATED ── */
.rel{display:grid;grid-template-columns:repeat(auto-fit,minmax(216px,1fr));gap:14px;}
.rel-card{background:var(--surface);border:1px solid var(--border);border-radius:14px;padding:22px;transition:all .28s var(--ease);}
@media(hover:hover) and (pointer:fine){.rel-card:hover{transform:translateY(-3px);border-color:rgba(200,241,53,.3);}}
.rel-name{font-size:15px;font-weight:700;margin-bottom:6px;display:flex;align-items:center;justify-content:space-between;gap:10px;}
.rel-name svg{color:var(--lime);flex-shrink:0;}
.rel-desc{font-size:13px;color:var(--muted);line-height:1.55;}

@media(max-width:900px){
  .ph{padding:52px 20px 40px;}
  .pg{padding:48px 20px;}
  .legal{padding:0 20px 56px;}
  .step{padding:22px 20px;gap:16px;}
  .scope{padding:24px 20px;}
  .scope-cta{margin-left:0;width:100%;}
  .scope-out{gap:22px;}
  .connect-grid{flex-direction:column;}
  .cbtn{justify-content:center;}
  .ph-btns .btn{flex:1 1 100%;justify-content:center;}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;}
  .reveal{opacity:1!important;transform:none!important;}
}
