:root {
  --bg: #040815;
  --bg-2: #071120;
  --panel: rgba(12, 24, 43, 0.72);
  --panel-strong: rgba(15, 30, 52, 0.9);
  --line: rgba(175, 210, 255, 0.12);
  --line-strong: rgba(175, 210, 255, 0.26);
  --text: #eff6ff;
  --muted: #94a8c5;
  --soft: #bfcee6;
  --accent: #73b7ff;
  --accent-2: #67f5d6;
  --accent-3: #8d75ff;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 48px));
  --progress: 0%;
  --pointer-x: 50vw;
  --pointer-y: 20vh;
  --pointer-rx: 0deg;
  --pointer-ry: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(90, 122, 255, 0.18), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(103, 245, 214, 0.08), transparent 20%),
    linear-gradient(180deg, #02040a 0%, #06101c 38%, #040914 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
  opacity: 0.3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(115, 183, 255, 0.12), transparent 18%);
  opacity: 0.9;
  mix-blend-mode: screen;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: var(--progress);
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  box-shadow: 0 0 20px rgba(103, 245, 214, 0.45);
}

.ambient-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb,
.ambient-beam,
.noise-layer {
  position: absolute;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.ambient-orb-a {
  top: -8%;
  left: -4%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(115, 183, 255, 0.36), transparent 62%);
}

.ambient-orb-b {
  top: 20%;
  right: -8%;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(103, 245, 214, 0.2), transparent 60%);
  animation-duration: 24s;
}

.ambient-orb-c {
  bottom: -12%;
  left: 22%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(141, 117, 255, 0.18), transparent 60%);
  animation-duration: 21s;
}

.ambient-beam {
  width: 42vw;
  height: 140vh;
  top: -20vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(115, 183, 255, 0.08), rgba(255, 255, 255, 0));
  filter: blur(16px);
  transform: rotate(18deg);
  opacity: 0.42;
}

.ambient-beam-a {
  left: 8%;
  animation: beamShift 16s ease-in-out infinite;
}

.ambient-beam-b {
  right: 6%;
  transform: rotate(-18deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(103, 245, 214, 0.06), rgba(255, 255, 255, 0));
  animation: beamShift 20s ease-in-out infinite reverse;
}

.noise-layer {
  inset: 0;
  opacity: 0.055;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.95) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.95) 0.6px, transparent 0.6px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(4, 12, 25, 0.58);
  border: 1px solid rgba(181, 212, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.brand span {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 55%, var(--accent-3) 100%);
  box-shadow:
    0 0 0 6px rgba(115, 183, 255, 0.12),
    0 0 28px rgba(115, 183, 255, 0.42);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--text);
}

.nav a:hover {
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

main {
  display: block;
}

.section {
  padding: 92px 0;
}

.page-hero {
  padding-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.96fr);
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #bfd0f7;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 208, 247, 0.72));
}

h1,
h2,
h3,
h4,
p,
ul {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10.6ch;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 14ch;
  text-wrap: balance;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.45;
  text-wrap: balance;
}

h4 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  text-wrap: balance;
}

.hero-copy,
.page-hero,
.split-section > div:first-child,
.section-heading > div:first-child,
.showcase-section > div:first-child,
.cta-banner > div:first-child {
  max-width: 760px;
}

.hero-text,
.section-heading p,
.section-copy,
.stacked-copy p,
.domain-summary,
.domain-point p,
.capability-card p,
.feature-item p,
.timeline-content p,
.info-card p,
.stack-card p,
.case-body p,
.site-footer p,
.site-footer a,
.metric-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
  max-width: 66ch;
  text-wrap: pretty;
}

.narrow-copy {
  max-width: 68ch;
}

.stacked-copy p,
.section-copy,
.case-body p,
.timeline-content p,
.info-card p,
.stack-card p,
.feature-item p,
.metric-card p {
  margin-bottom: 0;
}

.section-heading p,
.domain-summary,
.site-footer p,
.site-footer a {
  max-width: 58ch;
}

.hero-text {
  max-width: 60ch;
}

