:root {
  --accent: #d6ff3e;
  --accent-hover: #e9ff86;
  --accent-ink: #111111;
  --ink: #1a1a1a;
  --muted: #6b6560;
  --line: #e4dfd6;
  --canvas: #e7e2d8;
  --chrome: #f7f4ee;
  --ok: #0f7b0f;
  --ok-bg: #dff6dd;
  --warn: #8a6116;
  --warn-bg: #fff4ce;
  --bad: #a4262c;
  --bad-bg: #fde7e9;
  --info: #0f6cbd;
  --radius: 8px;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  --header-h: 56px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font: 14px/1.45 "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
}
a { color: var(--info); }
code, kbd {
  font-family: Consolas, "Cascadia Mono", ui-monospace, monospace;
  font-size: 0.92em;
  background: var(--chrome);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.05em 0.35em;
}
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: var(--header-h);
  padding: 0 20px;
  background: #101114;
  color: #f3f0e8;
  border-bottom: 1px solid #2c3038;
  box-shadow: none;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f0e8;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
  white-space: nowrap;
}
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.nav {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}
.nav a {
  color: #f3f0e8;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  opacity: 0.78;
}
.nav a:hover { background: #262a33; opacity: 1; }
.nav a.is-active {
  opacity: 1;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--accent);
  border-radius: 0;
}
.topbar-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar-end a:not(.button) {
  color: #f3f0e8;
  text-decoration: none;
  opacity: 0.78;
  padding: 8px 10px;
}
.topbar-end a:not(.button):hover { opacity: 1; }
.who { color: #b7b2a8; font-size: 13px; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stack { display: flex; flex-direction: column; gap: 12px; }

main {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 64px;
}
.auth { background: #090a0c; }
.auth .topbar, .auth .site-foot, .auth .skip { display: none; }
.auth main {
  width: min(920px, calc(100% - 24px));
  margin: 8vh auto 48px;
}

h1 { font-size: 1.55rem; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; }
h2 { font-size: 1rem; font-weight: 600; margin: 0 0 12px; }
.lead { color: var(--muted); margin: 0 0 20px; max-width: 72ch; }
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 840px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.muted { color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin: 0 0 20px; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.stat-value { font-size: 1.6rem; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); }
.stat-label { color: var(--muted); font-size: 12px; margin-top: 2px; }

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  min-width: 0;
}
label.check {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
}
input, select, textarea {
  font: inherit;
  color: var(--ink);
  padding: 8px 10px;
  border: 1px solid #8a8886;
  border-radius: 4px;
  background: #fff;
  min-width: 0;
  width: 100%;
}
input:focus, select:focus, textarea:focus, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin: 0;
}
.row > label { flex: 1 1 160px; }
.row > button, .row > .button { flex: 0 0 auto; }

