:root {
  --bg: #0a0e17;
  --text: #e8fbf8;
  --text-dim: rgba(232, 251, 248, .6);
  --accent: #11cad4;
  --accent-strong: #57e9f1;
  --divider: rgba(87, 233, 241, .18);
  --accent-glow: rgba(87, 233, 241, .35);
  --grid-line: rgba(87, 233, 241, .05);
  --nav-text: #57e9f1;
  --bulb-glow-size: 14px;
  --bulb-glow-color: rgba(255, 209, 102, .8);
  --bulb-fill: #ffd166;
  --bulb-stroke: #ffd166;
}

html[data-theme="light"] {
  --bg: #f4fbfa;
  --text: #0a0e17;
  --text-dim: rgba(10, 14, 23, .62);
  --accent: #01bcc8;
  --accent-strong: #01bcc8;
  --divider: rgba(10, 14, 23, .14);
  --accent-glow: rgba(1, 188, 200, .25);
  --grid-line: rgba(1, 188, 200, .06);
  --nav-text: #01bcc8;
  --bulb-glow-size: 0px;
  --bulb-glow-color: transparent;
  --bulb-fill: transparent;
  --bulb-stroke: var(--divider);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  text-wrap: pretty;
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
  transition: background .3s ease, color .3s ease;
}

::selection { background: rgba(87, 233, 241, .35); }

a { color: inherit; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* ---------- background layers ---------- */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 6s linear infinite;
}

#hero-dots-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  clip-path: inset(100px 0 0 0);
}

.constellation-tip {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -130%);
  transition: opacity .2s ease;
  background: var(--bg);
  border: 1px solid var(--divider);
  padding: 8px 12px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  max-width: 280px;
  white-space: normal;
  z-index: 40;
  color: var(--text);
}

.site { position: relative; z-index: 1; }

