:root {
  --ink: #f7fbf6;
  --muted: #a8b7af;
  --paper: #070908;
  --surface: #111714;
  --surface-soft: #e9efe7;
  --line: rgba(233, 239, 231, 0.14);
  --green: #9cffdf;
  --green-dark: #163e34;
  --coral: #ff6f61;
  --gold: #ffc857;
  --blue: #78a6ff;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 4%, rgba(156, 255, 223, 0.13), transparent 30%),
    radial-gradient(circle at 12% 24%, rgba(255, 111, 97, 0.09), transparent 28%),
    linear-gradient(180deg, #060807 0%, #0d1110 48%, #070908 100%);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(233, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 239, 231, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 82%);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-block;
  background:
    linear-gradient(135deg, var(--green) 0 50%, transparent 50%),
    linear-gradient(315deg, var(--coral) 0 50%, transparent 50%),
    var(--gold);
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #d7e2dc;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--green);
}

.site-nav a[aria-current="page"] {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 920px;
  color: #fff;
  font-size: clamp(3.8rem, 9vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  color: #fff;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 620px;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-subhead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #06100d;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(156, 255, 223, 0.2);
}

.button.primary:hover {
  background: #c7ffe9;
}

.button.secondary {
  color: #e9efe7;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(920px, 68vw);
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 46% 44%, rgba(156, 255, 223, 0.2), transparent 34%),
    radial-gradient(circle at 76% 68%, rgba(255, 200, 87, 0.13), transparent 26%),
    radial-gradient(circle at 20% 78%, rgba(255, 111, 97, 0.1), transparent 30%),
    transparent;
  box-shadow: none;
  opacity: 0.52;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 32%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(156, 255, 223, 0.13);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.hero-art::after {
  inset: 22% 16%;
  border-color: rgba(255, 200, 87, 0.16);
  transform: rotate(18deg);
  animation-direction: reverse;
}

.art-halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.78;
  animation: breathe 7s ease-in-out infinite;
}

.art-halo-a {
  width: 42%;
  aspect-ratio: 1;
  left: 28%;
  top: 22%;
  background: radial-gradient(circle, rgba(156, 255, 223, 0.2), transparent 64%);
}

.art-halo-b {
  width: 34%;
  aspect-ratio: 1;
  right: 8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.16), transparent 66%);
  animation-delay: -2.4s;
}

.art-plane {
  position: absolute;
  inset: 13% 10%;
  border: 1px solid rgba(233, 239, 231, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(156, 255, 223, 0.13), transparent 34%),
    linear-gradient(295deg, rgba(255, 200, 87, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.025);
  transform: perspective(900px) rotateX(58deg) rotateZ(-16deg);
  transform-origin: center;
  box-shadow: inset 0 0 70px rgba(156, 255, 223, 0.06);
}

.hero-benchmark::before {
  inset: 22% 12% 18% 8%;
  border-color: rgba(156, 255, 223, 0.08);
  border-radius: 8px;
  transform: perspective(900px) rotateX(64deg) rotateZ(-12deg);
  animation: none;
}

.hero-benchmark::after {
  display: none;
}

.benchmark-card,
.agent-chip,
.score-panel,
.report-panel {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(233, 239, 231, 0.15);
  border-radius: 8px;
  background: rgba(233, 239, 231, 0.04);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.benchmark-card {
  left: 16%;
  width: min(180px, 28%);
  padding: 12px;
  animation: panelFloat 7s ease-in-out infinite;
}

.benchmark-card-a {
  top: 20%;
}

.benchmark-card-b {
  top: 42%;
  animation-delay: -1.6s;
}

.benchmark-card-c {
  top: 64%;
  animation-delay: -3.2s;
}

.benchmark-card span {
  display: block;
  height: 7px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(233, 239, 231, 0.52);
}

.benchmark-card span:first-child {
  width: 34%;
  background: rgba(156, 255, 223, 0.78);
}

.benchmark-card span:nth-child(2) {
  width: 78%;
}

.benchmark-card span:last-child {
  width: 56%;
  margin-bottom: 0;
}

.agent-chip {
  left: 54%;
  top: 50%;
  width: min(150px, 24%);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 22px;
  border-color: rgba(156, 255, 223, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(156, 255, 223, 0.24), transparent 34%),
    rgba(233, 239, 231, 0.06);
  box-shadow: inset 0 0 34px rgba(156, 255, 223, 0.08);
  transform: translate(-50%, -50%);
  animation: coreFloatFlat 8s ease-in-out infinite;
}

.agent-chip span {
  border: 1px solid rgba(156, 255, 223, 0.22);
  border-radius: 6px;
  background: rgba(156, 255, 223, 0.12);
}

.agent-chip span:nth-child(2),
.agent-chip span:nth-child(3) {
  background: rgba(255, 200, 87, 0.12);
  border-color: rgba(255, 200, 87, 0.2);
}

.score-panel {
  right: 6%;
  top: 22%;
  width: min(190px, 30%);
  height: 118px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 18px;
  animation: panelFloat 7.5s ease-in-out infinite;
  animation-delay: -1s;
}

.score-panel span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--green), rgba(156, 255, 223, 0.18));
  animation: scoreRise 4.6s ease-in-out infinite;
}