button, a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
button:hover, a.button:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
button.secondary:hover { background: var(--canvas); }
button.link {
  background: none;
  border: 0;
  color: var(--bad);
  padding: 0;
  font-weight: 600;
}
button.link:hover { text-decoration: underline; background: none; }
button.link.ok { color: #0e7c66; }

.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  margin: 0 0 16px;
  border: 1px solid transparent;
}
.alert.bad { background: var(--bad-bg); border-color: #f1b9bc; color: var(--bad); }
.alert.warn { background: var(--warn-bg); border-color: #f0d48a; color: var(--warn); }
.alert.ok { background: var(--ok-bg); border-color: #b4e0b0; color: var(--ok); }
.alert ul { margin: 8px 0 0; padding-left: 1.1rem; }

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
  background: var(--chrome);
  color: var(--ink);
}
.badge.ok { background: var(--ok-bg); color: var(--ok); }
.badge.bad { background: var(--bad-bg); color: var(--bad); }
.badge.warn { background: var(--warn-bg); color: var(--warn); }

.table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 16px 0 10px;
  flex-wrap: wrap;
}
.toolbar input[type="search"] { max-width: 280px; }
table { width: 100%; border-collapse: collapse; }
th, td {
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
th {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  background: var(--chrome);
  position: sticky;
  top: 0;
}
tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: #fcfcfb; }
td .muted { font-size: 12px; margin-top: 2px; }
.actions { white-space: nowrap; }
.actions form { display: inline; margin-right: 10px; }
.inline-form { display: flex; gap: 6px; margin: 0; align-items: center; }
.inline-form input { min-width: 120px; width: auto; }

.quota { height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; margin: 10px 0 0; }
.quota-fill { height: 100%; background: #111; }
.quota-meta { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.brand-preview {
  height: 44px;
  max-width: 180px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px;
}

.org-list { display: flex; flex-direction: column; gap: 16px; }
.org-card .org-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
}
.org-card h2 { margin: 0; font-size: 1.1rem; }
.logo-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: end; margin-top: 14px; }

.login-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.login-brand {
  background: linear-gradient(165deg, #2b2b2b 0%, #1a1a1a 60%, #121212 100%);
  color: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.login-brand::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}
.login-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-bottom: 18px;
  background: #fff;
}
.login-brand h1 { color: #fff; font-size: 1.7rem; }
.login-brand p { color: rgba(255,255,255,.78); margin: 10px 0 0; }
.login-form { padding: 36px 32px; }
.login-form .eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.login-form h2 { font-size: 1.45rem; margin-bottom: 6px; }
.login-form form { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.login-form button { align-self: flex-start; min-width: 120px; }
.login-download { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.login-download .button { display: inline-block; }
@media (max-width: 720px) {
  .auth { background: var(--canvas); }
  .login-shell { grid-template-columns: 1fr; }
  .login-brand {
    padding: 20px 24px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .login-brand div { display: flex; align-items: center; gap: 12px; }
  .login-brand img { margin: 0; width: 32px; height: 32px; }
  .login-brand h1 { font-size: 1.05rem; margin: 0; }
  .login-brand p { display: none; }
}

.site-foot {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 12px;
}
.empty { padding: 28px 16px; text-align: center; color: var(--muted); }

/* Public site */
.site {
  margin: 0;
  background: #f4f1eb;
  color: #1a1917;
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
  overflow-x: clip;
}
.site main {
  width: auto;
  margin: 0;
}
.site h1, .site h2, .site-mark {
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}
.sheet {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
.site a { color: inherit; text-decoration: none; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 17, 20, 0.9);
  color: #f3f0e8;
  border-bottom: 1px solid #2c3038;
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(1080px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
}
.site-mark { font-weight: 700; letter-spacing: -0.05em; }
.site-nav nav { display: flex; gap: 18px; font-size: 14px; color: #b7b2a8; }
.site-nav nav a:hover { color: #f3f0e8; }
.site-cta, .site-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.site-nav .site-cta { margin-left: auto; background: #d6ff3e; color: #111; }
.site-nav .site-cta:hover { background: #e9ff86; }
.site-ghost { border: 1px solid #d5cfc6; background: #fff; color: #1a1917; }
.hero-wrap .site-cta, .hero-actions .site-cta, .form button.site-cta, .notice .site-cta {
  background: #d6ff3e;
  color: #111;
  border: 0;
}
.hero-wrap .site-cta:hover, .hero-actions .site-cta:hover, .form button.site-cta:hover, .notice .site-cta:hover { background: #e9ff86; }
.hero-wrap .site-ghost { border-color: #3a3e46; background: transparent; color: #f3f0e8; }
.hero-wrap .site-ghost:hover, .site-ghost:hover { border-color: #d6ff3e; color: #111; background: #d6ff3e; }
.hero-wrap {
  background:
    radial-gradient(ellipse 520px 320px at 78% 42%, rgba(214, 255, 62, 0.16), transparent 70%),
    #101114;
  color: #f3f0e8;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
  gap: 40px;
  align-items: center;
  padding: 56px 0 64px;
}
.kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f675c;
}
.hero-wrap .kicker { color: #d6ff3e; }
.hero h1 {
  margin: 0;
  max-width: 11em;
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.hero h1 em { font-style: normal; color: #d6ff3e; }
.deck { margin: 14px 0 0; max-width: 38em; color: #4a453f; font-size: 16px; line-height: 1.5; }
.hero-wrap .deck { color: #c8c2b6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.stage {
  background: #17191f;
  color: #f3f0e8;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 255, 62, 0.28);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}
.stage-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 14px;
  background: #101114;
  font-size: 12px;
}
.live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6ff3e;
  box-shadow: 0 0 0 4px rgba(214, 255, 62, 0.18);
}
.stage-bar b { font-weight: 700; }
.stage-bar em { font-style: normal; color: #9a958c; }
.stage-bar em.on { color: #d6ff3e; font-weight: 700; }
.stage-body {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  min-height: 250px;
  background: #d9d3c8;
}
.stage-body aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  background: #f7f4ee;
}
.thumb {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 58px;
  padding: 7px;
  background: #fff;
  border: 1px solid #e4dfd6;
  border-radius: 3px;
}
.thumb i { display: block; height: 3px; border-radius: 2px; background: #e6e1d8; }
.thumb i:first-child { width: 70%; height: 4px; background: #1a1917; }
.thumb.on { box-shadow: inset 0 0 0 2px #1a1917; }
.stage-body article { min-width: 0; padding: 16px; }
.paper {
  min-height: 210px;
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
.paper-k { margin: 0; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #8a847a; }
.paper h2 { margin: 4px 0 12px; color: #1a1917; font-size: 16px; letter-spacing: -0.02em; }
.line { height: 6px; margin: 0 0 7px; border-radius: 3px; background: #eeeae3; }
.line.short { width: 55%; }
.mark {
  display: inline-block;
  margin: 6px 0 10px;
  padding: 2px 4px;
  background: #e4f56a;
  color: #1a1917;
  font-size: 13px;
}
.caret {
  display: inline-block;
  width: 1px;
  height: 0.9em;
  margin-left: 2px;
  vertical-align: -1px;
  background: #1a1917;
}
.sig { margin: 14px 0 0; color: #1a1917; font-size: 13px; border-bottom: 1px solid #1a1917; width: 88px; padding-bottom: 2px; }
#about, #work, #reviews, #price, #contact { scroll-margin-top: 24px; }
.block {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid #e3ddd4;
}
.block h2 { margin: 0 0 10px; font-size: 26px; letter-spacing: -0.03em; line-height: 1.15; }
.block p { margin: 0 0 12px; color: #3f3b36; font-size: 15px; line-height: 1.55; }
.block p:last-child { margin-bottom: 0; }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.feat-grid article {
  min-height: 148px;
  padding: 14px 14px 16px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-top: 3px solid #d6ff3e;
  border-radius: 10px;
}
.feat-k { margin: 0 0 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6f675c; }
.feat-grid h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.02em; }
.feat-grid p { margin: 0; color: #3f3b36; font-size: 13px; line-height: 1.45; }
.rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -28px 0 8px;
  position: relative;
  background: #101114;
  color: #f3f0e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.18);
}
.rail div { min-width: 0; padding: 16px 18px; border-right: 1px solid #2c3038; }
.rail div:last-child { border-right: 0; }
.rail strong { display: block; margin-bottom: 4px; color: #d6ff3e; font-size: 14px; letter-spacing: -0.02em; }
.rail span { display: block; color: #b7b2a8; font-size: 13px; line-height: 1.4; }
.perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}
.perks article {
  min-width: 0;
  padding: 14px 16px 16px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-top: 3px solid #d6ff3e;
  border-radius: 10px;
}
.perks strong { display: block; margin-bottom: 4px; font-size: 15px; letter-spacing: -0.02em; }
.perks span { display: block; color: #3f3b36; font-size: 13px; line-height: 1.45; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; padding: 0; list-style: none; }
.facts li {
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.tools-lead { margin: 0 0 12px; color: #3f3b36; font-size: 15px; }
.tool-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #17191f;
  border-radius: 12px;
  overflow: hidden;
}
.tool-row div { min-width: 0; padding: 14px 16px; border-right: 1px solid #2c3038; }
.tool-row div:last-child { border-right: 0; }
.tool-row b { display: block; margin-bottom: 4px; color: #d6ff3e; font-size: 13px; }
.tool-row span { color: #b7b2a8; font-size: 13px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.steps article {
  min-width: 0;
  padding: 14px 14px 16px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-radius: 10px;
}
.steps b { display: block; margin-bottom: 8px; color: #1a1917; font-size: 12px; letter-spacing: 0.08em; }
.steps h3 { margin: 0 0 6px; font-size: 16px; letter-spacing: -0.02em; }
.steps p { margin: 0; color: #3f3b36; font-size: 13px; line-height: 1.45; }
.sample-note { margin: 8px 0 0; font-size: 12px; color: #8a847a; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  min-height: 190px;
  padding: 16px;
  background: #101114;
  color: #f3f0e8;
  border-radius: 12px;
}
.review p { margin: 0; color: #f3f0e8; font-size: 15px; line-height: 1.45; }
.review footer { display: grid; gap: 2px; }
.review strong { font-size: 13px; }
.review span { color: #b7b2a8; font-size: 12px; }
.price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 12px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-radius: 12px;
}
.plan-slider { margin: 0 0 4px; }
.plan-slider input[type="range"] {
  width: 100%;
  margin: 8px 0 0;
  accent-color: #1a1917;
  cursor: pointer;
}
.plan-stops {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  color: #6f675c;
}
.plan-stops span { text-align: center; }
.plan-stops span:first-child { text-align: left; }
.plan-stops span:last-child { text-align: right; }
.plan-stops .on { color: #1a1917; font-weight: 700; }
.plan-eq { margin: 8px 0 0; color: #6f675c; font-size: 14px; }
.price-num { margin: 0; font-size: 28px; font-weight: 700; letter-spacing: -0.04em; }
.price-num span { margin-left: 6px; font-size: 14px; font-weight: 500; color: #5e5952; }
.includes { margin: 10px 0 0; padding: 0; list-style: none; color: #3f3b36; font-size: 13px; }
.includes li { margin: 0 0 4px; }
.includes li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 2px; background: #d6ff3e; box-shadow: inset 0 0 0 1px #1a1917; }
.faq details { border-top: 1px solid #e3ddd4; }
.faq details:last-child { border-bottom: 1px solid #e3ddd4; }
.faq summary { padding: 12px 0; font-weight: 700; cursor: pointer; }
.faq details p { margin: 0 0 14px; color: #3f3b36; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 24px; align-items: start; }
.contact-grid h2 { margin: 0 0 10px; font-size: 26px; letter-spacing: -0.03em; }
.mail { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e3ddd4;
  border-radius: 12px;
}
.form label { display: grid; gap: 4px; font-size: 13px; font-weight: 700; }
.form label span { font-weight: 500; color: #8a847a; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d5cfc6;
  border-radius: 8px;
  background: #fff;
  color: #1a1917;
  font: inherit;
}
.form textarea { resize: vertical; min-height: 110px; }
.form button { justify-self: start; border: 0; background: #1a1917; color: #f7f4ee; cursor: pointer; }
.form button:hover { background: #000; }
.form-ok, .form-bad { margin: 0; padding: 8px 10px; border-radius: 8px; font-size: 13px; }
.form-hint { margin: 0; color: #6f675c; font-size: 13px; font-weight: 500; }
.form button:disabled { opacity: 0.45; cursor: default; }
.buy {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
  padding: 36px 0 64px;
}
.buy h1 { margin: 0 0 12px; font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.04em; }
.buy .price-num { margin: 12px 0; }
.keys { list-style: none; margin: 18px 0; padding: 0; }
.keys code { display: block; margin: 0 0 8px; padding: 10px 12px; font-size: 15px; }
.form-ok { background: #e7f6d4; color: #1a1917; }
.form-bad { background: #fde7e9; color: #a4262c; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.price-note { margin: 12px 0 0; font-size: 13px; }
.price-note a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.notice { max-width: 68ch; padding: 36px 0 56px; }
.notice h1 { margin: 0; font-size: clamp(32px, 4vw, 44px); letter-spacing: -0.04em; }
.notice .updated { margin: 10px 0 0; color: #6f675c; font-size: 14px; }
.notice h2 { margin: 28px 0 8px; font-size: 18px; letter-spacing: -0.02em; }
.notice p, .notice li { color: #3f3b36; font-size: 15px; line-height: 1.55; }
.notice ul { margin: 8px 0 0; padding-left: 1.15em; }
.notice-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; font-weight: 700; }
.site-end {
  background: #101114;
  color: #b7b2a8;
  font-size: 14px;
  padding-bottom: 18px;
}
.end-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}
.site-end span { font-weight: 700; color: #f3f0e8; }
.site-end nav { display: flex; flex-wrap: wrap; gap: 16px; }
.site-end a:hover { color: #d6ff3e; }
.end-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding-top: 4px;
  border-top: 1px solid #2c3038;
  color: #8a847a;
  font-size: 13px;
}
.end-meta span { font-weight: 500; color: #8a847a; }
@media (prefers-reduced-motion: no-preference) {
  .stage { animation: stage-in 0.7s ease both; }
  .live { animation: live-pulse 2.4s ease-in-out infinite; }
  .caret { animation: caret-blink 1.1s steps(1) infinite; }
}
@keyframes stage-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes live-pulse {
  50% { box-shadow: 0 0 0 7px rgba(214, 255, 62, 0); }
}
@keyframes caret-blink {
  50% { opacity: 0; }
}
@media (max-width: 860px) {
  .hero, .block, .feat-grid, .rail, .perks, .tool-row, .steps, .review-grid, .contact-grid, .buy { grid-template-columns: 1fr; }
  .rail div, .tool-row div { border-right: 0; border-bottom: 1px solid #2c3038; }
  .price, .end-inner { flex-direction: column; align-items: flex-start; }
  .end-inner { padding: 16px 0; }
  .site-nav nav { display: none; }
  .rail { margin-top: 16px; }
}