/* ---------- keyframes ---------- */
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes glowPulse { 0%, 100% { opacity: .55; filter: drop-shadow(0 0 6px currentColor); } 50% { opacity: 1; filter: drop-shadow(0 0 16px currentColor); } }
@keyframes bulbGlowPulse { 0%, 100% { filter: drop-shadow(0 0 6px #ffd166); } 50% { filter: drop-shadow(0 0 16px #ffd166); } }
@keyframes gridDrift { 0% { background-position: 0 0, 0 0; } 100% { background-position: 48px 48px, 48px 48px; } }
@keyframes flick { 0%, 19%, 21%, 23%, 80%, 100% { opacity: 1; } 20%, 22% { opacity: .35; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ropeSway { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }

/* ---------- nav ---------- */
.site-nav {
  background-color: var(--bg);
  border-bottom: 1px solid var(--divider);
  overflow: visible;
  transition: background-color .3s ease;
  position: relative;
  z-index: 30;
}
.nav-inner { overflow: visible; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
.brand-name { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--accent-strong); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; font-family: 'JetBrains Mono', monospace; }
.nav-link {
  position: relative;
  font-weight: 500; font-size: 13px; text-decoration: none; color: var(--nav-text);
}
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--accent-strong); transition: right .25s ease; }
.nav-link:hover::after { right: 0; }

/* ---------- hamburger / mobile nav ---------- */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform .25s ease, opacity .2s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .hamburger { display: flex; }
  .nav-right {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 22px;
    background: var(--bg); border-bottom: 1px solid var(--divider);
    padding: 0 clamp(20px, 5vw, 72px);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, padding .3s ease;
  }
  .nav-right.is-open { max-height: 520px; opacity: 1; padding: 24px clamp(20px, 5vw, 72px) 32px; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 18px !important; width: 100%; }
  .nav-link { font-size: 15px !important; }
  .nav-back { align-self: flex-start; }
  .home-nav-extra { flex-direction: column; align-items: flex-start; gap: 18px; width: 100%; }
}

.btn { border: none; cursor: pointer; border-radius: 2px; white-space: nowrap; font-family: 'JetBrains Mono', monospace; transition: transform .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-solid { background: var(--accent-strong); color: var(--bg); font-weight: 700; padding: 11px 20px; font-size: 12.5px; }
.btn-ghost { background: transparent; color: var(--accent-strong); border: 1px solid var(--accent-strong); padding: 9px 16px; font-size: 12.5px; font-weight: 600; }
.btn.glow { box-shadow: 0 0 18px var(--accent-glow); }
.btn-outline-invert { background: transparent; color: var(--bg); border: 1px solid var(--bg); padding: 14px 24px; font-size: 13.5px; font-weight: 700; }

.nav-back[hidden] { display: none !important; }
.home-nav-extra { display: flex; align-items: center; gap: 18px; }
.home-nav-extra[hidden] { display: none !important; }

/* ---------- lamp toggle ---------- */
.lamp { position: relative; width: 66px; height: 78px; outline: none; cursor: pointer; }
.lamp:focus-visible { box-shadow: 0 0 0 2px var(--accent-glow); border-radius: 6px; }
.lamp-swing {
  position: absolute; inset: 0; transform-origin: top center;
  animation: ropeSway 4.5s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .4));
}
.lamp-cord {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  overflow: visible; height: 18px;
}
.lamp-cord rect { fill: var(--nav-text); }
.lamp-cord line { stroke: var(--bg); }
.lamp-bulb {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  overflow: visible; transition: filter .15s ease; cursor: grab;
}
#lampBeam stop, #lampBeamSoft stop { stop-color: var(--bulb-glow-color); }

.lamp-beam-soft { filter: blur(2px); }
.lamp-beam { filter: blur(1.5px); }

.lamp-glow {
  filter: drop-shadow(0 0 var(--bulb-glow-size) var(--bulb-glow-color));
}
html[data-theme="dark"] .lamp-glow { animation: bulbGlowPulse 2.4s ease-in-out infinite; }
.lamp-glow rect:first-child { fill: var(--nav-text); }
.lamp-bulb-fill { fill: var(--bulb-fill); stroke: var(--bulb-stroke); }
.lamp-glow path:nth-of-type(1) { fill: var(--nav-text); stroke: var(--nav-text); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 72px) 72px; }
.hero-content { position: relative; z-index: 1; }
.status-line { animation: flick 6s infinite; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; letter-spacing: .15em; color: var(--accent); margin-bottom: 20px; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(42px, 6.4vw, 84px); line-height: 1.03; letter-spacing: -0.02em; margin: 0 0 28px; max-width: 17ch; color: var(--text); }
.glow-text { color: var(--accent-strong); animation: glowPulse 3s ease-in-out infinite; display: inline-block; }
.hero-copy { font-size: 18px; line-height: 1.6; max-width: 56ch; color: var(--text-dim); margin: 0 0 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions .btn-solid, .hero-actions .btn-ghost { padding: 15px 28px; font-size: 13.5px; font-weight: 700; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 56px; font-family: 'JetBrains Mono', monospace; }
.stat-num { font-size: 28px; font-weight: 700; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text-dim); }
.hero-orb {
  position: absolute; top: 40px; right: 60px; width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  animation: floatY 7s ease-in-out infinite; pointer-events: none;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- generic block ---------- */
.block { max-width: 1280px; margin: 0 auto; padding: 56px clamp(20px, 5vw, 72px) 64px; border-top: 1px solid var(--divider); }
.eyebrow { display: block; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; color: var(--accent); margin-bottom: 24px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.section-head .eyebrow { margin-bottom: 0; }
.hint-mono { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--text-dim); }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.015em; max-width: 20ch; margin: 0 0 20px; color: var(--text); }
.section-copy { font-size: 17px; line-height: 1.65; max-width: 62ch; margin: 0; color: var(--text-dim); }

