:root {
  --ink: #111615;
  --soft-ink: #3e4947;
  --muted: #687370;
  --line: rgba(22, 28, 27, 0.12);
  --surface: #ffffff;
  --surface-2: #f3f7f5;
  --mint: #19b98f;
  --cyan: #1d9ccf;
  --amber: #f2b84b;
  --rose: #e55d75;
  --charcoal: #101817;
  --shadow: 0 28px 90px rgba(24, 31, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 22, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 22, 21, 0.035) 1px, transparent 1px),
    linear-gradient(120deg, rgba(25, 185, 143, 0.12), transparent 34%),
    linear-gradient(260deg, rgba(229, 93, 117, 0.11), transparent 28%),
    #f8faf8;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

button,
input,
select {
  font: inherit;
}

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

.app-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 24px auto 56px;
}

.hero-panel {
  min-height: calc(100vh - 48px);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 24, 23, 0.78), rgba(16, 24, 23, 0.88)),
    url("https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1800&q=80") center/cover;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
  opacity: 0.38;
  transform: perspective(900px) rotateX(62deg) translateY(180px) scale(1.45);
  transform-origin: bottom;
  animation: gridDrift 10s linear infinite;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  color: white;
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 900;
  font-size: 1.06rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.nav-links a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-links a:hover {
  color: white;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 42px;
  perspective: 1200px;
}

.hero-copy {
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

h4 {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.13rem;
  line-height: 1.7;
}

.primary-link,
.secondary-link,
.primary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.primary-link,
.primary-button {
  border: 0;
  color: #061311;
  background: var(--mint);
  padding: 0 18px;
  cursor: pointer;
}

.primary-link:hover,
.primary-button:hover {
  background: #22d4a7;
}

.secondary-link {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 18px;
}

.intelligence-board {
  position: relative;
  padding: 22px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  transform: rotateY(-8deg) rotateX(5deg) translateZ(24px);
  transform-style: preserve-3d;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  animation: panelBreath 6s ease-in-out infinite;
}

.holo-stack {
  position: absolute;
  inset: 20px;
  pointer-events: none;
  transform-style: preserve-3d;
}

.holo-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(25, 185, 143, 0.26);
  border-radius: 8px;
}

.holo-stack span:nth-child(1) {
  transform: translateZ(-28px) translate(14px, 14px);
}

.holo-stack span:nth-child(2) {
  border-color: rgba(29, 156, 207, 0.22);
  transform: translateZ(-56px) translate(28px, 28px);
}

.holo-stack span:nth-child(3) {
  border-color: rgba(242, 184, 75, 0.18);
  transform: translateZ(-84px) translate(42px, 42px);
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  font-weight: 900;
}

.board-header strong {
  color: var(--amber);
}

.signal-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 150px;
  align-items: end;
  margin-bottom: 22px;
}

.signal-bars span {
  min-height: 32px;
  height: var(--level);
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--mint), var(--cyan));
  box-shadow: 0 0 24px rgba(25, 185, 143, 0.28);
  transform: translateZ(30px);
}

.insight-stack {
  display: grid;
  gap: 10px;
}

.insight-stack p {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.insight-stack strong {
  color: white;
}

.cred-strip,
.motion-showcase,
.scanner,
.roadmap-section,
.project-section,
.report-preview,
.audience-section,
.market-strip,
.launch-panel,
.waitlist-panel,
.faq-section,
.site-footer {
  margin-top: 22px;
}

.motion-showcase {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 18px;
  align-items: stretch;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(16, 24, 23, 0.96), rgba(21, 48, 47, 0.92)),
    url("https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1600&q=80") center/cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  perspective: 1100px;
  transform-style: preserve-3d;
}

.compact-motion {
  min-height: 310px;
}

.motion-copy {
  align-self: center;
  padding: 34px;
  color: white;
}

.motion-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.motion-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  transform-style: preserve-3d;
}

