:root {
  --ink: #080808;
  --navy: #103763;
  --orange: #f97316;
  --orange-dark: #e85d04;
  --paper: #faf8f4;
  --white: #ffffff;
  --muted: #69645d;
  --line: #ded9d0;
  --grid: rgba(8, 8, 8, 0.045);
  --shadow: 0 22px 70px rgba(8, 8, 8, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  min-width: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96) 0%, rgba(248, 245, 239, 0.95) 58%, #ffffff 100%),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

.container {
  width: min(100% - 72px, 1336px);
  max-width: 100%;
  margin: 0 auto;
}

.signature-bar {
  height: 5px;
  background: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 12px 34px rgba(8, 8, 8, 0.08);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 216px;
}

.brand img {
  display: block;
  width: 216px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 680;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 8, 8, 0.11);
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #111111;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.dark-button {
  margin-top: 34px;
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 170px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 7vw, 108px);
  align-items: center;
  padding: 70px 0 32px;
}

.hero::after {
  content: "";
  position: absolute;
  right: min(4vw, 52px);
  bottom: 42px;
  width: min(32vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: signalSweep 4.5s ease-in-out infinite;
}

.eyebrow {
  margin: 0;
  color: var(--orange);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-top: 42px;
  font-size: clamp(68px, 8.1vw, 124px);
  line-height: 0.9;
  letter-spacing: 0;
  font-weight: 860;
}

h1 span {
  display: block;
}

h2 {
  max-width: 850px;
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-copy {
  min-width: 0;
}

.hero-copy,
.lead,
.hero-note,
.section-copy {
  overflow-wrap: break-word;
}

.lead {
  max-width: 760px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-note {
  max-width: 620px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.sprint-panel {
  position: relative;
  padding-left: 36px;
  border-left: 2px solid var(--ink);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease;
}

.sprint-item {
  position: relative;
  padding: 0 0 46px;
}

.sprint-item:last-child {
  padding-bottom: 0;
}

.sprint-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.38);
  animation: nodePulse 2.7s ease-in-out infinite;
}

.sprint-item:nth-child(2)::before {
  animation-delay: 0.35s;
}

.sprint-item:nth-child(3)::before {
  animation-delay: 0.7s;
}

.sprint-item:nth-child(4)::before {
  animation-delay: 1.05s;
}

.sprint-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.1;
}

.sprint-item span {
  display: block;
  max-width: 410px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.opportunity-console {
  position: relative;
  margin-top: 36px;
  margin-left: -28px;
  width: calc(100% + 28px);
  padding: 18px;
  border: 1px solid var(--ink);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatPanel 5.5s ease-in-out infinite;
}

.opportunity-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0.1) 50%, transparent 100%),
    linear-gradient(180deg, transparent, rgba(8, 8, 8, 0.035));
  transform: translateX(-100%);
  animation: consoleSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.console-top b {
  color: var(--orange);
}

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

.console-flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 14px;
}

.console-flow span {
  position: relative;
  display: grid;
  flex: 1 1 20%;
  min-height: 42px;
  min-width: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  padding: 0 8px;
  text-align: center;
}

.console-flow span:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: -11px;
  top: 50%;
  color: #8a8177;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-50%);
}

.console-flow span:nth-child(1),
.console-flow span:nth-child(2) {
  border-color: rgba(16, 185, 129, 0.55);
  background: rgba(16, 185, 129, 0.08);
  color: #07543c;
}

.console-flow span:nth-child(3) {
  border-color: rgba(249, 115, 22, 0.5);
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange-dark);
}

.console-flow span:last-child {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.console-thread {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.console-thread div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
}

.console-thread b {
  color: var(--orange);
  font-size: 12px;
}

.motion-band {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.motion-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.motion-track span {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #f7f2e8;
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
}

.motion-track span:nth-child(4n) {
  color: var(--orange);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-strip div {
  min-height: 122px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.62);
  transition:
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip b {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
}

.service-strip div:hover {
  background: var(--white);
  box-shadow: 0 18px 44px rgba(8, 8, 8, 0.09);
  transform: translateY(-4px);
}

.service-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.section-copy {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.framework-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.framework-strip span,
.industry-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.framework-strip span:hover,
.industry-grid span:hover {
  border-color: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.deliverables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.deliverable {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  min-height: 178px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.42);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.deliverable:nth-child(2n) {
  border-right: 0;
}

.deliverable:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.deliverable b {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.deliverable h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.deliverable p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.vedalink {
  background: var(--ink);
  color: var(--white);
}

.vedalink-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: 72px;
  align-items: center;
}

.vedalink-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: #111827;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
}

.vedalink-logo span:first-child {
  color: var(--orange);
  font-weight: 760;
}

.vedalink-logo span:last-child {
  color: #111827;
  font-weight: 520;
}

.vedalink-logo-badge {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--white);
  font-size: 24px;
}

.vedalink-logo-mini {
  font-size: 18px;
}

.vedalink h2 {
  margin-top: 38px;
}

.vedalink .section-copy {
  color: #c8c1b7;
}

.interface {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0f0f0f;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.interface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}

.interface::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 74px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scanLine 4.2s ease-in-out infinite;
  pointer-events: none;
}

.interface-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #d8d2c7;
  font-size: 13px;
}

.control-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 54px;
  margin-top: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.control-grid span {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 220ms ease;
}

.control-grid span:nth-child(6),
.control-grid span:nth-child(13),
.control-grid span:nth-child(20),
.control-grid span:nth-child(31) {
  background: var(--orange);
  animation: cellGlow 2.8s ease-in-out infinite;
}

.control-grid span:nth-child(13),
.control-grid span:nth-child(31) {
  animation-delay: 0.45s;
}

.status-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.status-list div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.status-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.7);
}

