/* Sky Based Specialists — homepage */

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: clamp(60px, 7vw, 110px) 0 clamp(80px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(110,56,132,0.18), transparent 60%),
    linear-gradient(180deg, #0E1517 0%, #0B1214 100%);
  border-bottom: 1px solid var(--color-line);
}
.hero-radar {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(-50%);
  width: 70vw; max-width: 900px;
  pointer-events: none;
  opacity: 0.85;
}
.hero-radar .sweep { transform-origin: 300px 300px; animation: sweep 7s linear infinite; }
@keyframes sweep { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } .hero-radar { width: 130vw; right: -30vw; opacity: 0.5; } }

.hero-left .coord-tag { margin-bottom: 28px; }
.hero-left h1 {
  margin: 8px 0 28px;
  letter-spacing: 0.005em;
}
.hl-purple { color: #C99CDB; }
.hl-accent { color: var(--accent); }
.hero-left .lead { max-width: 52ch; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  border-top: 1px solid var(--color-line-strong);
  padding-top: 24px;
}
.hs-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1; color: #fff;
}
.hs-num .unit { color: var(--accent); font-size: 0.6em; margin-left: 4px; }
.hs-lbl { font-size: 12px; color: var(--color-muted); margin-top: 8px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Scan window visual */
.scan-window {
  position: relative;
  background: linear-gradient(180deg, #0F1A1D, #0A1214);
  border: 1px solid var(--color-line-strong);
  border-radius: 18px;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.7), 0 0 0 1px rgba(110,56,132,0.12);
  overflow: hidden;
  isolation: isolate;
}
.sw-top, .sw-bottom {
  display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
  background: rgba(0,0,0,0.3);
}
.sw-bottom { border-bottom: none; border-top: 1px solid var(--color-line); justify-content: space-between; }
.sw-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.sw-spacer { flex: 1; }
.sw-rec { color: var(--accent); display:flex; align-items:center; gap:6px; }
.sw-rec i { display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: 0.25; } }
.sw-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  background: radial-gradient(ellipse at center, rgba(110,56,132,0.08), transparent 70%), #0B1417;
  overflow: hidden;
}
.sw-contour { position: absolute; inset: 0; width: 100%; height: 100%; }
.sw-points { position: absolute; inset: 0; width: 100%; height: 100%; }
.flight { stroke-dashoffset: 0; animation: flightDash 5s linear infinite; }
@keyframes flightDash { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -100; } }
.markers circle { animation: pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.markers circle:nth-child(2) { animation-delay: 0.6s; }
.markers circle:nth-child(3) { animation-delay: 1.2s; }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.cross circle { animation: pulse 2s ease-in-out infinite; }

.sw-scan {
  position: absolute; left: 0; right: 0; top: 0; height: 36%;
  background: linear-gradient(180deg, rgba(250,172,30,0) 0%, rgba(250,172,30,0.10) 60%, rgba(250,172,30,0.3) 95%, rgba(250,172,30,0) 100%);
  border-bottom: 1px solid rgba(250,172,30,0.45);
  animation: scan 5.5s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes scan {
  0% { transform: translateY(-30%); opacity: 0.2; }
  50% { transform: translateY(150%); opacity: 0.9; }
  100% { transform: translateY(-30%); opacity: 0.2; }
}

.sw-readout {
  position: absolute;
  background: rgba(8,12,14,0.7);
  border: 1px solid var(--color-line);
  padding: 8px 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.sw-readout .k { font-size: 9px; letter-spacing: 0.18em; color: var(--color-muted); }
.sw-readout .v { font-size: 16px; color: #fff; font-weight: 600; margin-top: 2px; letter-spacing: 0.04em; }
.sw-readout .v span { font-size: 10px; color: var(--accent); margin-left: 3px; }
.sw-readout--tl { top: 14px; left: 14px; }
.sw-readout--tr { top: 14px; right: 14px; text-align: right; }
.sw-readout--bl { bottom: 14px; left: 14px; }
.sw-readout--br { bottom: 14px; right: 14px; text-align: right; }
@media (prefers-reduced-motion: reduce) {
  .sw-scan, .hero-radar .sweep, .flight, .markers circle { animation: none !important; }
}

/* ---- DATA VIZ (point clouds, nubigon-style) ---- */
.viz-section {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(110,56,132,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(250,172,30,0.08), transparent 60%),
    #0A1012;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}
.viz-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 48px;
}
@media (max-width: 1000px) { .viz-grid { grid-template-columns: 1fr; } }
.viz-card {
  position: relative;
  border: 1px solid var(--color-line-strong);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #07090B, #050709);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
  isolation: isolate;
}
.viz-card--tall { grid-row: span 2; }
.viz-card .viz-head, .viz-card .viz-foot {
  position: relative; z-index: 3;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-line);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.viz-card .viz-foot { border-bottom: none; border-top: 1px solid var(--color-line); justify-content: space-between; }
.viz-card .viz-foot strong { color: #fff; font-weight: 500; }
.viz-card .viz-head .vh-title { color: #fff; letter-spacing: 0.08em; }
.viz-card .viz-head .vh-spacer { flex: 1; }
.viz-card .viz-head .vh-pill {
  background: rgba(250,172,30,0.12);
  border: 1px solid rgba(250,172,30,0.4);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-size: 9px;
}
.viz-stage {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.viz-card--tall .viz-stage { aspect-ratio: 16 / 14; }
.viz-stage canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.terrain-contours {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}
.terrain-contours path {
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: contourDraw 4s ease-out forwards;
}
.terrain-contours g:nth-child(2) path { animation-delay: 0.3s; }
.terrain-contours g:nth-child(3) path { animation-delay: 0.5s; }
@keyframes contourDraw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .terrain-contours path { animation: none; stroke-dashoffset: 0; }
}
.viz-stage .grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
  z-index: 1;
}
.viz-stage .compass {
  position: absolute; bottom: 14px; right: 14px;
  width: 52px; height: 52px;
  border: 1px solid var(--color-line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(8,12,14,0.6); backdrop-filter: blur(4px);
  z-index: 4;
}
.viz-stage .compass svg { width: 100%; height: 100%; }
.viz-stage .axislabel {
  position: absolute;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; letter-spacing: 0.14em; color: var(--color-muted);
  text-transform: uppercase;
  z-index: 4;
  background: rgba(8,12,14,0.6);
  padding: 4px 8px; border-radius: 4px;
  border: 1px solid var(--color-line);
}
.viz-stage .axislabel--tl { top: 14px; left: 14px; }
.viz-stage .axislabel--tr { top: 14px; right: 14px; }
.viz-stage .axislabel--bl { bottom: 14px; left: 14px; }
.viz-stage .legend {
  position: absolute; bottom: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
  padding: 10px 12px;
  background: rgba(8,12,14,0.7);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  backdrop-filter: blur(4px);
  z-index: 4;
}
.viz-stage .legend .lkey {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8.5px; letter-spacing: 0.18em; color: var(--color-muted);
  text-transform: uppercase;
}
.viz-stage .legend .lbar {
  width: 110px; height: 6px; border-radius: 2px;
}
.viz-stage .legend .lbar--rainbow {
  background: linear-gradient(90deg, rgb(10,18,60) 0%, rgb(30,90,180) 18%, rgb(50,180,200) 36%, rgb(80,200,110) 52%, rgb(240,220,80) 70%, rgb(250,140,40) 86%, rgb(220,60,50) 100%);
}
.viz-stage .legend .lbar--thermal {
  background: linear-gradient(90deg, rgb(8,6,14), rgb(60,20,90) 20%, rgb(180,40,100) 40%, rgb(240,110,50) 60%, rgb(250,200,80) 80%, rgb(255,245,220));
}
.viz-stage .legend .lscale {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; color: #fff;
  letter-spacing: 0.06em;
}

/* Annotation pin */
.viz-stage .pin {
  position: absolute; z-index: 4;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(250,172,30,0.18);
  border: 1px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(250,172,30,0.08);
  animation: vizPulse 2.4s ease-in-out infinite;
}
.viz-stage .pin::after {
  content: "";
  position: absolute; inset: 5px; border-radius: 50%;
  background: var(--accent);
}
.viz-stage .pin-label {
  position: absolute; z-index: 4;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; letter-spacing: 0.12em; color: var(--accent);
  background: rgba(8,12,14,0.7); padding: 3px 6px; border-radius: 3px;
  border: 1px solid rgba(250,172,30,0.4);
  white-space: nowrap;
  text-transform: uppercase;
}
@keyframes vizPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}

/* Viz spec callouts */
.viz-callouts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}
@media (max-width: 800px) { .viz-callouts { grid-template-columns: 1fr; } }
.viz-callout {
  padding: 28px 24px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.viz-callout .vc-k {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.18em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 14px;
}
.viz-callout h4 {
  font-family: var(--font-heading); font-size: 22px;
  text-transform: none; letter-spacing: 0.005em;
  color: #fff; margin-bottom: 10px; line-height: 1.1;
}
.viz-callout p { font-size: 14px; color: var(--color-muted); margin: 0; }

/* Roof RGB inspection (replaces structure point cloud) */
.roof-viz {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,200,150,0.05), transparent 60%),
    linear-gradient(160deg, #5A4A3C 0%, #4A3C30 30%, #3A2E26 65%, #2A2018 100%);
  overflow: hidden;
}
/* Roof tile pattern */
.roof-tile-grid {
  position: absolute; inset: 0;
  background:
    /* horizontal tile rows */
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.35) 0px,
      rgba(0,0,0,0.35) 1px,
      transparent 1px,
      transparent 22px
    ),
    /* vertical tile edges (offset alternating) */
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,0.25) 0px,
      rgba(0,0,0,0.25) 1px,
      transparent 1px,
      transparent 28px
    );
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.roof-tile-grid::after {
  /* subtle highlight on each tile row top */
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,200,160,0.06) 0px,
    rgba(255,200,160,0.06) 2px,
    transparent 2px,
    transparent 22px
  );
}
/* Ridge along the top */
.roof-ridge {
  position: absolute; left: 6%; right: 6%; top: 28%;
  height: 4px;
  background: linear-gradient(180deg, rgba(20,14,8,0.9), rgba(60,40,28,0.6));
  box-shadow: 0 -2px 6px rgba(0,0,0,0.5);
}
/* Gables - dark triangular edges */
.roof-gable {
  position: absolute; top: 28%; bottom: 0;
  width: 6%;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.1));
}
.roof-gable--l { left: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-right: 1px solid rgba(0,0,0,0.6); }
.roof-gable--r { right: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-left: 1px solid rgba(0,0,0,0.6); }
/* Valley diagonal */
.roof-valley {
  position: absolute; left: 42%; top: 28%;
  width: 16%; height: 72%;
  background: linear-gradient(135deg, transparent 49%, rgba(0,0,0,0.55) 50%, transparent 51%);
  pointer-events: none;
}
/* Lead flashing strip */
.roof-flashing {
  position: absolute; left: 38%; top: 41%;
  width: 24%; height: 6px;
  background: linear-gradient(180deg, rgba(160,160,170,0.65), rgba(90,90,100,0.5));
  border-radius: 1px;
}
/* Vent stack circles */
.roof-vent {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #4A3A2E 0%, #1A120A 70%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.5), inset 0 -1px 2px rgba(0,0,0,0.6);
  border: 1px solid rgba(0,0,0,0.5);
}
.roof-vent--1 { left: 22%; top: 55%; width: 14px; height: 14px; }
.roof-vent--2 { left: 70%; top: 60%; width: 12px; height: 12px; }
/* Soft shadow gradient bottom-left */
.roof-shadow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, transparent 30%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.roof-defects {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.roof-defects .defect rect[stroke-dasharray],
.roof-defects .defect ellipse[stroke-dasharray],
.roof-defects .defect circle[stroke-dasharray] {
  animation: defectPulse 2.4s ease-in-out infinite;
}
.roof-defects .defect:nth-child(2) { animation-delay: 0.6s; }
.roof-defects .defect:nth-child(3) { animation-delay: 1.2s; }
.roof-defects .defect:nth-child(4) { animation-delay: 1.8s; }
@keyframes defectPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .roof-defects .defect rect[stroke-dasharray],
  .roof-defects .defect ellipse[stroke-dasharray],
  .roof-defects .defect circle[stroke-dasharray] {
    animation: none !important;
  }
}
/* ---- KIT SECTION ---- */
.kit {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(110,56,132,0.15), transparent 65%),
    linear-gradient(180deg, #0B1214, #0E1517);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}
.kit .kit-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 75%);
  pointer-events: none;
}
.kit .container { position: relative; z-index: 2; }

