
/* =====================================================================
   DESIGN TOKENS — inherited
   ===================================================================== */
:root {
  --ink-950: #0a0d12;
  --ink-900: #0f1318;
  --ink-850: #131820;
  --ink-800: #181d27;
  --ink-700: #1f2632;
  --ink-600: #2a3242;
  --ink-500: #3c4658;
  --ink-400: #5a677d;
  --ink-300: #8995a8;
  --ink-200: #b6bfcd;
  --ink-100: #dde2ea;
  --ink-50:  #f4f6f9;

  --paper:   #f9f6f0;
  --paper-2: #efe9dc;

  --amber:        #f59e0b;
  --amber-light:  #f58a22;
  --amber-glow:   rgba(245, 158, 11, 0.18);

  --emerald:      #10b981;
  --emerald-light:#34d399;

  --rust:         #f58a22;
  --plum:         #8b5cf6;

  --display: 'Fraunces', Georgia, serif;
  --sans:    'Geist', system-ui, sans-serif;
  --mono:    'JetBrains Mono', 'SF Mono', monospace;

  --tx: cubic-bezier(0.2, 0.6, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-100);
  background: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--amber); color: var(--ink-950); }

/* Announce + nav (same as homepage / hub) */
.announce { background: linear-gradient(90deg, var(--ink-900) 0%, var(--ink-850) 100%); border-bottom: 1px solid var(--ink-700); padding: 9px 32px; font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-200); display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.announce__left { display: flex; align-items: center; gap: 10px; }
.announce__pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--emerald-light); box-shadow: 0 0 8px var(--emerald-light); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.announce__pill { background: var(--amber); color: var(--ink-950); padding: 2px 7px; border-radius: 3px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 10px; margin-right: 4px; }
.announce__right { color: var(--ink-300); }
.announce__right a { color: #f58a22; border-bottom: 1px dotted var(--amber); padding-bottom: 1px; }

.nav { position: sticky; top: 0; z-index: 100; background: rgba(10, 13, 18, 0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(95, 109, 134, 0.18); }
.nav__inner { max-width: 1440px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: baseline; gap: 2px; font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.025em; color: #f58a22; }
.brand__dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; margin-left: 6px; margin-bottom: 6px; }
.nav__menu { display: flex; gap: 4px; align-items: center; margin-left: 12px; list-style: none; padding: 0; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink-200); border-radius: 6px; cursor: pointer; transition: color 0.2s var(--tx), background 0.2s var(--tx); }
.nav__link.is-active { color: #f58a22; background: rgba(245, 158, 11, 0.08); }
.nav__link:hover { color: #f58a22; background: rgba(255,255,255,0.04); }
.nav__chev { width: 10px; height: 10px; opacity: 0.6; }
.nav__cta-wrap { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; background: var(--amber); color: var(--ink-950); font-family: var(--sans); font-size: 14px; font-weight: 600; border-radius: 6px; border: none; cursor: pointer; transition: all 0.2s var(--tx); }
.btn-primary:hover { background: #f58a22; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(245, 158, 11, 0.32); }
.btn-primary svg { width: 14px; height: 14px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: transparent; color: var(--ink-100); border: 1px solid rgba(255,255,255,0.18); border-radius: 6px; font-family: var(--sans); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s var(--tx); }
.btn-secondary:hover { border-color: var(--ink-100); background: rgba(255,255,255,0.04); }
.btn-secondary svg { width: 14px; height: 14px; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section.compact { padding: 64px 0; }

.eyebrow { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--amber); text-transform: uppercase; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--amber); }
.section-h { font-family: var(--display); font-weight: 600; font-size: clamp(36px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -0.025em; margin: 0 0 20px; color: #f58a22; }
.section-h em { font-style: italic; font-weight: 500; color: #f58a22; }
.section-sub { font-size: 17px; line-height: 1.55; color: var(--ink-200); max-width: 720px; margin: 0; }

/* =====================================================================
   SOLUTION HERO — split layout with technical visual
   ===================================================================== */
.shero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
    var(--ink-950);
  padding: 12px 0 22px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--ink-800);
}
.shero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 109, 134, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 109, 134, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.shero__crumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-400); text-transform: uppercase; margin-bottom: 32px; display: flex; align-items: center; gap: 8px; }
.shero__crumb a { color: var(--ink-300); transition: color 0.2s var(--tx); }
.shero__crumb a:hover { color: #f58a22; }
.shero__crumb span { color: var(--ink-500); }

.shero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; align-items: center; position: relative; z-index: 1; }

.shero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--ink-600);
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.06);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--emerald-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.shero__chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

