@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0f1729;
  --navy-deep: #080d18;
  --navy-soft: #17223a;
  --amber: #d4a017;
  --amber-soft: #f4d16b;
  --signal: #38d6c2;
  --steel: #8ea4c6;
  --slate: #64748b;
  --ink: #172033;
  --muted: #667085;
  --light: #f8f9fb;
  --white: #ffffff;
  --line: rgba(15, 23, 41, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --success: #25c481;
  --warning: #f0b429;
  --danger: #ef6f6c;
  --shadow: 0 24px 70px rgba(15, 23, 41, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  color: var(--white);
  background: rgba(15, 23, 41, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-main span {
  color: var(--amber);
}

.brand-sub {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: currentColor;
  opacity: 0.58;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: currentColor;
  opacity: 0.72;
}

.desktop-nav a:hover {
  opacity: 1;
}

.desktop-nav .nav-cta {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--amber);
  color: var(--navy);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--navy);
  color: var(--white);
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  text-decoration: none;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line-dark);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-light {
  background: var(--light);
}

.section-white {
  background: var(--white);
}

.hero {
  min-height: 100vh;
  padding: 126px clamp(18px, 5vw, 72px) 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.94) 0%, rgba(15, 23, 41, 0.84) 42%, rgba(15, 23, 41, 0.55) 100%),
    var(--navy-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.36;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36vh;
  background: linear-gradient(0deg, rgba(8, 13, 24, 0.82), transparent);
  pointer-events: none;
}

.system-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.98;
}

.scene-fallback {
  position: absolute;
  inset: 16% 3% 8% 45%;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.34;
  transform-style: preserve-3d;
  perspective: 900px;
}

.scene-fallback span {
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(212, 160, 23, 0.38);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(calc(var(--i, 0) * 22deg));
  animation: fallbackOrbit 11s linear infinite;
}

.scene-fallback span:nth-child(1) { --i: 1; width: min(20vw, 260px); border-color: rgba(56, 214, 194, 0.42); }
.scene-fallback span:nth-child(2) { --i: 2; width: min(30vw, 380px); }
.scene-fallback span:nth-child(3) { --i: 3; width: min(42vw, 540px); border-color: rgba(142, 164, 198, 0.3); }
.scene-fallback span:nth-child(4) { --i: 4; width: min(50vw, 650px); }
.scene-fallback span:nth-child(5) { --i: 5; width: min(12vw, 150px); background: rgba(212, 160, 23, 0.12); }

.hero-copy,
.hero-hud {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8.1vw, 112px);
}

.hero-word {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translateY(24px) rotateX(8deg);
  animation: wordIn 0.62s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-word.accent {
  color: var(--amber);
  font-style: italic;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.88;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.7vw, 17px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-trust span {
  color: var(--amber);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--amber);
  color: var(--navy);
}

.button-ghost {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
}

.button-outline {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.hero-hud {
  display: grid;
  gap: 14px;
  align-self: end;
  justify-self: stretch;
  max-width: 460px;
  transform: translateY(34px);
}

.hud-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hud-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(8, 13, 24, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.hud-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--signal), transparent);
}

.hud-kicker,
.metric span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.hud-primary h2 {
  max-width: 340px;
  margin-bottom: 10px;
  font-size: 34px;
}

.hud-card p,
.flow-card li,
.metric small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.metric strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--white);
  font-size: 58px;
  line-height: 0.9;
}

.flow-card ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.status-dot.done {
  background: var(--success);
}

.status-dot.live {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.12);
}

.status-dot.wait {
  background: var(--steel);
}

.marquee {
  overflow: hidden;
  background: var(--amber);
  color: var(--navy);
  border-top: 1px solid rgba(15, 23, 41, 0.12);
  border-bottom: 1px solid rgba(15, 23, 41, 0.12);
}

.marquee-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  font-weight: 800;
  font-size: 13px;
}

