:root {
  color-scheme: dark;
  --bg: #05090d;
  --bg-soft: #081119;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f6fbff;
  --muted: #a6b4c2;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #27e0a3;
  --accent-2: #38bdf8;
  --gold: #d5b66b;
  --danger: #f472b6;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(39, 224, 163, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 16%, rgba(56, 189, 248, 0.1), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(3, 6, 8, 0.9);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(39, 224, 163, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(39, 224, 163, 0.18), rgba(56, 189, 248, 0.08));
  color: var(--accent);
  font-weight: 800;
}

.brand strong,
.footer strong {
  display: block;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 999px;
  color: #d7e3ed;
  font-size: 12px;
  padding: 9px 9px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a[aria-current="page"] {
  background: rgba(39, 224, 163, 0.12);
  color: var(--accent);
}

.site-nav a:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid rgba(39, 224, 163, 0.72);
  outline-offset: 3px;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: #04110d;
  font-weight: 750;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 79px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 68px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.1vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 span {
  color: var(--accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-text,
.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 18px;
}

.hero-text {
  max-width: 680px;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 660px;
  margin-top: 24px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dbe7ef;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.03em;
  padding: 8px 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 760;
}

.button.primary {
  background: var(--accent);
  color: #04110d;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.pitch-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.pitch-visual::before {
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(39, 224, 163, 0.38), transparent 34%, rgba(56, 189, 248, 0.2));
  content: "";
  opacity: 0.44;
  pointer-events: none;
  z-index: -1;
}

.pitch {
  position: relative;
  aspect-ratio: 0.9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 47% 35%, rgba(39, 224, 163, 0.24), transparent 18%),
    linear-gradient(90deg, rgba(39, 224, 163, 0.08), transparent 38%, rgba(56, 189, 248, 0.09)),
    #071a18;
}

.pitch::before,
.pitch::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
}

.pitch::after {
  inset: auto 24px 24px;
  height: 120px;
}

.pitch-line.center {
  position: absolute;
  top: 50%;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

.pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.box {
  position: absolute;
  left: 50%;
  width: 190px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
}

.box-left {
  top: 24px;
}

.box-right {
  bottom: 24px;
}

.zone {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.zone-a {
  top: 22%;
  left: 28%;
  width: 170px;
  height: 170px;
  background: rgba(39, 224, 163, 0.14);
}

.zone-b {
  right: 14%;
  bottom: 20%;
  width: 190px;
  height: 190px;
  background: rgba(56, 189, 248, 0.11);
}

.track {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: left;
}

.track-1 {
  top: 36%;
  left: 22%;
  width: 190px;
  transform: rotate(28deg);
}

.track-2 {
  top: 58%;
  left: 36%;
  width: 210px;
  transform: rotate(-20deg);
}

.track-3 {
  top: 68%;
  left: 18%;
  width: 175px;
  transform: rotate(14deg);
}

.player {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(39, 224, 163, 0.12), 0 0 18px rgba(39, 224, 163, 0.85);
}

.p1 {
  top: 34%;
  left: 22%;
}

.p2 {
  top: 45%;
  left: 50%;
}

.p3 {
  top: 57%;
  right: 19%;
}

.p4 {
  bottom: 28%;
  left: 31%;
}

.p5 {
  top: 22%;
  right: 26%;
}

.data-label,
.visual-panel {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 9, 13, 0.76);
  color: var(--text);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  padding: 8px 10px;
}

.label-1 {
  top: 20%;
  left: 10%;
}

.label-2 {
  right: 9%;
  bottom: 31%;
}

.label-3 {
  right: 12%;
  top: 45%;
}

.visual-panel {
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 2px;
  min-width: 210px;
}

.visual-panel span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 54px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
}

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

.content-card,
.framework-section,
.audience-list article,
.legal-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    var(--panel);
  padding: clamp(24px, 4vw, 38px);
}

.content-card p,
.framework-copy p,
.audience-list p,
.legal-copy p {
  color: var(--muted);
}

.content-card h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.belief-grid .domain-card {
  min-height: 280px;
}

.framework-stack,
.audience-list {
  display: grid;
  gap: 18px;
}

.framework-section {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 36px;
  align-items: start;
}

.framework-section h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.framework-copy {
  display: grid;
  gap: 14px;
}

.framework-copy p {
  margin: 0;
}

.engine-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.engine-flow article {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(39, 224, 163, 0.24);
  border-radius: var(--radius);
  background: rgba(39, 224, 163, 0.055);
  padding: 22px;
}

