:root {
  --navy-950: #050b14;
  --navy-900: #08101f;
  --navy-850: #0b1424;
  --navy-800: #0d1a2e;
  --ink: #f8fafc;
  --muted: #9aa7b8;
  --slate: #64748b;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --platinum: #d8dde5;
  --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 {
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 12%, rgba(100, 116, 139, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--navy-950), #06101d 42%, var(--navy-950));
}

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

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

.hero-video {
  z-index: -3;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.36) contrast(1.1) brightness(0.82);
  transform: scale(1.045);
  transform-origin: center;
}

.hero-overlay {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.9), rgba(3, 7, 17, 0.48) 45%, rgba(3, 7, 17, 0.24) 78%),
    linear-gradient(180deg, rgba(3, 7, 17, 0.34), rgba(3, 7, 17, 0.06) 42%, rgba(3, 7, 17, 0.96)),
    radial-gradient(circle at 74% 46%, rgba(216, 221, 229, 0.13), transparent 30rem);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 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.35;
}

.nav-shell {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(100% - 32px, 1240px);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.72);
  padding: 9px 18px 9px 12px;
  backdrop-filter: blur(22px);
  color: var(--ink);
  min-width: 0;
}

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

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

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

.brand-word {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  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-links {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(22px);
}

.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 240ms ease, background 240ms ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.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: var(--ink);
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-cta {
  padding: 11px 17px;
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(18px);
}

.primary-button {
  padding: 14px 22px;
}

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

.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;
  width: 42px;
  height: 42px;
  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;
  top: 78px;
  left: 16px;
  right: 16px;
  z-index: 30;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  background: rgba(5, 11, 20, 0.92);
  padding: 10px;
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

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

.mobile-menu a {
  padding: 14px;
  color: rgba(248, 250, 252, 0.78);
  font-size: 0.9rem;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  pointer-events: none;
}

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

.hero-eyebrow {
  position: absolute;
  left: clamp(1.5rem, 3vw, 4rem);
  top: 18%;
  color: rgba(216, 221, 229, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.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: 48%;
  max-width: 310px;
  color: rgba(248, 250, 252, 0.86);
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}

.hero-action-panel {
  position: absolute;
  z-index: 5;
  left: clamp(1.5rem, 3vw, 4rem);
  bottom: clamp(2rem, 6vw, 5.4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.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(216, 221, 229, 0.74);
  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(--ink);
}

.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, rgba(255, 255, 255, 0.72), transparent);
}

.hero-subtitle,
.section-lede {
  max-width: 650px;
  color: rgba(216, 221, 229, 0.76);
  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(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(8, 16, 31, 0.72);
  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(216, 221, 229, 0.72);
  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: rgba(5, 11, 20, 0.82);
}

.ticker-row {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 6px 0;
  color: rgba(216, 221, 229, 0.64);
  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(255, 255, 255, 0.025);
}

.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(216, 221, 229, 0.55);
  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(--ink);
  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(216, 221, 229, 0.72);
  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::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(248, 250, 252, 0.55), rgba(248, 250, 252, 0.05));
}

.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:
    radial-gradient(circle at 20% 20%, rgba(216, 221, 229, 0.18), transparent 24rem),
    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-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .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 (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: 8px 14px 8px 10px;
    gap: 8px;
  }

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

  .brand-word {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  /* Switch hero to flex flow — distributes content evenly across full viewport height */
  .hero-stage {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(80px, 12vh, 100px) 1.25rem clamp(2rem, 5vh, 3rem);
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    max-height: none;
    gap: 0;
  }

  .hero-eyebrow {
    position: static;
    font-size: 0.66rem;
  }

  .hero-words-group {
    display: flex;
    flex-direction: column;
  }

  .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;
  }

  .hero-floating-copy {
    position: static;
    max-width: 100%;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-action-panel {
    position: static;
    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(3, 7, 17, 0.5) 0%, rgba(3, 7, 17, 0.1) 40%, rgba(3, 7, 17, 0.88) 80%),
      linear-gradient(90deg, rgba(3, 7, 17, 0.72), rgba(3, 7, 17, 0.3));
  }

  .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.5;
  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(var(--navy-850), var(--navy-850)) 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: white;
  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: 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;
  z-index: 0;
  pointer-events: none;
  opacity: 0.48;
  filter: saturate(0.25) contrast(1.1) brightness(0.65);
}

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

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

.ef-logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  padding: 2px;
}

.ef-logo-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  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, #2563eb 0%, #1d4ed8 55%, #1e40af 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(20, 72, 200, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.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: white;
  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);
}

/* 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-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;
  }
}
