/* ============================================================
   CINEMATIC WIDGETS — site-wide reusable surfaces
   Shared by AI Solutions, Industries, Products, Company pages.
   Designed for dark navy ground (#000713 → #001233).
   ============================================================ */

/* Section base */
.cw-section {
  position: relative;
  padding: 96px 32px;
  background: #000713;
  color: #EAF2FF;
  overflow: hidden;
  isolation: isolate;
}
.cw-section.cw-light { background: #FFFFFF; color: #001233; }
.cw-section + .cw-section { border-top: 1px solid rgba(255,255,255,0.06); }
.cw-section.cw-light + .cw-section.cw-light { border-top-color: #E2E8F0; }

.cw-container { max-width: 1320px; margin: 0 auto; }

.cw-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #5EFFA4;
  padding: 6px 12px;
  border: 1px solid rgba(94,255,164,0.35);
  background: rgba(94,255,164,0.06);
}
.cw-eyebrow.amber { color: #FFB020; border-color: rgba(255,176,32,0.35); background: rgba(255,176,32,0.06); }
.cw-eyebrow.cyan { color: #4FC8FF; border-color: rgba(79,200,255,0.35); background: rgba(79,200,255,0.06); }

.cw-h2 {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin: 18px 0 18px;
  max-width: 980px;
  text-wrap: balance;
}
.cw-section.cw-light .cw-h2 { color: #001233; }
.cw-h2 .ac { color: #4FC8FF; font-style: italic; font-weight: 400; }
.cw-section.cw-light .cw-h2 .ac { color: #0055FF; }

.cw-sub {
  font-size: 18px; line-height: 1.55;
  color: rgba(234,242,255,0.66);
  max-width: 760px;
  margin: 0 0 48px;
}
.cw-section.cw-light .cw-sub { color: #4A5878; }

/* ============================================================
   1 · ROI CALCULATOR — drag a slider, watch headcount → AI savings
   ============================================================ */
.cw-roi {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, #001A3D 0%, #000A1F 100%);
  border: 1px solid rgba(79,200,255,0.18);
  position: relative;
  overflow: hidden;
}
.cw-roi::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(0,85,255,0.22), transparent 70%),
    radial-gradient(50% 50% at 20% 80%, rgba(94,255,164,0.10), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) { .cw-roi { grid-template-columns: 1fr; } }

.cw-roi-inputs { padding: 48px 44px; border-right: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1; }
.cw-roi-outputs {
  padding: 36px 32px;
  position: relative;
  z-index: 1;
  background: rgba(0,5,18,0.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  align-content: center;
}
.cw-roi-outputs .cw-output-card.hero { grid-column: span 2; }
@media (max-width: 880px) { .cw-roi-outputs { grid-template-columns: 1fr; } .cw-roi-outputs .cw-output-card.hero { grid-column: span 1; } }
@media (max-width: 880px) { .cw-roi-inputs { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); } }

.cw-roi-title {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4FC8FF;
  margin-bottom: 8px;
}
.cw-roi-h {
  font-size: 28px; line-height: 1.18; font-weight: 500;
  color: #FFFFFF; margin: 0 0 32px; letter-spacing: -0.015em;
}

.cw-input-row { margin-bottom: 32px; }
.cw-input-row:last-child { margin-bottom: 0; }
.cw-input-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.cw-input-label .lbl { font-size: 13px; color: rgba(234,242,255,0.7); letter-spacing: 0.02em; }
.cw-input-label .val {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 22px; font-weight: 600; color: #FFFFFF;
  letter-spacing: -0.01em;
}
.cw-input-label .val em { color: #5EFFA4; font-style: normal; font-size: 0.7em; margin-left: 2px; }

.cw-slider {
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 4px;
  background: linear-gradient(to right, #0055FF var(--pct, 50%), rgba(255,255,255,0.10) var(--pct, 50%));
  outline: none; border-radius: 0; cursor: pointer;
}
.cw-slider::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  background: #FFFFFF;
  border: 2px solid #0055FF;
  cursor: grab;
  box-shadow: 0 0 18px rgba(0,85,255,0.6);
  border-radius: 50%;
  transition: transform 160ms cubic-bezier(.2,.8,.2,1);
}
.cw-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.cw-slider::-moz-range-thumb {
  width: 18px; height: 18px;
  background: #FFFFFF;
  border: 2px solid #0055FF;
  cursor: grab;
  box-shadow: 0 0 18px rgba(0,85,255,0.6);
  border-radius: 50%;
}

.cw-output-card {
  border: 1px solid rgba(255,255,255,0.10);
  padding: 20px 22px;
  margin-bottom: 0;
  background: rgba(255,255,255,0.02);
  position: relative;
}
.cw-output-card.hero {
  border-color: rgba(94,255,164,0.35);
  background: linear-gradient(135deg, rgba(94,255,164,0.10), rgba(94,255,164,0.02));
  padding: 26px 26px 22px;
}
.cw-output-card .lbl {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(234,242,255,0.55);
  margin-bottom: 8px;
}
.cw-output-card .v {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 44px; font-weight: 400; line-height: 1;
  letter-spacing: -0.025em; color: #FFFFFF;
  display: flex; align-items: baseline; gap: 4px;
}
.cw-output-card .v em { font-style: normal; font-size: 0.45em; color: rgba(234,242,255,0.55); margin-left: 4px; }
.cw-output-card.hero .v { color: #5EFFA4; font-size: 60px; }
.cw-output-card .delta {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; font-weight: 600; color: #5EFFA4;
  margin-top: 6px;
}

.cw-roi-foot {
  margin-top: 20px;
  font-size: 12px; color: rgba(234,242,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   2 · LIVE AI WORKER SIM — AI employee doing tasks in real time
   ============================================================ */
.cw-sim {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #00091B;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .cw-sim { grid-template-columns: 1fr; min-height: auto; } }

.cw-sim-roster {
  background: linear-gradient(180deg, #00132E 0%, #00091B 100%);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
@media (max-width: 880px) { .cw-sim-roster { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 0;  } }

.cw-sim-roster-head {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(234,242,255,0.5);
  padding: 0 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.cw-worker {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px; align-items: center;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 200ms;
  border-left: 2px solid transparent;
}
.cw-worker:hover { background: rgba(255,255,255,0.03); }
.cw-worker.active { background: rgba(0,85,255,0.10); border-left-color: #4FC8FF; }
.cw-worker-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #0055FF, #4FC8FF);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 12px; font-weight: 600; color: #FFFFFF;
  position: relative;
}
.cw-worker-avatar::after {
  content: ''; position: absolute; bottom: -1px; right: -1px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #5EFFA4; border: 2px solid #00091B;
  box-shadow: 0 0 8px rgba(94,255,164,0.6);
}
.cw-worker-name { font-size: 13px; color: #EAF2FF; font-weight: 500; line-height: 1.2; }
.cw-worker-role {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.06em;
  color: rgba(234,242,255,0.5); margin-top: 2px;
}
.cw-worker-stat {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; color: #5EFFA4;
  text-align: right;
}

.cw-sim-stage {
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column;
  background:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255,255,255,0.02) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(255,255,255,0.02) 31px 32px);
}
.cw-sim-stage-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.cw-sim-stage-title {
  font-size: 18px; color: #FFFFFF; font-weight: 500;
  letter-spacing: -0.01em;
}
.cw-sim-stage-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; font-weight: 600;
  color: #5EFFA4;
  padding: 4px 10px;
  background: rgba(94,255,164,0.10);
  border: 1px solid rgba(94,255,164,0.3);
}
.cw-sim-stage-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5EFFA4;
  box-shadow: 0 0 8px rgba(94,255,164,0.8);
  animation: cw-pulse 1.4s infinite;
}
@keyframes cw-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.cw-sim-feed {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.cw-sim-task {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px; align-items: center;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  animation: cw-task-in 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cw-sim-task.done { opacity: 0.55; }
.cw-sim-task .tstamp {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; color: rgba(234,242,255,0.45);
}
.cw-sim-task .desc { color: #EAF2FF; line-height: 1.45; }
.cw-sim-task .desc strong { color: #4FC8FF; font-weight: 500; }
.cw-sim-task .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.cw-sim-task .status.run { color: #FFB020; background: rgba(255,176,32,0.12); border: 1px solid rgba(255,176,32,0.3); }
.cw-sim-task .status.ok { color: #5EFFA4; background: rgba(94,255,164,0.12); border: 1px solid rgba(94,255,164,0.3); }
.cw-sim-task .status .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.cw-sim-task .status.run .dot { animation: cw-pulse 0.9s infinite; }
@keyframes cw-task-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cw-sim-meter {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cw-sim-meter-cell .v {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 28px; font-weight: 400; color: #FFFFFF;
  letter-spacing: -0.02em; line-height: 1;
}
.cw-sim-meter-cell .v em { font-style: normal; color: #5EFFA4; font-size: 0.6em; margin-left: 4px; }
.cw-sim-meter-cell .l {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(234,242,255,0.55);
  margin-top: 6px;
}

/* ============================================================
   3 · BEFORE/AFTER — Manual ops vs Block Gemini AI workforce
   ============================================================ */
.cw-ba {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  gap: 0;
}
@media (max-width: 880px) { .cw-ba { grid-template-columns: 1fr; } }

.cw-ba-side {
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
  min-height: 480px;
  display: flex; flex-direction: column;
}
.cw-ba-side.before { background: linear-gradient(180deg, #1a0a0a 0%, #0a0408 100%); }
.cw-ba-side.after  { background: linear-gradient(180deg, #001A3D 0%, #000A1F 100%); border-color: rgba(79,200,255,0.30); }
.cw-ba-side .cw-ba-tag {
  position: absolute; top: -1px; left: -1px;
  padding: 6px 12px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cw-ba-side.before .cw-ba-tag { color: #FF6B7A; background: #1a0a0a; border: 1px solid rgba(255,107,122,0.4); border-top: 0; border-left: 0; }
.cw-ba-side.after  .cw-ba-tag { color: #5EFFA4; background: #00132E; border: 1px solid rgba(94,255,164,0.4); border-top: 0; border-left: 0; }
.cw-ba-side h3 {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 26px; font-weight: 400; line-height: 1.2;
  letter-spacing: -0.015em; color: #FFFFFF;
  margin: 32px 0 6px;
}
.cw-ba-side .sub { font-size: 13px; color: rgba(234,242,255,0.55); margin-bottom: 24px; }
.cw-ba-side ul { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.cw-ba-side li {
  display: grid; grid-template-columns: 14px 1fr; gap: 10px; align-items: flex-start;
  font-size: 14px; line-height: 1.45;
  color: rgba(234,242,255,0.85);
}
.cw-ba-side li::before {
  content: ''; width: 14px; height: 14px;
  margin-top: 4px;
  background: var(--bullet, currentColor);
  -webkit-mask: var(--bullet-mask, none); mask: var(--bullet-mask, none);
}
.cw-ba-side.before li::before { background: #FF6B7A; clip-path: polygon(0 45%, 100% 45%, 100% 55%, 0 55%); }
.cw-ba-side.after li::before  { background: #5EFFA4; clip-path: polygon(15% 50%, 40% 75%, 90% 20%, 95% 30%, 40% 90%, 10% 60%); }

.cw-ba-side .stat {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: baseline; gap: 12px;
}
.cw-ba-side .stat .n {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 44px; font-weight: 400; line-height: 1;
  letter-spacing: -0.025em;
}
.cw-ba-side.before .stat .n { color: #FF6B7A; }
.cw-ba-side.after  .stat .n { color: #5EFFA4; }
.cw-ba-side .stat .lbl { color: rgba(234,242,255,0.6); font-size: 13px; }

.cw-ba-arrow {
  display: grid; place-items: center;
  position: relative;
}
@media (max-width: 880px) { .cw-ba-arrow { padding: 8px 0; } }
.cw-ba-arrow svg { width: 100%; height: 60px; }

/* ============================================================
   4 · DEPLOY TIMELINE — Day 0 → 14 → 30 → 90
   ============================================================ */
.cw-tl {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(0,26,61,0.3) 0%, rgba(0,7,19,0.6) 100%);
}
@media (max-width: 880px) { .cw-tl { grid-template-columns: 1fr; } }

.cw-tl-step {
  padding: 36px 28px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background 240ms;
}
.cw-tl-step:last-child { border-right: 0; }
.cw-tl-step:hover, .cw-tl-step.on { background: rgba(0,85,255,0.06); }
.cw-tl-step.on { box-shadow: inset 0 2px 0 0 #4FC8FF; }
@media (max-width: 880px) { .cw-tl-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); } .cw-tl-step.on { box-shadow: inset 2px 0 0 0 #4FC8FF; } }

.cw-tl-day {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.18em; font-weight: 600;
  color: #4FC8FF;
  text-transform: uppercase;
}
.cw-tl-h {
  font-size: 24px; font-weight: 400; color: #FFFFFF;
  margin: 10px 0 12px;
  letter-spacing: -0.015em; line-height: 1.15;
}
.cw-tl-desc { font-size: 13.5px; line-height: 1.55; color: rgba(234,242,255,0.7); flex: 1; }
.cw-tl-out {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cw-tl-out .lbl {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em;
  color: rgba(234,242,255,0.45); text-transform: uppercase;
  margin-bottom: 6px;
}
.cw-tl-out .v {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 22px; font-weight: 400; color: #5EFFA4;
  letter-spacing: -0.015em;
}

/* ============================================================
   5 · OUTCOME GRID — KPI tiles for industries / products
   ============================================================ */
.cw-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 880px) { .cw-kpis { grid-template-columns: repeat(2, 1fr); } }
.cw-kpi {
  background: #000713;
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
}
.cw-kpi::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 0%, rgba(0,85,255,0.18), transparent 60%);
  opacity: 0; transition: opacity 320ms;
}
.cw-kpi:hover::before { opacity: 1; }
.cw-kpi .v {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 56px; font-weight: 400;
  letter-spacing: -0.03em; line-height: 0.95;
  color: #FFFFFF;
  display: flex; align-items: baseline; gap: 4px;
  position: relative; z-index: 1;
}
.cw-kpi .v em { font-style: normal; font-size: 0.45em; color: #4FC8FF; }
.cw-kpi .v em.suf { color: #5EFFA4; }
.cw-kpi .l {
  font-size: 13.5px; line-height: 1.45;
  color: rgba(234,242,255,0.7);
  margin-top: 14px;
  position: relative; z-index: 1;
}
.cw-kpi .ctx {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(234,242,255,0.4);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}

/* ============================================================
   6 · CINEMATIC PHOTO TILES — CSS-rendered "real life" placeholders
   ============================================================ */
.cw-photo {
  position: relative;
  background: #000713;
  overflow: hidden;
}
.cw-photo .ph-frame {
  position: absolute; inset: 0;
  background:
    /* atmospheric scan */
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%),
    /* ambient light */
    radial-gradient(80% 60% at 30% 20%, rgba(79,200,255,0.20), transparent 60%),
    radial-gradient(60% 50% at 80% 90%, rgba(0,85,255,0.30), transparent 60%),
    /* base */
    linear-gradient(160deg, #001A3D 0%, #000713 60%, #000310 100%);
}
.cw-photo .ph-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  mix-blend-mode: overlay;
}
.cw-photo[data-vibe="ops"] .ph-frame {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%),
    radial-gradient(70% 50% at 50% 60%, rgba(94,255,164,0.18), transparent 60%),
    radial-gradient(60% 50% at 20% 30%, rgba(0,85,255,0.20), transparent 60%),
    linear-gradient(160deg, #00132E 0%, #000310 100%);
}
.cw-photo[data-vibe="warehouse"] .ph-frame {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.65) 100%),
    radial-gradient(80% 50% at 50% 30%, rgba(255,176,32,0.14), transparent 60%),
    linear-gradient(160deg, #1a1208 0%, #0a0a14 70%, #000310 100%);
}
.cw-photo[data-vibe="finance"] .ph-frame {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%),
    radial-gradient(60% 60% at 70% 30%, rgba(0,85,255,0.30), transparent 60%),
    radial-gradient(60% 60% at 30% 80%, rgba(79,200,255,0.20), transparent 60%),
    linear-gradient(160deg, #001A3D 0%, #000310 100%);
}
.cw-photo[data-vibe="healthcare"] .ph-frame {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 100%),
    radial-gradient(70% 60% at 50% 40%, rgba(94,255,164,0.20), transparent 60%),
    linear-gradient(160deg, #002a3d 0%, #001233 60%, #000310 100%);
}

.cw-photo .ph-cap {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(234,242,255,0.7);
  display: flex; justify-content: space-between; gap: 12px;
}
.cw-photo .ph-cap .tag { color: #5EFFA4; }

/* ============================================================
   7 · PRIMARY CTA BAND — site-wide closer
   ============================================================ */
.cw-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 72px 56px;
  background:
    radial-gradient(50% 80% at 80% 50%, rgba(0,85,255,0.30), transparent 70%),
    linear-gradient(180deg, #00132E 0%, #000713 100%);
  border: 1px solid rgba(79,200,255,0.20);
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) { .cw-cta-band { grid-template-columns: 1fr; padding: 48px 32px; } }

.cw-cta-band-h {
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 400;
  letter-spacing: -0.025em; line-height: 1.1;
  color: #FFFFFF;
  max-width: 720px;
}
.cw-cta-band-h .ac { color: #4FC8FF; font-style: italic; }
.cw-cta-band-sub {
  font-size: 14.5px; color: rgba(234,242,255,0.66);
  margin-top: 12px;
}
.cw-cta-band-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cw-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-display, 'Instrument Sans', sans-serif);
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 0;
  transition: background 200ms, color 200ms, border-color 200ms;
  cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.cw-btn.primary { background: #0055FF; color: #FFFFFF; }
.cw-btn.primary:hover { background: #0044CC; }
.cw-btn.outline { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.30); }
.cw-btn.outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.5); }
.cw-btn.ghost { background: transparent; color: #4FC8FF; }
.cw-btn.ghost:hover { color: #FFFFFF; }
.cw-btn .arr { transition: transform 200ms cubic-bezier(.2,.8,.2,1); }
.cw-btn:hover .arr { transform: translateX(4px); }
