*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #222222;
  --bg2:        #282828;
  --bg3:        #2e2e2e;
  --white:      #eceae5;
  --mid:        rgba(236,234,229,0.52);
  --dim:        rgba(236,234,229,0.2);
  --border:     rgba(236,234,229,0.09);
  --border2:    rgba(236,234,229,0.2);
  --nav-bg:     rgba(34,34,34,0.96);
  --scan-color: rgba(236,234,229,0.04);
  --cta-ghost:  rgba(236,234,229,0.03);
  --sans:       'Inter', sans-serif;
  --mono:       'DM Mono', monospace;
}

html.light {
  --bg:         #eceae5;
  --bg2:        #e4e2dd;
  --bg3:        #dddbd6;
  --white:      #222222;
  --mid:        rgba(34,34,34,0.55);
  --dim:        rgba(34,34,34,0.38);
  --border:     rgba(34,34,34,0.1);
  --border2:    rgba(34,34,34,0.28);
  --nav-bg:     rgba(236,234,229,0.96);
  --scan-color: rgba(34,34,34,0.04);
  --cta-ghost:  rgba(34,34,34,0.03);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ── */
.cur {
  position: fixed;
  width: 2px; height: 18px;
  background: #eceae5;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translateY(-50%);
  animation: blink 1.1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  text-decoration: none;
}
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 0; height: 100%; }
.nav-status {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
  padding: 0 20px;
  border-right: 1px solid var(--border);
  height: 100%;
}
.sdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5adf8a;
  animation: pd 2.5s ease infinite;
}
@keyframes pd { 0%,100%{opacity:1} 50%{opacity:0.2} }
.nav-cta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 0 28px;
  height: 100%;
  cursor: none;
  font-weight: 500;
  transition: opacity 0.2s;
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 52px;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 56px;
  border-bottom: 1px solid var(--border);
}
.hero-inner::before, .hero-inner::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--border2);
  border-style: solid;
}
.hero-inner::before { top: 32px; left: 32px; border-width: 1px 0 0 1px; }
.hero-inner::after  { bottom: 48px; right: 32px; border-width: 0 1px 1px 0; }

.boot-seq {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.boot-line {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--dim);
  line-height: 2.2;
  opacity: 0;
  transition: opacity 0.35s;
}
.boot-line.on { opacity: 1; }

.hero-hl {
  font-family: var(--sans);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -4px;
  color: var(--white);
  margin-bottom: 40px;
}
.hero-hl .dim-line {
  color: var(--mid);
  font-weight: 300;
  display: block;
}

.hero-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  letter-spacing: -0.1px;
  margin-bottom: 48px;
}

.hero-btn {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  cursor: none;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.hero-btn:hover { opacity: 0.85; }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}

.hero-coord-tr {
  position: absolute;
  top: 32px; right: 40px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--dim);
  text-align: right;
  line-height: 1.8;
}
.hero-coord-bl {
  position: absolute;
  bottom: 48px; left: 40px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--dim);
  line-height: 1.8;
}

/* metadata strip */
.hero-meta {
  display: flex;
  align-items: stretch;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  height: 44px;
}
.hm-cell {
  flex: 1;
  padding: 0 28px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.hm-cell:last-child { border-right: none; }
.hm-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
}
.hm-div { width: 1px; height: 10px; background: var(--border2); }
.hm-val {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.5px;
}

/* ── TICKER ── */
.ticker {
  height: 32px;
  overflow: hidden;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
}
.ticker-track {
  display: flex;
  animation: tick 32s linear infinite;
  width: max-content;
}
.ti {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0 28px;
  white-space: nowrap;
}
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION LABEL ── */
.sec-label {
  display: flex; align-items: center; gap: 14px;
  height: 36px;
  padding: 0 56px;
  border-bottom: 1px solid var(--border);
}
.sl-num {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--dim);
}
.sl-sep { width: 1px; height: 12px; background: var(--border2); }
.sl-title {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 96px 56px;
  border-bottom: 1px solid var(--border);
}
.manifesto p {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
  max-width: 800px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.ms {
  padding-right: 48px;
  border-right: 1px solid var(--border);
  margin-right: 48px;
}
.ms:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.ms-n {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 10px;
}
.ms-l {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.8;
}

/* ── PROBLEM ROWS ── */
.prob-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr;
  min-height: 152px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
  cursor: none;
  overflow: hidden;
}
.prob-row:last-child { border-bottom: none; }
.prob-row::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0; height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}
.prob-row:hover::before { transform: scaleX(1); }
.prob-row:hover { background: var(--bg2); }
.p-num {
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
}
.p-title {
  padding: 44px 52px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center;
}
.p-title h3 {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.p-body {
  padding: 44px 52px;
  display: flex; align-items: center;
}
.p-body p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 400;
  max-width: 380px;
  letter-spacing: -0.1px;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--border);
}
.proc-step {
  padding: 60px 52px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--bg2); }
