:root {
  --ink: #101820;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #d8e0e8;
  --paper: #f7fafc;
  --panel: #ffffff;
  --brand: #15a06f;
  --brand-dark: #087a57;
  --blue: #2563eb;
  --amber: #f59e0b;
  --red: #dc2626;
  --shadow: 0 20px 50px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

body.landing {
  background: #f8fbfd;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 224, 232, 0.9);
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-link img {
  width: 142px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.nav-links a {
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0;
  cursor: pointer;
}

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

.btn.primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(21, 160, 111, 0.28);
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

.btn.light {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 16, 24, 0.95), rgba(12, 39, 49, 0.86) 48%, rgba(7, 42, 30, 0.86)),
    #101820;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0 86px;
}

.hero-brand {
  width: min(480px, 82vw);
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.34));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #bbf7d0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

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

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  width: 100%;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #d8f3e9;
  overflow-wrap: break-word;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.metric {
  min-width: 154px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 5px;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.section {
  padding: 78px 22px;
}

.section.tight {
  padding-top: 48px;
}

.section.alt {
  background: #eef5f5;
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.feature-card,
.policy-card,
.step-card,
.price-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.06);
}

.feature-card,
.policy-card,
.step-card {
  padding: 22px;
}

.feature-card h3,
.policy-card h3,
.step-card h3 {
  font-size: 1.12rem;
  margin-bottom: 9px;
}

.feature-card p,
.policy-card p,
.step-card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  background: #e7f8f1;
  color: var(--brand-dark);
  font-weight: 900;
}

.product-shot {
  margin: 0;
  width: min(100%, 760px);
  justify-self: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-shot img {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  height: auto;
  object-fit: contain;
  padding: 10px;
}

.product-shot figcaption {
  margin: 0;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.workflow {
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding-top: 54px;
}

.step-card::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 850;
  font-size: 0.85rem;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: start;
}

.price-panel {
  padding: 26px;
}

.price-label {
  color: var(--brand-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 10px 0 10px;
}

.price strong {
  font-size: 4rem;
  line-height: 0.95;
}

.price del {
  color: var(--muted);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.price-panel ul,
.legal-body ul,
.legal-body ol {
  margin: 18px 0 0;
  padding-left: 21px;
  color: var(--ink-soft);
}

.price-panel li + li,
.legal-body li + li {
  margin-top: 8px;
}

.legal-body pre {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #111827;
  color: #e5edf5;
  padding: 16px;
}

.legal-body code {
  font-family: Consolas, "Courier New", monospace;
}

.fine-print {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.notice {
  border-left: 4px solid var(--amber);
  background: #fff7e6;
  padding: 16px 18px;
  color: #5f3d05;
  border-radius: 0 7px 7px 0;
}

.faq details {
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 7px;
  padding: 17px 18px;
}

.faq details + details {
  margin-top: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.cta-band {
  color: #ffffff;
  background: #101820;
}

.cta-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-band p {
  color: #cbd5e1;
  margin: 10px 0 0;
}

.site-footer {
  background: #0b1117;
  color: #cbd5e1;
  padding: 34px 22px;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}

.footer-grid img {
  width: 132px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
  max-width: 560px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.9rem;
}

.legal-page {
  background: #f8fafc;
}

.legal-hero {
  padding: 56px 22px 28px;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.legal-hero .wrap {
  max-width: 920px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--ink);
}

.legal-hero p {
  max-width: 720px;
  color: var(--ink-soft);
}

.legal-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px 22px 78px;
}

.legal-body section + section {
  margin-top: 34px;
}

.legal-body h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.legal-body p {
  color: var(--ink-soft);
}

.legal-note {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  padding: 16px;
  color: var(--ink-soft);
}

.owner-form {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.owner-form label {
  display: grid;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 750;
}

.owner-form input {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
  color: var(--ink);
}

.key-list {
  display: grid;
  gap: 8px;
}

.key-row {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 110px minmax(130px, 1fr) 110px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  padding: 10px 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .price-grid,
  .cta-band .wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: start;
  }

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

  .product-shot img {
    max-height: 340px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(100% - 30px, 1180px);
    padding-top: 52px;
  }

  .section {
    padding: 58px 15px;
  }

  .brand-link img {
    width: 126px;
  }

  .price strong {
    font-size: 3.2rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-copy {
    max-width: calc(100vw - 44px);
    font-size: 1rem;
    line-height: 1.45;
  }

  .product-shot {
    width: min(100%, 430px);
  }

  .product-shot img {
    max-height: 270px;
    padding: 8px;
  }

}
