:root {
  color-scheme: light;
  --ink: #0d2a3a;
  --muted: #526573;
  --line: #d8e1e7;
  --paper: #f7faf8;
  --panel: #ffffff;
  --teal: #0f766e;
  --aqua: #6ee7d8;
  --gold: #f4c95d;
  --blue: #204e6b;
  --shadow: 0 22px 70px rgba(13, 42, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 225, 231, 0.9);
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 180px;
  max-width: min(180px, 52vw);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover {
  background: #173d52;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: #eaf2ef;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
}

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

.trust-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-shot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #eef5f2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.dot:nth-child(2) {
  background: var(--aqua);
}

.dot:nth-child(3) {
  background: var(--blue);
}

.app-ui {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.toolbar,
.progress-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdfc;
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.connector {
  min-height: 96px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.connector strong {
  display: block;
  font-size: 1rem;
}

.connector span,
.log-line {
  color: var(--muted);
  font-size: 0.88rem;
}

.bridge-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
}

.progress-card {
  display: grid;
  gap: 12px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.meter {
  height: 12px;
  border-radius: 999px;
  background: #dfe9e6;
  overflow: hidden;
}

.meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.log {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.log-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "Cascadia Mono", Consolas, monospace;
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-lead {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.feature {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  counter-reset: step;
}

.step {
  position: relative;
  border-left: 4px solid var(--teal);
  padding: 0 0 0 16px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  background: var(--ink);
  color: #ffffff;
}

.cta .section-lead,
.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta .button {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.cta .button.secondary {
  background: transparent;
  color: #ffffff;
}

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

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 112px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.legal-main {
  width: min(850px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.legal-main h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.legal-main h2 {
  margin: 40px 0 10px;
  font-size: 1.45rem;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main ul {
  padding-left: 22px;
}

.effective {
  margin-top: 16px;
  color: var(--teal);
  font-weight: 900;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .grid,
  .workflow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    padding: 14px 0;
  }

  .brand img {
    width: 156px;
    max-width: 72vw;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 36px;
  }

  .toolbar,
  .grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .bridge-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .section {
    padding: 52px 0;
  }
}