.engine-flow article:not(:last-child)::after {
  position: absolute;
  top: 48px;
  right: -13px;
  width: 14px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.engine-flow span {
  color: var(--accent);
  font-weight: 850;
}

.engine-flow strong {
  display: block;
  margin: 12px 0;
  font-size: 20px;
  line-height: 1.15;
}

.engine-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    var(--panel);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.module-card::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.module-card:hover {
  border-color: rgba(39, 224, 163, 0.38);
  transform: translateY(-3px);
}

.module-card > * {
  position: relative;
  z-index: 1;
}

.module-code {
  display: inline-flex;
  margin-bottom: 26px;
  border: 1px solid rgba(39, 224, 163, 0.32);
  border-radius: 999px;
  background: rgba(39, 224, 163, 0.075);
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  padding: 7px 10px;
}

.module-card p {
  color: var(--muted);
}

.platform-architecture {
  display: grid;
  gap: 10px;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.architecture-flow article {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(39, 224, 163, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(39, 224, 163, 0.12), transparent 14rem),
    rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.architecture-flow article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 14px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.architecture-flow strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.16;
}

.architecture-flow span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

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

.workflow-card,
.preview-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    var(--panel);
  padding: 24px;
}

.workflow-card {
  min-height: 430px;
}

.workflow-card::after,
.preview-panel::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: 0.25;
  pointer-events: none;
}

.workflow-card > *,
.preview-panel > * {
  position: relative;
  z-index: 1;
}

.workflow-card h3 {
  font-size: 26px;
}

.workflow-card p,
.preview-panel p {
  color: var(--muted);
}

.workflow-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.workflow-steps span {
  border: 1px solid rgba(39, 224, 163, 0.22);
  border-radius: var(--radius);
  background: rgba(39, 224, 163, 0.055);
  color: #dce8f1;
  font-size: 14px;
  font-weight: 740;
  padding: 11px 12px;
}

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

.preview-panel {
  min-height: 360px;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.preview-header strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
  text-align: right;
}

.brief-list {
  display: grid;
  gap: 14px;
}

.brief-list p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(1, 7, 10, 0.32);
  padding: 14px;
}

.brief-list span,
.fit-snapshot span {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-bars {
  display: grid;
  gap: 18px;
}

.profile-bars label {
  display: grid;
  gap: 8px;
  color: #dbe7ef;
  font-weight: 760;
}

.profile-bars i {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.profile-bars i::before {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  content: "";
}

.preview-note {
  margin-top: 24px;
  font-size: 13px;
}

.priority-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.priority-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(1, 7, 10, 0.32);
  color: #d6e1eb;
  padding: 14px;
}

.priority-list li::before {
  display: none;
}

.priority-list span {
  color: var(--accent);
  font-weight: 850;
}

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

.fit-snapshot div {
  min-height: 120px;
  border: 1px solid rgba(39, 224, 163, 0.22);
  border-radius: var(--radius);
  background: rgba(39, 224, 163, 0.055);
  padding: 14px;
}

.fit-snapshot strong {
  font-size: 24px;
}

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

.audience-list article {
  min-height: 320px;
}

.audience-list h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.compact-panel {
  align-items: center;
}

.legal-copy {
  max-width: 900px;
}

.section-copy p {
  margin-bottom: 18px;
}

blockquote {
  margin: 28px 0 0;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  color: var(--text);
  font-size: 24px;
  font-weight: 760;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 850px;
  margin-inline: auto;
  text-align: center;
}

.domain-grid,
.question-grid,
.serve-grid {
  display: grid;
  gap: 18px;
}

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

.domain-card,
.question-grid article,
.serve-grid article,
.compare article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    var(--panel);
  padding: 24px;
}

.domain-card::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
}

.domain-card:hover,
.serve-grid article:hover,
.compare article:hover {
  border-color: rgba(39, 224, 163, 0.38);
  transform: translateY(-3px);
}

.domain-card,
.serve-grid article,
.compare article {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.domain-card > * {
  position: relative;
  z-index: 1;
}

.icon-dot {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), rgba(39, 224, 163, 0.16));
}

.icon-dot.technical {
  background: linear-gradient(135deg, var(--accent-2), rgba(56, 189, 248, 0.12));
}

.icon-dot.tactical {
  background: linear-gradient(135deg, var(--gold), rgba(213, 182, 107, 0.12));
}

.icon-dot.football {
  background: linear-gradient(135deg, var(--danger), rgba(244, 114, 182, 0.12));
}