.score-panel span:nth-child(1) {
  height: 42%;
}

.score-panel span:nth-child(2) {
  height: 72%;
  animation-delay: -0.9s;
}

.score-panel span:nth-child(3) {
  height: 54%;
  background: linear-gradient(180deg, var(--gold), rgba(255, 200, 87, 0.16));
  animation-delay: -1.8s;
}

.score-panel span:nth-child(4) {
  height: 36%;
  background: linear-gradient(180deg, var(--coral), rgba(255, 111, 97, 0.16));
  animation-delay: -2.7s;
}

.report-panel {
  right: 8%;
  bottom: 20%;
  width: min(200px, 32%);
  padding: 16px;
  animation: panelFloat 8s ease-in-out infinite;
  animation-delay: -3.5s;
}

.report-panel span {
  display: block;
  height: 9px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(233, 239, 231, 0.48);
}

.report-panel span:first-child {
  width: 44%;
  background: rgba(255, 200, 87, 0.75);
}

.report-panel span:nth-child(2) {
  width: 84%;
}

.report-panel span:last-child {
  width: 66%;
  margin-bottom: 0;
  background: rgba(255, 111, 97, 0.58);
}

.test-flow,
.result-flow {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  opacity: 0.78;
  transform-origin: left center;
  animation: flowPulse 3.4s ease-in-out infinite;
}

.test-flow {
  left: 34%;
  width: 19%;
  background: linear-gradient(90deg, transparent, rgba(156, 255, 223, 0.9));
}

.test-flow-a {
  top: 29%;
  transform: rotate(15deg);
}

.test-flow-b {
  top: 49%;
}

.test-flow-c {
  top: 68%;
  transform: rotate(-16deg);
}

.result-flow {
  left: 61%;
  width: 24%;
  background: linear-gradient(90deg, rgba(255, 200, 87, 0.85), transparent);
}

.result-flow-a {
  top: 39%;
  transform: rotate(-17deg);
  animation-delay: -1.1s;
}

.result-flow-b {
  top: 58%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255, 111, 97, 0.75), transparent);
  animation-delay: -2.2s;
}

.result-dot {
  position: absolute;
  z-index: 2;
  width: 16px;
  aspect-ratio: 1;
  border-radius: 999px;
  animation: nodePulse 2.8s ease-in-out infinite;
}

.result-dot-pass {
  right: 29%;
  top: 36%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(156, 255, 223, 0.5);
}

.result-dot-fail {
  right: 28%;
  top: 57%;
  background: var(--coral);
  box-shadow: 0 0 20px rgba(255, 111, 97, 0.45);
  animation-delay: -1.4s;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.1), rgba(7, 9, 8, 0.46)),
    radial-gradient(circle at 18% 18%, rgba(255, 111, 97, 0.16), transparent 28%);
}

.grid-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(233, 239, 231, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 239, 231, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 42%, transparent 100%);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid var(--line);
  background: rgba(233, 239, 231, 0.12);
}