.shero__h1 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  font-size: clamp(44px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 10px;
  color: #f58a22;
}
.shero__h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, var(--amber) 0%, #f58a22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shero__lede { font-size: 19px; line-height: 1.5; color: var(--ink-200); max-width: 580px; margin: 0 0 14px; }
.shero__lede strong { color: #f58a22; font-weight: 600; }

.shero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.shero__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ink-700); padding-top: 12px; max-width: 600px; }
.shero__kpi { padding-right: 24px; }
.shero__kpi:not(:first-child) { border-left: 1px solid var(--ink-700); padding-left: 24px; }
.shero__kpi__num { font-family: var(--display); font-weight: 600; font-size: 30px; color: #f58a22; letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
.shero__kpi__num span { color: var(--amber); font-size: 0.65em; }
.shero__kpi__lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-400); text-transform: uppercase; line-height: 1.4; }

/* Technical hero visual — bounding-box detection schematic */
.shero__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  justify-self: center;
  width: 100%;
}
.hv-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  background: var(--ink-900);
  padding: 22px;
  overflow: hidden;
}
.hv-frame::before, .hv-frame::after { content: ""; position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--amber); }
.hv-frame::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.hv-frame::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }
.hv-corner-tr, .hv-corner-bl { position: absolute; width: 16px; height: 16px; border: 1.5px solid var(--amber); }
.hv-corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.hv-corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.hv-tag { position: absolute; top: 22px; left: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--ink-300); text-transform: uppercase; }
.hv-tag-r { position: absolute; top: 22px; right: 22px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--emerald-light); text-transform: uppercase; }
.hv-canvas { position: relative; width: 100%; height: 100%; padding: 36px 18px 18px; }
.hv-canvas svg { width: 100%; height: 100%; }

/* =====================================================================
   ON-PAGE NAV — sticky toc bar
   ===================================================================== */
.toc {
  position: sticky;
  top: 73px;
  z-index: 90;
  background: rgba(15, 19, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-800);
}
.toc__inner { max-width: 1440px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 4px; height: 56px; overflow-x: auto; }
.toc__inner::-webkit-scrollbar { display: none; }
.toc__inner { scrollbar-width: none; }
.toc__label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-400); text-transform: uppercase; padding-right: 18px; border-right: 1px solid var(--ink-700); margin-right: 12px; flex-shrink: 0; }
.toc__link { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--ink-300); text-transform: uppercase; padding: 6px 12px; border-radius: 4px; transition: all 0.2s var(--tx); flex-shrink: 0; }
.toc__link:hover { color: #f58a22; background: rgba(245, 158, 11, 0.06); }

/* =====================================================================
   WHAT IS IT — overview block
   ===================================================================== */
.whatis {
  background: #ffffff;
  color: var(--ink-900);
  border-bottom: 1px solid rgba(15, 19, 24, 0.10);
  padding: 80px 0 88px;
}
.whatis .eyebrow { color: var(--ink-500); }
.whatis .eyebrow::before { background: #f58a22; }
.whatis .section-h { color: var(--ink-900); }
.whatis .section-h em { color: #f58a22; }
.whatis .section-sub { color: var(--ink-600); }
.whatis__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.whatis__lede { font-family: var(--display); font-weight: 500; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.45; letter-spacing: -0.005em; color: var(--ink-900); }
.whatis__lede em { font-style: italic; color: #f58a22; font-weight: 500; }
.whatis__points { display: flex; flex-direction: column; gap: 22px; }
.whatis__point { display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: start; }
.whatis__point__num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-500); text-transform: uppercase; padding-top: 4px; font-weight: 600; }
.whatis__point__title { font-family: var(--display); font-weight: 600; font-size: 19px; letter-spacing: -0.015em; color: var(--ink-900); margin: 0 0 6px; line-height: 1.2; }
.whatis__point__desc { font-size: 14px; line-height: 1.55; color: var(--ink-600); margin: 0; }

/* =====================================================================
   HOW WE DO IT — capability accordion
   ===================================================================== */
.howwedoit {
  background: var(--ink-900);
  border-bottom: 1px solid var(--ink-800);
}
.howwedoit__head { margin-bottom: 56px; }

.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cap-block {
  background: var(--ink-850);
  border: 1px solid var(--ink-700);
  border-radius: 14px;
  padding: 32px 30px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--tx);
}
.cap-block:hover { border-color: var(--ink-500); }
.cap-block__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cap-block__icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(217, 119, 87, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: grid; place-items: center;
  color: var(--amber);
  flex-shrink: 0;
}
.cap-block__icon svg { width: 20px; height: 20px; }
.cap-block__num { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--ink-400); text-transform: uppercase; font-weight: 600; }
.cap-block__title { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.015em; color: #f58a22; line-height: 1.2; margin: 0 0 12px; }
.cap-block__desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-200); margin: 0 0 18px; }
.cap-block__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-600);
}
.cap-block__chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--ink-100);
  background: var(--ink-800);
  border: 1px solid var(--ink-600);
  padding: 4px 9px;
  border-radius: 3px;
}

