:root {
  --navy: #0f2744;
  --navy-2: #18395f;
  --ink: #172033;
  --muted: #667085;
  --line: #dfe5ec;
  --surface: #ffffff;
  --surface-soft: #f5f8fb;
  --teal: #0d7f78;
  --teal-dark: #07635e;
  --teal-soft: #e5f4f1;
  --amber: #d98912;
  --amber-soft: #fff3d8;
  --danger: #b6482e;
  --shadow: 0 24px 60px rgba(15, 39, 68, 0.14);
  --shadow-soft: 0 10px 30px rgba(15, 39, 68, 0.08);
  --radius: 20px;
  --radius-small: 12px;
  --container: 1180px;
}

* {
  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: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

img,
svg {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-muted {
  background: var(--surface-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 229, 236, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 11px;
  background: var(--navy);
  overflow: hidden;
}

.brand-sun {
  position: absolute;
  width: 22px;
  height: 22px;
  left: -7px;
  top: -7px;
  border: 4px solid #f3b654;
  border-radius: 50%;
}

.brand-check {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  transform: translate(3px, 2px);
}

.brand-copy {
  display: grid;
  line-height: 1.04;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #485469;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.button):hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(13, 127, 120, 0.22);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(13, 127, 120, 0.26);
}

.button-small {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 88% 10%, rgba(13, 127, 120, 0.10), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -310px;
  border: 1px solid rgba(15, 39, 68, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(15, 39, 68, 0.018), 0 0 0 140px rgba(15, 39, 68, 0.012);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #8ee0d6;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: #526077;
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.microcopy {
  margin: 18px 0 0;
  color: #7a8698;
  font-size: 12px;
}

.product-shell {
  position: relative;
  border: 1px solid #dbe3ec;
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.product-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.product-topbar {
  min-height: 55px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #dde5ee;
  background: #fff;
  color: #6c788c;
  font-size: 11px;
}

.product-topbar > :last-child {
  justify-self: end;
}

.window-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  border-radius: 50%;
  background: #d5dce5;
}

.product-title {
  color: #3d4b61;
  font-weight: 700;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-live {
  color: #087069;
  background: #e6f5f2;
}

.status-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #11a797;
  box-shadow: 0 0 0 4px rgba(17, 167, 151, 0.12);
}

.status-review {
  color: #8b5600;
  background: var(--amber-soft);
}

.status-complete {
  color: #087069;
  background: var(--teal-soft);
}

.dashboard-grid {
  padding: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.metric-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid #dfe5ec;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(15, 39, 68, 0.04);
}

.metric-primary {
  grid-row: span 2;
  min-height: 276px;
  display: flex;
  flex-direction: column;
}

.metric-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #667287;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-chip {
  padding: 4px 7px;
  border-radius: 5px;
  color: #607086;
  background: #f0f3f7;
  font-size: 8px;
}

.metric-value {
  margin-top: 24px;
  color: var(--navy);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.metric-value span {
  margin-left: 4px;
  color: #647187;
  font-size: 22px;
  font-weight: 600;
}

.risk-line {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b5600;
  font-size: 11px;
  font-weight: 700;
}

.risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e49a25;
  box-shadow: 0 0 0 4px rgba(228, 154, 37, 0.14);
}

.progress-track {
  height: 8px;
  margin-top: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9f0eb 0 48%, #ffe6ad 48% 72%, #f4b7a8 72% 100%);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 78%;
  height: 100%;
  border-right: 3px solid var(--navy);
}

.metric-foot {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #8a95a5;
  font-size: 9px;
}

.metric-foot strong {
  color: #8b5600;
}

.conditions-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.conditions-grid div {
  padding: 11px 8px;
  border-radius: 9px;
  background: #f6f8fb;
  text-align: center;
}

.conditions-grid strong,
.conditions-grid span {
  display: block;
}

.conditions-grid strong {
  color: var(--navy);
  font-size: 14px;
}

.conditions-grid span {
  margin-top: 2px;
  color: #8590a1;
  font-size: 8px;
}

.action-card label {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4e5c71;
  font-size: 10px;
}

.action-card input {
  width: 14px;
  height: 14px;
  accent-color: var(--teal);
}

.icon-circle {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
}

.audit-row {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #edf1f5;
  color: #68758a;
  font-size: 10px;
}

.audit-row strong {
  color: var(--navy);
}

.secondary-button {
  width: 100%;
  min-height: 34px;
  margin-top: 12px;
  border: 1px solid #d7dfe8;
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 9px;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid #e6ebf0;
  border-bottom: 1px solid #e6ebf0;
  background: #fff;
}

.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-grid > div {
  min-height: 38px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid #e5eaf0;
  color: #536075;
  font-size: 12px;
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--teal);
  background: var(--teal-soft);
  font-weight: 800;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  min-height: 272px;
  padding: 31px;
  border: 1px solid #e0e6ed;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.step-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: #c3ccd7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 21px;
  font-weight: 800;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
  color: #415069;
  font-size: 14px;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
}

.check-list span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 11px;
  font-weight: 800;
}

.timeline-card {
  padding: 27px 31px 8px;
  border: 1px solid #dfe6ed;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.timeline-header {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #e7ecf1;
}

.timeline-header > div {
  display: grid;
}

.timeline-label {
  color: #8a95a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-header strong {
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
}

.timeline-item {
  position: relative;
  min-height: 92px;
  display: grid;
  grid-template-columns: 74px 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 21px 0;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  bottom: -14px;
  left: 84px;
  width: 1px;
  background: #dfe5ec;
}

.timeline-time {
  padding-top: 2px;
  color: #7e8a9c;
  font-size: 10px;
  font-weight: 700;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px currentColor;
}

.marker-reading { color: var(--teal); background: var(--teal); }
.marker-action { color: #568bc2; background: #568bc2; }
.marker-warning { color: var(--amber); background: var(--amber); }
.marker-note { color: #7b67af; background: #7b67af; }

.timeline-item strong {
  display: block;
  color: #334158;
  font-size: 12px;
}

.timeline-item p {
  margin: 3px 0 0;
  color: #8893a2;
  font-size: 10px;
}

.audience-section {
  padding: 82px 0;
  color: #fff;
  background: var(--navy);
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.audience-section h2 {
  margin-bottom: 0;
  color: #fff;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dbe8f5;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 600;
}

.pilot-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 127, 120, 0.09), transparent 28%),
    #f7f9fc;
}

.pilot-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 84px;
  align-items: start;
}

.pilot-copy {
  position: sticky;
  top: 110px;
}

.pilot-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.pilot-note {
  margin-top: 30px;
  padding: 20px;
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.pilot-note strong {
  color: var(--navy);
  font-size: 13px;
}

.pilot-note span {
  color: var(--muted);
  font-size: 12px;
}

.pilot-form {
  padding: 34px;
  border: 1px solid #dce3eb;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.pilot-form label {
  margin-bottom: 18px;
  display: grid;
  gap: 7px;
  color: #3f4d63;
  font-size: 12px;
  font-weight: 700;
}

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

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  border: 1px solid #d5dde6;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border 150ms ease, box-shadow 150ms ease;
}

.pilot-form input,
.pilot-form select {
  height: 46px;
  padding: 0 13px;
}

.pilot-form textarea {
  padding: 12px 13px;
  resize: vertical;
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 127, 120, 0.1);
}