.section {
  padding: clamp(72px, 9vw, 122px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading h2,
.split h2,
.faq-layout h2,
.final-cta h2,
.demo-copy h2 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(38px, 5.4vw, 72px);
}

.section-heading p:not(.eyebrow),
.split p,
.faq-layout p,
.final-cta p,
.demo-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .split p,
.section-dark .demo-copy p {
  color: rgba(255, 255, 255, 0.64);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.process-step {
  padding: 30px;
  background: var(--white);
  cursor: default;
  transition: background 0.24s ease, box-shadow 0.24s ease;
  position: relative;
  z-index: 0;
}

.process-step:hover {
  background: #f5f7ff;
  box-shadow: inset 0 0 0 2px rgba(212, 160, 23, 0.38);
  z-index: 1;
}

.process-step:hover > span {
  color: var(--amber-soft);
}

.process-step span,
.module-grid span,
.price-card span,
.pipeline-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 800;
  font-size: 13px;
}

.process-step h3,
.problem-list h3,
.case-card h3,
.module-grid h3,
.price-card h3,
.pipeline-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.process-step p,
.problem-list p,
.case-card p,
.module-grid p,
.price-card p,
.price-card li,
.pipeline-card p {
  color: var(--muted);
  font-size: 15px;
}

.process-step strong {
  display: inline-flex;
  margin-top: 12px;
  font-size: 13px;
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
}


.method-section {
  border-top: 1px solid var(--line);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.method-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 41, 0.05);
}

.method-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.method-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 24px;
}

.method-card p {
  color: var(--muted);
  font-size: 15px;
}

.method-card strong {
  display: block;
  margin-top: 18px;
  color: var(--navy);
  font-size: 13px;
}

.strategic-section {
  position: relative;
  overflow: hidden;
}

.strategic-section::before {
  content: "";
  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: 48px 48px;
  opacity: 0.4;
}

.strategic-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.strategic-stack {
  display: grid;
  gap: 12px;
}

.strategic-stack article {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.strategic-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.strategic-stack p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}
.demo-lab {
  position: relative;
  background:
    linear-gradient(135deg, rgba(8, 13, 24, 1), rgba(15, 23, 41, 0.94)),
    var(--navy);
  overflow: hidden;
}

.demo-lab::before {
  content: "";
  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: 44px 44px;
  opacity: 0.44;
}

.demo-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}

.demo-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.demo-switch {
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  padding: 9px 13px;
  cursor: pointer;
}

.demo-switch.active {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  font-weight: 800;
}

.pipeline {
  min-height: 480px;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.pipeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), var(--signal), transparent);
  transform: translateZ(-120px) rotateY(-16deg);
  opacity: 0.72;
}

.pipeline-card {
  position: absolute;
  width: min(74%, 470px);
  min-height: 176px;
  padding: 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.pipeline-card h3 {
  color: var(--white);
  font-size: 24px;
}

.pipeline-card p {
  color: rgba(255, 255, 255, 0.64);
}

.depth-1 {
  top: 10%;
  left: 0;
  transform: rotateY(12deg) rotateX(3deg) translateZ(30px);
}

.depth-2 {
  top: 34%;
  right: 0;
  transform: rotateY(-13deg) rotateX(4deg) translateZ(92px);
}

.depth-3 {
  bottom: 2%;
  left: 12%;
  transform: rotateY(8deg) rotateX(-3deg) translateZ(150px);
}

.pipeline-card.is-updating {
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.18s ease, filter 0.18s ease !important;
}

.depth-1.is-updating { transition-delay: 0ms !important; }
.depth-2.is-updating { transition-delay: 55ms !important; }
.depth-3.is-updating { transition-delay: 110ms !important; }

@keyframes cardReveal {
  0%   { opacity: 0; filter: blur(8px) saturate(0); }
  100% { opacity: 1; filter: blur(0px) saturate(1); }
}

.depth-1.is-entering { animation: cardReveal 0.52s cubic-bezier(0.22, 1, 0.36, 1) 165ms both; }
.depth-2.is-entering { animation: cardReveal 0.52s cubic-bezier(0.22, 1, 0.36, 1) 82ms  both; }
.depth-3.is-entering { animation: cardReveal 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0ms   both; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.case-card.highlight {
  grid-column: span 2;
  background: var(--white);
  color: var(--navy);
}

.case-card.highlight span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--amber);
  font-weight: 800;
}

