:root {
  --navy-950: #070b0a;
  --navy-900: #0a1110;
  --navy-850: #0d1714;
  --navy-800: #13221d;
  --civic-gold: #c9aa62;
  --civic-gold-soft: rgba(201, 170, 98, 0.22);
  --signal-cyan: #5ed29c;
  --wine: #18382d;
  --parchment: #f2eee6;
  --ink: #f7f5ef;
  --muted: #9aa89f;
  --slate: #66766d;
  --line: rgba(242, 238, 230, 0.11);
  --line-strong: rgba(94, 210, 156, 0.3);
  --platinum: #d8d3c9;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
  min-height: 100%;
  background: var(--navy-950);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 78% 18%, rgba(94, 210, 156, 0.08), transparent 24rem),
    radial-gradient(circle at 14% 46%, rgba(201, 170, 98, 0.08), transparent 28rem),
    linear-gradient(180deg, #070b0a, #09110f 42%, #070b0a);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 170, 98, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(94, 210, 156, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 76%, transparent 100%);
  opacity: 0.5;
}

.site-shell > * {
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #070b0a;
  isolation: isolate;
}

.hero-video,
.hero-overlay,
.hero-grid-lines,
.hero-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: saturate(0.72) contrast(1.08) brightness(0.78);
  transform: scale(1.04);
  transform-origin: center;
}