.domain-summary {
  margin-bottom: 0;
}

.case-body,
.timeline-content,
.footer-brand,
.footer-contact {
  max-width: 62ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #03111c;
  background: linear-gradient(135deg, rgba(115, 183, 255, 1), rgba(103, 245, 214, 0.9));
  box-shadow: 0 18px 40px rgba(103, 245, 214, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.glass-card,
.glass-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(175, 210, 255, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
}

.glass-card {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(14, 29, 50, 0.88), rgba(8, 17, 31, 0.68)),
    rgba(12, 24, 43, 0.76);
  box-shadow: var(--shadow);
}

.glass-mini {
  border-radius: var(--radius-md);
  background: rgba(9, 20, 36, 0.58);
}

.hero-stage {
  min-height: 760px;
  padding: 28px;
  isolation: isolate;
  transform: perspective(1400px) rotateX(var(--pointer-ry)) rotateY(var(--pointer-rx));
  transform-style: preserve-3d;
}

.hero-stage-glow,
.hero-stage-grid {
  position: absolute;
  inset: 0;
}

.hero-stage-glow {
  background:
    radial-gradient(circle at 60% 24%, rgba(115, 183, 255, 0.22), transparent 24%),
    radial-gradient(circle at 30% 75%, rgba(103, 245, 214, 0.14), transparent 25%),
    radial-gradient(circle at 80% 82%, rgba(141, 117, 255, 0.14), transparent 24%);
  filter: blur(8px);
}

.hero-stage-grid {
  background:
    linear-gradient(transparent 30px, rgba(163, 195, 242, 0.08) 31px),
    linear-gradient(90deg, transparent 30px, rgba(163, 195, 242, 0.08) 31px);
  background-size: 31px 31px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at center, black 50%, transparent 88%);
}

.hero-core,
.hero-float,
.signal-card {
  transform: translate3d(var(--shift-x, 0), calc(var(--shift-y, 0) + var(--scroll-shift, 0)), 0);
  transition: transform 0.25s ease-out;
}

.hero-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.hero-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 222, 255, 0.18);
}

.hero-core-ring-a {
  width: min(420px, 72%);
  aspect-ratio: 1;
  box-shadow: inset 0 0 80px rgba(115, 183, 255, 0.08), 0 0 50px rgba(115, 183, 255, 0.08);
  animation: spin 24s linear infinite;
}

.hero-core-ring-b {
  width: min(310px, 54%);
  aspect-ratio: 1;
  border-style: dashed;
  border-color: rgba(103, 245, 214, 0.25);
  animation: spinReverse 18s linear infinite;
}

.hero-core-center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(220px, 42vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 48%),
    radial-gradient(circle, rgba(14, 37, 65, 0.94), rgba(8, 18, 32, 0.96));
  border: 1px solid rgba(182, 212, 255, 0.2);
  text-align: center;
  box-shadow:
    inset 0 0 80px rgba(115, 183, 255, 0.12),
    0 0 65px rgba(115, 183, 255, 0.12);
}

.hero-core-center span,
.metric-label,
.signal-title,
.profile-role,
.contact-label,
.case-meta span,
.timeline-phase,
.capability-index,
.feature-count {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #b6cae6;
}

.hero-core-center strong {
  max-width: 8ch;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.hero-float {
  position: absolute;
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(177, 211, 255, 0.14);
}

.hero-float span,
.signal-card .signal-title {
  display: block;
  margin-bottom: 8px;
}

.hero-float strong,
.metric-value {
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.hero-float-a {
  top: 12%;
  right: 9%;
}

.hero-float-b {
  bottom: 12%;
  left: 8%;
}

.hero-float-c {
  right: 14%;
  bottom: 28%;
}

.hero-side-stack {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.signal-card {
  padding: 18px;
}

.metric-row,
.card-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.metric-card {
  padding: 24px;
}

.metric-value {
  display: block;
  margin: 12px 0 10px;
  letter-spacing: -0.04em;
}

.split-section,
.section-heading,
.showcase-section,
.site-footer,
.case-card {
  display: grid;
  gap: 28px;
}

.split-section,
.section-heading,
.showcase-section,
.case-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: start;
}

.stacked-copy,
.stack-list,
.feature-stack {
  display: grid;
  gap: 18px;
}

.sticky-heading {
  position: static;
  top: auto;
  z-index: 2;
  padding-bottom: 12px;
  background: transparent;
}

.domain-list,
.timeline,
.case-list {
  display: grid;
  gap: 22px;
}

.domain-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(181, 212, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.84), rgba(7, 16, 29, 0.66));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  align-items: start;
}

