/* Panda Tech page styles */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");
@import url("https://fonts.cdnfonts.com/css/nexa");
:root {
  --ink: #000000;
  --paper: #ffffff;
  --line-soft: rgba(0, 0, 0, 0.1);
  --line-mid: rgba(0, 0, 0, 0.22);
  --muted: rgba(0, 0, 0, 0.55);
  --muted-strong: rgba(0, 0, 0, 0.72);
  --muted-light: rgba(255, 255, 255, 0.55);
  --line-light: rgba(255, 255, 255, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nexa", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.tbps-tech-body {
  padding-top: 0 !important;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

/* ── Astra heading colour overrides ─────────────────────────────────────────
   Astra sets h1–h4 colour globally; !important is needed in dark sections. */

/* Dark sections */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero-title,
.tech h2,
.tech h3,
.cta h2,
.cta h3 {
  color: #fff !important;
}

/* Dark cap cards */
.cc-dark .cc-title,
.cc-dark h3,
.cc-dark h4 {
  color: #fff !important;
}

/* Light sections */
.system-head h2,
.section-title,
.case h2,
.case-result-num,
.sdlc-left h2,
.sdlc-phase h4,
.trust-head h2,
.trust-item h4,
.faq-left h2,
.faq-q {
  color: #000 !important;
}

.sdlc-phase:hover h4 {
  color: #fff !important;
}

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

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

/* Schematic grid backdrop with dotted crosshairs */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1.5px
  );
  background-size: 60px 60px;
  background-position: 30px 30px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 75% 40%, black 5%, transparent 60%);
  -webkit-mask-image: radial-gradient(
    ellipse at 75% 40%,
    black 5%,
    transparent 60%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--paper);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-status span b {
  color: var(--paper);
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
}

.hero-status .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: auto;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(56px, 9vw, 156px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-title .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}

.hero-title .code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65em;
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  padding: 0.05em 0.25em;
  display: inline-block;
  transform: translateY(-0.1em);
  vertical-align: middle;
}

.hero-title .braces {
  color: rgba(255, 255, 255, 0.45);
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

/* Terminal card on the right */
.hero-term {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-family: "JetBrains Mono", monospace;
}

.term-head {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.term-head .dots {
  display: flex;
  gap: 6px;
}

.term-head .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.term-body {
  padding: 20px 18px;
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  min-height: 280px;
}

.term-body .cmt {
  color: rgba(255, 255, 255, 0.4);
}

.term-body .prompt {
  color: rgba(255, 255, 255, 0.5);
}

.term-body .ok {
  color: var(--paper);
  font-weight: 600;
}

.term-body .key {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.term-body .str {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.term-body .out {
  color: rgba(255, 255, 255, 0.6);
  padding-left: 14px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Nexa", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s;
  white-space: nowrap;
}
.hero-cta:hover {
  transform: translateY(-2px);
}
.hero-cta .arr {
  font-size: 16px;
  transition: transform 0.2s;
}
.hero-cta:hover .arr {
  transform: translateX(3px);
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--paper);
  animation: blink 1s steps(2) infinite;
  vertical-align: middle;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-desc {
  grid-column: 1 / -1;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}

.hero-desc p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

.hero-desc p strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--paper);
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s;
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--paper);
}

/* ── Hero background video ────────────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.65);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.9) 100%
  );
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

.hero::before {
  z-index: 3;
}
.hero::after {
  z-index: 3;
}

.hero-inner {
  z-index: 4;
}

/* ============ MARQUEE ============ */
.marquee {
  margin-top: 72px;
  overflow: hidden;
  padding: 22px 0;
  background: var(--paper);
  position: relative;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
      90deg,
      transparent 0%,
      #c0c0c0 15%,
      #333 50%,
      #c0c0c0 85%,
      transparent 100%
    )
    1;
  box-shadow:
    0 -6px 24px rgba(0, 0, 0, 0.07),
    0 6px 24px rgba(0, 0, 0, 0.1);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: mscroll 36s linear infinite;
  white-space: nowrap;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.marquee-track .ital {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}

.marquee-track .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes mscroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============ SYSTEM DIAGRAM (architecture) ============ */
.system {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-soft);
}

.system-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.system-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.system-head h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.system-head p {
  font-size: 17px;
  color: var(--muted-strong);
  line-height: 1.55;
  max-width: 460px;
}

.system-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.architecture {
  border: 1px solid var(--ink);
  border-radius: 20px;
  padding: 60px 40px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.architecture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1.5px
  );
  background-size: 24px 24px;
  pointer-events: none;
}

