:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --text: #18222d;
  --muted: #5f6c77;
  --line: rgba(24, 34, 45, 0.12);
  --brand: #12395d;
  --brand-2: #1e6a8d;
  --accent: #d8a23f;
  --dark: #102535;
  --shadow: 0 22px 60px rgba(22, 42, 58, 0.12);
  font-family: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(30, 106, 141, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(216, 162, 63, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
}

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

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(18, 57, 93, 0.92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f0bf62 0%, #bd7d21 100%);
  color: #152234;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.85rem;
}

.topnav,
.topbar-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topnav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
}

.topnav a:hover,
.topnav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #f1c56f 0%, #d29734 100%);
  color: #18222d;
}

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.footer-ghost {
  border-color: rgba(24, 34, 45, 0.16);
  color: var(--text);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  padding: 72px 0 44px;
}

.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-2);
}

.hero h1,
.section-heading h2,
.split-grid h2,
.footer h2 {
  font-family: "Fraunces", serif;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.1rem);
  max-width: 12ch;
}

.hero-lead,
.section-copy,
.feature-card p,
.report-card p,
.deploy-note,
.footer p,
.timeline p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.trust-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel,
.feature-card,
.report-card,
.deploy-card,
.dashboard-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 34, 51, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 22px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #3ecf75;
  box-shadow: 0 0 0 6px rgba(62, 207, 117, 0.12);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-grid article,
.dashboard-row {
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.metric-grid article {
  padding: 16px;
  display: grid;
  gap: 4px;
}

.metric-grid strong {
  font-size: 1.2rem;
}

.metric-grid span,
.dashboard-row span {
  color: var(--muted);
}

.dashboard-table {
  display: grid;
  gap: 8px;
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.8fr;
  gap: 12px;
  padding: 14px 16px;
  align-items: center;
}

.dashboard-head {
  background: #edf3f7;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-style: normal;
  font-weight: 800;
}

.badge-open {
  background: #ecdf71;
  color: #534200;
}

.badge-extend {
  background: #f3d38c;
  color: #654100;
}

.badge-due {
  background: #e7a4a0;
  color: #67231f;
}

.section {
  padding: 44px 0;
}

.section-light {
  background: rgba(255, 255, 255, 0.44);
  border-block: 1px solid rgba(24, 34, 45, 0.06);
}

.section-dark {
  background: linear-gradient(135deg, #11293b 0%, #1d4964 100%);
  color: #fff;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.split-grid h2,
.footer h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading-dark .eyebrow,
.section-heading-dark .report-card p {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card,
.report-card,
.deploy-card {
  padding: 22px;
}

.feature-card h3,
.report-card h3,
.timeline h3,
.deploy-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

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

.timeline article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.timeline span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #113a5d 0%, #1a688a 100%);
  color: #fff;
  font-weight: 800;
}

.timeline p,
.deploy-card ol {
  margin: 0;
}

.deploy-card ol {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer {
  padding: 30px 0 44px;
}

@media (max-width: 1100px) {
  .topnav,
  .topbar-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: #fff;
  }

  .mobile-menu {
    padding: 0 16px 16px;
    display: grid;
    gap: 8px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .feature-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    max-width: none;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100vw - 20px, 1180px);
  }

  .topbar-inner {
    min-height: 72px;
  }

  .brand-copy span {
    display: none;
  }

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