/* Cirqco — Inter, lime, product artifacts */
:root{
  --ink:     #111111;
  --ink-2:   #555555;
  --mute:    #8A8A8A;
  --paper:   #F7F7F7;
  --cream:   #FFFFFF;
  --line:    #E6E6E6;
  --line-2:  #D0D0D0;
  --forest:  #1D4538;
  --lime:    #32CD32;
  --lime-ink:#145214;
  --lime-bg: #F0FFF0;
  --ok:      #228B22;
  --desk:    #0F1412;
  --sans:    "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --max:     1160px;
  --gutter:  24px;
  --r:       16px;
  --r-sm:    10px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--sans); font-weight:700; letter-spacing:-0.035em; }
p{ margin:0; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 var(--gutter); }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
:focus-visible{ outline:2px solid var(--lime); outline-offset:3px; }

.skip{ position:absolute; left:-999px; }
.skip:focus{ left:12px; top:8px; z-index:80; background:var(--ink); color:#fff; padding:8px 14px; border-radius:8px; }

.kicker{
  font-size:12px; font-weight:600; letter-spacing:.08em;
  text-transform:uppercase; color:var(--ok);
}
.section{ padding:80px 0; }
.section.tight{ padding-top:28px; }
.section-head{ max-width:560px; margin-bottom:40px; }
.section-head h2{ font-size:clamp(28px,3.6vw,40px); line-height:1.15; margin-top:10px; }
.section-head p{ color:var(--ink-2); font-size:16.5px; margin-top:12px; }
.band{ background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--sans); font-weight:600; font-size:14px;
  padding:11px 18px; border-radius:10px;
  border:1px solid transparent; cursor:pointer;
  transition:background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn svg{ width:14px; height:14px; }
.btn-ink{ background:var(--ink); color:#fff; }
.btn-ink:hover{ background:#000; }
.btn-line{ background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn-line:hover{ border-color:var(--ink); }
.btn-lime{ background:var(--lime); color:#111; }
.btn-lime:hover{ background:#28b428; }
.btn-cream{ background:#fff; color:var(--ink); }
.btn-on-dark{ border-color:rgba(255,255,255,.25) !important; color:#fff !important; }

.chip{
  display:inline-flex; align-items:center; gap:6px;
  font-size:11px; font-weight:600; letter-spacing:.02em;
  padding:5px 10px; border-radius:999px;
  border:1px solid var(--line); background:var(--cream); color:var(--ink-2);
}
.chip i{ width:6px; height:6px; border-radius:50%; background:currentColor; display:inline-block; }
.chip-live{ color:var(--ok); border-color:#b7e6b7; background:var(--lime-bg); }
.chip-raise{ color:#7A5A12; border-color:#ead9a8; background:#FBF6E8; }
.chip-ship{ color:var(--lime-ink); border-color:#b7e6b7; background:var(--lime-bg); }
.chip + .chip{ margin-left:8px; }

/* NAV */
.site-nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
}
.site-nav.scrolled{ border-bottom-color:var(--line); }
.site-nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:64px; }
.logo{ display:flex; align-items:center; gap:9px; font-weight:700; font-size:17px; letter-spacing:-0.04em; }
.logo .mark{ width:22px; height:22px; }
.nav-links{ display:flex; align-items:center; gap:26px; }
.nav-links a{ font-size:14px; font-weight:500; color:var(--ink-2); }
.nav-links a:hover, .nav-links a.is-active{ color:var(--ink); }
.nav-cta{ display:flex; align-items:center; gap:8px; }
.nav-toggle{ display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--line); background:transparent; }
@media (max-width: 920px){
  .nav-links{ display:none; }
  .nav-cta .btn-line{ display:none; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; }
}

/* HERO */
.hero{ padding:64px 0 40px; }
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap:40px;
  align-items:center;
}
.hero h1{
  font-size:clamp(36px,5vw,56px);
  line-height:1.08;
  margin-top:14px;
  max-width:16ch;
}
.hero h1 em{ font-style:normal; color:var(--ok); }
.lede{ margin-top:16px; font-size:17px; line-height:1.6; color:var(--ink-2); max-width:44ch; }
.lede a{ color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.hero-ctas{ display:flex; gap:8px; margin-top:28px; flex-wrap:wrap; }
.hero-meta{
  display:flex; flex-wrap:wrap; gap:16px 28px;
  margin-top:32px; padding-top:20px; border-top:1px solid var(--line);
}
.hero-meta dt{ font-size:11px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--mute); }
.hero-meta dd{ margin:4px 0 0; font-size:14.5px; font-weight:600; }

.hero-visual{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:16px;
  align-items:stretch;
  min-height:0;
}
@media (max-width: 900px){
  .hero{ padding-top:32px; }
  .hero-grid, .hero-visual{ grid-template-columns:1fr; }
  .hero-visual{ max-width:420px; margin:0 auto; }
}

/* PRODUCT ARTIFACTS */
.art-phone{
  background:#111;
  border-radius:32px;
  padding:10px;
  box-shadow:0 24px 48px -20px rgba(0,0,0,.35);
}
.art-phone .screen{
  background:#EBEBEB;
  border-radius:24px;
  overflow:hidden;
  min-height:430px;
  color:#111;
  font-size:12px;
}
.ph-status{
  display:flex; justify-content:space-between;
  padding:10px 14px 0; font-size:10px; font-weight:600; color:#555;
}
.ph-pad{ padding:10px 14px 16px; }
.ph-hello{ display:flex; align-items:center; gap:10px; }
.ph-av{
  width:40px; height:40px; border-radius:50%;
  background:#F0FFF0; color:#228B22;
  display:flex; align-items:center; justify-content:center; font-weight:800;
}
.ph-av.sm{ width:32px; height:32px; font-size:12px; }
.ph-hello strong{ display:block; font-size:14px; font-weight:800; letter-spacing:-0.03em; }
.ph-hello span{ color:#555; font-size:11px; }
.ph-bell{
  margin-left:auto; width:36px; height:36px; border-radius:12px;
  background:#fff; box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.ph-search{
  margin-top:14px; height:40px; border-radius:20px; background:#fff;
  display:flex; align-items:center; padding:0 14px;
  color:#AAA; font-size:13px; box-shadow:0 4px 12px rgba(0,0,0,.04);
}
.ph-cats{ display:flex; gap:8px; margin-top:14px; }
.ph-cat{
  flex:1; height:56px; border-radius:14px; background:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  font-size:10px; font-weight:600; color:#555;
}
.ph-cat.on{ outline:2px solid #32CD32; color:#111; }
.ph-cat i{ width:18px; height:3px; border-radius:2px; background:#CCC; }
.ph-cat.on i{ background:#32CD32; }
.ph-card{
  margin-top:14px; background:#fff; border-radius:18px; padding:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.ph-own{ display:flex; align-items:center; gap:8px; }
.ph-own b{ font-size:12px; }
.ph-own span{ display:block; font-size:10px; color:#555; }
.ph-price{
  margin-left:auto; background:#F7F7F7; border-radius:999px;
  padding:4px 8px; font-size:10px; font-weight:700;
}
.ph-car{
  margin-top:10px; height:92px; border-radius:14px;
  background:linear-gradient(180deg,#F7F7F7,#EEE);
  position:relative;
}
.ph-car svg{ position:absolute; inset:18px 20px; width:auto; height:auto; opacity:.18; }
.ph-plate{
  position:absolute; right:8px; bottom:8px;
  background:#fff; border-radius:6px; padding:3px 7px;
  font-size:9px; font-weight:700; letter-spacing:.04em;
}
.ph-book{
  margin-top:10px; height:36px; border-radius:10px; background:#32CD32;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:12px;
}

.art-desk{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 20px 40px -24px rgba(0,0,0,.28);
  min-width:0;
}
.art-desk .bar{
  display:flex; align-items:center; gap:6px;
  padding:10px 12px; background:#F3F3F3; border-bottom:1px solid var(--line);
  font-size:11px; font-weight:500; color:#888;
}
.art-desk .bar i{ width:8px; height:8px; border-radius:50%; background:#D0D0D0; }
.nexa-app{ display:grid; grid-template-columns:88px 1fr; min-height:390px; }
.nexa-side{ background:#0F1412; padding:14px 10px; color:#C8D0C8; }
.nexa-side .brand{ font-size:10px; font-weight:800; color:#32CD32; letter-spacing:.04em; margin-bottom:14px; }
.nexa-side span{
  display:block; font-size:10px; font-weight:500; padding:7px 8px; border-radius:6px; color:#9AA89A; margin-bottom:2px;
}
.nexa-side span.on{ background:#1A2420; color:#fff; }
.nexa-main{ padding:14px 16px 16px; background:#FAFAF7; min-width:0; }
.nexa-top{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:12px; }
.nexa-top strong{ font-size:13px; font-weight:700; }
.nexa-top span{ font-size:10px; color:#888; }
.nexa-kpis{ display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.nexa-kpi{
  background:#fff; border:1px solid var(--line); border-radius:10px; padding:10px 12px;
}
.nexa-kpi b{ display:block; font-size:18px; font-weight:800; letter-spacing:-0.04em; line-height:1.2; }
.nexa-kpi span{ display:block; margin-top:3px; font-size:10px; color:#777; font-weight:500; }
.nexa-pipe{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:8px; margin-top:10px; }
.nexa-col{ background:#fff; border:1px solid var(--line); border-radius:10px; padding:8px; }
.nexa-col > span{ display:block; font-size:9px; font-weight:600; color:#888; margin-bottom:8px; text-transform:uppercase; letter-spacing:.04em; }
.nexa-deal{
  background:#F7F7F7; border-radius:8px; padding:7px 8px; margin-bottom:6px; font-size:10px;
}
.nexa-deal b{ display:block; font-weight:600; }
.nexa-deal em{ font-style:normal; color:#888; font-size:9px; }
.nexa-deal.won{ background:#F0FFF0; }

/* PROOF */
.proof .wrap{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.proof-item{ padding:24px 20px; border-left:1px solid var(--line); }
.proof-item:first-child{ border-left:none; padding-left:0; }
.proof-item b{ display:block; font-size:26px; font-weight:800; letter-spacing:-0.04em; }
.proof-item span{ display:block; margin-top:6px; font-size:13px; color:var(--ink-2); line-height:1.4; }
@media (max-width:760px){
  .proof .wrap{ grid-template-columns:1fr 1fr; }
  .proof-item{ border-left:none; padding:20px 8px 20px 0; }
}

/* PRODUCTS */
.prod{
  display:grid; grid-template-columns: .95fr 1.05fr;
  gap:48px; align-items:start; padding:20px 0 8px;
}
.prod + .prod{ margin-top:64px; padding-top:64px; border-top:1px solid var(--line); }
.product-title{ font-size:clamp(28px,3.2vw,40px); line-height:1.1; margin-top:12px; }
.product-title a{ color:inherit; }
.product-sub{ margin-top:12px; font-size:16.5px; color:var(--ink-2); line-height:1.6; max-width:46ch; }
.prod-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.facts{ margin-top:24px; display:flex; flex-direction:column; gap:12px; }
.facts li{ display:grid; grid-template-columns:88px 1fr; gap:10px; font-size:14.5px; color:var(--ink-2); }
.facts .n{ font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--ok); padding-top:2px; }
.prod-actions{ display:flex; gap:8px; flex-wrap:wrap; margin-top:24px; }

.prod-panel{
  background:var(--paper); border:1px solid var(--line);
  border-radius:var(--r); padding:24px;
}
.prod-panel h3{
  font-size:11px; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; color:var(--mute);
}
.prod-panel h3.spaced{ margin-top:24px; }
.mod-grid{ display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:14px; }
.mod{ border:1px solid var(--line); border-radius:12px; padding:14px; background:#fff; }
.mod b{ display:block; font-size:14px; font-weight:700; letter-spacing:-0.03em; }
.mod span{ display:block; margin-top:5px; font-size:13px; color:var(--ink-2); line-height:1.45; }
.layers{ margin-top:14px; display:flex; flex-direction:column; gap:6px; }
.layers li{
  display:flex; justify-content:space-between; gap:12px;
  padding:11px 14px; border-radius:10px; border:1px solid var(--line); background:#fff; font-size:14px;
}
.layers em{ font-style:normal; color:var(--mute); font-size:12px; }
.stack-mini{ display:grid; gap:8px; margin-top:14px; }
.stack-mini a, .stack-mini .surf{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:14px; border-radius:12px; border:1px solid var(--line); background:#fff;
}
.stack-mini strong{ display:block; font-size:14px; }
.stack-mini span{ display:block; font-size:12.5px; color:var(--mute); margin-top:2px; }

.prod-cruiz .prod-panel{ background:#111; color:#fff; border-color:#222; }
.prod-cruiz .prod-panel h3{ color:#32CD32; }
.prod-cruiz .mod, .prod-cruiz .stack-mini a, .prod-cruiz .stack-mini .surf{
  background:#191919; border-color:#2A2A2A; color:#fff;
}
.prod-cruiz .mod span, .prod-cruiz .stack-mini span{ color:#999; }
.prod-cruiz .chip{ background:#191919; border-color:#2A2A2A; color:#32CD32; }

.prod-sentinel .prod-panel{ background:#111; color:#fff; border-color:#222; }
.prod-sentinel .prod-panel h3{ color:#38bdf8; }
.prod-sentinel .mod{ background:#191919; border-color:#2A2A2A; color:#fff; }
.prod-sentinel .mod span{ color:#999; }
.prod-sentinel .chip{ background:#191919; border-color:#2A2A2A; color:#38bdf8; }

.prod-panel-dark{ background:#111; color:#fff; border-color:#222; }
.prod-panel-dark h3{ color:#38bdf8; }
.prod-panel-dark .layers em{ color:#888; }
.prod-panel-dark .panel-note{ font-size:14px; color:#ccc; line-height:1.55; margin:0 0 4px; }

.page-hero .hero-note{ margin-top:14px; font-size:14px; color:var(--mute); }

@media (max-width: 900px){
  .prod{ grid-template-columns:1fr; gap:24px; }
  .prod + .prod{ margin-top:40px; padding-top:40px; }
  .mod-grid{ grid-template-columns:1fr; }
  .facts li{ grid-template-columns:1fr; gap:2px; }
}

/* WORK */
.work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.work-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--r);
  padding:20px; min-height:200px; display:flex; flex-direction:column;
  color:inherit;
}
.work-card:hover{ border-color:#111; }
.work-card h3{ font-size:17px; letter-spacing:-0.03em; margin-top:14px; }
.work-card p{ margin-top:8px; font-size:14px; color:var(--ink-2); line-height:1.5; flex:1; }
.work-card .tech{ margin-top:14px; font-size:11px; font-weight:600; color:var(--mute); }
.work-card.lime{ background:#111; color:#fff; border-color:#222; }
.work-card.lime p{ color:#A3A3A3; }
.work-card.lime:hover{ border-color:#32CD32; }
.work-card.lime .tech{ color:#6A6A6A; }
@media (max-width:900px){ .work-grid{ grid-template-columns:1fr; } }

/* STUDIO */
.studio-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid var(--line); }
.studio-item{ padding:24px 28px 28px 0; border-bottom:1px solid var(--line); }
.studio-item:nth-child(odd){ padding-right:32px; border-right:1px solid var(--line); }
.studio-item:nth-child(even){ padding-left:32px; }
.studio-item h3{ font-size:20px; }
.studio-item p{ margin-top:8px; color:var(--ink-2); font-size:15px; }
@media (max-width:760px){
  .studio-grid{ grid-template-columns:1fr; }
  .studio-item, .studio-item:nth-child(odd), .studio-item:nth-child(even){ padding:22px 0; border-right:none; }
}

/* INVEST */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.invest-card{
  display:grid; grid-template-columns:1fr 1fr;
  border:1px solid var(--line); border-radius:var(--r); overflow:hidden;
}
.invest-card.flush{ margin-top:0; }
.invest-copy, .invest-facts{ padding:32px; }
.invest-copy{ background:#111; color:#fff; }
.invest-copy h2{ font-size:clamp(24px,2.8vw,34px); margin-top:8px; }
.invest-copy p{ margin-top:12px; color:#A3A3A3; max-width:42ch; }
.invest-copy .hero-ctas{ margin-top:20px; }
.invest-facts{ background:#fff; }
.invest-facts h3{ font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--mute); }
.invest-facts dl{ margin:16px 0 0; display:grid; gap:14px; }
.invest-facts dt{ font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--mute); }
.invest-facts dd{ margin:3px 0 0; font-size:15px; font-weight:600; }
@media (max-width:900px){
  .split, .invest-card{ grid-template-columns:1fr; }
}

/* CONTACT */
.contact-bar{
  display:grid; grid-template-columns:1fr auto; gap:32px; align-items:center;
}
.contact-bar h2{ font-size:clamp(26px,3.4vw,36px); max-width:16ch; }
.contact-bar .lede{ font-size:16px; }
.contact-links{ display:flex; flex-wrap:wrap; gap:10px 18px; margin-top:18px; }
.contact-links a{ font-weight:600; font-size:15px; border-bottom:1px solid var(--ink); }
.contact-links a:hover{ color:var(--ok); border-color:var(--ok); }
@media (max-width:800px){ .contact-bar{ grid-template-columns:1fr; } }

.product-title a, a.work-card{ color:inherit; }
.prose a{ color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.page-hero{ padding:52px 0 8px; }
.page-hero h1{ font-size:clamp(32px,4.8vw,52px); line-height:1.1; margin-top:12px; max-width:18ch; }
.page-hero .lede{ margin-top:14px; font-size:17px; color:var(--ink-2); max-width:52ch; }
.page-hero .hero-ctas{ margin-top:22px; }
.crumbs{ font-size:13px; color:var(--mute); margin-bottom:14px; }
.crumbs a:hover{ color:var(--ink); }
.prose{ max-width:68ch; }
.prose h2{ font-size:clamp(22px,2.6vw,30px); margin-top:8px; }
.prose p{ margin-top:12px; color:var(--ink-2); font-size:16.5px; }
.faq details{ border-top:1px solid var(--line); padding:14px 0; }
.faq details:last-child{ border-bottom:1px solid var(--line); }
.faq summary{ cursor:pointer; font-weight:700; font-size:16px; }
.faq details p{ margin-top:8px; }
.mod-grid + .prose{ margin-top:24px; }
.prod.flat{ margin:0; padding:0; border:0; }

footer.site-footer{ background:#111; color:#fff; padding:52px 0 24px; }
.footer-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; padding-bottom:36px; border-bottom:1px solid #2A2A2A; }
.footer-brand p{ margin-top:10px; color:#888; font-size:14px; max-width:280px; }
.footer-cols{ display:flex; gap:48px; flex-wrap:wrap; }
.footer-col h5{ font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:#666; margin:0; }
.footer-col ul{ margin-top:12px; display:flex; flex-direction:column; gap:8px; }
.footer-col a{ font-size:14px; color:#C8C8C8; }
.footer-col a:hover{ color:#32CD32; }
.footer-bottom{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; padding-top:20px; }
.footer-bottom span{ font-size:12px; color:#666; }

.reveal{ opacity:0; transform:translateY(12px); transition:opacity .45s ease, transform .45s ease; }
.reveal.in{ opacity:1; transform:none; }

.mobile-menu{
  position:fixed; inset:0; z-index:60; background:#fff;
  display:none; flex-direction:column; padding:20px 24px 40px;
}
.mobile-menu.open{ display:flex; }
.mobile-menu-top{ display:flex; justify-content:space-between; align-items:center; }
.mobile-close{ width:40px; height:40px; border-radius:10px; border:1px solid var(--line); background:transparent; }
.mobile-menu nav{ margin-top:40px; display:flex; flex-direction:column; gap:18px; }
.mobile-menu nav a{ font-size:28px; font-weight:700; letter-spacing:-0.04em; }
.mobile-menu .btn{ margin-top:32px; align-self:flex-start; }