.arch-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.arch-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arch-col-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-mid);
  margin-bottom: 8px;
}

.arch-node {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  transition:
    background 0.2s,
    color 0.2s;
}

.arch-node:hover {
  background: var(--ink);
  color: var(--paper);
}

.arch-node.solid {
  background: var(--ink);
  color: var(--paper);
}

.arch-node.dashed {
  border-style: dashed;
}

.arch-node .sub {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

.arch-node.solid .sub {
  color: rgba(255, 255, 255, 0.55);
}

.arch-node:hover .sub {
  color: rgba(255, 255, 255, 0.55);
}

.arch-flow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.arch-legend {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px dashed var(--line-mid);
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
}

.arch-legend .item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.arch-legend .swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid var(--ink);
}

.arch-legend .swatch.solid {
  background: var(--ink);
}

.arch-legend .swatch.dashed {
  border-style: dashed;
}

/* ============ CAPABILITIES (services) ============ */
.caps {
  padding: 120px 0 60px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.section-title {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.section-title .ital {
  font-style: italic;
  font-weight: 400;
}

.section-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.caps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cap-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
}

.cap-card:hover {
  transform: translateY(-6px);
}

.cap-card.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.cc-inner {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}

.cc-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.75;
}

.cc-title {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.cc-title .ital {
  font-style: italic;
  font-weight: 400;
}

.cc-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-strong);
  margin-top: 8px;
  max-width: 400px;
}

.cc-dark {
  background: var(--ink);
  color: var(--paper);
}

.cc-dark .cc-desc {
  color: rgba(255, 255, 255, 0.6);
}

.cc-light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-soft);
}

/* Card 1: ERP — schematic data flow */
.cc-erp-schema {
  position: absolute;
  top: 30%;
  right: 52px;
  transform: translateY(-50%);
  width: 60%;
  height: 75%;
}

.cc-erp-schema svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes erp-core-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(0, 0, 0, 0));
  }
  50% {
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
  }
}

.cc-erp-schema svg {
  animation: erp-core-glow 2.6s ease-in-out infinite;
}

/* Card 2: Custom SaaS — code editor */
.cc-code {
  position: absolute;
  right: 24px;
  top: 24px;
  bottom: 110px;
  width: 56%;
  background: var(--ink);
  color: var(--paper);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  line-height: 1.7;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-code .ln {
  color: rgba(255, 255, 255, 0.3);
  margin-right: 12px;
}

.cc-code .kw {
  color: var(--paper);
  font-weight: 600;
}

.cc-code .var {
  color: rgba(255, 255, 255, 0.85);
}

.cc-code .str {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.cc-code .cmt {
  color: rgba(255, 255, 255, 0.35);
}

/* Card 3: AI Workflows — node graph (dark, wide) */
.cc-graph {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cc-graph svg {
  width: 100%;
  height: 100%;
}

/* Wide card: left-panel text, right-panel graph */
.cap-card.wide .cc-graph {
  left: 46%;
  right: 0;
  top: 0;
  bottom: 0;
}

.cap-card.wide .cc-inner {
  background: none;
  right: 54%;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  gap: 24px;
  padding: 48px 52px;
}

.cap-card.wide .cc-tag {
  margin-bottom: 4px;
}

.cap-card.wide .cc-title {
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1;
}

.cap-card.wide .cc-desc {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
}

/* Card 4: Integrations — orbit */
.cc-orbit {
  position: absolute;
  top: 37%;
  right: 31px;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
}

.cc-orbit .ring {
  position: absolute;
  inset: 0;
  border: 1px dashed var(--ink);
  border-radius: 50%;
  opacity: 0.3;
}

.cc-orbit .ring.inner {
  inset: 30%;
  opacity: 0.5;
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes hub-pulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  }
  50% {
    box-shadow:
      0 6px 24px rgba(0, 0, 0, 0.42),
      0 0 0 5px rgba(0, 0, 0, 0.07);
  }
}

.cc-orbit .ring:not(.inner) {
  animation: ring-spin 28s linear infinite;
}

.cc-orbit .center {
  animation: hub-pulse 2.8s ease-in-out infinite;
}

.cc-orbit .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 600;
}

.cc-orbit .satellite {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cc-orbit .s1 {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.cc-orbit .s2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cc-orbit .s3 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.cc-orbit .s4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cc-orbit .s5 {
  top: 18%;
  left: 18%;
}

.cc-orbit .s6 {
  bottom: 18%;
  right: 18%;
}

/* Card 5: DevOps — pipeline */
.cc-pipeline {
  position: absolute;
  right: 132px;
  top: 34%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px;
}

.cc-pipeline .stage {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cc-pipeline .stage .check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-size: 8px;
}

.cc-pipeline .stage.run .check {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.cc-pipeline .stage.pending {
  opacity: 0.5;
}

.cc-pipeline .stage.pending .check {
  background: var(--paper);
  border: 1.5px dashed var(--ink);
}

/* ============ TECH STACK ============ */
.tech {
  background: #0a0a0a;
  color: var(--paper);
  border-radius: 32px;
  margin: 80px 0 60px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    black 50%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 100% at 50% 0%,
    black 50%,
    transparent 100%
  );
}

.tech::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 45% at 100% 100%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 45% 35% at 0% 0%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.tech-inner {
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.tech-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.tech-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.tech-head h2 .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}
.hero .hero-right {
  align-items: flex-start;
}

.tech-head p {
  font-size: 17px;
  color: #fff;
  line-height: 1.5;
  max-width: 440px;
}

.tech-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.tech-cat {
  background: var(--ink);
  padding: 28px 24px;
  min-height: 220px;
}

.tech-cat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 12px;
}

.tech-cat-title {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.tech-cat-title .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.75;
}

.tech-cat ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tech-cat li {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #fff;
  padding-left: 14px;
  position: relative;
}

.tech-cat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* ============ CASE STUDY ============ */
.case {
  margin: 80px 0;
}

.case-inner {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 24px;
  padding: 56px 48px;
}

.case-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.case-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.case h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}

.case h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.case-quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted-strong);
  max-width: 460px;
}