.kit-stage {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 56px 0;
}
@media (max-width: 1000px) { .kit-stage { grid-template-columns: 1fr; gap: 24px; } }

.kit-callouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}
@media (max-width: 900px) { .kit-callouts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .kit-callouts-grid { grid-template-columns: 1fr; } }
.kit-callouts-grid .kit-callout {
  padding: 32px 28px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  transition: background .2s;
}
.kit-callouts-grid .kit-callout:hover { background: rgba(255,255,255,0.02); }
.kit-callouts-grid .kit-callout h4 { font-size: 24px; margin-bottom: 10px; }
.kit-callouts-grid .kit-callout p { font-size: 14px; }
.kit-callout .kc-k {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.18em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 6px;
}
.kit-callout h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  text-transform: none; letter-spacing: 0.005em;
  margin: 0 0 6px; line-height: 1.05; color: #fff;
}
.kit-callout p { font-size: 13px; color: var(--color-muted); margin: 0; line-height: 1.5; }

.drone-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
}
.drone-wrap svg { width: 100%; height: 100%; max-width: 640px; display: block; }
.drone-wrap .drone-platter {
  position: absolute; left: 50%; bottom: 8%;
  width: 70%; height: 22%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(110,56,132,0.30) 0%, rgba(110,56,132,0.08) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.drone-wrap .drone-aura {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(250,172,30,0.10), transparent 50%);
  pointer-events: none;
}
.drone-svg .prop {
  transform-origin: center; transform-box: fill-box;
  animation: propSpin 1.4s linear infinite;
}
.drone-svg .prop--cw  { animation-direction: normal; }
.drone-svg .prop--ccw { animation-direction: reverse; }
@keyframes propSpin { to { transform: rotate(360deg); } }
.drone-svg .float-group { animation: droneFloat 4.5s ease-in-out infinite; }
@keyframes droneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .drone-svg .prop, .drone-svg .float-group { animation: none !important; }
}

