:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #273449;
  --muted: #657084;
  --paper: #ffffff;
  --surface: #f5fbff;
  --pearl: #eef8ff;
  --white: #ffffff;
  --line: rgba(30, 64, 116, 0.13);
  --cyan: #08b9d6;
  --cyan-deep: #0379ad;
  --coral: #ff6b52;
  --lime: #93d94f;
  --amber: #ffc247;
  --blue: #0b8ff2;
  --violet: #7028e8;
  --magenta: #e647d3;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(20, 62, 118, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 9% 4%, rgba(112, 40, 232, 0.1), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(8, 185, 214, 0.13), transparent 26%),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 64px);
  color: var(--ink);
  border-bottom: 1px solid rgba(30, 64, 116, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(138px, 16vw, 190px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(23, 73, 134, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(30, 64, 116, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 38px rgba(36, 78, 142, 0.1);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(8, 185, 214, 0.1);
  color: var(--cyan-deep);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 470px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  padding: 154px clamp(20px, 5vw, 86px) 64px;
  color: var(--ink);
  background:
    radial-gradient(circle at 19% 33%, rgba(230, 71, 211, 0.15), transparent 23%),
    radial-gradient(circle at 74% 21%, rgba(8, 185, 214, 0.2), transparent 27%),
    radial-gradient(circle at 84% 79%, rgba(255, 194, 71, 0.2), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f4fbff 54%, #ffffff 100%);
}

#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.44;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 88, 158, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 40, 232, 0.038) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12));
  animation: grid-drift 28s linear infinite;
}

.hero-content,
.hero-showcase {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: #121827;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.voice-button {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  flex: 0 0 auto;
  min-height: 46px;
  gap: 10px;
  padding: 11px 14px 11px 12px;
  border: 1px solid rgba(11, 143, 242, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(36, 78, 142, 0.1);
  backdrop-filter: blur(16px);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
}

.voice-button:hover {
  transform: translateY(-2px);
}

.voice-button.is-playing {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  box-shadow: 0 18px 42px rgba(112, 40, 232, 0.2);
}

.voice-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 50%, var(--white) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 0 4px rgba(8, 185, 214, 0.1);
}

.voice-icon::before,
.voice-icon::after {
  position: absolute;
  top: 50%;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 999px 0 0;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.voice-icon::before {
  right: 5px;
  width: 7px;
  height: 7px;
}

.voice-icon::after {
  right: 1px;
  width: 12px;
  height: 12px;
  opacity: 0.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--magenta) 58%, var(--coral));
  box-shadow: 0 18px 42px rgba(11, 143, 242, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(11, 143, 242, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(36, 78, 142, 0.1);
}

.button-light {
  color: var(--ink);
  border-color: rgba(112, 40, 232, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(36, 78, 142, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-proof span,
.impact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 143, 242, 0.15);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(36, 78, 142, 0.08);
  font-size: 0.83rem;
  font-weight: 800;
}

.hero-showcase {
  display: grid;
  gap: 16px;
  align-self: center;
}

.hero-visual-card {
  position: relative;
  min-height: clamp(360px, 44vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(30, 64, 116, 0.14);
  border-radius: var(--radius);
  background: #101827;
  box-shadow: 0 34px 90px rgba(25, 78, 145, 0.22);
  backdrop-filter: blur(18px);
}

.product-reel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.reel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 1200ms ease;
}

.reel-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 16, 28, 0.04), rgba(9, 16, 28, 0.22) 42%, rgba(9, 16, 28, 0.7)),
    radial-gradient(circle at 16% 22%, color-mix(in srgb, var(--reel-accent) 32%, transparent), transparent 34%);
  content: "";
}

.reel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.reel-slide.is-active img {
  animation: reel-drift 5.8s ease-in-out both;
}

.reel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.06);
}

.reel-amplify {
  --reel-accent: var(--magenta);
}

.reel-vent {
  --reel-accent: var(--coral);
}

.reel-grace {
  --reel-accent: var(--lime);
}

.reel-nexus {
  --reel-accent: var(--amber);
}

.reel-civic {
  --reel-accent: var(--cyan);
}

.hero-visual-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background:
    radial-gradient(circle at 28% 22%, rgba(109, 235, 255, 0.32), transparent 30%),
    radial-gradient(circle at 78% 74%, rgba(255, 102, 84, 0.26), transparent 32%);
  content: "";
  mix-blend-mode: screen;
}