.case-quote strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ink);
}

.case-quote .name {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  display: block;
}

.case-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}

.case-result {
  padding: 30px 24px 0 0;
  border-right: 1px solid var(--line-mid);
}

.case-result:last-child {
  border-right: none;
}

.case-result:not(:first-child) {
  padding-left: 24px;
}

.case-result-num {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.case-result-num .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.6;
}

.case-result-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

.case-result-sub {
  font-size: 12px;
  color: var(--muted-strong);
  margin-top: 6px;
}

/* ============ PROCESS / SDLC ============ */
.sdlc {
  padding: 120px 0;
}

.sdlc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.sdlc-left {
  position: sticky;
  top: 100px;
}

.sdlc-left .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.sdlc-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.sdlc-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.sdlc-left p {
  font-size: 16px;
  color: var(--muted-strong);
  line-height: 1.55;
  max-width: 380px;
  margin-top: 28px;
}

.sdlc-phase {
  border: 1px solid var(--ink);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
  transition:
    background 0.3s,
    color 0.3s;
}

.sdlc-phase:hover {
  background: var(--ink);
  color: var(--paper);
}

.sdlc-phase:hover .sdlc-phase-meta,
.sdlc-phase:hover .sdlc-phase-num {
  color: rgba(255, 255, 255, 0.55);
}

.sdlc-phase:hover .sdlc-phase-bar {
  background: rgba(255, 255, 255, 0.18);
}

.sdlc-phase:hover .sdlc-phase-bar::after {
  background: var(--paper);
}

.sdlc-phase:hover p {
  color: rgba(255, 255, 255, 0.7);
}

.sdlc-phase:hover .sdlc-phase-tags li {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.sdlc-phase-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.sdlc-phase-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--muted);
}

.sdlc-phase-meta {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
}

.sdlc-phase h4 {
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.sdlc-phase h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.sdlc-phase p {
  font-size: 14px;
  color: var(--muted-strong);
  line-height: 1.55;
  margin-bottom: 16px;
}

.sdlc-phase-bar {
  height: 4px;
  background: var(--line-mid);
  border-radius: 2px;
  position: relative;
  margin-bottom: 18px;
}

.sdlc-phase-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--ink);
  border-radius: 2px;
}

.sdlc-phase[data-progress="100"] .sdlc-phase-bar::after {
  width: 100%;
}

.sdlc-phase[data-progress="75"] .sdlc-phase-bar::after {
  width: 75%;
}

.sdlc-phase[data-progress="50"] .sdlc-phase-bar::after {
  width: 50%;
}

.sdlc-phase[data-progress="25"] .sdlc-phase-bar::after {
  width: 25%;
}

.sdlc-phase-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sdlc-phase-tags li {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border: 1px solid var(--line-mid);
  border-radius: 999px;
  color: var(--muted-strong);
  transition:
    border-color 0.3s,
    color 0.3s;
}