.kit-stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--color-line-strong);
  margin-top: 24px;
}
@media (max-width: 700px) { .kit-stat-bar { grid-template-columns: repeat(2, 1fr); } }
.kit-stat {
  padding: 24px;
  border-right: 1px solid var(--color-line);
}
.kit-stat:last-child { border-right: none; }
@media (max-width: 700px) {
  .kit-stat:nth-child(2) { border-right: none; }
  .kit-stat { border-bottom: 1px solid var(--color-line); }
}
.kit-stat .ks-num {
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(28px, 3vw, 42px); line-height: 1; color: #fff;
}
.kit-stat .ks-num .unit { color: var(--accent); font-size: 0.5em; margin-left: 4px; }
.kit-stat .ks-lbl {
  font-size: 11px; color: var(--color-muted);
  letter-spacing: 0.14em; text-transform: uppercase; margin-top: 10px;
}

/* ---- TAGLINE STRIP ---- */
.tagline {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(250,172,30,0.06);
  border: 1px solid rgba(250,172,30,0.25);
  padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
}
.tagline::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
.trust { padding: 48px 0; border-bottom: 1px solid var(--color-line); }
.trust-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
@media (max-width: 1000px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .trust-grid { grid-template-columns: 1fr; } }
.t-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0;
}
.t-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; color: var(--accent); letter-spacing: 0.08em;
}
.t-lbl { font-size: 14px; color: #D7DDDF; line-height: 1.4; }

/* ---- SERVICES ---- */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1100px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  display: flex; flex-direction: column;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.service-card h3 { margin-bottom: 14px; line-height: 1.05; }
.service-card p { font-size: 14px; flex: 1; margin-bottom: 20px; }
.service-card .btn-link { align-self: flex-start; }
.service-card--more {
  background: linear-gradient(160deg, rgba(110,56,132,0.18), rgba(110,56,132,0.04));
  border-color: rgba(110,56,132,0.35);
  justify-content: space-between;
}
.service-card--more:hover { border-color: rgba(110,56,132,0.7); }

/* ---- DUAL VALUE ---- */
.dual {
  background: linear-gradient(180deg, #0B1214 0%, #0E1517 100%);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.dual-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; }
@media (max-width: 900px) { .dual-inner { grid-template-columns: 1fr; gap: 32px; } }
.dual-left h2 { margin-top: 16px; }
.dual-rows { margin: 32px 0 28px; display: grid; gap: 24px; }
.dual-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 24px 0; border-top: 1px solid var(--color-line);
}
.dual-row:last-child { border-bottom: 1px solid var(--color-line); }
.dr-num {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 32px; line-height: 1; color: var(--accent);
}
.dual-row h4 { font-family: var(--font-heading); font-size: 22px; letter-spacing: 0.02em; margin-bottom: 6px; color: #fff; text-transform: none;}
.dual-row p { font-size: 14px; margin: 0; }

/* ---- SECTORS ---- */
.sector-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--color-line);
  border-left: 1px solid var(--color-line);
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .sector-grid { grid-template-columns: 1fr; } }
.sector {
  padding: 32px 28px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  position: relative;
  transition: background .2s;
  display: block;
}
.sector:hover { background: rgba(255,255,255,0.03); }
.sector:hover h3 { color: var(--accent); }
.s-idx {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.12em; color: var(--color-muted);
}
.sector h3 {
  font-size: 22px; margin: 14px 0 10px; line-height: 1.05;
  transition: color .2s;
}
.sector p { font-size: 13px; margin: 0; }

/* ---- PROCESS ---- */
.process { background: linear-gradient(180deg, #0E1517, #0B1214); }
.process-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--color-line-strong);
}
@media (max-width: 900px) { .process-list { grid-template-columns: 1fr; } }
.process-list li {
  position: relative;
  padding: 36px 28px 32px 28px;
  border-right: 1px solid var(--color-line);
}
.process-list li:last-child { border-right: none; }
@media (max-width: 900px) {
  .process-list li { border-right: none; border-bottom: 1px solid var(--color-line); }
  .process-list li:last-child { border-bottom: none; }
}
.process-list li::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.process-list li.in::before { transform: scaleX(1); }
.process-list li:nth-child(2).in::before { transition-delay: .2s; }
.process-list li:nth-child(3).in::before { transition-delay: .4s; }
.process-list li:nth-child(4).in::before { transition-delay: .6s; }

.p-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.p-num { font-family: var(--font-heading); font-weight: 700; font-size: 56px; line-height: 1; color: var(--accent); }
.p-tag { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--color-muted); text-transform: uppercase; }
.process-list h3 { font-size: 20px; line-height: 1.1; margin-bottom: 12px; text-transform: none; letter-spacing: 0.01em; }
.process-list p { font-size: 13px; margin: 0; }