.signal-sweep {
  position: absolute;
  z-index: 4;
  inset: -20% auto -20% -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  filter: blur(1px);
  transform: skewX(-16deg);
  animation: signal-sweep 4.8s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 24px rgba(155, 216, 71, 0.86);
  content: "";
}

.orbit-one {
  top: 18%;
  left: 20%;
  width: 62%;
  aspect-ratio: 1;
  animation: rotate-signal 16s linear infinite;
}

.orbit-one::after {
  top: 7%;
  left: 18%;
}

.orbit-two {
  right: 13%;
  bottom: 14%;
  width: 42%;
  aspect-ratio: 1;
  animation: rotate-signal 11s linear infinite reverse;
}

.orbit-two::after {
  right: 14%;
  bottom: 5%;
  background: var(--coral);
  box-shadow: 0 0 24px rgba(255, 102, 84, 0.78);
}

.hero-visual-card figcaption {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(10, 16, 24, 0.7);
  backdrop-filter: blur(16px);
}

.hero-visual-card figcaption strong {
  color: var(--white);
  font-size: 0.95rem;
}

.reel-caption a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.reel-caption a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.reel-progress {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.55);
  backdrop-filter: blur(14px);
}

.reel-progress span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.reel-progress span.is-active {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12), 0 0 14px rgba(24, 194, 255, 0.35);
  transform: scale(1.08);
}

.hero-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-signal-row span {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(30, 64, 116, 0.13);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 36px rgba(36, 78, 142, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero-signal-row strong {
  color: var(--violet);
  font-size: 1.42rem;
  line-height: 1;
}

.system-panel {
  position: relative;
  overflow: hidden;
  min-height: 134px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.system-panel::before {
  position: absolute;
  inset: 0;
  width: 6px;
  content: "";
}

.panel-amplify::before,
.amplify {
  --accent: var(--cyan);
}

.panel-vent::before,
.vent {
  --accent: var(--coral);
}

.panel-grace::before,
.grace {
  --accent: var(--lime);
}

.panel-nexus::before,
.nexus {
  --accent: var(--amber);
}

.panel-civic::before,
.civic {
  --accent: var(--violet);
}

.system-panel::before,
.portfolio-card::before {
  background: var(--accent);
}

.panel-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--accent, var(--cyan));
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-panel strong {
  display: block;
  font-size: 1.28rem;
}

.system-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 86px);
}

.section-intro {
  max-width: 730px;
  margin-bottom: 34px;
}

.section-intro-wide {
  max-width: 920px;
}

.section-intro h2,
.ai-studio-copy h2,
.impact-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro p:not(.eyebrow),
.ai-studio-copy p,
.impact-copy p,
.contact-section p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 107, 82, 0.08), transparent 24%),
    var(--white);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
  max-width: 820px;
  font-size: clamp(1.08rem, 1.6vw, 1.26rem);
}

.story-copy p {
  margin: 0;
  color: var(--ink-soft);
}

.story-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 700;
}

.founder-panel {
  position: sticky;
  top: 110px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 185, 214, 0.1), rgba(230, 71, 211, 0.08), rgba(255, 194, 71, 0.1)),
    #fbfcfe;
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.11);
}

.founder-initials {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--violet) 0%, var(--blue) 48%, var(--magenta) 100%);
  font-size: 1.4rem;
  font-weight: 900;
}

.founder-panel h3 {
  margin: 0;
  font-size: 1.6rem;
}

.founder-panel p:not(.panel-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
}

.founder-insight {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(112, 40, 232, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(112, 40, 232, 0.08), rgba(8, 185, 214, 0.08)),
    rgba(255, 255, 255, 0.74);
}

.founder-insight strong {
  display: block;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-insight p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.founder-stats {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.founder-stats div {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.founder-stats dt {
  color: var(--violet);
  font-size: 1.28rem;
  font-weight: 900;
}

.founder-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.studio-section {
  background:
    linear-gradient(180deg, var(--surface), #ffffff);
}

.services-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(8, 185, 214, 0.11), transparent 24%),
    radial-gradient(circle at 86% 28%, rgba(255, 107, 82, 0.1), transparent 24%),
    #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245, 251, 255, 0.78), rgba(255, 255, 255, 0.94)),
    #ffffff;
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.09);
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--coral));
  content: "";
}

.service-index {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 34px;
  padding: 6px 9px;
  border: 1px solid rgba(112, 40, 232, 0.14);
  border-radius: 999px;
  color: var(--violet);
  background: rgba(112, 40, 232, 0.07);
  font-size: 0.74rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.26rem;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.service-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  border: 1px solid rgba(11, 143, 242, 0.15);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card,
.portfolio-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.08);
}