.checkbox-field {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  padding: 13px;
  border-radius: 9px;
  background: #f5f8fb;
  font-weight: 500 !important;
  line-height: 1.5;
}

.checkbox-field input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--danger);
  font-size: 12px;
  text-align: center;
}

.form-status.success {
  color: var(--teal);
}

.form-privacy {
  margin: 4px 0 0;
  color: #929cab;
  font-size: 10px;
  text-align: center;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid #e3e9ef;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1.7fr auto;
  gap: 30px;
  align-items: center;
}

.footer-grid p,
.copyright {
  margin: 0;
  color: #7d899a;
  font-size: 10px;
}

.legal-note {
  line-height: 1.55;
}

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

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .product-shell {
    transform: none;
  }

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

  .trust-grid > div {
    padding: 18px 12px;
    border-bottom: 1px solid #e5eaf0;
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(3),
  .trust-grid > div:nth-child(4) {
    border-bottom: 0;
  }

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

  .step-card {
    min-height: 0;
  }

  .split-grid,
  .pilot-grid {
    gap: 54px;
  }

  .pilot-copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  .main-nav > a:not(.button) {
    display: none;
  }

  .hero {
    padding-top: 76px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .metric-primary {
    grid-row: auto;
  }

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

  .product-title {
    display: none;
  }

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

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid #e5eaf0;
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

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

  .pilot-form {
    padding: 24px;
  }

  .timeline-card {
    padding: 22px 18px 6px;
  }

  .timeline-item {
    grid-template-columns: 58px 18px 1fr;
    gap: 8px;
  }

  .timeline-item:not(:last-child)::after {
    left: 65px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .button-small {
    display: none;
  }

  .nav-wrap {
    min-height: 66px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

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

  .metric-value {
    font-size: 50px;
  }

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