:root {
  --green: #2b9371;
  --green-dark: #1f7a5c;
  --green-deep: #124534;
  --mint: #7ecea5;
  --ink: #1d4835;
  --text: #3a4a44;
  --muted: #6b7a74;
  --line: #dfe8e3;
  --paper: #ffffff;
  --wash: #f4f8f6;
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .home-hero {
    background: #124534 url("/images/hero-poster.jpg") center / cover no-repeat;
  }
  .home-hero video {
    display: none;
  }
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 8px;
  z-index: 80;
  background: #fff;
  padding: 8px 12px;
}

#main,
#features,
.page-hero h1,
.doc h1,
section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.home-bar:not(.is-scrolled) a:focus-visible,
.home-bar:not(.is-scrolled) button:focus-visible {
  outline-color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 15px 28px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover {
  background: var(--green-dark);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.site-header.home-bar {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--green);
  box-shadow: none;
}
.site-header.home-bar.is-scrolled {
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  width: 163px;
  height: 32px;
}
.brand img {
  width: 163px;
  height: 32px;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 6px 8px;
}
.home-bar .nav-toggle span {
  background: #fff;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.menu > li {
  position: relative;
}
.menu > li > a,
.menu > li > button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: #2a3b35;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 8px;
}
.menu > li > a:hover,
.menu > li > button:hover,
.menu > li.is-open > button,
.menu > li.is-current > button,
.menu > li > a[aria-current="page"],
.dropdown a[aria-current="page"] {
  color: var(--green);
}
.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}
.home-bar .menu > li > a,
.home-bar .menu > li > button {
  color: #fff;
}
.home-bar .menu > li > a:hover,
.home-bar .menu > li > button:hover,
.home-bar .menu > li.is-open > button,
.home-bar .menu > li.is-current > button {
  color: #e8fff4;
}
.home-bar.is-scrolled .menu > li > a,
.home-bar.is-scrolled .menu > li > button {
  color: #2a3b35;
}
.home-bar.is-scrolled .menu > li > a:hover,
.home-bar.is-scrolled .menu > li > button:hover,
.home-bar.is-scrolled .menu > li.is-open > button,
.home-bar.is-scrolled .menu > li.is-current > button {
  color: var(--green);
}
.home-bar.is-scrolled .nav-toggle span {
  background: var(--ink);
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(18, 69, 52, 0.16);
  padding: 10px 0;
  list-style: none;
  margin: 0;
}
.menu > li.is-open > .dropdown {
  display: block;
}
@media (hover: hover) and (min-width: 981px) {
  .menu > li:hover > .dropdown {
    display: block;
  }
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: #2a3b35;
  font-weight: 600;
  font-size: 14px;
}
.dropdown a:hover {
  background: var(--wash);
  color: var(--green);
}
.header-cta {
  margin-left: 12px;
  padding: 12px 22px;
}
.home-bar .header-cta {
  background: #fff;
  color: var(--green);
}
.home-bar .header-cta:hover {
  background: #f3fffa;
}
.home-bar.is-scrolled .header-cta {
  background: var(--green);
  color: #fff;
}
.home-bar.is-scrolled .header-cta:hover {
  background: var(--green-dark);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }
  .primary-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  }
  .site-header.is-open .primary-nav {
    display: flex;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu {
    flex-direction: column;
  }
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    padding: 0 0 8px 12px;
  }
  .menu > li.is-open > .dropdown {
    display: block;
  }
  .header-cta {
    margin: 12px 0 0;
    width: 100%;
  }
  .home-bar .primary-nav {
    background: var(--green-deep);
  }
  .home-bar .dropdown a {
    color: #fff;
  }
  .home-bar.is-scrolled .primary-nav {
    background: #fff;
  }
  .home-bar.is-scrolled .dropdown a {
    color: #2a3b35;
  }
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.home-hero video,
.home-hero .veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero .veil {
  background: linear-gradient(
    180deg,
    rgba(8, 24, 18, 0.28) 0%,
    rgba(8, 24, 18, 0.45) 55%,
    rgba(8, 24, 18, 0.55) 100%
  );
}
.home-hero .copy {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 80px) 28px 90px;
}
.home-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 16ch;
}
.home-hero p.lede {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 28px;
}

/* Inner hero */
.page-hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #12352a;
}
.page-hero .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 28, 22, 0.45), rgba(10, 28, 22, 0.15));
}
.page-hero .copy {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
  width: 100%;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
}

/* Sections */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 88px 0;
}
.section.wash {
  background: var(--wash);
}
.eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: none;
  margin: 0 0 10px;
}
.center {
  text-align: center;
}
.center h2,
.center p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 18px;
}
.prose {
  color: var(--text);
  font-size: 17px;
}
.prose p {
  margin: 0 0 14px;
}
.center .prose {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.flip {
  direction: rtl;
}
.split.flip > * {
  direction: ltr;
}
.split img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.feature {
  text-align: center;
}
.feature img {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
}
.feature h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.icon-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}
.icon-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}
.icon-row img {
  width: 42px;
  height: 42px;
}
.icon-row p {
  margin: 0;
  color: var(--text);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
}
.benefit img {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
}
.benefit h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.benefit p {
  margin: 0;
  color: var(--text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 40px;
}
.person img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}
.person h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.person .role {
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 10px;
}
.person p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}