.capability-card {
  min-height: 282px;
  padding: 24px;
}

.capability-icon {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 18%, transparent 18% 32%, rgba(255, 255, 255, 0.34) 32% 52%, transparent 52%),
    var(--cyan);
}

.icon-coral {
  background:
    linear-gradient(45deg, transparent 0 38%, rgba(255, 255, 255, 0.45) 38% 54%, transparent 54%),
    var(--coral);
}

.icon-lime {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0 18%, transparent 18% 44%, rgba(255, 255, 255, 0.45) 44% 62%, transparent 62%),
    var(--lime);
}

.capability-card h3,
.portfolio-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.capability-card p,
.portfolio-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.intelligence-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(112, 40, 232, 0.1), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(8, 185, 214, 0.12), transparent 22%),
    #ffffff;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.intelligence-card,
.responsible-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.08);
}

.intelligence-card::before,
.responsible-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--magenta), var(--coral));
  content: "";
}

.intelligence-index {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--violet);
  font-size: 0.86rem;
  font-weight: 900;
}

.intelligence-card h3,
.responsible-grid h3 {
  margin: 0;
  font-size: 1.22rem;
}

.intelligence-card p,
.responsible-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.ecosystem-map {
  position: relative;
  display: grid;
  min-height: 430px;
  margin-top: 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(8, 88, 158, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 40, 232, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(8, 185, 214, 0.16), transparent 42%),
    #f8fdff;
  background-size: 48px 48px, 48px 48px, auto, auto;
  box-shadow: 0 22px 60px rgba(36, 78, 142, 0.1);
}

.ecosystem-map::before,
.ecosystem-map::after {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px dashed rgba(112, 40, 232, 0.24);
  border-radius: 50%;
  content: "";
}

.ecosystem-map::after {
  width: 40%;
  border-color: rgba(8, 185, 214, 0.24);
}

.ecosystem-centre,
.ecosystem-node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(36, 78, 142, 0.12);
}

.ecosystem-centre {
  width: min(280px, 60vw);
  min-height: 134px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, #111827, #13355b 48%, #4a1c77);
  text-align: center;
}

.ecosystem-centre span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem-centre strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}

.ecosystem-node {
  position: absolute;
  min-width: 150px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(30, 64, 116, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.node-amplify {
  top: 72px;
  left: 13%;
  border-top: 4px solid var(--cyan);
}

.node-vent {
  top: 80px;
  right: 12%;
  border-top: 4px solid var(--coral);
}

.node-grace {
  right: 11%;
  bottom: 72px;
  border-top: 4px solid var(--lime);
}

.node-nexus {
  bottom: 70px;
  left: 12%;
  border-top: 4px solid var(--amber);
}

.node-civic {
  top: 48%;
  right: 7%;
  border-top: 4px solid var(--violet);
}

.ai-studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 194, 71, 0.16), transparent 24%),
    linear-gradient(135deg, #ffffff, #f0fbff);
}

.ai-demo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(36, 78, 142, 0.14);
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(8, 185, 214, 0.08), rgba(230, 71, 211, 0.08));
}

.demo-tab {
  min-height: 42px;
  border: 1px solid rgba(30, 64, 116, 0.12);
  border-radius: 7px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.demo-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  box-shadow: 0 12px 28px rgba(112, 40, 232, 0.18);
}

.demo-output {
  min-height: 330px;
  padding: 26px;
}

.demo-label {
  margin: 0 0 12px;
  color: var(--cyan-deep);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-output h3 {
  max-width: 540px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.demo-output p:not(.demo-label) {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.demo-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.demo-steps span,
.product-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 143, 242, 0.15);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(245, 251, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 900;
}

.portfolio-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(8, 185, 214, 0.09), transparent 23%),
    radial-gradient(circle at 86% 16%, rgba(230, 71, 211, 0.08), transparent 22%),
    var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 16px;
}

.portfolio-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.1);
}

.portfolio-card.civic {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  min-height: 310px;
  align-items: center;
}

.portfolio-card.civic .product-visual {
  height: 100%;
  min-height: 250px;
  margin-bottom: 0;
  grid-row: 1 / span 4;
}

.portfolio-card.civic a {
  margin-top: 8px;
}

.portfolio-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
}

.portfolio-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.portfolio-card a:hover {
  color: var(--ink);
}

