:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5b6675;
  --line: #d9e1e8;
  --surface: #ffffff;
  --soft: #f5f7f3;
  --wash: #eef5f6;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --signal: #b45309;
  --blue: #2563eb;
  --shadow: 0 24px 70px rgba(22, 34, 43, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(23, 32, 42, 0.08);
  background: rgba(245, 247, 243, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 176px;
  height: 44px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  padding: 8px 0;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 48px;
  align-items: center;
  min-height: calc(92vh - 72px);
  padding: 68px 5vw 58px;
  background:
    linear-gradient(120deg, rgba(238, 245, 246, 0.98), rgba(245, 247, 243, 0.96)),
    radial-gradient(circle at 14% 18%, rgba(15, 118, 110, 0.12), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, 0.08), transparent 26%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.page-hero h1,
.legal h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.lead,
.page-hero p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 18px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 0;
}

.hero-facts div {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.button,
button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button {
  color: #fff;
  background: var(--accent);
}

.button.primary:hover,
button:hover {
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.notice,
.muted {
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.product-shot {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(23, 32, 42, 0.12);
  border-radius: 12px;
  background: #f8fafb;
  box-shadow: var(--shadow);
}

.shot-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 18px;
  color: #dbeafe;
  background: #17202a;
}

.shot-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}

.shot-top strong {
  margin-left: 10px;
  font-size: 13px;
}

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

.panel {
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.panel-wide {
  grid-column: 1 / -1;
}

.panel-head,
.decision-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0;
}

.metric-row strong,
.panel > strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

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

.bar-list i {
  display: block;
  width: var(--w);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--signal));
}

.tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 8px;
  color: var(--blue);
  border-radius: 6px;
  background: #dbeafe;
  font-size: 12px;
  font-weight: 800;
}

.action-card h2 {
  font-size: 28px;
}

.section,
.page-hero,
.legal {
  padding: 76px 5vw;
}

.section-white {
  background: #fff;
}

.section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-title.center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

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

.feature-grid article,
.contact-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-grid p,
.contact-grid p,
.copy-stack,
.legal p,
.pricing p {
  color: var(--muted);
}

.feature-grid.refined article {
  position: relative;
  overflow: hidden;
}

.feature-grid.refined article::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  content: "";
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.trust-strip span {
  color: var(--muted);
}

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

.compliance-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.compliance-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
  background: var(--wash);
}

.copy-stack {
  display: grid;
  gap: 12px;
  font-size: 18px;
}

.pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.pricing > div {
  max-width: 820px;
}

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

.price-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 18px 48px rgba(15, 118, 110, 0.12);
}

.price-card h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 48px);
}

.price-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li + li {
  margin-top: 8px;
}

.page {
  background: var(--soft);
}

.page-hero {
  background: var(--wash);
}

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

.workflow div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-weight: 800;
}

.legal {
  max-width: 920px;
  margin: 0 auto;
  background: var(--soft);
}

.legal h2 {
  margin-top: 34px;
  font-size: 24px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 5vw;
  color: #d7dee7;
  background: #17202a;
}

.site-footer p {
  margin-bottom: 0;
  color: #aeb8c4;
}

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

.footer-links a {
  color: #d7dee7;
}

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

  .feature-grid,
  .contact-grid,
  .pricing-grid,
  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .site-header,
  .site-footer,
  .pricing {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 38px;
  }

  .feature-grid,
  .contact-grid,
  .pricing-grid,
  .compliance-grid,
  .trust-strip,
  .workflow,
  .shot-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .panel-wide {
    grid-column: auto;
  }

  .section,
  .page-hero,
  .legal {
    padding: 54px 5vw;
  }
}