/* ---------- grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 32px 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 40px; }

.diff-card { padding-top: 20px; border-top: 1px solid var(--divider); }
.diff-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--text); }
.diff-card p { font-size: 14.5px; line-height: 1.55; margin: 0; color: var(--text-dim); }

/* ---------- services (home strip) ---------- */
.service-row {
  display: grid; grid-template-columns: minmax(64px, 120px) minmax(0, 320px) minmax(0, 1fr);
  gap: 28px clamp(24px, 4vw, 72px); align-items: baseline; padding: 26px 0;
  border-top: 1px solid var(--divider); transition: padding-left .3s ease;
}
.service-row:hover { padding-left: 10px; }
.service-row .num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; margin: 0; color: var(--accent-strong); }
.service-row h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin: 0; color: var(--text); }
.service-row p { font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 56ch; color: var(--text-dim); }

/* ---------- process ---------- */
.process-grid { gap: 0; }
.process-card { border-left: 1px solid var(--divider); padding-left: 24px; padding-right: 28px; }
.process-card .num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 32px; color: var(--accent-strong); margin: 0 0 12px; letter-spacing: -0.01em; }
.process-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--text); }
.process-card p { font-size: 14.5px; line-height: 1.55; margin: 0; color: var(--text-dim); }

/* ---------- work ---------- */
.work-scroller {
  display: flex; gap: 28px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px; margin: 0 -4px; -webkit-overflow-scrolling: touch; cursor: grab; user-select: none;
}
.work-scroller.dragging { scroll-snap-type: none; scroll-behavior: auto; }
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.work-card { flex: 0 0 min(360px, 80vw); scroll-snap-align: start; display: flex; flex-direction: column; gap: 16px; cursor: pointer; transition: transform .35s ease; }
.work-card:hover { transform: translateY(-6px); }
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-img { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid var(--divider); }
.work-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card .category { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; font-weight: 600; letter-spacing: .06em; color: var(--accent-strong); margin-bottom: 6px; }
.work-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 8px; letter-spacing: -0.01em; color: var(--text); }
.work-card .summary { font-size: 15px; line-height: 1.55; margin: 0 0 14px; color: var(--text-dim); }
.work-card .view-cs { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 12.5px; color: var(--accent); letter-spacing: .04em; }

.img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; text-align: center;
  border: 1px dashed var(--divider); color: var(--text-dim); font-family: 'JetBrains Mono', monospace; font-size: 12px;
  padding: 12px; background: color-mix(in srgb, var(--accent) 4%, transparent);
}

/* ---------- marquee ---------- */
.marquee-block { padding: 56px 0 40px; overflow: hidden; }
.marquee-eyebrow { margin: 0 clamp(20px, 5vw, 72px) 24px; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 24s linear infinite; gap: 14px; padding-left: clamp(20px, 5vw, 72px); }
.marquee-track span { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; color: var(--accent-strong); border: 1px solid var(--divider); padding: 8px 16px; border-radius: 2px; white-space: nowrap; }

/* ---------- cta banner ---------- */
.cta-banner {
  position: relative; overflow: hidden; border: 1px solid var(--accent-strong); padding: 40px clamp(24px, 4vw, 56px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 0 30px var(--accent-glow);
}
.cta-banner h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.01em; margin: 0; max-width: 26ch; color: var(--text); }
.cta-banner .btn-solid { padding: 15px 26px; font-size: 13.5px; font-weight: 700; }

/* ---------- testimonials ---------- */
.testimonial blockquote { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 21px; line-height: 1.4; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }
.testimonial figcaption { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-dim); }