.domain-card p {
  color: var(--muted);
}

ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 8px 0;
  color: #d6e1eb;
}

li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  vertical-align: middle;
}

.rie-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--bg-soft);
}

.signal-strip {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(39, 224, 163, 0.08), transparent 34%, rgba(56, 189, 248, 0.06)),
    rgba(255, 255, 255, 0.025);
  padding: 26px 0;
}

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

.signal-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: start;
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(1, 7, 10, 0.38);
  padding: 18px;
}

.signal-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(39, 224, 163, 0.35);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
}

.signal-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.signal-grid p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 46px 0 28px;
}

.process span {
  position: relative;
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid rgba(39, 224, 163, 0.25);
  border-radius: var(--radius);
  background: rgba(39, 224, 163, 0.055);
  color: var(--text);
  font-weight: 800;
}

.process span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 16px;
  height: 1px;
  background: var(--accent);
  content: "";
}

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

.question-grid span {
  color: var(--accent);
  font-weight: 850;
}

.question-grid p,
.serve-grid span,
.compare li {
  color: var(--muted);
}

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

.serve-grid article {
  display: grid;
  gap: 12px;
  min-height: 160px;
}

.serve-grid strong {
  font-size: 18px;
  line-height: 1.2;
}

.purpose {
  background:
    radial-gradient(circle at 80% 50%, rgba(39, 224, 163, 0.11), transparent 24rem),
    var(--bg);
}

.statement {
  margin-top: 28px;
  border: 1px solid rgba(39, 224, 163, 0.3);
  border-radius: var(--radius);
  background: rgba(39, 224, 163, 0.06);
  color: var(--text);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.25;
  padding: 24px;
}

.philosophy {
  text-align: center;
}

.philosophy h2 {
  max-width: 960px;
  margin-inline: auto;
  color: var(--accent);
}

.principles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.principles span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #dce8f1;
  padding: 10px 14px;
}

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

.compare .raqe {
  border-color: rgba(39, 224, 163, 0.35);
  background: linear-gradient(135deg, rgba(39, 224, 163, 0.1), rgba(255, 255, 255, 0.035));
}

.infrastructure {
  max-width: 880px;
  margin: 34px auto 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 830;
  line-height: 1.22;
  text-align: center;
}

.final-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  border: 1px solid rgba(39, 224, 163, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 20%, rgba(39, 224, 163, 0.17), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  padding: clamp(24px, 5vw, 54px);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #d5e3ee;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(1, 7, 10, 0.54);
  color: var(--text);
  padding: 12px 13px;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(39, 224, 163, 0.55);
  outline-offset: 2px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #030608;
  padding: 44px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 0.8fr));
  gap: 28px;
}

.footer p {
  margin: 7px 0;
  color: var(--muted);
}

.footer small {
  display: block;
  max-width: 360px;
  margin-top: 13px;
  color: #7d8c9c;
}

.footer nav,
.socials {
  display: grid;
  gap: 10px;
  color: #d7e3ed;
}

.footer nav strong,
.socials strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  color: #7d8c9c;
  font-size: 13px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .final-panel,
  .page-hero-grid,
  .framework-section {
    grid-template-columns: 1fr;
  }

  .pitch-visual {
    justify-self: start;
    max-width: 620px;
  }

  .domain-grid,
  .serve-grid,
  .signal-grid,
  .two-up,
  .engine-flow,
  .audience-list,
  .module-grid,
  .architecture-flow,
  .workflow-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .engine-flow article:not(:last-child)::after,
  .architecture-flow article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 9, 13, 0.96);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 76px 0;
  }

  .process,
  .question-grid,
  .compare,
  .footer-grid,
  .signal-grid,
  .engine-flow,
  .audience-list,
  .module-grid,
  .architecture-flow,
  .workflow-grid,
  .preview-grid,
  .fit-snapshot {
    grid-template-columns: 1fr;
  }

  .preview-header {
    display: grid;
  }

  .preview-header strong {
    text-align: left;
  }

  .process span:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 50%;
    width: 1px;
    height: 14px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: 40px;
    line-height: 1;
  }

  h2 {
    font-size: 36px;
  }

  .domain-grid,
  .serve-grid,
  .contact-form,
  .two-up {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: auto;
  }

  .copyright {
    display: grid;
  }

  .hero-proof span {
    width: 100%;
  }

  .signal-grid article {
    min-height: auto;
  }

  .pitch-visual {
    padding: 10px;
  }

  .data-label {
    display: none;
  }

  .visual-panel {
    position: static;
    margin-top: 10px;
  }
}