.proc-idx {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
  margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between;
  text-transform: uppercase;
}
.proc-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
}
.proc-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* ── SERVICES ── */
.svc-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  height: 76px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  text-decoration: none;
}
.svc-row:last-child { border-bottom: none; }
.svc-row:hover { background: var(--bg2); }
.svc-scan {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--scan-color) 0%, transparent 55%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.svc-row:hover .svc-scan { transform: translateX(0); }
.s-num {
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  height: 100%;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
  position: relative; z-index: 1;
}
.s-name {
  padding: 0 48px;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.3px;
  position: relative; z-index: 1;
}
.s-arrow {
  padding: 0 40px;
  font-size: 16px;
  color: var(--mid);
  position: relative; z-index: 1;
  transition: transform 0.3s, color 0.3s;
}
.svc-row:hover .s-arrow { transform: translate(3px,-3px); color: var(--white); }

/* ── WHY ── */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.why-left {
  padding: 80px 56px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 52px;
  align-self: start;
}
.why-hl {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}
.why-sub {
  font-size: 13px;
  color: var(--mid);
  font-weight: 400;
  line-height: 1.8;
  max-width: 260px;
  letter-spacing: -0.1px;
}
.why-pt {
  padding: 36px 56px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-pt:last-child { border-bottom: none; }
.why-pt:hover { background: var(--bg2); }
.w-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.w-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* ── CTA ── */
.cta-sec {
  padding: 112px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-bg-txt {
  position: absolute;
  right: -30px; bottom: -10px;
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 700;
  color: var(--cta-ghost);
  letter-spacing: -5px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.cta-lbl {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 14px;
}
.cta-lbl::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--border2);
}
.cta-hl {
  font-size: clamp(52px, 8.5vw, 120px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 56px;
  position: relative; z-index: 1;
}
.cta-hl .light {
  font-weight: 300;
  color: var(--mid);
}
.cta-actions {
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
}
.cta-btn {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 14px 32px;
  cursor: none;
  font-weight: 500;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover { opacity: 0.85; }
.cta-btn-o {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  color: var(--mid);
  border: 1px solid var(--border2);
  padding: 14px 32px;
  cursor: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-btn-o:hover { color: var(--bg); background: var(--white); border-color: var(--white); }

/* ── FOOTER ── */
footer {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  border-top: 1px solid var(--border);
}
.f-logo {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 300;
  text-decoration: none;
}
.f-copy {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
  text-transform: uppercase;
}
.f-links { display: flex; gap: 28px; list-style: none; }
.f-links a {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.f-links a:hover { color: var(--white); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding-top: 52px;
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  padding: 80px 56px 72px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-header-inner::before, .page-header-inner::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--border2);
  border-style: solid;
}
.page-header-inner::before { top: 32px; left: 32px; border-width: 1px 0 0 1px; }
.page-header-inner::after  { bottom: 32px; right: 32px; border-width: 0 1px 1px 0; }
.page-eyebrow {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--border2);
}
.page-hl {
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
}
.page-hl .light {
  font-weight: 300;
  color: var(--mid);
}
.page-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  max-width: 480px;
  letter-spacing: -0.1px;
}
.page-meta {
  display: flex;
  align-items: stretch;
  background: var(--bg2);
  height: 44px;
}
.page-meta .hm-cell:first-child { padding-left: 56px; }

/* ── CONTENT BLOCKS ── */
.content-section {
  padding: 80px 56px;
  border-bottom: 1px solid var(--border);
}
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.content-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  letter-spacing: -0.1px;
}
.content-body p + p { margin-top: 20px; }
.content-body strong { color: var(--white); font-weight: 600; }
.content-hl {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
}

/* service detail cards */
.svc-detail {
  border-bottom: 1px solid var(--border);
}
.svc-detail-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  height: 88px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.svc-detail-num {
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  height: 100%;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--dim);
}
.svc-detail-title {
  padding: 0 48px;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.5px;
}
.svc-detail-tag {
  padding: 0 40px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
}
.svc-detail-body {
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.svc-detail-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  letter-spacing: -0.1px;
}
.svc-detail-desc p + p { margin-top: 16px; }
.svc-includes {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-includes-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 20px;
}
.svc-inc-item {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--mid);
  letter-spacing: -0.1px;
  display: flex; align-items: center; gap: 12px;
}
.svc-inc-item::before {
  content: '—';
  color: var(--dim);
  font-family: var(--mono);
  font-size: 10px;
  flex-shrink: 0;
}

/* contact form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.contact-left {
  padding: 80px 56px;
  border-right: 1px solid var(--border);
}
.contact-right {
  padding: 80px 56px;
}
.form-group {
  margin-bottom: 28px;
}
.form-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.1px;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--dim); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--border2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(236,234,229,0.2)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-select option { background: var(--bg2); }
.form-submit {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--bg);
  border: none;
  padding: 14px 36px;
  cursor: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.85; }
.form-submit:disabled { opacity: 0.4; cursor: not-allowed; }
.form-success {
  display: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #5adf8a;
  text-transform: uppercase;
  margin-top: 20px;
}
.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.contact-info-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* about */
.about-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.about-bio-left {
  padding: 80px 56px;
  border-right: 1px solid var(--border);
}
.about-bio-right {
  padding: 80px 56px;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}