.hero-overlay {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #070b0a 0%, rgba(7, 11, 10, 0.86) 26%, rgba(7, 11, 10, 0.34) 62%, transparent 100%),
    linear-gradient(0deg, #070b0a 0%, rgba(7, 11, 10, 0.82) 16%, rgba(7, 11, 10, 0.08) 54%, transparent 100%),
    radial-gradient(ellipse at 96% 96%, rgba(7, 11, 10, 0.98) 0 12rem, rgba(7, 11, 10, 0.7) 16rem, transparent 26rem);
}

.hero-grid-lines {
  z-index: -1;
  pointer-events: none;
  display: none;
}

.hero-grid-lines i {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-grid-lines i:nth-child(1) { left: 25%; }
.hero-grid-lines i:nth-child(2) { left: 50%; }
.hero-grid-lines i:nth-child(3) { left: 75%; }

.hero-glow {
  z-index: -1;
  top: 10%;
  height: 260px;
  pointer-events: none;
  opacity: 0.78;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(214, 168, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 210, 156, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 72%, transparent 100%);
  opacity: 0.24;
}

.nav-shell {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 40;
  width: min(100% - 32px, 1240px);
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  pointer-events: auto;
}

.nav-shell.reveal,
.nav-shell.reveal.is-visible {
  transform: none;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  color: var(--ink);
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

.brand img {
  display: block;
  flex: 0 0 auto;
}

.brand-mark-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-word-img {
  width: 138px;
  height: auto;
  object-fit: contain;
}

.brand-word {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--parchment);
  white-space: nowrap;
  line-height: 1;
}

.footer-brand .brand-mark-img {
  width: 42px;
  height: 42px;
}

.footer-brand .brand-word-img {
  width: 168px;
}

.footer-brand .brand-word {
  font-size: 1.3rem;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a {
  position: relative;
  border-radius: 0;
  padding: 9px 10px;
  color: rgba(248, 250, 252, 0.78);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 240ms ease, background 240ms ease;
}

.nav-links a:hover {
  background: transparent;
  color: #5ed29c;
}

.nav-cta,
.primary-button,
.ghost-button,
.footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 260ms var(--ease), background 260ms ease, border-color 260ms ease;
}

.nav-cta,
.primary-button {
  background: #5ed29c;
  color: #070b0a;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-cta {
  flex: 0 0 auto;
  padding: 11px 17px;
  background: #5ed29c;
}

.primary-button {
  gap: 9px;
  padding: 15px 23px;
}

.nav-cta:hover,
.primary-button:hover,
.footer-form button:hover {
  transform: translateY(-2px);
  background: #7ee8b7;
}

.ghost-button {
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 260ms ease;
}

.menu-button.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  border: 0;
  background: rgba(7, 11, 10, 0.96);
  padding: 88px 28px 32px;
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 8px 0;
  color: rgba(248, 250, 252, 0.86);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 12vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 180px 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.hero-stage a,
.hero-stage button {
  pointer-events: auto;
}

.liquid-card {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: clamp(34px, 6vh, 64px);
  padding: 21px;
  transform: translateY(-50px);
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.liquid-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.04));
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.liquid-card span {
  color: rgba(248, 250, 252, 0.76);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.liquid-card h2 {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.liquid-card em {
  color: #5ed29c;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.liquid-card p {
  color: rgba(248, 250, 252, 0.62);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.45;
}

.hero-copy-block {
  max-width: 720px;
  margin-top: 0;
}

.hero-eyebrow {
  position: static;
  color: #5ed29c;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-main-title {
  max-width: 780px;
  margin-top: 18px;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-main-title span {
  color: #5ed29c;
}

.hero-description {
  max-width: 512px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.hero-words-group {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 3vw, 4rem);
  right: clamp(1.25rem, 4vw, 5rem);
  top: 26%;
  display: grid;
  gap: 18px;
}

.hero-crest {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(214, 168, 79, 0.42);
  padding: 0 0 10px;
  color: rgba(243, 234, 215, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-crest img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-brand-title {
  max-width: min-content;
  color: var(--parchment);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 13.2vw, 14rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-shadow: 0 22px 90px rgba(0, 0, 0, 0.54);
}

.hero-brand-title::after {
  content: "";
  display: block;
  width: min(34vw, 420px);
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--civic-gold), rgba(125, 211, 252, 0.54), transparent);
}

.stagger-word {
  position: absolute;
  z-index: 3;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.2rem, 14vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.82;
  text-transform: lowercase;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
}

.word-one {
  left: clamp(1.25rem, 3vw, 4rem);
  top: 22%;
}

.word-two {
  right: clamp(1.25rem, 4vw, 5rem);
  top: 40%;
}

.word-three {
  left: clamp(20%, 28vw, 32%);
  top: 59%;
  text-transform: uppercase;
}

.hero-floating-copy {
  position: absolute;
  z-index: 4;
  left: clamp(1.5rem, 3vw, 4rem);
  top: 66%;
  max-width: 460px;
  color: rgba(243, 234, 215, 0.88);
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.hero-action-panel {
  position: static;
  z-index: 5;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-intel-console {
  position: absolute;
  right: clamp(1rem, 2vw, 2.2rem);
  top: 28%;
  width: min(34vw, 390px);
  min-height: 430px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(94, 210, 156, 0.075), transparent 40%),
    rgba(255, 255, 255, 0.012);
  backdrop-filter: blur(5px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08), 0 28px 90px rgba(0, 0, 0, 0.24);
  pointer-events: auto;
}

.hero-intel-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, rgba(94, 210, 156, 0.18) 50%, transparent 51%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 34px;
  opacity: 0.45;
  pointer-events: none;
}

.intel-orbit {
  position: absolute;
  right: 28px;
  top: 28px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(94, 210, 156, 0.24);
  border-radius: 50%;
  opacity: 0.86;
}

.intel-orbit::before,
.intel-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(214, 168, 79, 0.16);
  border-radius: 50%;
}

.intel-orbit::after {
  inset: 42px;
  background: rgba(94, 210, 156, 0.16);
  box-shadow: 0 0 34px rgba(94, 210, 156, 0.32);
}

.intel-orbit i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5ed29c;
  box-shadow: 0 0 18px rgba(94, 210, 156, 0.78);
}

.intel-orbit i:nth-child(1) { left: 18px; top: 25px; }
.intel-orbit i:nth-child(2) { right: 12px; top: 55px; }
.intel-orbit i:nth-child(3) { left: 54px; bottom: 11px; }

.intel-console-top,
.intel-metric-grid,
.intel-trace,
.hero-intel-console p {
  position: relative;
  z-index: 1;
}

.intel-console-top {
  display: grid;
  gap: 10px;
  max-width: 190px;
}

.intel-console-top span,
.intel-metric-grid span {
  color: #5ed29c;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intel-console-top strong {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intel-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 52px;
}

.intel-metric-grid div {
  min-height: 92px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 10, 0.38);
}

.intel-metric-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.intel-trace {
  height: 128px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(94, 210, 156, 0.28) 50%, transparent 50.5%),
    linear-gradient(22deg, transparent 49.5%, rgba(214, 168, 79, 0.2) 50%, transparent 50.5%),
    rgba(7, 11, 10, 0.34);
  overflow: hidden;
}