.product-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.product-visual {
  position: relative;
  height: 180px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-visual::before {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 18px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0 10px, transparent 10px 18px, rgba(255, 255, 255, 0.48) 18px 28px, transparent 28px 36px, rgba(255, 255, 255, 0.34) 36px 46px),
    rgba(255, 255, 255, 0.12);
  content: "";
}

.product-visual span {
  position: absolute;
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.product-amplify {
  background:
    linear-gradient(135deg, #102833, #0a1520 52%, #083d49);
}

.product-amplify span:nth-child(1) {
  left: 16px;
  top: 54px;
  width: 42%;
  height: 88px;
  background: linear-gradient(180deg, var(--cyan), #6de6ff);
}

.product-amplify span:nth-child(2) {
  right: 16px;
  top: 56px;
  width: 38%;
  height: 28px;
}

.product-amplify span:nth-child(3) {
  right: 16px;
  top: 94px;
  width: 32%;
  height: 22px;
  background: rgba(155, 216, 71, 0.76);
}

.product-amplify span:nth-child(4) {
  right: 16px;
  bottom: 20px;
  width: 46%;
  height: 18px;
}

.product-vent {
  background:
    linear-gradient(135deg, #321b22, #111720 56%, #4b2520);
}

.product-vent span:nth-child(1) {
  left: 18px;
  bottom: 18px;
  width: 22%;
  height: 84px;
  background: var(--coral);
}

.product-vent span:nth-child(2) {
  left: 31%;
  bottom: 18px;
  width: 22%;
  height: 112px;
  background: #ff9c73;
}

.product-vent span:nth-child(3) {
  right: 18px;
  bottom: 18px;
  width: 22%;
  height: 66px;
  background: rgba(255, 255, 255, 0.22);
}

.product-vent span:nth-child(4) {
  left: 18px;
  top: 54px;
  width: 70%;
  height: 12px;
}

.product-grace {
  background:
    linear-gradient(135deg, #16221c, #10151f 54%, #33401f);
}

.product-grace span:nth-child(1) {
  left: 18px;
  top: 58px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lime);
}

.product-grace span:nth-child(2) {
  right: 18px;
  top: 58px;
  width: 46%;
  height: 20px;
}

.product-grace span:nth-child(3) {
  right: 18px;
  top: 90px;
  width: 38%;
  height: 20px;
  background: rgba(255, 255, 255, 0.22);
}

.product-grace span:nth-child(4) {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 18px;
}

.product-nexus {
  background:
    linear-gradient(135deg, #2a2114, #111720 52%, #3b3151);
}

.product-nexus span:nth-child(1) {
  left: 18px;
  right: 18px;
  top: 72px;
  height: 4px;
  background: var(--amber);
}

.product-nexus span:nth-child(2),
.product-nexus span:nth-child(3),
.product-nexus span:nth-child(4) {
  top: 58px;
  width: 30px;
  height: 30px;
  border: 3px solid var(--amber);
  border-radius: 50%;
  background: #111720;
}

.product-nexus span:nth-child(2) {
  left: 20px;
}

.product-nexus span:nth-child(3) {
  left: calc(50% - 15px);
}

.product-nexus span:nth-child(4) {
  right: 20px;
}

.product-civic {
  background:
    linear-gradient(135deg, #111827, #17214a 50%, #3b1762);
}

.product-civic span:nth-child(1) {
  left: 18px;
  top: 60px;
  width: 58px;
  height: 58px;
  border: 4px solid #c99cff;
  border-radius: 50%;
  background: rgba(112, 40, 232, 0.3);
}

.product-civic span:nth-child(2) {
  left: 86px;
  top: 74px;
  width: 40%;
  height: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.product-civic span:nth-child(3) {
  right: 18px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--magenta) 0 25%, transparent 26%),
    conic-gradient(var(--cyan), var(--magenta), var(--amber), var(--cyan));
}

.product-civic span:nth-child(4) {
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--amber));
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  background:
    radial-gradient(circle at 10% 18%, rgba(8, 185, 214, 0.34), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(230, 71, 211, 0.28), transparent 25%),
    radial-gradient(circle at 76% 86%, rgba(255, 194, 71, 0.18), transparent 26%),
    #101827;
  color: var(--white);
}

.responsible-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(8, 185, 214, 0.1), transparent 24%),
    radial-gradient(circle at 88% 24%, rgba(112, 40, 232, 0.08), transparent 24%),
    #ffffff;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.impact-visual {
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 185, 214, 0.34), transparent 34%),
    linear-gradient(315deg, rgba(230, 71, 211, 0.25), transparent 38%),
    linear-gradient(180deg, rgba(255, 194, 71, 0.18), transparent 52%),
    #141d2b;
}