.domain-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 30px;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(145deg, rgba(115, 183, 255, 0.18), rgba(103, 245, 214, 0.06));
  border: 1px solid rgba(174, 205, 255, 0.14);
}

.domain-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.domain-tag {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  color: #dfeaff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
}

.domain-points,
.three-grid {
  display: grid;
  gap: 14px;
}

.domain-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.domain-point,
.stack-card,
.info-card,
.profile-card {
  padding: 20px;
}

.capability-grid,
.card-grid.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-card {
  min-height: 240px;
  padding: 24px;
}

.capability-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(115, 183, 255, 0.12);
  margin-bottom: 18px;
}

.feature-stack {
  padding: 28px;
}

.feature-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
}

.feature-count {
  font-size: 1.9rem;
  color: rgba(223, 234, 255, 0.42);
  letter-spacing: -0.06em;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(175, 210, 255, 0.12);
}

.timeline-item:last-child {
  border-bottom: 1px solid rgba(175, 210, 255, 0.12);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.vertical-actions {
  flex-direction: column;
  width: min(300px, 100%);
}

.vertical-actions .button {
  width: 100%;
}

.profile-card {
  min-height: 100%;
}

.profile-avatar {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(115, 183, 255, 0.24), rgba(103, 245, 214, 0.18));
  color: var(--text);
  font-weight: 700;
}

.tag-list,
.outcome-list,
.compact-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--soft);
  display: grid;
  gap: 10px;
}

.case-card {
  align-items: start;
  padding: 28px;
}

.case-meta {
  display: grid;
  gap: 10px;
}

.case-meta strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(222, 234, 255, 0.46);
}

.site-footer {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(175, 210, 255, 0.12);
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.2em;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(175, 210, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2vw, -2vh, 0) scale(1.06);
  }
}