.depth-grid {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -24%;
  height: 76%;
  background:
    linear-gradient(90deg, rgba(25, 185, 143, 0.22) 1px, transparent 1px),
    linear-gradient(rgba(29, 156, 207, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.48;
  transform: rotateX(68deg);
  transform-origin: bottom;
  animation: gridDrift 9s linear infinite;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 360px;
  height: 360px;
  animation: spin 18s linear infinite;
}

.orbit-two {
  width: 520px;
  height: 220px;
  animation: spinReverse 16s linear infinite;
}

.motion-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  color: #061311;
  background: radial-gradient(circle at 30% 25%, #ffffff, var(--mint) 58%, var(--cyan));
  border-radius: 999px;
  transform: translate(-50%, -50%) translateZ(84px);
  font-weight: 900;
  font-size: 2rem;
  box-shadow: 0 0 60px rgba(25, 185, 143, 0.45);
  animation: corePulse 4s ease-in-out infinite;
}

.motion-card {
  position: absolute;
  width: 170px;
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 12px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transform: translateZ(66px) rotateY(-10deg);
  animation: floatCard 5s ease-in-out infinite;
}

.card-a {
  left: 12%;
  top: 20%;
}

.card-b {
  right: 10%;
  top: 34%;
  animation-delay: 0.9s;
}

.card-c {
  left: 28%;
  bottom: 16%;
  animation-delay: 1.7s;
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) translateZ(66px) rotateY(-10deg);
  }
  50% {
    transform: translateY(-14px) translateZ(96px) rotateY(8deg);
  }
}

@keyframes panelBreath {
  0%,
  100% {
    transform: rotateY(-8deg) rotateX(5deg) translateZ(24px);
  }
  50% {
    transform: rotateY(-3deg) rotateX(8deg) translateZ(42px);
  }
}

@keyframes corePulse {
  0%,
  100% {
    box-shadow: 0 0 55px rgba(25, 185, 143, 0.4);
  }
  50% {
    box-shadow: 0 0 90px rgba(29, 156, 207, 0.58);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 72px 72px;
  }
}

.cred-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cred-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
}

.cred-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
}

.cred-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 4px 18px;
}

.scanner-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 18px;
}

.control-panel,
.result-panel,
.roadmap-card,
.project-card,
.market-strip article,
.launch-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 55px rgba(24, 31, 30, 0.08);
  border-radius: 8px;
  transform-style: preserve-3d;
}

.result-panel,
.roadmap-card,
.project-card,
.solution-card,
.detail-card,
.report-card {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.result-panel:hover,
.roadmap-card:hover,
.project-card:hover,
.solution-card:hover,
.detail-card:hover,
.report-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 26px 70px rgba(24, 31, 30, 0.14);
}

.control-panel {
  display: grid;
  gap: 12px;
  padding: 20px;
}

label {
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 900;
}

select {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fbfdfc;
  border-radius: 8px;
  padding: 12px;
  outline: none;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fbfdfc;
  border-radius: 8px;
  padding: 0 13px;
  outline: none;
}

select:focus,
input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(25, 185, 143, 0.16);
}

.result-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.result-head,
.skill-columns,
.launch-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
}

#demandBadge {
  padding: 8px 11px;
  color: #062019;
  background: rgba(25, 185, 143, 0.2);
  border: 1px solid rgba(25, 185, 143, 0.38);
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.82rem;
}

.salary-band {
  padding: 18px;
  color: white;
  background:
    linear-gradient(100deg, rgba(25, 185, 143, 0.18), transparent 42%),
    var(--charcoal);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.salary-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.16) 48%, transparent 60% 100%);
  transform: translateX(-100%);
  animation: scanLine 5s ease-in-out infinite;
}

.salary-band span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}

.salary-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
}

.salary-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

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

ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

li {
  position: relative;
  padding: 11px 12px 11px 34px;
  background: var(--surface-2);
  border-radius: 8px;
  color: var(--soft-ink);
  line-height: 1.45;
}

li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 17px;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 99px;
}

.roadmap,
.project-grid,
.market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.roadmap-card,
.project-card {
  padding: 18px;
}

.roadmap-card span,
.project-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 9px;
  color: #062019;
  background: rgba(25, 185, 143, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.roadmap-card p,
.project-card p {
  color: var(--muted);
  line-height: 1.6;
}

.project-card {
  min-height: 210px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(243, 247, 245, 0.94)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80") center/cover;
  transform: perspective(900px) rotateX(0deg);
}

.market-strip article {
  padding: 18px;
  border-left: 4px solid var(--cyan);
}

.market-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.03rem;
}