/* ============ SECURITY / TRUST BAND ============ */
.trust {
  padding: 80px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.trust-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.trust-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-head h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.trust-head p {
  font-size: 16px;
  color: var(--muted-strong);
  line-height: 1.55;
  max-width: 440px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}

.trust-item-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 14px;
}

.trust-item h4 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.trust-item h4 .ital {
  font-style: italic;
  font-weight: 400;
}

.trust-item p {
  font-size: 13px;
  color: var(--muted-strong);
  line-height: 1.55;
}

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.faq-left h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.faq-left h2 .ital {
  font-style: italic;
  font-weight: 400;
}

.faq-left p {
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.55;
  margin-top: 24px;
}

.faq-items {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--ink);
  padding: 24px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 24px;
}

.faq-q .ital {
  font-style: italic;
  font-weight: 400;
}

.faq-q .plus {
  font-family: "Nexa", sans-serif;
  font-weight: 300;
  font-size: 28px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.4s ease;
  font-size: 15px;
  color: var(--muted-strong);
  line-height: 1.6;
  max-width: 580px;
}

.faq-item.open .faq-a {
  max-height: 320px;
  margin-top: 16px;
}

/* ============ CTA ============ */
.cta {
  background: #0a0a0a;
  color: var(--paper);
  border-radius: 32px;
  padding: 80px 60px;
  margin: 0 0 100px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 75% at 100% 100%,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 45% 60% at 0% 0%,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.06) 35%,
      transparent 65%
    );
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.cta h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.cta h2 .ital {
  font-style: italic;
  font-weight: 400;
  opacity: 0.78;
}

.cta h2 u {
  text-decoration: none;
  border-bottom: 4px solid var(--paper);
  padding-bottom: 4px;
}

.cta-side p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.cta-btn .arr {
  transition: transform 0.2s;
}

.cta-btn:hover .arr {
  transform: translateX(4px);
}

/* ============ RESPONSIVE ============ */