@keyframes beamShift {
  0%,
  100% {
    transform: translateX(0) rotate(18deg);
  }
  50% {
    transform: translateX(4vw) rotate(22deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@media (max-width: 1180px) {
  .hero,
  .split-section,
  .section-heading,
  .showcase-section,
  .case-card,
  .cta-banner,
  .site-footer,
  .domain-card,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-stage {
    min-height: 690px;
  }

  .metric-row,
  .capability-grid,
  .card-grid.three-grid,
  .domain-points,
  .hero-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-heading {
    position: static;
    background: transparent;
  }
}

@media (max-width: 860px) {
  body.nav-open {
    overflow: hidden;
  }

  body::after {
    opacity: 0.45;
  }

  .ambient-orb-a {
    width: 56vw;
    height: 56vw;
  }

  .ambient-orb-b,
  .ambient-orb-c,
  .ambient-beam-b {
    opacity: 0.28;
  }

  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .topbar {
    top: 10px;
    border-radius: 24px;
    padding: 14px 16px;
    align-items: center;
  }

  .brand {
    max-width: calc(100% - 56px);
  }

  .brand strong {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .brand span {
    font-size: 0.68rem;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 10px;
    right: 10px;
    bottom: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: rgba(5, 15, 29, 0.97);
    border-radius: 24px;
    border: 1px solid rgba(167, 195, 234, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    max-height: calc(100vh - 100px);
    overflow: auto;
  }

  .nav a,
  .nav-cta {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .section {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 96px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 11vw, 4.2rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    max-width: 12ch;
  }

  .hero-text,
  .section-heading p,
  .section-copy,
  .stacked-copy p,
  .domain-summary,
  .domain-point p,
  .capability-card p,
  .feature-item p,
  .timeline-content p,
  .info-card p,
  .stack-card p,
  .case-body p,
  .site-footer p,
  .site-footer a,
  .metric-card p {
    font-size: 0.98rem;
    line-height: 1.74;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    gap: 26px;
    padding-top: 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stage {
    min-height: 560px;
    padding: 18px;
    border-radius: 28px;
    transform: none;
  }

  .hero-core {
    position: relative;
    min-height: 260px;
  }

  .hero-core-ring-a {
    width: min(280px, 82%);
  }

  .hero-core-ring-b {
    width: min(220px, 64%);
  }

  .hero-core-center {
    width: min(180px, 48vw);
  }

  .hero-core-center strong {
    font-size: 1.08rem;
  }

  .hero-float {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 14px 16px;
  }

  .hero-side-stack,
  .metric-row,
  .capability-grid,
  .card-grid.three-grid,
  .domain-points {
    grid-template-columns: 1fr;
  }

  .hero-side-stack {
    position: static;
    margin-top: 14px;
  }

  .signal-card {
    padding: 16px;
  }

  .metric-row {
    margin-top: 18px;
    gap: 14px;
  }

  .metric-card {
    padding: 18px;
  }

  .split-section,
  .section-heading,
  .showcase-section,
  .case-card,
  .cta-banner,
  .site-footer,
  .domain-card,
  .timeline-item {
    gap: 20px;
  }

  .domain-card,
  .case-card,
  .cta-banner,
  .feature-stack {
    padding: 20px;
    border-radius: 24px;
  }

  .domain-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .domain-index {
    width: 84px;
    height: 84px;
    border-radius: 24px;
    font-size: 1.45rem;
  }

  .timeline-item {
    padding: 18px 0;
  }

  .feature-item {
    grid-template-columns: 1fr;
  }

  .profile-card,
  .info-card,
  .stack-card,
  .domain-point {
    padding: 18px;
  }

  .site-footer {
    margin-top: 24px;
  }

  .site-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding-top: 84px;
  }

  .eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 22px;
  }

  h1 {
    font-size: clamp(2.28rem, 11vw, 3.3rem);
    max-width: 11ch;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
    max-width: 12ch;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .nav {
    top: 72px;
    left: 8px;
    right: 8px;
    padding: 14px;
    border-radius: 20px;
  }

  .nav a,
  .nav-cta {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero {
    gap: 20px;
    padding-top: 26px;
  }

  .hero-stage {
    min-height: auto;
    padding: 16px;
  }

  .hero-core {
    min-height: 220px;
  }

  .hero-core-ring-a {
    width: min(230px, 88%);
  }

  .hero-core-ring-b {
    width: min(175px, 66%);
  }

  .hero-core-center {
    width: min(150px, 46vw);
  }

  .hero-core-center span,
  .metric-label,
  .signal-title,
  .profile-role,
  .contact-label,
  .case-meta span,
  .timeline-phase,
  .capability-index,
  .feature-count {
    letter-spacing: 0.14em;
    font-size: 0.66rem;
  }

  .hero-core-center strong {
    font-size: 0.94rem;
    max-width: 9ch;
  }

  .hero-float,
  .signal-card,
  .metric-card,
  .feature-stack,
  .case-card,
  .cta-banner,
  .domain-card,
  .profile-card,
  .info-card,
  .stack-card,
  .domain-point {
    padding: 16px;
  }

  .metric-value,
  .hero-float strong {
    font-size: 1.05rem;
  }

  .feature-count {
    font-size: 1.45rem;
  }

  .domain-index {
    width: 72px;
    height: 72px;
    font-size: 1.2rem;
  }

  .profile-avatar {
    width: 52px;
    height: 52px;
  }

  .tag-list,
  .outcome-list,
  .compact-list {
    gap: 8px;
    padding-left: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ambient-orb,
  .ambient-beam,
  .hero-core-ring-a,
  .hero-core-ring-b {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