.impact-track {
  display: grid;
  width: min(88%, 390px);
  gap: 14px;
}

.impact-track span {
  position: relative;
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.impact-track span:nth-child(2) {
  transform: translateX(28px);
}

.impact-track span:nth-child(3) {
  transform: translateX(56px);
  color: var(--amber);
}

.impact-track span:nth-child(4) {
  transform: translateX(84px);
  color: #ff9bdc;
}

.impact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.faq-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(147, 217, 79, 0.14), transparent 22%),
    radial-gradient(circle at 86% 16%, rgba(230, 71, 211, 0.09), transparent 24%),
    #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(36, 78, 142, 0.08);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 52px 18px 20px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 18px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  content: "+";
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 50%, rgba(8, 185, 214, 0.14), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(255, 107, 82, 0.12), transparent 24%),
    linear-gradient(135deg, #ffffff, #f1fbff);
}

.contact-copy {
  position: sticky;
  top: 142px;
}

.contact-section p {
  color: var(--muted);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 143, 242, 0.15);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(36, 78, 142, 0.08);
  font-size: 0.83rem;
  font-weight: 900;
}

.contact-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 70px rgba(36, 78, 142, 0.14);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(30, 64, 116, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 0.96rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 143, 242, 0.12);
}

.full-span {
  grid-column: 1 / -1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--violet);
  flex: 0 0 auto;
}

.form-status {
  margin: 0 0 16px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 143, 242, 0.16);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(245, 251, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-status.is-success {
  border-color: rgba(147, 217, 79, 0.45);
  background: rgba(147, 217, 79, 0.12);
  color: #315b18;
}

.form-status.is-error {
  border-color: rgba(255, 107, 82, 0.4);
  background: rgba(255, 107, 82, 0.1);
  color: #873021;
}

.form-status[hidden] {
  display: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: 26px clamp(20px, 5vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
  font-size: 0.92rem;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-logo {
  display: block;
  width: 142px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--blue);
}

.legal-hero {
  padding-top: 172px;
  background:
    radial-gradient(circle at 12% 30%, rgba(8, 185, 214, 0.13), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(230, 71, 211, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5fbff);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  background: #ffffff;
}

.legal-content article {
  max-width: 860px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(36, 78, 142, 0.1);
}

.legal-content h2 {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .service-grid,
  .intelligence-grid,
  .responsible-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .story-layout,
  .hero-section,
  .ai-studio-section,
  .impact-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

  .hero-visual-card {
    min-height: 430px;
  }

  .founder-panel {
    position: static;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-map {
    min-height: auto;
    padding: 22px;
    place-items: stretch;
  }

  .ecosystem-map::before,
  .ecosystem-map::after {
    display: none;
  }

  .ecosystem-centre {
    width: 100%;
    margin-bottom: 12px;
  }

  .ecosystem-node {
    position: static;
    min-width: 0;
    margin-top: 10px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  .hero-section {
    min-height: auto;
    padding-top: 116px;
  }

  .brand-logo {
    width: 128px;
  }

  .hero-showcase,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual-card {
    min-height: 330px;
  }

  .hero-visual-card figcaption {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 4px;
  }

  .reel-caption strong {
    font-size: 0.86rem;
  }

  .hero-signal-row {
    grid-template-columns: 1fr;
  }

  .intelligence-grid,
  .responsible-grid,
  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .demo-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-output {
    min-height: 300px;
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .system-panel,
  .portfolio-card,
  .capability-card,
  .intelligence-card,
  .service-card,
  .faq-item,
  .founder-panel {
    padding: 18px;
  }

  .faq-item {
    padding: 0;
  }

  .portfolio-card {
    min-height: 0;
  }

  .portfolio-card.civic {
    display: flex;
    min-height: 0;
  }

  .portfolio-card.civic .product-visual {
    height: 180px;
    min-height: 180px;
    margin-bottom: 22px;
  }

  .impact-visual {
    min-height: 320px;
  }

  .impact-track span:nth-child(2),
  .impact-track span:nth-child(3),
  .impact-track span:nth-child(4) {
    transform: none;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes signal-sweep {
  0%,
  22% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }
  38% {
    opacity: 1;
  }
  70%,
  100% {
    transform: translateX(460%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes reel-drift {
  from {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
  to {
    transform: scale(1.14) translate3d(1.5%, 1%, 0);
  }
}

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