.market-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.launch-panel {
  padding: 34px;
  background:
    linear-gradient(100deg, rgba(25, 185, 143, 0.16), rgba(242, 184, 75, 0.14)),
    white;
}

.launch-panel p {
  max-width: 670px;
  color: var(--muted);
  line-height: 1.7;
}

.launch-panel .primary-link {
  align-self: center;
}

.report-preview {
  display: grid;
  grid-template-columns: 1fr minmax(290px, 420px);
  gap: 18px;
  align-items: stretch;
}

.report-copy,
.report-card,
.audience-grid article,
.waitlist-panel,
.faq-grid article,
.site-footer {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(24, 31, 30, 0.08);
  border-radius: 8px;
}

.report-copy {
  padding: 34px;
}

.report-copy p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  padding: 12px;
  color: var(--soft-ink);
  background: var(--surface-2);
  border-radius: 8px;
  font-weight: 800;
}

.report-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: white;
  background:
    linear-gradient(145deg, rgba(29, 156, 207, 0.28), rgba(25, 185, 143, 0.12)),
    var(--charcoal);
}

.report-top span,
.report-line span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 5px;
}

.report-top strong {
  font-size: 1.45rem;
}

.score-ring {
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  justify-self: center;
  text-align: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--charcoal) 0 56%, transparent 57%),
    conic-gradient(var(--mint) 0 88%, rgba(255, 255, 255, 0.16) 88% 100%);
  animation: ringTurn 7s linear infinite;
}

.score-ring span {
  display: block;
  font-size: 2.15rem;
  font-weight: 900;
  animation: counterTurn 7s linear infinite;
}

.score-ring p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  animation: counterTurn 7s linear infinite;
}

@keyframes ringTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes counterTurn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes scanLine {
  0%,
  45% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

.report-line {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.audience-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-grid article,
.faq-grid article {
  padding: 20px;
}

.audience-grid p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.waitlist-panel p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.7;
}

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

.waitlist-form div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  color: white;
  background: var(--charcoal);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-links a:hover {
  color: white;
}

.sub-hero {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 24, 23, 0.7), rgba(16, 24, 23, 0.88)),
    url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=80") center/cover;
  box-shadow: var(--shadow);
}

.sub-hero-content {
  align-self: center;
  max-width: 900px;
  padding: 42px;
  color: white;
}

.sub-hero-content p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.detail-grid,
.solution-grid,
.timeline-section {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.solution-grid,
.timeline-section {
  grid-template-columns: repeat(3, 1fr);
}

.timeline-section {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card,
.solution-card,
.timeline-section article,
.action-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 55px rgba(24, 31, 30, 0.08);
  border-radius: 8px;
}

.detail-card,
.solution-card,
.timeline-section article {
  padding: 20px;
}

.detail-card p,
.solution-card p,
.timeline-section p,
.action-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-card span,
.timeline-section span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 9px;
  color: #062019;
  background: rgba(25, 185, 143, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.action-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 32px;
  background:
    linear-gradient(100deg, rgba(29, 156, 207, 0.14), rgba(25, 185, 143, 0.14)),
    white;
}

.page-report {
  margin-top: 22px;
}

@media (max-width: 940px) {
  .hero-grid,
  .motion-showcase,
  .cred-strip,
  .scanner-grid,
  .detail-grid,
  .result-head,
  .skill-columns,
  .launch-panel,
  .report-preview,
  .audience-grid,
  .waitlist-panel,
  .faq-grid,
  .solution-grid,
  .timeline-section,
  .action-panel,
  .roadmap,
  .project-grid,
  .market-strip {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 20px, 1200px);
    margin-top: 10px;
  }

  .top-nav,
  .hero-grid {
    padding: 18px;
  }

  .top-nav,
  .hero-actions,
  .nav-links {
    align-items: stretch;
  }

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

  .nav-links,
  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .nav-links a,
  .primary-link,
  .secondary-link {
    text-align: center;
  }

  .section-heading {
    display: block;
  }

  .motion-stage {
    min-height: 310px;
  }

  .motion-card {
    width: 140px;
  }

  .intelligence-board,
  .result-panel:hover,
  .roadmap-card:hover,
  .project-card:hover,
  .solution-card:hover,
  .detail-card:hover,
  .report-card:hover {
    transform: none;
  }

  .check-list,
  .waitlist-form div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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