.about-val {
  padding: 52px 56px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.about-val:nth-child(2n) { border-right: none; }
.about-val:nth-last-child(-n+2) { border-bottom: none; }
.about-val:hover { background: var(--bg2); }
.about-val-num {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--dim);
  margin-bottom: 24px;
}
.about-val-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.about-val-body {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  letter-spacing: -0.1px;
}

/* ── AI CHAT BOT ── */
.chat-bubble {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-toggle {
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--bg);
  border: none;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s;
  position: relative;
}
.chat-toggle:hover { opacity: 0.85; }
.chat-toggle svg { width: 20px; height: 20px; }
.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 10px; height: 10px;
  background: #5adf8a;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pd 2.5s ease infinite;
}
.chat-window {
  width: 340px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  max-height: 500px;
}
.chat-window.open { display: flex; }
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg3);
  flex-shrink: 0;
}
.chat-header-left { display: flex; align-items: center; gap: 10px; }
.chat-header-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5adf8a;
  animation: pd 2.5s ease infinite;
}
.chat-header-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.chat-header-sub {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--dim);
  text-transform: uppercase;
  margin-top: 2px;
}
.chat-close {
  background: none; border: none;
  color: var(--mid); cursor: none;
  font-size: 16px; line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.chat-close:hover { color: var(--white); }
.chat-messages {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 85%;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg-label {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
}
.chat-msg.user .chat-msg-label { text-align: right; }
.chat-msg-body {
  font-size: 12px;
  line-height: 1.7;
  padding: 10px 14px;
  letter-spacing: -0.1px;
}
.chat-msg.bot .chat-msg-body {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  font-weight: 400;
}
.chat-msg.user .chat-msg-body {
  background: var(--white);
  color: var(--bg);
  font-weight: 500;
}
.chat-typing {
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--border);
  align-self: flex-start;
  margin: 0 20px 12px;
  display: none;
  flex-shrink: 0;
}
.chat-typing.visible { display: flex; }
.chat-typing span {
  width: 4px; height: 4px;
  background: var(--mid);
  border-radius: 50%;
  animation: typing 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100%{opacity:0.2; transform:translateY(0)} 50%{opacity:1; transform:translateY(-3px)} }
.chat-input-wrap {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
  background: var(--bg3);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  padding: 9px 14px;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: -0.1px;
}
.chat-input::placeholder { color: var(--dim); }
.chat-input:focus { border-color: var(--border2); }
.chat-send {
  background: var(--white);
  color: var(--bg);
  border: none;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.chat-send:hover { opacity: 0.85; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cur { display: none; }

  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-status { display: none; }
  .nav-cta { padding: 0 20px; font-size: 8px; }

  .hero-inner { padding: 60px 24px; }
  .hero-hl { font-size: clamp(52px, 14vw, 80px); letter-spacing: -2px; }
  .hero-coord-tr, .hero-coord-bl { display: none; }
  .hero-meta { flex-direction: column; height: auto; }
  .hm-cell { border-right: none; border-bottom: 1px solid var(--border); height: 44px; padding: 0 24px; }
  .hm-cell:last-child { border-bottom: none; }

  .manifesto { padding: 60px 24px; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 40px; }
  .ms { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .ms:last-child { border-bottom: none; padding-bottom: 0; }

  .prob-row { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; }
  .p-title { grid-column: 2; padding: 32px 24px 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .p-body { grid-column: 1 / -1; padding: 20px 24px 32px; }
  .p-num { border-right: 1px solid var(--border); }

  .process-grid { grid-template-columns: 1fr; }
  .proc-step { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
  .proc-step:last-child { border-bottom: none; }

  .svc-row { grid-template-columns: 40px 1fr auto; }
  .s-name { padding: 0 20px; }
  .s-arrow { padding: 0 20px; }

  .why-wrap { grid-template-columns: 1fr; }
  .why-left { position: static; border-right: none; border-bottom: 1px solid var(--border); padding: 60px 24px; }
  .why-pt { padding: 28px 24px; }

  .cta-sec { padding: 72px 24px; }

  footer { flex-direction: column; height: auto; padding: 24px; gap: 16px; text-align: center; }
  .f-links { justify-content: center; }

  .sec-label { padding: 0 24px; }

  .page-header-inner { padding: 60px 24px; }
  .content-section { padding: 60px 24px; }
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }

  .svc-detail-header { grid-template-columns: 40px 1fr; }
  .svc-detail-tag { display: none; }
  .svc-detail-body { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 24px; }
  .contact-right { padding: 60px 24px; }

  .about-bio { grid-template-columns: 1fr; }
  .about-bio-left { border-right: none; border-bottom: 1px solid var(--border); padding: 60px 24px; }
  .about-bio-right { padding: 60px 24px; }
  .about-values { grid-template-columns: 1fr; }
  .about-val { border-right: none; }
  .about-val:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about-val:last-child { border-bottom: none; }

  .page-meta { display: none; }
  .chat-bubble { bottom: 20px; right: 20px; }
  .chat-window { width: calc(100vw - 40px); }
}

/* ── LIGHT MODE form-select arrow override ── */
html.light .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(34,34,34,0.35)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}