.intel-trace span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  border: 1px solid rgba(248, 250, 252, 0.72);
  border-radius: 999px;
  background: #070b0a;
  box-shadow: 0 0 18px rgba(94, 210, 156, 0.48);
}

.hero-intel-console p {
  max-width: 300px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.65;
}

.hero-stat {
  position: absolute;
  z-index: 4;
  color: var(--ink);
}

.hero-stat div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-stat strong {
  font-size: clamp(2.1rem, 4vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(216, 221, 229, 0.62);
  font-size: 0.78rem;
  text-transform: lowercase;
}

.hero-stat i {
  display: block;
  width: clamp(52px, 8vw, 118px);
  height: 1px;
  background: rgba(248, 250, 252, 0.44);
}

.hero-stat-top {
  top: 15%;
  right: clamp(1.5rem, 7vw, 9rem);
  text-align: right;
}

.hero-stat-top i {
  transform: rotate(18deg);
}

.hero-stat-left {
  left: clamp(1.5rem, 7vw, 7rem);
  bottom: clamp(8rem, 11vw, 10rem);
}

.hero-stat-left i {
  transform: rotate(-18deg);
}

.hero-stat-right {
  right: clamp(1.5rem, 6vw, 6rem);
  bottom: clamp(4.6rem, 8vw, 7rem);
  text-align: right;
}

.hero-stat-right i {
  transform: rotate(-18deg);
}

.hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15rem;
  background: linear-gradient(to bottom, transparent, var(--navy-950));
  pointer-events: none;
}

.hero-grid {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
  padding: 150px 0 clamp(38px, 7vw, 82px);
  pointer-events: none;
}

.hero-copy,
.risk-console {
  pointer-events: auto;
}

.eyebrow,
.section-kicker {
  color: rgba(214, 168, 79, 0.86);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.cta-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--parchment);
}

.hero-title {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(3.7rem, 7.6vw, 8.25rem);
  line-height: 0.9;
}

.hero-title::after,
.section-title::after {
  content: "";
  display: block;
  width: 92px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, #5ed29c, rgba(201, 170, 98, 0.62), transparent);
}

.hero-subtitle,
.section-lede {
  max-width: 650px;
  color: rgba(242, 238, 230, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.8;
}

.hero-subtitle {
  margin-top: 26px;
}

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

.hero-trust {
  margin-top: 18px;
  color: rgba(216, 221, 229, 0.5);
  font-size: 0.78rem;
  line-height: 1.5;
}

.risk-console,
.glass-panel,
.service-card,
.framework-card,
.founder-card,
.cta-panel,
.faq-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(94, 210, 156, 0.07), transparent 36%),
    linear-gradient(315deg, rgba(201, 170, 98, 0.055), transparent 42%),
    linear-gradient(180deg, rgba(242, 238, 230, 0.06), rgba(242, 238, 230, 0.018)),
    rgba(10, 17, 16, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 28px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.risk-console {
  align-self: end;
  max-width: 430px;
  padding: 20px;
  transform-style: preserve-3d;
  will-change: transform;
}

.console-topline,
.console-metrics,
.framework-heading,
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.console-topline {
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 20px 0;
}

.matrix-grid span {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: transform 400ms var(--ease), background 400ms ease;
}

.risk-console:hover .matrix-grid span {
  transform: translateY(-3px);
}

.matrix-grid [data-risk="low"] { background: rgba(216, 221, 229, 0.08); }
.matrix-grid [data-risk="med"] { background: rgba(100, 116, 139, 0.2); }
.matrix-grid [data-risk="high"] { background: rgba(248, 250, 252, 0.28); }

.console-metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.console-metrics div {
  display: grid;
  gap: 6px;
}

.console-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
}

.console-metrics strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.risk-console p {
  margin-top: 14px;
  color: rgba(242, 238, 230, 0.68);
  font-size: 0.92rem;
  line-height: 1.65;
}

.ticker-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(94, 210, 156, 0.045), transparent 38%, rgba(201, 170, 98, 0.04)),
    rgba(7, 11, 10, 0.9);
}

.ticker-row {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px 0;
  color: rgba(242, 238, 230, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: transform;
}

.ticker-row span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  background: rgba(94, 210, 156, 0.035);
}

.matrix-section,
.services-section,
.frameworks-section,
.founder-section,
.faq-cta-section,
.site-footer {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
}