.steps {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
}
.infographic {
  margin: 28px auto 0;
  max-width: 920px;
}

/* Forms */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}
.form-card label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 6px;
}
.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.form-card textarea {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}
.form-sent {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--wash);
  outline: none;
}
.form-sent p {
  margin: 0 0 12px;
}
.form-sent p:last-child {
  margin-bottom: 0;
}

.cta-panel {
  text-align: center;
  background: var(--wash);
  border-radius: 16px;
  padding: 48px 28px;
}

/* Legal */
.doc {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 28px 80px;
}
.doc h1 {
  font-size: 40px;
  margin: 0 0 8px;
}
.doc .updated {
  color: var(--muted);
  margin: 0 0 28px;
}
.doc h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.doc p,
.doc li {
  color: var(--text);
}
.doc ul {
  padding-left: 20px;
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 28px;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-brand img {
  height: 30px;
  margin-bottom: 12px;
}
.footer-brand p,
.footer-col a {
  color: var(--muted);
  font-size: 14px;
}
.footer-col h2,
.footer-col h3 {
  font-size: 16px;
  margin: 0 0 12px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin: 0 0 8px;
}
.footer-col a:hover {
  color: var(--green);
}
.footer-bottom {
  max-width: 1240px;
  margin: 36px auto 0;
  padding: 20px 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.footer-bottom a {
  margin-left: 16px;
}
.entity-bar {
  background: var(--green-deep);
  color: #e7f3ed;
  padding: 22px 28px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}
.entity-bar strong {
  color: #fff;
  letter-spacing: 0.04em;
}
.entity-bar a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .split,
  .split.flip,
  .features,
  .benefit-grid,
  .team-grid,
  .footer-grid,
  .kit-compare,
  .kit-room,
  .kit-track,
  .kit-verify,
  .kit-benefits {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .kit-track {
    display: flex;
    flex-direction: column;
  }
  .kit-schema-arrow {
    transform: rotate(90deg);
  }
  .section {
    padding: 56px 0;
  }
  .page-hero {
    min-height: 280px;
  }
}

/* Digital Signing Innovation (unlisted page) */
.kit-toc {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
  max-width: 760px;
  margin: 36px auto 0;
}
.kit-toc h2 {
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--green);
  margin: 0 0 12px;
}
.kit-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
}
.kit-toc a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.kit-toc a:hover {
  text-decoration: underline;
}
.kit-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.kit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}
.kit-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
}
.kit-card-lede {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
}
.kit-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text);
}
.kit-card li {
  margin: 0 0 8px;
}
.kit-card.good {
  border-color: #b7e0cc;
  background: #f6fbf8;
}
.kit-card.bad {
  border-color: #ead4d4;
  background: #fdf7f7;
}
.kit-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
  align-items: center;
  margin: 20px 0 24px;
}
.kit-flow .step {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}
.kit-flow .arrow {
  color: var(--muted);
  font-weight: 700;
}
.kit-shot {
  margin: 28px 0 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.kit-shot img {
  width: 100%;
  height: auto;
  display: block;
}
.kit-shot figcaption {
  padding: 14px 18px 18px;
  font-size: 15px;
  color: var(--muted);
}
.kit-shot figcaption strong {
  color: var(--ink);
}
.kit-callout {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 16px;
}
.kit-callout p {
  margin: 10px 0 0;
  text-align: left;
}
.kit-callout p:first-of-type {
  margin-top: 8px;
}
.center .kit-callout {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.kit-callout.warn {
  background: #fff8e8;
  border-color: #ead9a8;
}
.kit-callout .kit-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
  margin-top: 14px;
}
.kit-callout.alert {
  background: #fdf7f7;
  border-color: #ead4d4;
}
.kit-callout.info {
  background: #eef4f9;
  border-color: #b7c9d9;
  border-left: 4px solid #3d6f91;
  margin-top: 28px;
}
.kit-callout.info .kit-info-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d6f91;
}
.kit-callout.info strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
}
.kit-callout.info a {
  color: #2a5a7a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kit-callout.info a:hover {
  color: var(--ink);
}
.kit-table-wrap {
  overflow-x: auto;
  margin: 24px 0 0;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.kit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}