/* ---------- team ---------- */
.team-card { display: flex; flex-direction: column; gap: 16px; }
.team-card-img { width: 100%; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--divider); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-img img[src*="team-tajammal"] { object-position: center 20%; }
.team-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; margin: 0 0 4px; letter-spacing: -0.01em; color: var(--text); }
.team-card .role { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 500; letter-spacing: .02em; color: var(--accent-strong); margin: 0; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--divider); padding: 20px 0; }
.faq-item summary {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform .25s ease; color: var(--accent-strong); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { font-size: 15px; line-height: 1.6; margin: 14px 0 0; max-width: 64ch; color: var(--text-dim); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 56px; }
.contact-title { max-width: 14ch; font-size: clamp(28px, 3vw, 38px); }
.contact-links { display: flex; flex-direction: column; gap: 16px; font-size: 15.5px; font-family: 'JetBrains Mono', monospace; }
.contact-links a { color: var(--accent-strong); text-decoration: none; }
.contact-links .dim { color: var(--text-dim); }
#contact-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-dim); }
.field input, .field textarea {
  background: transparent; border: 1px solid var(--divider); color: var(--text); padding: 12px 14px;
  font-size: 14.5px; border-radius: 2px; font-family: 'Space Grotesk', sans-serif;
}
.field textarea { resize: vertical; }
#contact-form .btn-solid { padding: 15px 26px; font-size: 13.5px; font-weight: 700; align-self: flex-start; }
#contact-form .btn-solid:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-success { border-top: 1px solid var(--divider); padding-top: 24px; }
.form-success h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; margin: 0 0 8px; color: var(--text); }
.form-success p { font-size: 15px; color: var(--text-dim); margin: 0; }
.form-error { border-top: 1px solid var(--divider); padding-top: 16px; margin-top: 4px; }
.form-error p { font-size: 14px; color: #e5484d; margin: 0; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .service-row, .detail-stack-row, .detail-cs-grid { grid-template-columns: 1fr !important; }
}

/* ---------- services page ---------- */
.page-head { padding: 48px clamp(20px, 5vw, 72px) 40px; }
.page-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(36px, 5.2vw, 60px); letter-spacing: -0.02em; margin: 0 0 20px; max-width: 18ch; color: var(--text); }
.page-lede { font-size: 18px; line-height: 1.6; max-width: 62ch; margin: 0; color: var(--text-dim); }
.page-foot { padding: 48px clamp(20px, 5vw, 72px) 72px; }

.service-detail { display: grid; grid-template-columns: minmax(64px, 120px) minmax(0, 1fr); gap: 16px clamp(24px, 4vw, 64px); padding: 44px 0; border-top: 1px solid var(--divider); }
.service-detail .num { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; margin: 0; color: var(--accent-strong); }
.service-detail h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; letter-spacing: -0.01em; margin: 0 0 6px; color: var(--text); }
.service-detail .tagline { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 14px; color: var(--accent); margin: 0 0 16px; }
.service-detail .description { font-size: 16px; line-height: 1.65; max-width: 64ch; margin: 0 0 24px; color: var(--text-dim); }
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 10px 24px; }
.cap-grid p { font-size: 14.5px; line-height: 1.5; margin: 0; padding-left: 16px; position: relative; color: var(--text); }
.cap-grid p::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; background: var(--accent-strong); }

/* ---------- detail page ---------- */
.detail-image { width: 100%; aspect-ratio: 21 / 9; border: 1px solid var(--divider); overflow: hidden; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-stack-row { padding: 56px clamp(20px, 5vw, 72px); display: grid; grid-template-columns: minmax(140px, 220px) minmax(0, 1fr); gap: 40px clamp(24px, 4vw, 72px); }
.detail-label { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 600; letter-spacing: .1em; color: var(--text); }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; font-weight: 500; color: var(--accent-strong); border: 1px solid var(--divider); padding: 6px 14px; border-radius: 2px; }
.detail-cs-grid { padding: 56px clamp(20px, 5vw, 72px); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; border-top: 1px solid var(--divider); }
.cs-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }
.cs-copy { font-size: 16px; line-height: 1.65; margin: 0; color: var(--text-dim); }
.detail-impact { padding: 56px clamp(20px, 5vw, 72px) 72px; border-top: 1px solid var(--divider); }
.detail-impact .cs-title { margin-bottom: 24px; }
.impact-card { padding: 20px 0; border-top: 1px solid var(--divider); }
.impact-card p { font-size: 15.5px; line-height: 1.6; margin: 0; color: var(--text); }

/* ---------- bottom cta / footer ---------- */
.bottom-cta { background: var(--accent-strong); color: var(--bg); }
.bottom-cta .container { padding: 64px clamp(20px, 5vw, 72px); }
.bottom-cta h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); letter-spacing: -0.015em; margin: 0 0 28px; max-width: 16ch; }
.site-footer { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: var(--text-dim); padding: 24px clamp(20px, 5vw, 72px); }