.case-card p {
  color: rgba(255, 255, 255, 0.58);
}

.case-card.highlight p {
  color: var(--muted);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.case-metrics div {
  padding: 28px 20px;
  text-align: center;
  background: var(--navy);
}

.case-metrics strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
}

.case-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.module-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.module-grid article:hover {
  border-color: rgba(212, 160, 23, 0.48);
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.09);
  transform: translateY(-5px) rotateX(2deg);
}

.intelligence .section-heading {
  margin-bottom: 30px;
}

.ticker {
  display: flex;
  gap: 28px;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.64);
}

.ticker span {
  animation: ticker 22s linear infinite;
}

.intelligence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  margin-top: 24px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  cursor: pointer;
}

.filter-button.active {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
  font-weight: 800;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.news-card,
.timeline-card {
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.news-tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.news-card p,
.timeline-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.timeline-card ol {
  list-style: none;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.timeline-card li {
  display: grid;
  gap: 4px;
}

.timeline-card strong {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(15, 23, 41, 0.05);
}

.price-card.featured {
  border-color: rgba(212, 160, 23, 0.65);
  box-shadow: var(--shadow);
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.price-card li {
  padding-left: 18px;
  position: relative;
}

.price-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  position: absolute;
  left: 0;
  top: 9px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 20px;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(64px, 9vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--amber);
  color: var(--navy);
}

.final-cta .eyebrow {
  color: rgba(15, 23, 41, 0.72);
}

.final-cta p {
  color: rgba(15, 23, 41, 0.76);
  margin-bottom: 0;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.email-link {
  font-weight: 800;
  text-decoration: none;
}







.founder-section {
  border-top: 1px solid var(--line);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: stretch;
}

.founder-panel,
.founder-story {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 41, 0.06);
}

.founder-panel {
  display: grid;
  align-content: start;
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.98), rgba(23, 34, 58, 0.94)), var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.founder-panel::after {
  content: "CL.AI";
  position: absolute;
  right: -18px;
  bottom: -20px;
  color: rgba(212, 160, 23, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(86px, 13vw, 160px);
  line-height: 0.8;
  pointer-events: none;
}

.founder-panel h2 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
}

.founder-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.founder-story {
  padding: clamp(28px, 4vw, 44px);
}

.founder-story > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.founder-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.founder-proof article {
  min-height: 138px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--light);
}

.founder-proof strong,
.founder-proof span {
  display: block;
}

.founder-proof strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
}

