:root {
  --ink: #111827;
  --muted: #5c667a;
  --paper: #f7f7f2;
  --surface: #ffffff;
  --line: #dfe3e8;
  --green: #0d7c66;
  --green-dark: #08483e;
  --coral: #f26b4f;
  --gold: #f2b84b;
  --blue: #315c98;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(247, 247, 242, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell,
.site-footer,
.section,
.workflow,
.cta-band,
.legal-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--green-dark);
  box-shadow: inset 0 -8px 18px rgba(242, 184, 75, 0.22);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

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

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  color: white !important;
  background: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: #eef2ea;
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 56px;
  padding: 90px 0 72px;
}

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

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.tagline {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-text,
.section-heading p,
.workflow p,
.legal-hero p,
.legal-content p,
.price-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 640px;
  font-size: 18px;
}

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

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

.button.primary {
  color: white;
  background: var(--green-dark);
  box-shadow: 0 14px 30px rgba(8, 72, 62, 0.24);
}

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

.button.full {
  width: 100%;
}

.console-panel {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 24, 39, 0.92);
  color: white;
  box-shadow: var(--shadow);
}

.panel-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.panel-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.panel-bar span:nth-child(2) {
  background: var(--gold);
}

.panel-bar span:nth-child(3) {
  background: #38c78c;
}

.console-lines {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}

.console-lines p {
  margin-bottom: 14px;
  color: #d7dee8;
}

.console-lines span {
  color: var(--gold);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 26px;
}

.metric-row div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.metric-row strong,
.metric-row small {
  display: block;
}

.metric-row strong {
  font-size: 28px;
}

.metric-row small {
  margin-top: 4px;
  color: #b6c2d1;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding-top: 78px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}

.feature-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.65;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: white;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.band {
  background: var(--green-dark);
  color: white;
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  padding: 96px 0;
}

.band .eyebrow {
  color: var(--gold);
}

.workflow p {
  color: #cbd8d4;
}

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

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 800;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.pill {
  align-self: flex-start;
  margin-bottom: 18px !important;
  border-radius: 999px;
  padding: 5px 10px;
  color: white !important;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin-bottom: 12px;
  color: var(--ink) !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.price-card ul {
  margin: 8px 0 24px;
  padding-left: 20px;
}

.price-card .button {
  margin-top: auto;
}

.payment-note {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.payment-note a,
.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 80px;
  border-radius: 8px;
  padding: 36px;
  color: white;
  background: var(--ink);
}

.cta-band .eyebrow {
  color: var(--gold);
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 46px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.legal-main {
  padding: 70px 0 90px;
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.legal-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.legal-content {
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  background: var(--surface);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-content h2:first-of-type {
  margin-top: 22px;
}

.notice {
  border-left: 4px solid var(--coral);
  padding: 14px 16px;
  background: #fff6f3;
  color: var(--ink) !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

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

  .hero-grid {
    gap: 34px;
    padding-top: 74px;
  }

  .console-panel {
    max-width: 520px;
  }

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

  .workflow {
    gap: 36px;
  }

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 620px) {
  .nav-shell,
  .site-footer,
  .section,
  .workflow,
  .cta-band,
  .legal-main,
  .hero-grid {
    width: min(100% - 28px, 1120px);
  }

  .hero-grid {
    padding: 58px 0 48px;
  }

  h1 {
    font-size: 54px;
  }

  .feature-grid,
  .pricing-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .section,
  .workflow {
    padding: 64px 0;
  }

  .feature-card,
  .price-card,
  .legal-content,
  .cta-band {
    padding: 22px;
  }

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

  .hero-actions,
  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }
}