.status-list strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 7px;
}

.status-list span {
  color: #c8c1b7;
  font-size: 13px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.proof {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.proof:last-child {
  border-right: 0;
}

.proof:hover {
  background: rgba(255, 255, 255, 0.76);
  transform: translateY(-4px);
}

.proof b {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-size: 18px;
}

.proof h3 {
  margin-bottom: 16px;
  font-size: 27px;
}

.proof p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

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

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--ink);
  padding-top: 28px;
}

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

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  transition: background-color 180ms ease;
}

.faq-list details:hover {
  background: rgba(255, 255, 255, 0.45);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 760;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--orange);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.cta {
  padding: 96px 0;
  background: var(--white);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
  padding: 46px 0 0;
  border-top: 1px solid var(--ink);
}

.readiness-modal[hidden] {
  display: none;
}

.readiness-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.62);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: min(880px, calc(100vh - 56px));
  overflow: auto;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 38px;
  padding: 34px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.98)),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(var(--grid) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 860;
}

.modal-copy {
  padding-top: 18px;
}

.modal-copy h2 {
  margin-top: 22px;
  font-size: clamp(38px, 4.8vw, 62px);
}

.modal-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.readiness-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.readiness-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.readiness-form input,
.readiness-form select,
.readiness-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  border-radius: 0;
  outline: none;
}

.readiness-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.readiness-form input:focus,
.readiness-form select:focus,
.readiness-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.form-actions p {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

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

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

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.34);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes consoleSweep {
  0%,
  45% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0.12;
    transform: translateX(-8px);
  }

  50% {
    opacity: 0.95;
    transform: translateX(8px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scanLine {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0;
  }

  15% {
    opacity: 0.9;
  }

  60% {
    transform: translateY(216px);
    opacity: 0.6;
  }

  85% {
    opacity: 0;
  }
}

@keyframes cellGlow {
  0%,
  100% {
    background: rgba(249, 115, 22, 0.72);
  }

  50% {
    background: #ffb15f;
  }
}

.cta h2 {
  margin-top: 20px;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 980px) {
  .container {
    width: auto;
    max-width: 820px;
    margin-left: 28px;
    margin-right: 28px;
  }

  .nav {
    align-items: center;
  }

  .brand,
  .brand img {
    width: 168px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #fffdf9;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .button {
    margin-top: 14px;
    border-bottom: 1px solid var(--orange);
  }

  .hero,
  .section-heading,
  .vedalink-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero {
    overflow: hidden;
    min-height: auto;
    padding: 58px 0 54px;
  }

  h1 {
    margin-top: 28px;
    font-size: clamp(47px, 15vw, 72px);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(40px, 11vw, 60px);
  }

  .lead {
    font-size: 19px;
  }

  .sprint-panel {
    margin-top: 20px;
  }

  .opportunity-console {
    max-width: 560px;
  }

  .service-strip,
  .deliverables,
  .proof-grid,
  .status-list {
    grid-template-columns: 1fr;
  }

  .service-strip div,
  .deliverable,
  .proof {
    border-right: 0;
  }

  .deliverable {
    grid-template-columns: 64px 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .interface {
    overflow: hidden;
  }

  .control-grid {
    grid-auto-rows: 38px;
  }

  .footer-grid {
    flex-direction: column;
  }

  .readiness-modal {
    padding: 18px;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px;
  }

  .modal-copy {
    padding-top: 14px;
  }
}

@media (max-width: 520px) {
  .container {
    width: auto;
    max-width: none;
    margin-left: 24px;
    margin-right: 34px;
  }

  .nav {
    min-height: 76px;
  }

  .brand,
  .brand img {
    width: 150px;
  }

  .button {
    min-height: 44px;
    padding: 0 16px;
    white-space: normal;
  }

  h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .lead {
    font-size: 17px;
    line-height: 1.52;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .sprint-panel {
    padding-left: 30px;
  }

  .sprint-item::before {
    left: -38px;
  }

  .hero::after {
    display: none;
  }

  .opportunity-console {
    margin-left: 0;
    width: auto;
    padding: 14px;
  }

  .console-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .console-flow span {
    min-height: 38px;
  }

  .console-flow span:not(:last-child)::after {
    content: "";
    right: auto;
    top: auto;
    bottom: -7px;
    left: 18px;
    width: 1px;
    height: 7px;
    background: var(--line);
    transform: none;
  }

  .console-thread div {
    grid-template-columns: 28px 1fr;
  }

  .motion-track span {
    min-height: 52px;
    padding: 0 18px;
    font-size: 12px;
  }

  .section-heading {
    gap: 26px;
  }

  .interface-top {
    flex-direction: column;
  }

  .control-grid {
    grid-auto-rows: 32px;
  }

  .faq-list summary {
    font-size: 20px;
  }

  .readiness-modal {
    align-items: stretch;
    padding: 12px;
  }

  .modal-panel {
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
  }

  .modal-copy h2 {
    font-size: 34px;
  }

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

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .motion-track {
    width: auto;
    flex-wrap: wrap;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