.founder-proof span {
  color: var(--muted);
  font-size: 13.5px;
}
@media (max-width: 768px) {
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.footer-brand .brand-sub {
  margin-top: 0;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes fallbackOrbit {
  to { transform: rotateX(64deg) rotateZ(calc(var(--i, 0) * 22deg + 360deg)); }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  h1 {
    min-height: auto;
  }

  .hero-hud {
    max-width: 760px;
    transform: none;
  }

  .scene-fallback {
    inset: 12% 0 0 25%;
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-layout {
    grid-template-columns: 1fr;
  }

  .pipeline {
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 104px;
  }

  .process-grid,
  .method-grid,
  .case-metrics,
  .pricing-grid,
  .site-footer,
  .final-cta,
  .faq-layout,
  .split,
  .intelligence-layout,
  .strategic-layout,
  .founder-layout {
    grid-template-columns: 1fr;
  }

  .case-card.highlight {
    grid-column: auto;
  }

  .case-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 64px;
  }

  .mobile-nav {
    top: 64px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .system-scene {
    opacity: 0.42;
  }

  .scene-fallback {
    inset: 12% -30% 25% 18%;
  }

  h1 {
    font-size: 48px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-hud,
  .hud-row,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .pipeline {
    min-height: auto;
    display: grid;
    gap: 14px;
    perspective: none;
  }

  .pipeline::before {
    display: none;
  }

  .pipeline-card {
    position: relative;
    width: 100%;
    min-height: 0;
    transform: none !important;
    inset: auto;
  }

  .process-step,
  .case-card,
  .module-grid article,
  .price-card,
  .hud-card,
  .pipeline-card {
    padding: 22px;
  }
}

.sistema-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

.sistema-top .section-heading {
  margin-bottom: 0;
}

.sistema-top .hero-hud {
  background: var(--navy);
  border-radius: 16px;
  padding: 14px;
}

.sistema-top .hud-card {
  background: rgba(255, 255, 255, 0.06);
}






@media (max-width: 900px) {
  .sistema-top {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* V3 refinements */
.brand-main,
.hero-word.no-break {
  white-space: nowrap;
}

.hero-minimal {
  max-width: 670px;
}

.hero-proof {
  display: none;
}

.button,
.demo-switch,
.filter-button,
.faq-question,
.pipeline-card {
  cursor: pointer;
}

.button:focus-visible,
.demo-switch:focus-visible,
.filter-button:focus-visible,
.faq-question:focus-visible,
.pipeline-card:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.button:active,
.demo-switch:active,
.filter-button:active,
.pipeline-card:active {
  transform: translateY(1px) scale(0.99);
}

.pipeline-card {
  overflow: hidden;
  isolation: isolate;
}

.pipeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 0%, rgba(212, 160, 23, 0.18), transparent 34%), radial-gradient(circle at 100% 80%, rgba(56, 214, 194, 0.13), transparent 35%);
  opacity: 0.72;
}

.pipeline-card::after {
  content: "";
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
  animation: cardScan 4.8s ease-in-out infinite;
  pointer-events: none;
}

.depth-1::after { animation-delay: 0s; }
.depth-2::after { animation-delay: 0.85s; }
.depth-3::after { animation-delay: 1.7s; }

.pipeline-card:hover {
  border-color: rgba(212, 160, 23, 0.58);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(212, 160, 23, 0.08) inset;
}

.demo-switch:hover,
.filter-button:hover {
  border-color: rgba(212, 160, 23, 0.7);
  color: var(--white);
}

.demo-switch.active:hover,
.filter-button.active:hover {
  color: var(--navy);
}



.site-footer {
  display: block;
  padding: 0;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.72fr;
  gap: clamp(24px, 5vw, 72px);
  padding: 54px clamp(18px, 5vw, 72px) 38px;
}

.footer-brand-block p,
.footer-note p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer .footer-links a {
  display: inline-flex;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  color: var(--amber);
}

.footer-legal {
  padding: 20px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.45;
}

.site-footer .footer-legal span {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.43);
  font-size: 12px;
}

.footer-bottom span {
  margin: 0;
}

@keyframes cardScan {
  0%, 56% { left: -75%; opacity: 0; }
  66% { opacity: 0.75; }
  100% { left: 130%; opacity: 0; }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

/* Logo seal refinement */
.brand {
  align-items: center;
  gap: 3px;
}

.brand-main {
  white-space: nowrap;
  line-height: 0.88;
}

.brand-sub {
  margin-top: 3px;
  padding: 3px 8px 3px 9px;
  border: 1px solid rgba(212, 160, 23, 0.72);
  border-radius: 999px;
  color: var(--amber);
  background: rgba(212, 160, 23, 0.08);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 1;
}

.site-header.scrolled .brand-sub {
  background: rgba(212, 160, 23, 0.12);
}

.footer-brand {
  flex-direction: column;
  align-items: center;
  gap: 3px;
  width: fit-content;
}

.footer-brand .brand-sub {
  margin-top: 3px;
}

.footer-brand-block {
  display: grid;
  justify-items: start;
}

@media (max-width: 680px) {
  .brand-main {
    font-size: 28px;
  }

  .brand-sub {
    font-size: 7px;
    padding: 3px 7px;
  }
}


.footer-brand .brand-main,
.footer-brand .brand-main span {
  display: inline;
  white-space: nowrap;
}

/* #sistema senza HUD: intro centrata, 01-04 sotto (05/07) */
.sistema-top { display: block; }
.sistema-top .section-heading { max-width: 780px; margin: 0 auto 28px; text-align: center; }
