:root {
  color-scheme: light;
  --page: #f5f7fb;
  --paper: #ffffff;
  --ink: #10233f;
  --muted: #62718a;
  --line: #d8e2ee;
  --brand: #183058;
  --brand-2: #25628f;
  --blue: #2077b7;
  --aqua: #26a6cf;
  --green: #11805b;
  --amber: #bd7b18;
  --red: #c2413d;
  --shadow: 0 20px 54px rgba(16, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 226, 238, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.site-nav,
.section,
.hero-inner {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}

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

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.site-brand img {
  width: 196px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 750;
}

.site-links a:hover {
  color: var(--brand);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 35, 63, 0.06);
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.button.aqua {
  border-color: var(--aqua);
  background: var(--aqua);
  color: #072138;
}

.hero {
  position: relative;
  padding: 70px 0 42px;
  background:
    linear-gradient(132deg, rgba(24, 48, 88, 0.96), rgba(32, 119, 183, 0.94)),
    radial-gradient(circle at 78% 16%, rgba(38, 166, 207, 0.3), transparent 34%);
  color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9be4f5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.hero p,
.page-hero p {
  max-width: 660px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 640px;
}

.hero-proof span {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 21px;
}

.product-frame {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #f7fbff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.product-top strong,
.product-card strong,
.metric strong,
.module-pill strong {
  display: block;
}

.product-pill {
  padding: 7px 10px;
  border-radius: 8px;
  background: #e8f7fb;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 850;
}

.product-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 380px;
}

.product-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  background: #10233f;
  color: #dce8f5;
}

.product-sidebar span {
  padding: 9px 10px;
  border-radius: 8px;
  font-weight: 750;
  font-size: 13px;
}

.product-sidebar .active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.product-main {
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.metric,
.product-card,
.module-pill,
.tour-card,
.contact-card,
.value-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 35, 63, 0.06);
}

.metric {
  padding: 14px;
}

.metric span,
.product-card span,
.module-pill span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric strong {
  margin-top: 5px;
  font-size: 24px;
}

.product-card {
  padding: 16px;
  margin-bottom: 14px;
}

.product-card .bar {
  display: block;
  height: 10px;
  margin-top: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green) 0 74%, #d8e2ee 74% 100%);
}

.module-grid-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.module-pill {
  padding: 13px;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding-top: 42px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.section-header h2 {
  max-width: 740px;
  margin: 0;
  color: var(--brand);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.section-header p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.split .contact-grid {
  grid-template-columns: 1fr;
}

.module-grid {
  grid-template-columns: repeat(5, 1fr);
}

.value-card,
.tour-card,
.contact-card {
  padding: 20px;
}

.value-card h3,
.tour-card h3,
.contact-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 18px;
}

.value-card p,
.tour-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.module-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 35, 63, 0.07);
}

.module-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--brand-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.page-hero {
  padding: 76px 0 64px;
  background: linear-gradient(132deg, #10233f, #2077b7);
  color: #ffffff;
}

.page-hero .section {
  padding: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.story-panel,
.form-panel,
.video-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.story-panel h2,
.form-panel h2,
.video-panel h2 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 28px;
}

.story-panel p,
.form-panel p {
  color: var(--muted);
  line-height: 1.65;
}

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

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

.timeline b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e8f7fb;
  color: var(--brand-2);
}

.video-shell {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 18px;
}

.tour-list {
  display: grid;
  gap: 10px;
}

.tour-step {
  width: 100%;
  min-height: 70px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.tour-step.is-active {
  border-color: rgba(32, 119, 183, 0.7);
  background: #eef8fc;
}

.tour-step strong {
  display: block;
  margin-bottom: 4px;
}

.tour-step span {
  color: var(--muted);
  font-size: 13px;
}

.video-stage {
  min-height: 460px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #10233f;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.video-stage-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.video-stage-top span {
  color: #9be4f5;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.video-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 30px;
}

.video-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

.demo-screen {
  padding: 16px;
  border-radius: 8px;
  background: #f7fbff;
  color: var(--ink);
}

.demo-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.demo-metrics div,
.demo-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.demo-metrics div {
  padding: 12px;
}

.demo-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.demo-metrics strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.demo-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 52px;
  margin-top: 9px;
  padding: 11px 13px;
}

.demo-line span {
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: #edf8f4;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.progress-track {
  height: 8px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: var(--aqua);
  transition: width 0.28s ease;
}

.contact-form {
  display: grid;
  gap: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .video-shell {
    grid-template-columns: 1fr;
  }

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

  .product-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .section-header {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-nav {
    align-items: start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-links,
  .site-actions,
  .hero-actions,
  .footer-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-proof,
  .metric-row,
  .module-grid-preview,
  .module-grid,
  .value-grid,
  .contact-grid,
  .demo-metrics,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .video-stage {
    min-height: auto;
  }
}