.matrix-section,
.services-section,
.frameworks-section,
.founder-section,
.faq-cta-section {
  padding: clamp(86px, 12vw, 150px) 0;
}

.matrix-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
  margin-top: 24px;
}

.section-title {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  line-height: 0.92;
}

.section-lede {
  margin-top: 26px;
}

.problem-stack {
  display: grid;
  gap: 14px;
}

.glass-panel {
  padding: 28px;
}

.glass-panel span,
.service-card span,
.framework-card span {
  color: rgba(94, 210, 156, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.glass-panel h3,
.service-card h3,
.framework-card h3 {
  margin-top: 16px;
  color: var(--parchment);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.glass-panel p,
.service-card p {
  margin-top: 16px;
  color: rgba(242, 238, 230, 0.68);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.service-card {
  min-height: 420px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before,
.framework-card::before,
.founder-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 210, 156, 0.78), rgba(201, 170, 98, 0.55), transparent);
  opacity: 0.72;
}

.service-card::after,
.framework-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-card:hover::after,
.framework-card:hover::after {
  opacity: 1;
}

.framework-heading {
  align-items: end;
}

.framework-heading .section-lede {
  max-width: 470px;
}

.framework-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.framework-card {
  min-height: 360px;
  padding: 28px;
}

.founder-section {
  border-top: 1px solid var(--line);
}

.founder-identity {
  max-width: 860px;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.founder-card {
  min-height: 270px;
  padding: 26px;
}

.founder-card-large {
  grid-column: span 2;
}

.founder-card span {
  color: rgba(216, 221, 229, 0.55);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.founder-card p {
  margin-top: 16px;
  color: rgba(216, 221, 229, 0.7);
  line-height: 1.72;
}

.founder-card-large h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: 600;
}

.audit-lines,
.node-map,
.signal-bars {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 116px;
  border-top: 1px solid var(--line);
}

.audit-lines {
  display: grid;
  align-content: end;
  gap: 11px;
}

.audit-lines i {
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 221, 229, 0.78), transparent);
}

.audit-lines i:nth-child(2) { width: 72%; }
.audit-lines i:nth-child(3) { width: 88%; }
.audit-lines i:nth-child(4) { width: 56%; }

.node-map i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(216, 221, 229, 0.7);
  border-radius: 999px;
}

.node-map::before,
.node-map::after {
  content: "";
  position: absolute;
  inset: 28px 10px auto;
  height: 1px;
  background: rgba(216, 221, 229, 0.32);
  transform: rotate(-14deg);
}

.node-map i:nth-child(1) { left: 8%; top: 18%; }
.node-map i:nth-child(2) { left: 32%; top: 52%; }
.node-map i:nth-child(3) { left: 54%; top: 28%; }
.node-map i:nth-child(4) { left: 75%; top: 64%; }
.node-map i:nth-child(5) { left: 88%; top: 22%; }

.signal-bars {
  display: flex;
  align-items: end;
  gap: 10px;
}

.signal-bars i {
  flex: 1;
  background: linear-gradient(180deg, rgba(214, 168, 79, 0.8), rgba(125, 211, 252, 0.08));
}

.signal-bars i:nth-child(1) { height: 42%; }
.signal-bars i:nth-child(2) { height: 72%; }
.signal-bars i:nth-child(3) { height: 54%; }
.signal-bars i:nth-child(4) { height: 88%; }

.faq-cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.cta-panel {
  padding: clamp(36px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), transparent 42%),
    linear-gradient(315deg, rgba(112, 47, 70, 0.28), transparent 54%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
}

.cta-panel h2 {
  max-width: 620px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.92;
}

.cta-panel p {
  max-width: 520px;
  margin: 24px 0 32px;
  color: rgba(216, 221, 229, 0.74);
  font-size: 1.06rem;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 600;
}

