:root {
  color-scheme: light;
  --bg: #f4f6f3;
  --paper: #ffffff;
  --ink: #1f241f;
  --muted: #5f675e;
  --line: rgba(31, 36, 31, 0.14);
  --soft-line: rgba(31, 36, 31, 0.08);
  --green: #2b7a55;
  --red: #b94132;
  --amber: #9a621f;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(31, 36, 31, 0.06);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.compact {
  max-width: 1060px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.brand-mark::before {
  top: 8px;
}

.brand-mark::after {
  top: 13px;
  right: 10px;
  background: #78d7a3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero {
  max-width: 1180px;
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding: 36px 24px 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 46px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
  letter-spacing: 0;
}

p,
label,
li {
  text-wrap: pretty;
}

h1 {
  font-size: 70px;
  line-height: 0.96;
  margin-bottom: 22px;
}

h2 {
  font-size: 30px;
  line-height: 1.08;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 26px;
  max-width: 660px;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
  box-shadow: 0 14px 34px rgba(31, 36, 31, 0.12);
}

.create-form,
.request-panel,
.activation-panel {
  background: var(--paper);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.create-form,
.lead-form {
  display: grid;
  gap: 13px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  outline: none;
  transition-property: border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

textarea {
  min-height: 102px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(43, 122, 85, 0.8);
  box-shadow: 0 0 0 3px rgba(43, 122, 85, 0.16);
}

button,
.button-link {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition-property: background-color, scale;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

button:hover,
.button-link:hover {
  background: #333a33;
}

button:active,
.button-link:active {
  scale: 0.96;
}

.secondary-button {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.secondary-button:hover {
  background: rgba(31, 36, 31, 0.06);
}

.notice,
.error {
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.notice {
  background: rgba(43, 122, 85, 0.1);
  color: var(--green);
}

.error {
  background: rgba(185, 65, 50, 0.1);
  color: var(--red);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
  border-top: 1px solid var(--soft-line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 38px;
  align-items: start;
}

.section p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.feature-list,
.price-list {
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list div,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--soft-line);
}

.feature-list div {
  align-items: flex-start;
}

.feature-list div:last-child,
.price-row:last-child {
  border-bottom: 0;
}

.feature-list span,
.price-row span {
  color: var(--muted);
}

.price-row strong {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  color: var(--muted);
  border-top: 1px solid var(--soft-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  font-size: 13px;
}

.desk-body {
  background: #f6f7f4;
}

.desk-shell {
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 24px 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
}

.desk-copy h1 {
  font-size: 58px;
  max-width: 720px;
  overflow-wrap: anywhere;
}

.desk-status {
  color: var(--green);
  font-weight: 750;
  margin-bottom: 16px;
}

.desk-facts {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.desk-facts div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
}

.desk-note {
  color: var(--muted);
  line-height: 1.6;
}

.request-panel {
  position: sticky;
  top: 18px;
}

.lead-form {
  margin-top: 14px;
}

.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

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

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

  .hero-media {
    order: -1;
    max-width: 760px;
  }
}

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

  .split,
  .desk-shell {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 54px;
  }

  .request-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  h1,
  .desk-copy h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 25px;
  }

  .lead {
    font-size: 17px;
  }

  .form-grid,
  .desk-facts div {
    grid-template-columns: 1fr;
  }

  .feature-list div,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