/* ---- CASES ---- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1000px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  display: block;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  padding: 20px;
  transition: border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.case-card:hover { border-color: rgba(250,172,30,0.5); transform: translateY(-2px); }
.case-vis {
  height: 220px;
  border-radius: 14px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: #0B1417;
  border: 1px solid var(--color-line);
}
.case-vis--corridor {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 38px),
    radial-gradient(ellipse at 30% 60%, rgba(250,172,30,0.25), transparent 50%),
    linear-gradient(135deg, #0B1417, #11191C);
}
.case-vis--corridor::after {
  content: "";
  position: absolute; left: 8%; top: 70%; width: 84%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  transform: rotate(-12deg);
  box-shadow: 0 0 16px var(--accent);
}
.case-vis--thermal {
  background:
    radial-gradient(circle at 25% 60%, #FF7A18 0%, transparent 22%),
    radial-gradient(circle at 60% 35%, #FAAC1E 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, #6E3884 0%, transparent 30%),
    radial-gradient(circle at 40% 80%, #F6DC72 0%, transparent 18%),
    linear-gradient(135deg, #1B0F25, #0B1417);
  filter: blur(0.2px) saturate(1.05);
}
.case-vis--thermal::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  mix-blend-mode: overlay;
}
.case-vis--mesh {
  background: linear-gradient(135deg, #0F1A1F, #0B1417);
}
.case-vis--mesh::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(60deg, transparent 49%, rgba(255,255,255,0.08) 49.5%, rgba(255,255,255,0.08) 50.5%, transparent 51%) 0 0/22px 22px,
    linear-gradient(-60deg, transparent 49%, rgba(255,255,255,0.08) 49.5%, rgba(255,255,255,0.08) 50.5%, transparent 51%) 0 0/22px 22px,
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.06) 49.5%, rgba(255,255,255,0.06) 50.5%, transparent 51%) 0 0/22px 22px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.case-vis--mesh::after {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  border: 1px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(250,172,30,0.2), 0 0 40px rgba(250,172,30,0.25);
  opacity: 0.6;
}
.case-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.case-card h3 { font-size: 24px; line-height: 1.05; margin-bottom: 12px; padding: 0 8px; }
.case-card p { font-size: 14px; margin-bottom: 18px; padding: 0 8px; }
.case-card .btn-link { margin: 0 8px 8px; display: inline-flex; }

/* ---- FOUNDER ---- */
.founder { border-top: 1px solid var(--color-line); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .founder-grid { grid-template-columns: 1fr; gap: 40px; } }
.founder-left h2 { margin: 16px 0 24px; }
.quote {
  background: linear-gradient(160deg, rgba(110,56,132,0.18), rgba(255,255,255,0.02));
  border: 1px solid rgba(110,56,132,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.quote p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: #fff;
  margin: 20px 0 24px;
  text-transform: none;
}
.quote-by { display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.quote-by strong { color: #fff; font-weight: 600; letter-spacing: 0.02em; }

/* ---- BIG CTA ---- */
.bigcta {
  background:
    radial-gradient(ellipse 70% 60% at 80% 60%, rgba(110,56,132,0.2), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(250,172,30,0.10), transparent 60%),
    #0B1214;
  border-top: 1px solid var(--color-line);
  position: relative;
  overflow: hidden;
}
.cta-inner { max-width: 880px; }
.cta-inner h2 { margin: 16px 0 24px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