/* ── Tablet  (≤ 900px) ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

  /* Hero */
  .hero-inner {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-top {
    margin-bottom: 40px;
  }
  .hero-status {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero .hero-right {
    width: 100%;
  }
  .hero-cta {
    width: 100%;
    justify-content: center;
  }
  .hero-desc {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* System diagram */
  .system {
    padding: 72px 0;
  }
  .system-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .architecture {
    padding: 32px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .arch-grid {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 12px;
  }

  /* Capabilities */
  .caps {
    padding: 72px 0 40px;
  }
  .caps-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    aspect-ratio: 5/3;
  }
  .cap-card.wide {
    grid-column: span 1;
    aspect-ratio: 5/3;
  }
  /* Wide AI card — full-bleed graph, text at bottom */
  .cap-card.wide .cc-graph {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .cap-card.wide .cc-inner {
    right: 0;
    padding: 28px 32px;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    gap: 10px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.72) 38%,
      transparent 65%
    );
  }
  .cap-card.wide .cc-tag {
    margin-bottom: 0;
  }
  .cap-card.wide .cc-title {
    font-size: clamp(24px, 4.5vw, 36px);
  }
  .cap-card.wide .cc-desc {
    max-width: 500px;
    font-size: 14px;
    margin: 0 auto;
  }
  .cc-code {
    left: 24px;
    right: 24px;
    width: auto;
    bottom: 90px;
  }
  .cc-orbit {
    width: 240px;
    height: 240px;
  }
  .cc-pipeline {
    width: 220px;
  }

  /* Tech stack */
  .tech {
    margin: 60px 0 40px;
    padding: 60px 0;
  }
  .tech-inner {
    padding: 0 24px;
  }
  .tech-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .tech-cats {
    grid-template-columns: 1fr 1fr;
  }

  /* Case study */
  .case {
    margin: 60px 0;
  }
  .case-inner {
    padding: 36px 24px;
  }
  .case-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-results {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ink);
  }
  .case-result {
    padding-left: 0 !important;
    border-right: none;
    padding-bottom: 24px;
  }
  .case-result:nth-child(odd) {
    border-right: 1px solid var(--line-mid);
    padding-right: 20px;
  }

  /* SDLC */
  .sdlc {
    padding: 80px 0;
  }
  .sdlc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sdlc-left {
    position: static;
  }

  /* Trust */
  .trust {
    padding: 60px 0;
  }
  .trust-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* CTA */
  .cta {
    padding: 56px 32px;
    margin: 0 0 72px;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ── Mobile  (≤ 600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  /* Hero */
  .hero {
    height: 100svh;
  }
  .hero-inner {
    padding-top: 96px;
    padding-bottom: 40px;
  }
  .hero-top {
    margin-bottom: 28px;
    flex-wrap: wrap;
  }
  .hero-eyebrow {
    font-size: 10px;
    padding: 6px 12px;
  }
  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .hero-grid {
    gap: 24px;
  }
  .term-body {
    min-height: 180px;
    padding: 16px 14px;
    font-size: 11.5px;
  }
  .hero-desc p {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-light,
  .btn-ghost {
    justify-content: center;
    text-align: center;
  }

  /* Marquee */
  .marquee-track {
    gap: 36px;
    animation-duration: 18s;
  }
  .marquee-track span {
    gap: 36px;
  }

  /* System diagram — stacked rows on mobile */
  .system {
    padding: 56px 0;
  }
  .system-head {
    margin-bottom: 28px;
  }
  .architecture {
    padding: 20px 16px;
    border-radius: 14px;
    overflow: visible;
  }
  .arch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: unset;
  }
  .arch-col {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
    margin-top: 0 !important;
  }
  .arch-col-label {
    width: 100%;
    font-size: 9px;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
  }
  .arch-node {
    flex: 1 1 80px;
    padding: 10px 8px;
    font-size: 11px;
  }
  .arch-node .sub {
    font-size: 8px;
  }

  /* Capabilities — text-focused cards on mobile */
  .caps {
    padding: 48px 0 28px;
  }
  .section-title {
    font-size: clamp(32px, 8vw, 56px);
  }

  .cap-card,
  .cap-card.wide {
    aspect-ratio: unset;
    height: auto;
  }

  /* Hide complex decorations — too dense at small widths */
  .cc-erp-schema,
  .cc-graph,
  .cc-orbit,
  .cc-pipeline,
  .cc-code {
    display: none;
  }

  /* Make text content flow naturally */
  .cc-inner {
    position: relative;
    inset: auto;
    padding: 28px 24px 32px;
    gap: 12px;
  }
  /* Reset wide card desktop overrides */
  .cap-card.wide .cc-inner {
    right: auto;
    background: none;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }
  .cap-card.wide .cc-title {
    font-size: clamp(24px, 6vw, 36px);
  }
  .cap-card.wide .cc-desc {
    max-width: none;
    font-size: 14px;
    margin: 0;
  }

  /* Tech stack */
  .tech {
    margin: 36px 0 24px;
    padding: 44px 0;
    border-radius: 20px;
  }
  .tech-inner {
    padding: 0 20px;
  }
  .tech-head {
    margin-bottom: 28px;
  }
  .tech-cats {
    grid-template-columns: 1fr;
  }
  .tech-cat {
    min-height: auto;
    padding: 20px 18px;
  }

  /* Case study */
  .case {
    margin: 36px 0;
  }
  .case-inner {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .case h2 {
    font-size: clamp(26px, 6vw, 40px);
  }
  .case-result:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  /* SDLC */
  .sdlc {
    padding: 56px 0;
  }
  .sdlc-phase {
    padding: 20px 18px;
  }
  .sdlc-phase h4 {
    font-size: 22px;
  }
  .sdlc-phase-tags {
    gap: 4px;
  }
  .sdlc-phase-tags li {
    font-size: 9px;
    padding: 3px 8px;
  }

  /* Trust */
  .trust {
    padding: 48px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQ */
  .faq {
    padding: 56px 0;
  }
  .faq-q {
    font-size: 18px;
  }
  .faq-item.open .faq-a {
    max-height: 500px;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* CTA */
  .cta {
    padding: 36px 18px;
    margin: 0 0 48px;
    border-radius: 20px;
  }
  .cta h2 {
    font-size: clamp(32px, 8vw, 56px);
  }
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Small phone  (≤ 400px) ────────────────────────────────────── */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }
  .hero {
    padding: 96px 0 40px;
  }
  .hero-title {
    font-size: clamp(47px, 9vw, 44px);
  }
  .hero-eyebrow {
    font-size: 9px;
  }
  .term-body {
    font-size: 10.5px;
  }
  .arch-node {
    flex: 1 1 70px;
    font-size: 10px;
    padding: 8px 6px;
  }
  .caps-grid {
    gap: 16px;
  }
  .sdlc-phase h4 {
    font-size: 20px;
  }
  .faq-q {
    font-size: 16px;
  }
  .cta {
    padding: 28px 16px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