/* =====================================================================
   USE CASES — applications table
   ===================================================================== */
.usecases { background: #ffffff; color: var(--ink-900); border-bottom: 1px solid rgba(15, 19, 24, 0.10); }
.usecases .eyebrow { color: #f58a22; }
.usecases .eyebrow::before { background: #f58a22; }
.usecases .section-h { color: var(--ink-900); }
.usecases .section-h em { color: #f58a22; }
.usecases .section-sub { color: var(--ink-600); }

.uc-table { margin-top: 56px; border-top: 1px solid var(--ink-300); }
.uc-row {
  display: grid;
  grid-template-columns: 200px 1fr 220px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-300);
  align-items: start;
}
.uc-row__cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #f58a22;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 6px;
}
.uc-row__title { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -0.015em; color: var(--ink-900); line-height: 1.25; margin: 0 0 8px; }
.uc-row__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-600); margin: 0; }
.uc-row__shipped {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  padding-top: 6px;
  text-align: right;
}
.uc-row__shipped strong { color: #f58a22; font-weight: 600; }
.uc-row__shipped span { display: block; font-size: 10px; letter-spacing: 0.1em; color: var(--ink-500); text-transform: uppercase; margin-top: 2px; }

/* =====================================================================
   TECH STACK — technical detail grid
   ===================================================================== */
.stack {
  background: var(--ink-950);
  border-bottom: 1px solid var(--ink-800);
}
.stack__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; }
.stack__col {
  background: var(--ink-900);
  border: 1px solid var(--ink-700);
  border-radius: 12px;
  padding: 28px 26px;
}
.stack__col__head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--ink-600);
}
.stack__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.stack__col li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-100);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.stack__col li::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-2px);
}
.stack__col li strong { color: #f58a22; font-weight: 600; }
.stack__col li span { color: var(--ink-400); font-size: 12.5px; }

/* =====================================================================
   CASE STUDIES (3 attached to CV specifically)
   ===================================================================== */
.cases { background: #ffffff; border-bottom: 1px solid rgba(15, 19, 24, 0.10); }
.cases .eyebrow { color: var(--ink-500); }
.cases .eyebrow::before { background: #f58a22; }
.cases .section-h { color: var(--ink-900); }
.cases .section-h em { color: #f58a22; }
.cases .section-sub { color: var(--ink-600); }
.cases .cases__head__link { color: var(--ink-600); border-bottom-color: rgba(15, 19, 24, 0.22); }
.cases .cases__head__link:hover { color: var(--ink-900); border-bottom-color: #f58a22; }
.cases__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.cases__head__link { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: #f58a22; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--amber); padding-bottom: 4px; transition: color 0.2s var(--tx); }
.cases__head__link:hover { color: var(--amber); }
.cases__head__link svg { width: 14px; height: 14px; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card { display: flex; flex-direction: column; background: var(--ink-850); border: 1px solid var(--ink-700); border-radius: 12px; overflow: hidden; transition: all 0.3s var(--tx); }
.case-card:hover { border-color: var(--ink-500); transform: translateY(-3px); }
.case-card__hero { height: 200px; background: var(--ink-800); position: relative; overflow: hidden; border-bottom: 1px solid var(--ink-700); }
.case-card__hero--drishti {
  background:
    radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(245, 158, 11, 0.10) 0%, transparent 45%),
    var(--ink-850);
}
.case-card__hero--wdd {
  background:
    radial-gradient(circle at 60% 40%, rgba(245, 158, 11, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 25% 70%, rgba(217, 119, 87, 0.10) 0%, transparent 45%),
    var(--ink-850);
}
.case-card__hero--garbha {
  background:
    radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.20) 0%, transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.10) 0%, transparent 45%),
    var(--ink-850);
}
.case-card__hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 109, 134, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 109, 134, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.case-card__hero__brand { position: absolute; bottom: 16px; left: 20px; font-family: var(--display); font-size: 38px; font-weight: 600; letter-spacing: -0.025em; color: #f58a22; line-height: 1; }
.case-card__hero__sub { position: absolute; top: 16px; right: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: #f58a22; text-transform: uppercase; background: rgba(10, 13, 18, 0.7); padding: 5px 10px; border-radius: 3px; border: 1px solid var(--ink-700); }
.case-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-card__cap { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-400); text-transform: uppercase; }
.case-card__title { font-family: var(--display); font-size: 21px; font-weight: 600; letter-spacing: -0.015em; color: #f58a22; line-height: 1.2; margin: 0; }
.case-card__desc { font-size: 14px; line-height: 1.55; color: var(--ink-300); margin: 0; }
.case-card__metrics { display: flex; gap: 18px; margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--ink-700); }
.case-card__metric__num { font-family: var(--display); font-weight: 600; font-size: 22px; color: #f58a22; letter-spacing: -0.02em; line-height: 1; margin-bottom: 4px; }
.case-card__metric__lbl { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; color: var(--ink-400); text-transform: uppercase; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--ink-950); border-bottom: 1px solid var(--ink-800); }
.faq__inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 4px; }
.faq__item { border-bottom: 1px solid var(--ink-700); }
.faq__item:first-child { border-top: 1px solid var(--ink-700); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px 0; background: transparent; border: none; cursor: pointer; font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; color: #f58a22; text-align: left; transition: color 0.2s var(--tx); }
.faq__q:hover { color: #f58a22; }
.faq__q__plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; margin-left: 24px; border: 1px solid var(--ink-500); border-radius: 50%; transition: all 0.25s var(--tx); }
.faq__q__plus::before, .faq__q__plus::after { content: ""; position: absolute; background: var(--ink-200); }
.faq__q__plus::before { top: 50%; left: 5px; right: 5px; height: 1px; transform: translateY(-50%); }
.faq__q__plus::after { top: 5px; bottom: 5px; left: 50%; width: 1px; transform: translateX(-50%); transition: transform 0.3s var(--tx); }
.faq__item.is-open .faq__q__plus { border-color: var(--amber); }
.faq__item.is-open .faq__q__plus::before, .faq__item.is-open .faq__q__plus::after { background: var(--amber); }
.faq__item.is-open .faq__q__plus::after { transform: translateX(-50%) rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--tx); }
.faq__item.is-open .faq__a { max-height: 500px; }
.faq__a__inner { padding: 0 0 28px; font-size: 15px; line-height: 1.65; color: var(--ink-200); max-width: 720px; }
.faq__a__inner p { margin: 0 0 12px; }
.faq__a__inner p:last-child { margin: 0; }

/* =====================================================================
   CLOSING CTA
   ===================================================================== */
/* Centering removed — site-wide CTA policy is left-aligned (defended by
   .cta-final.cta-final { text-align:left } in public/styles.css). The
   /solutions index page legitimately centers via
   body.solutions-page .solutions-content .cta-final* in styles.css. */
.cta-final { background: #ffffff; color: var(--ink-900); padding: 96px 0; border-bottom: 1px solid rgba(15, 19, 24, 0.10); }
.cta-final__h { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 4.4vw, 52px); line-height: 1.08; letter-spacing: -0.02em; color: var(--ink-900); margin: 0 0 18px; max-width: 880px; }
.cta-final__h em { font-style: italic; font-weight: 500; color: #f58a22; }
.cta-final__sub { font-size: 17px; color: var(--ink-600); max-width: 640px; margin: 0 0 40px; line-height: 1.5; }
.cta-final__row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-primary--paper { background: var(--ink-900); color: var(--paper); }
.btn-primary--paper:hover { background: var(--ink-800); box-shadow: 0 12px 30px rgba(15, 19, 24, 0.25); }
.cta-final__note { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-500); }

/* Footer */
footer { background: var(--ink-950); padding: 72px 0 40px; border-top: 1px solid var(--ink-800); }
.foot__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.foot__brand p { margin-top: 18px; font-size: 14px; line-height: 1.55; color: var(--ink-300); max-width: 280px; }
.foot__col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--amber); text-transform: uppercase; margin: 0 0 18px; font-weight: 600; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 13.5px; color: var(--ink-200); transition: color 0.2s var(--tx); }
.foot__col a:hover { color: #f58a22; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--ink-800); font-family: var(--mono); font-size: 11.5px; color: var(--ink-400); letter-spacing: 0.04em; }
.foot__social { display: flex; gap: 12px; }
.foot__social a { width: 32px; height: 32px; border-radius: 6px; display: grid; place-items: center; border: 1px solid var(--ink-700); color: var(--ink-300); transition: all 0.2s var(--tx); }
.foot__social a:hover { border-color: var(--amber); color: var(--amber); }
.foot__social svg { width: 16px; height: 16px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .shero__inner { grid-template-columns: 1fr; gap: 22px; }
  .shero__visual { max-width: 480px; }
  .whatis__grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-grid { grid-template-columns: 1fr; }
  .uc-row { grid-template-columns: 160px 1fr; }
  .uc-row__shipped { grid-column: 2; text-align: left; padding-top: 0; }
  .stack__grid { grid-template-columns: 1fr; }
  .cases__grid { grid-template-columns: 1fr 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .foot__top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__menu { display: none; }
  section { padding: 64px 0; }
  .uc-row { grid-template-columns: 1fr; gap: 8px; }
  .uc-row__shipped { grid-column: 1; }
  .cases__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .shero__kpis { grid-template-columns: 1fr; gap: 16px; }
  .shero__kpi { padding: 0; border: none !important; padding-bottom: 14px; border-bottom: 1px solid var(--ink-700) !important; }
  .announce__right { display: none; }
}
