:root {
  color-scheme: light;
  --ink: #14161f;
  --muted: #5c667a;
  --paper: #fbfaf7;
  --band: #eef4f2;
  --panel: #ffffff;
  --line: #d8dedc;
  --teal: #168f88;
  --teal-dark: #0b615c;
  --gold: #b8791a;
  --rose: #b73555;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--teal-dark);
}

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

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
}

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

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

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

.hero {
  background: linear-gradient(180deg, #fbfaf7 0%, #eef4f2 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 46px;
}

.eyebrow {
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 650px;
  color: #3d4656;
  font-size: 1.15rem;
}

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

.hero-visual {
  min-height: 380px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 143, 136, 0.16), rgba(183, 53, 85, 0.11)),
    #fff;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

.system-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.node {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--teal);
}

.node.gold {
  background: var(--gold);
}

.node.rose {
  background: var(--rose);
}

.label {
  font-weight: 800;
}

.sub {
  color: var(--muted);
  font-size: 0.92rem;
}

.status {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.86rem;
}

section {
  padding: 62px 0;
}

.band {
  background: var(--band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.tile,
.plan {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

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

.price {
  margin: 8px 0 10px;
  color: var(--gold);
  font-size: 2rem;
  font-weight: 850;
}

.plan ul {
  margin: 16px 0 22px;
  padding-left: 20px;
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--gold);
  background: #fff7e8;
  padding: 14px 16px;
  color: #59451e;
}

.legal {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 70px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: #fff;
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

  .hero-grid {
    min-height: auto;
    padding-top: 38px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

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