.faq-item b {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.faq-item b::before,
.faq-item b::after {
  content: "";
  position: absolute;
  inset: 7px 0 auto;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

.faq-item b::after {
  transform: rotate(90deg);
}

.faq-item.is-active b::after {
  transform: rotate(0deg);
}

.faq-item p {
  display: none;
  margin-top: 14px;
  color: rgba(216, 221, 229, 0.7);
  line-height: 1.7;
}

.faq-item.is-active p {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 54px;
  align-items: start;
}

.site-footer > div {
  display: grid;
  gap: 14px;
}

.site-footer p,
.site-footer a {
  max-width: 420px;
  color: rgba(216, 221, 229, 0.66);
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
}

.footer-form input:focus {
  border-color: var(--line-strong);
}

.footer-form button {
  background: var(--ink);
  color: var(--navy-950);
  padding: 12px 16px;
  font-size: 0.84rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translate(var(--from-x, 0), var(--from-y, 28px));
  transition:
    opacity var(--duration, 760ms) var(--ease),
    transform var(--duration, 760ms) var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.magnetic {
  will-change: transform;
}

@media (max-width: 1060px) {
  .nav-actions {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    width: min(100% - 24px, 1240px);
    padding: 16px 0;
    gap: 0;
  }

  .brand {
    grid-column: 2;
    justify-self: center;
  }

  .menu-button {
    display: block;
  }

  .hero-intel-console {
    display: none;
  }

  .hero-grid,
  .matrix-layout,
  .faq-cta-section {
    grid-template-columns: 1fr;
  }

  .risk-console {
    max-width: 620px;
  }

  .services-grid,
  .framework-cards,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-card-large {
    grid-column: auto;
  }

  .service-card {
    min-height: 300px;
  }

  .framework-heading,
  .site-footer {
    display: grid;
  }
}

@media (min-width: 861px) {
  .hero-grid-lines {
    display: block;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero-grid,
  .matrix-section,
  .services-section,
  .frameworks-section,
  .founder-section,
  .faq-cta-section,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .brand {
    padding: 6px 0;
    gap: 8px;
  }

  .brand-mark-img {
    width: 28px;
    height: 28px;
  }

  .brand-word {
    font-size: clamp(0.78rem, 3.6vw, 0.94rem);
    letter-spacing: 0;
  }

  .hero-stage {
    width: min(100% - 24px, 1240px);
    min-height: 100vh;
    min-height: 100svh;
    padding: 128px 0 44px;
    justify-content: center;
  }

  .hero-eyebrow {
    font-size: 11px;
  }

  .hero-words-group {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-crest {
    max-width: 100%;
    gap: 10px;
    padding: 0 0 8px;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-crest img {
    width: 32px;
    height: 32px;
  }

  .hero-brand-title {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.55rem);
    line-height: 0.86;
  }

  .hero-brand-title::after {
    width: 72%;
    margin-top: 18px;
  }

  .stagger-word {
    position: static;
    font-size: clamp(4rem, 15vw, 5.2rem);
    line-height: 0.88;
  }

  .word-one {
    text-align: left;
  }

  .word-two {
    text-align: right;
    margin-top: 0.06em;
  }

  .word-three {
    padding-left: 14%;
    margin-top: 0.06em;
  }

  .liquid-card {
    width: 176px;
    height: 176px;
    margin-bottom: 24px;
    padding: 18px;
    transform: translateY(-18px);
  }

  .hero-copy-block {
    margin-top: 0;
  }

  .hero-main-title {
    font-size: clamp(40px, 12vw, 58px);
    letter-spacing: -0.065em;
  }

  .hero-description {
    max-width: 100%;
    margin-top: 20px;
  }

  .hero-action-panel {
    flex-direction: column;
    gap: 10px;
  }

  .hero-action-panel .primary-button,
  .hero-action-panel .ghost-button {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
  }

  .hero-stat {
    display: none;
  }

  .hero-bottom-fade {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 11, 10, 0.48) 0%, rgba(7, 11, 10, 0.18) 34%, rgba(7, 11, 10, 0.92) 78%),
      radial-gradient(ellipse at 96% 96%, rgba(7, 11, 10, 1) 0 8rem, rgba(7, 11, 10, 0.78) 12rem, transparent 19rem),
      linear-gradient(90deg, rgba(7, 11, 10, 0.82), rgba(7, 11, 10, 0.22));
  }

  .console-metrics,
  .footer-form {
    display: grid;
  }

  .matrix-grid {
    gap: 7px;
  }

  .glass-panel {
    padding: 20px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .cta-panel {
    padding: clamp(28px, 8vw, 48px);
  }
}

/* ============================================================
   FEATURE CARDS SECTION
   ============================================================ */

.fc-section {
  width: min(100% - 32px, 1240px);
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.fc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 58px;
}

.fc-outer {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.fc-glow {
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: var(--fc-grad);
  opacity: 0.34;
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.fc-inner {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  border: 8px solid transparent;
  background:
    linear-gradient(145deg, rgba(11, 20, 36, 0.98), rgba(8, 16, 31, 0.94)) padding-box,
    var(--fc-grad) border-box;
  flex: 1;
}

.fc-content {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fc-icon {
  color: rgba(248, 250, 252, 0.9);
  flex-shrink: 0;
}

.fc-title {
  color: var(--parchment);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.fc-desc {
  color: rgba(156, 163, 175, 1);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================================
   ENHANCED FOOTER
   ============================================================ */

.enhanced-footer {
  padding: 80px 0 0;
  background:
    linear-gradient(180deg, rgba(112, 47, 70, 0.12), transparent 34%),
    var(--navy-950);
}

.ef-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 16px;
  align-items: stretch;
}

/* Left card */
.ef-left {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ef-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  filter: hue-rotate(38deg) saturate(0.72) contrast(1.16) brightness(0.5);
  transform-origin: center;
  transform: scale(1.18);
}

.ef-left::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 38%;
  background: linear-gradient(135deg, rgba(8, 18, 42, 0), rgba(8, 18, 42, 0.98) 58%, var(--navy-950));
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.ef-left > * {
  position: relative;
  z-index: 1;
}

.ef-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ef-logo-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.ef-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--parchment);
  white-space: nowrap;
}

.ef-tagline-wrap {
  margin-top: auto;
  margin-bottom: 28px;
}

.ef-tagline {
  font-size: 1.12rem;
  font-weight: 400;
  color: white;
  line-height: 1.5;
}

.ef-tagline span {
  color: rgba(255, 255, 255, 0.6);
}

.ef-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ef-social-label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.ef-social-icons {
  display: flex;
  gap: 7px;
}

.ef-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.ef-social-icon:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Right card */
.ef-right {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  backdrop-filter: blur(20px);
}

/* Floating assessment badge */
.ef-badge {
  position: absolute;
  top: -36px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  pointer-events: none;
}

.ef-badge-cube {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  transform: rotate(-10deg);
  background: linear-gradient(135deg, var(--civic-gold) 0%, #9b6d25 58%, var(--wine) 100%);
  box-shadow:
    inset 3px 3px 8px rgba(255, 255, 255, 0.22),
    inset -3px -3px 12px rgba(0, 0, 0, 0.18),
    8px 14px 28px rgba(214, 168, 79, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ef-badge-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: -0.04em;
  transform: rotate(10deg);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.ef-badge-mark-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: rotate(10deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
}

.ef-right-video-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 16 / 7;
  position: relative;
}

.ef-right-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ef-badge-text-row {
  display: flex;
  align-items: center;
  gap: 6px;
  transform: rotate(-4deg);
  margin-top: 4px;
}

.ef-badge-arrow {
  width: 22px;
  height: 22px;
  color: rgba(216, 221, 229, 0.45);
}

.ef-badge-text {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(216, 221, 229, 0.45);
  white-space: nowrap;
}

/* Nav columns */
.ef-right-top {
  padding-top: 8px;
}

.ef-nav-cols {
  display: flex;
  gap: 64px;
}

.ef-col {
  display: flex;
  flex-direction: column;
}

.ef-col-title {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(216, 221, 229, 0.42);
  margin-bottom: 18px;
}

.ef-col a {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.7);
  margin-bottom: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ef-col a:hover {
  color: white;
}

/* Bottom row */
.ef-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 48px;
  gap: 24px;
}

.ef-copyright {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(216, 221, 229, 0.42);
  max-width: none !important;
}

.ef-cta-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ef-cta-hed {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(216, 221, 229, 0.62);
  line-height: 1.5;
}

.ef-cta-hed strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 700;
  color: white;
}

.ef-subscribe-row {
  display: flex;
  width: 310px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 5px;
}

.ef-subscribe-input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.84rem;
  color: white;
  font-family: inherit;
}

.ef-subscribe-input::placeholder {
  color: rgba(216, 221, 229, 0.4);
}

.ef-subscribe-btn {
  padding: 11px 22px;
  background: linear-gradient(135deg, var(--parchment), var(--civic-gold));
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.ef-subscribe-btn:hover {
  background: #f0f2f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38), 0 4px 14px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Brand palette unification */
.matrix-section,
.services-section,
.fc-section,
.frameworks-section,
.founder-section,
.faq-cta-section {
  position: relative;
}

.matrix-section::before,
.frameworks-section::before,
.faq-cta-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  transform: translate(-50%, -18%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(94, 210, 156, 0.08), transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.section-kicker,
.founder-card span,
.glass-panel span,
.service-card span,
.framework-card span,
.ef-col-title {
  color: rgba(94, 210, 156, 0.76);
}

.glass-panel,
.service-card,
.framework-card,
.founder-card,
.cta-panel,
.faq-item,
.ef-right,
.fc-inner {
  border-color: rgba(242, 238, 230, 0.1);
  background:
    linear-gradient(135deg, rgba(94, 210, 156, 0.06), transparent 36%),
    linear-gradient(315deg, rgba(201, 170, 98, 0.05), transparent 48%),
    rgba(10, 17, 16, 0.78);
}

.glass-panel p,
.service-card p,
.founder-card p,
.framework-heading .section-lede,
.cta-panel p,
.faq-item p,
.fc-desc,
.ef-col a,
.ef-copyright,
.ef-cta-hed {
  color: rgba(242, 238, 230, 0.66);
}

.audit-lines i {
  background: linear-gradient(90deg, rgba(94, 210, 156, 0.74), transparent);
}

.node-map i {
  border-color: rgba(94, 210, 156, 0.72);
}

.node-map::before,
.node-map::after {
  background: rgba(201, 170, 98, 0.28);
}

.signal-bars i {
  background: linear-gradient(180deg, rgba(94, 210, 156, 0.86), rgba(201, 170, 98, 0.12));
}

.cta-panel {
  background:
    radial-gradient(circle at 20% 20%, rgba(94, 210, 156, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(201, 170, 98, 0.12), transparent 42%),
    rgba(10, 17, 16, 0.82);
}

.fc-glow {
  opacity: 0.28;
}

.fc-inner {
  background:
    linear-gradient(145deg, rgba(10, 17, 16, 0.96), rgba(13, 23, 20, 0.92)) padding-box,
    var(--fc-grad) border-box;
}

.enhanced-footer {
  background:
    radial-gradient(circle at 68% 0%, rgba(94, 210, 156, 0.1), transparent 28rem),
    linear-gradient(180deg, rgba(201, 170, 98, 0.08), transparent 34%),
    #070b0a;
}

.ef-left {
  background: #0a1110;
}

.ef-left::after {
  background: linear-gradient(135deg, rgba(7, 11, 10, 0), rgba(7, 11, 10, 0.98) 58%, #070b0a);
}

.ef-badge-cube,
.ef-subscribe-btn {
  background: linear-gradient(135deg, #5ed29c 0%, #c9aa62 100%);
}

.ef-badge-mark,
.ef-subscribe-btn {
  color: #070b0a;
}

.ef-social-icon,
.ef-subscribe-row {
  border-color: rgba(94, 210, 156, 0.16);
  background: rgba(94, 210, 156, 0.045);
}

/* Watermark */
.ef-watermark {
  max-width: 1150px;
  margin: -55px auto 0;
  padding: 0 16px;
  pointer-events: none;
  user-select: none;
  position: relative;
  z-index: 0;
  line-height: 0;
}

.ef-watermark svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Enhanced footer responsive */
@media (max-width: 860px) {
  .ef-wrapper {
    grid-template-columns: 1fr;
  }

  .ef-left {
    min-height: auto;
    gap: 40px;
    justify-content: flex-start;
  }

  .ef-video {
    object-position: center;
    transform: scale(1.46);
  }

  .ef-tagline-wrap {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .enhanced-footer {
    padding-top: 64px;
  }

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

  .ef-right {
    padding: 28px;
    padding-top: 84px;
  }

  .ef-badge {
    right: 24px;
    top: -28px;
  }

  .ef-badge-cube {
    width: 72px;
    height: 72px;
  }

  .ef-badge-mark {
    font-size: 34px;
  }

  .ef-nav-cols {
    gap: 40px;
  }

  .ef-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-top: 32px;
  }

  .ef-subscribe-row {
    width: 100%;
  }

  .ef-watermark {
    margin-top: -35px;
  }
}

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