.kit-table th,
.kit-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}
.kit-table th {
  background: var(--wash);
  color: var(--ink);
  font-weight: 700;
}
.kit-table tr:last-child td {
  border-bottom: 0;
}
.kit-room {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.7fr;
  gap: 10px;
  background: var(--green-deep);
  color: #e8eee9;
  padding: 16px;
  border-radius: 16px;
  margin: 24px 0 0;
  font-size: 14px;
}
.kit-room .cell {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px;
  min-height: 5.5rem;
}
.kit-room .mint {
  outline: 2px solid var(--mint);
}
.kit-room strong {
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.kit-room .muted {
  color: #c5d4cc;
}
.kit-face {
  background: var(--green-deep);
  color: #e8eee9;
  border-radius: 16px;
  overflow: hidden;
  margin: 24px 0 0;
}
.kit-face .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #0f2e24;
  font-weight: 700;
}
.kit-face .bar span {
  font-weight: 500;
  color: #9bb0a6;
  font-size: 13px;
}
.kit-face .body {
  padding: 22px 20px 26px;
  max-width: 36rem;
  margin: 0 auto;
}
.kit-face h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
}
.kit-face p {
  color: #c5d4cc;
  margin: 0 0 16px;
}
.kit-face .widget {
  background: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(126, 206, 165, 0.5);
  border-radius: 12px;
  min-height: 8.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--mint);
  padding: 18px;
  font-weight: 600;
}
.kit-prose h3 {
  font-size: 22px;
  margin: 36px 0 10px;
}
.kit-prose ul,
.kit-prose ol {
  color: var(--text);
  padding-left: 1.2rem;
}
.kit-prose li {
  margin: 0 0 8px;
}
.kit-prose a {
  color: var(--green);
  font-weight: 600;
}
.kit-prose a:hover {
  text-decoration: underline;
}
.kit-prose code {
  font-size: 0.9em;
}

.kit-schema {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 8px;
}
.kit-track {
  display: grid;
  grid-template-columns: minmax(180px, 1.15fr) auto minmax(140px, 0.7fr) auto minmax(160px, 0.9fr);
  gap: 10px 12px;
  align-items: center;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px 16px;
}
.kit-track-label {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.kit-schema-arrow {
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}
.kit-pdf .sheet {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px 14px 4px 4px;
  min-height: 168px;
  padding: 22px 16px 16px;
  box-shadow: 0 8px 18px rgba(18, 69, 52, 0.08);
}
.kit-pdf .fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e8f3ed 50%, var(--wash) 50%);
  border-bottom-left-radius: 4px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kit-pdf strong {
  display: block;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  line-height: 1;
}
.kit-pdf em {
  display: block;
  font-style: normal;
  font-weight: 700;
  margin: 6px 0 8px;
  color: var(--ink);
}
.kit-pdf span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.kit-pdf.small .sheet {
  min-height: 110px;
  padding: 18px 14px 12px;
}
.kit-pdf.small strong {
  font-size: 22px;
}
.kit-log {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  font-size: 13px;
  color: var(--text);
}
.kit-log .log-head {
  background: var(--green-deep);
  color: #fff;
  font-weight: 700;
  padding: 8px 12px;
  font-size: 13px;
}
.kit-log ol {
  margin: 0;
  padding: 8px 12px 10px 28px;
}
.kit-log li {
  margin: 0 0 4px;
  line-height: 1.35;
}
.kit-log.compact ol {
  padding-bottom: 8px;
}
.kit-hash {
  background: #fff;
  border: 2px dashed var(--mint);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.kit-hash strong {
  display: block;
  font-size: 14px;
  color: var(--green-deep);
}
.kit-hash code {
  display: block;
  margin: 8px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  word-break: break-all;
}
.kit-hash span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.kit-blocks {
  display: flex;
  align-items: stretch;
  gap: 6px;
}
.kit-blocks .blk {
  flex: 0 0 18px;
  border-radius: 4px;
  background: #d5e6dc;
  border: 1px solid #c3d8cc;
}
.kit-blocks .blk.live {
  flex: 1 1 auto;
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #e8eee9;
  padding: 12px 12px 10px;
  min-width: 0;
}
.kit-blocks .blk.live strong {
  display: block;
  color: #fff;
  font-size: 14px;
}
.kit-blocks .blk.live span {
  display: block;
  margin: 4px 0 6px;
  color: var(--mint);
  font-weight: 700;
  font-size: 13px;
}
.kit-blocks .blk.live code {
  display: block;
  font-size: 11px;
  color: #c5d4cc;
  word-break: break-all;
}
.kit-blocks.compact .blk.muted {
  display: none;
}
.kit-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 8px;
}
.kit-benefits article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 16px 14px;
}
.kit-benefits h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--green-deep);
}
.kit-benefits p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.kit-have {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 20px 0;
}
.kit-have-label {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.kit-have ul {
  margin: 0;
  padding-left: 1.15rem;
}
.kit-have li {
  margin: 0 0 4px;
}
.kit-verify {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px 12px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 16px;
  margin: 16px 0;
}
.kit-verify-col {
  min-width: 0;
}
.kit-verify-col p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}
.kit-verify .step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.kit-verify-col.match {
  background: #f6fbf8;
  border: 1px solid #b7e0cc;
  border-radius: 12px;
  padding: 12px;
}
.kit-match {
  background: var(--green);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-block;
}
.kit-result {
  background: var(--green-deep);
  color: #e8eee9;
  border-radius: 16px;
  padding: 20px 22px;
  margin: 8px 0 20px;
  font-size: 16px;
  line-height: 1.55;
}
.kit-result strong {
  color: #fff;
}
