:root {
  color-scheme: light;
  --ink: #07111f;
  --ink-2: #142033;
  --navy: #09162a;
  --navy-soft: #101f38;
  --blue: #2d7bff;
  --cyan: #00d8ff;
  --lime: #b9ff4d;
  --coral: #ff7448;
  --paper: #f6f9fc;
  --paper-2: #edf5fa;
  --white: #ffffff;
  --muted: #536171;
  --line: #d8e5ee;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 28px;
  color: var(--white);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid rgba(216, 229, 238, 0.18);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  font-weight: 800;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg,
.button svg,
.loop-card svg,
.module-card svg,
.check-list svg,
.coach-alert svg,
.trust-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 700px;
  height: 86svh;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.92) 0%, rgba(5, 10, 18, 0.68) 34%, rgba(5, 10, 18, 0.16) 76%),
    linear-gradient(0deg, rgba(5, 10, 18, 0.9) 0%, rgba(5, 10, 18, 0.16) 45%, rgba(5, 10, 18, 0.16) 100%);
}

.hero-content {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
  padding: 0 0 86px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow-dark {
  color: #0866ca;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
  border-color: rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d2ff7c;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.signal-strip {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-grid {
  width: min(100% - 40px, 1160px);
  min-height: 118px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.signal-grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-grid span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-grid strong {
  font-size: 1rem;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

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

.section-media {
  background: var(--white);
}

.two-column,
.analytics-layout,
.media-layout,
.roadmap-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.analytics-layout,
.media-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-copy h2,
.section-heading h2,
.video-copy h2 {
  margin: 0;
  color: inherit;
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-copy p,
.section-heading p + h2 + p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-ink .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-copy > p:last-of-type {
  margin-bottom: 0;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.loop-card,
.module-card,
.audience-grid article,
.timeline article,
.pilot-form,
.dashboard {
  border-radius: 8px;
}

.loop-card {
  min-height: 208px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 17, 31, 0.06);
}

.loop-card svg,
.module-card svg {
  color: var(--blue);
  margin-bottom: 18px;
}

.loop-card h3,
.module-card h3,
.audience-grid h3,
.timeline h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.loop-card p,
.module-card p,
.audience-grid p,
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dashboard {
  padding: 24px;
  background: #0d1b31;
  border: 1px solid rgba(216, 229, 238, 0.18);
  box-shadow: var(--shadow);
}

.dashboard-topline,
.dashboard-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-topline {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.dashboard-topline strong {
  color: var(--lime);
  font-size: 0.98rem;
}

.dashboard-score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-score div {
  min-height: 136px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-score span,
.coach-alert span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-score strong {
  display: block;
  margin: 9px 0 2px;
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
}

.dashboard-score small {
  color: rgba(255, 255, 255, 0.72);
}

.coach-alert {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(0, 216, 255, 0.12);
  border: 1px solid rgba(0, 216, 255, 0.24);
}

.coach-alert svg {
  color: var(--cyan);
  margin-top: 2px;
}

.coach-alert p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.mini-chart {
  height: 170px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-chart span {
  display: block;
  min-height: 18px;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  background: var(--cyan);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list svg {
  color: var(--lime);
  margin-top: 2px;
}

.photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.12);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-row div {
  padding: 20px;
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  color: var(--coral);
  font-size: 2rem;
  line-height: 1;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.compact-heading {
  max-width: 680px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  min-height: 232px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.section-video {
  position: relative;
  min-height: 660px;
  padding: 0;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--ink);
}

.section-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.9), rgba(5, 10, 18, 0.18)),
    linear-gradient(0deg, rgba(5, 10, 18, 0.72), rgba(5, 10, 18, 0.04));
  pointer-events: none;
}

.video-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
  padding: 0 0 72px;
  color: var(--white);
}

.video-copy h2 {
  max-width: 580px;
}

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

.audience-grid article {
  min-height: 216px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.section-roadmap {
  color: var(--white);
  background: var(--ink-2);
}

.roadmap-layout {
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  color: var(--white);
}

.timeline p {
  color: rgba(255, 255, 255, 0.76);
}

.section-contact {
  color: var(--white);
  background: var(--navy);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.trust-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.trust-list svg {
  color: var(--lime);
  margin-top: 2px;
}

.pilot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.pilot-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.pilot-form span {
  font-size: 0.88rem;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
}

.pilot-form textarea {
  resize: vertical;
  min-height: 132px;
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  outline: 3px solid rgba(45, 123, 255, 0.18);
  border-color: var(--blue);
  background: var(--white);
}

.full-span,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #166534;
  font-weight: 800;
}

.site-footer {
  min-height: 110px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  background: #050a12;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(216, 229, 238, 0.18);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  }

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

  .site-nav a {
    justify-content: flex-start;
  }

  .hero {
    min-height: 710px;
    height: 84svh;
  }

  h1 {
    font-size: 3.6rem;
  }

  .signal-grid,
  .module-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .analytics-layout,
  .media-layout,
  .roadmap-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .analytics-layout .section-copy {
    order: -1;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .site-nav {
    top: 68px;
    right: 16px;
    left: 16px;
  }

  .hero {
    min-height: 680px;
    height: auto;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 10, 18, 0.94), rgba(5, 10, 18, 0.54)),
      linear-gradient(0deg, rgba(5, 10, 18, 0.92), rgba(5, 10, 18, 0.16));
  }

  .hero-content {
    width: min(100% - 32px, 1160px);
    padding: 168px 0 58px;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .section {
    padding: 68px 0;
  }

  .section-inner,
  .signal-grid,
  .video-copy {
    width: min(100% - 32px, 1160px);
  }

  .section-copy h2,
  .section-heading h2,
  .video-copy h2 {
    font-size: 2rem;
  }

  .signal-grid,
  .loop-grid,
  .module-grid,
  .audience-grid,
  .dashboard-score,
  .photo-pair,
  .stat-row,
  .pilot-form {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    min-height: 0;
  }

  .signal-grid div {
    padding: 18px;
  }

  .loop-card,
  .module-card,
  .audience-grid article {
    min-height: auto;
  }

  .dashboard {
    padding: 18px;
  }

  .dashboard-score div {
    min-height: 124px;
  }

  .section-video {
    min-height: 520px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline span {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }
}

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