.stats-band div {
  min-height: 112px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.stats-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.3vw, 2.5rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 600;
}

.section,
.framework-section,
.cta-section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(156, 255, 223, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.04);
}

.intro-grid h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.intro-grid p {
  max-width: 620px;
  margin: 0;
  font-size: 1rem;
}

.intro-copy {
  display: block;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading h2,
.section-heading p {
  max-width: 740px;
}

.section-heading > p {
  max-width: 420px;
  margin-bottom: 8px;
}

#method .section-heading {
  align-items: start;
  margin-bottom: 0;
}

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

.workflow-heading-aside {
  max-width: 520px;
}

.workflow-heading-aside p {
  max-width: 520px;
  margin: 0;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 76px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.finding-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(12px, 2vw, 20px);
  padding: clamp(26px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.finding-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.card-index {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #06100d;
  background: var(--green);
  border: 1px solid rgba(156, 255, 223, 0.38);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.finding-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.finding-card p {
  grid-column: 2;
  max-width: 720px;
  margin-bottom: 0;
}

.framework-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 72px);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 200, 87, 0.12), transparent 28%),
    linear-gradient(135deg, #0f1513 0%, #111714 58%, #070908 100%);
  color: #f7f5ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.framework-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

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

.framework-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.framework-row span {
  color: var(--gold);
  font-weight: 800;
}

.framework-row h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.16rem, 1.8vw, 1.52rem);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline article {
  position: relative;
  padding: 34px 30px 0 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--coral);
  border-radius: 999px;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 800;
}

.workflow-showcase {
  display: grid;
  gap: 24px;
  margin-top: clamp(42px, 7vw, 82px);
}

.workflow-showcase article {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.workflow-showcase article:nth-child(even) {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.workflow-showcase article:nth-child(even) img {
  order: 2;
}

.workflow-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border: 1px solid rgba(233, 239, 231, 0.16);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  object-position: top left;
}

.workflow-showcase span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #06100d;
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-showcase h3 {
  margin-bottom: 12px;
  font-size: clamp(1.24rem, 1.9vw, 1.7rem);
}

.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(156, 255, 223, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.055);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section div {
  max-width: 800px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.9rem;
}

.submit-hero {
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(156, 255, 223, 0.1), transparent 42%),
    var(--paper);
}

.submit-hero div {
  max-width: 980px;
}

.submit-section {
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 10vw, 130px);
}

.submission-form {
  max-width: 920px;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field label {
  font-weight: 800;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5d1;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  line-height: 1.5;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(13, 95, 82, 0.18);
  border-color: var(--green);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.form-actions p {
  margin: 0;
  max-width: 520px;
  font-size: 0.92rem;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(156, 255, 223, 0.12);
  color: var(--green);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.54;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.86;
  }
}

@keyframes flowPulse {
  0%,
  100% {
    opacity: 0.24;
    filter: blur(0);
  }

  50% {
    opacity: 0.86;
    filter: blur(0.4px);
  }
}

@keyframes coreFloatFlat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(-4px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(8px);
  }
}

@keyframes scoreRise {
  0%,
  100% {
    transform: scaleY(0.86);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(9px);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.66;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero,
  .intro-grid,
  .framework-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(760px, 82vw);
    opacity: 0.38;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 34px;
  }

  .workflow-showcase article,
  .workflow-showcase article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .workflow-showcase article:nth-child(even) img {
    order: 0;
  }

  .finding-card,
  .finding-card:nth-child(n) {
    margin-top: 0;
  }

  .framework-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero {
    padding-top: 46px;
  }

  .hero-visual {
    width: 118vw;
    opacity: 0.22;
    transform: translateX(18%);
  }

  .benchmark-card {
    width: 34%;
    padding: 10px;
  }

  .benchmark-card-c,
  .report-panel,
  .result-flow-b,
  .result-dot-fail {
    display: none;
  }

  .agent-chip {
    width: 28%;
    border-radius: 20px;
  }

  .stats-band,
  .findings-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .finding-card:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  #method .section-heading > p {
    margin-top: 0;
  }

  .section-heading,
  .cta-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .framework-row {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
  }
}
