:root {
  --ink: #090a08;
  --ink-soft: #11130f;
  --panel: #0d0f0c;
  --paper: #f2f0e8;
  --paper-muted: #c4c2b9;
  --muted: #888c82;
  --line: rgba(242, 240, 232, 0.14);
  --line-strong: rgba(242, 240, 232, 0.24);
  --lime: #b9f657;
  --lime-soft: rgba(185, 246, 87, 0.1);
  --blue: #4f8cff;
  --amber: #f1bb54;
  --radius: 18px;
  --radius-small: 11px;
  --display: "Bricolage Grotesque", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lime) 62%, var(--amber));
  content: "";
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(185, 246, 87, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.ambient-one {
  top: 90px;
  right: 0;
  width: min(520px, 100vw);
  height: 520px;
  background: radial-gradient(circle at 100% 50%, rgba(185, 246, 87, 0.1), transparent 68%);
}

.ambient-two {
  top: 640px;
  left: 0;
  width: min(560px, 100vw);
  height: 560px;
  background: radial-gradient(circle at 0 50%, rgba(79, 140, 255, 0.08), transparent 68%);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 8, 0.84);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(185, 246, 87, 0.6);
  border-radius: 12px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
}

.brand-mark span:last-child {
  border-left: 1px solid rgba(9, 10, 8, 0.35);
  background: var(--ink);
  color: var(--lime);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 16px;
  font-variation-settings: "wdth" 88;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #a9ada3;
  font-size: 14px;
}

.desktop-nav a {
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  padding: 0 20px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover {
  border-color: rgba(185, 246, 87, 0.45);
  background: var(--lime-soft);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #c8ff72;
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  padding-block: 90px 100px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(185, 246, 87, 0.08);
}

.pulse-dot::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(185, 246, 87, 0.5);
  border-radius: inherit;
  animation: ping 2.4s ease-out infinite;
  content: "";
}

@keyframes ping {
  0%, 35% { opacity: 0.8; transform: scale(0.55); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(58px, 7.1vw, 104px);
  font-weight: 700;
  font-variation-settings: "wdth" 83;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
  text-shadow: 0 0 42px rgba(185, 246, 87, 0.13);
}

.hero-lede {
  max-width: 640px;
  margin: 32px 0 0;
  color: #b8bbb2;
  font-size: clamp(18px, 2vw, 21px);
  letter-spacing: -0.018em;
  line-height: 1.6;
}

.domain-form {
  max-width: 680px;
  margin-top: 36px;
}

.domain-form > label {
  display: block;
  margin-bottom: 10px;
  color: #d8dad3;
  font-size: 13px;
  font-weight: 700;
}

.domain-control {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(4, 5, 4, 0.88);
  padding: 6px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.domain-control:focus-within {
  border-color: rgba(185, 246, 87, 0.6);
  box-shadow: 0 0 0 4px rgba(185, 246, 87, 0.08);
}

.domain-icon {
  padding-left: 15px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 20px;
}

.domain-control input {
  min-width: 0;
  height: 54px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  padding: 0 14px;
  font-size: 17px;
}

.domain-control input::placeholder {
  color: #5e625a;
}

.domain-control button {
  height: 52px;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  background: var(--lime);
  color: var(--ink);
  padding: 0 21px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.domain-control button:hover {
  transform: translateX(2px);
  background: #c9ff74;
}

.form-hint,
.field-error {
  min-height: 19px;
  margin: 9px 0 0;
  color: #74786f;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}

.field-error {
  display: none;
  color: #ffb4a7;
}

.field-error:not(:empty) {
  display: block;
}

.field-error:not(:empty) + .form-hint {
  margin-top: 2px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin-top: 24px;
  color: #7c8178;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span::before {
  color: var(--lime);
  content: "✓";
}

.hero-proof b {
  color: #c7cbc1;
  font-weight: 600;
}

.contract-stage {
  position: relative;
  padding-block: 38px;
}

.contract-aura {
  position: absolute;
  z-index: -1;
  inset: 4% 3%;
  transform: rotate(-5deg);
  border: 1px solid rgba(185, 246, 87, 0.18);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(185, 246, 87, 0.055), transparent 56%);
}

.contract-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 240, 232, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0, rgba(185, 246, 87, 0.09), transparent 30%),
    #0b0d0a;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.54);
}

.contract-card::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.7px, transparent 0.7px);
  background-size: 16px 16px;
  content: "";
  pointer-events: none;
}

.contract-card > * {
  position: relative;
}

.contract-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
}

.contract-head p,
.contract-domain small,
.metric-row span,
.validation-ledger span,
.contract-foot span {
  margin: 0;
  color: #696e65;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-head h2 {
  margin: 6px 0 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.contract-status {
  border: 1px solid rgba(185, 246, 87, 0.3);
  border-radius: 999px;
  background: rgba(185, 246, 87, 0.08);
  color: var(--lime);
  padding: 7px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contract-domain {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 22px 24px 8px;
}

.contract-favicon {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(79, 140, 255, 0.38);
  border-radius: 11px;
  background: rgba(79, 140, 255, 0.1);
  color: #8eb5ff;
  font-weight: 800;
}

.contract-domain strong {
  display: block;
  font-size: 14px;
}

.contract-domain small {
  display: block;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: none;
}

.verified-seal {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 18px 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--line);
}

.metric-row > div {
  background: #0b0d0a;
  padding: 17px;
}

.metric-row strong {
  display: block;
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 27px;
}

.metric-row .metric-current strong {
  color: var(--lime);
}

.rail {
  position: relative;
  height: 3px;
  margin: 32px 31px 31px;
  background: #2e322c;
}

.rail-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 75%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}

.rail i {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translate(-50%, -50%);
  border: 2px solid #0b0d0a;
  border-radius: 999px;
  background: #6f746a;
  box-shadow: 0 0 0 1px #51564d;
}

.rail-start { left: 0; }
.rail-current { left: 75%; background: var(--lime) !important; box-shadow: 0 0 0 1px var(--lime), 0 0 18px rgba(185, 246, 87, 0.45) !important; }
.rail-end { left: 100%; }

.validation-ledger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 20px 24px;
}

.validation-ledger strong {
  display: block;
  max-width: 270px;
  margin-top: 6px;
  color: #c4c7bf;
  font-size: 12px;
  font-weight: 500;
}

.check-slots {
  display: flex;
  gap: 6px;
}

.check-slots span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: #71766d;
  font-size: 9px;
}

.check-slots .qualified {
  border-color: rgba(185, 246, 87, 0.35);
  background: rgba(185, 246, 87, 0.08);
  color: var(--lime);
}

.contract-foot {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1px;
  background: var(--line);
}

.contract-foot > div {
  background: #070806;
  padding: 17px 20px;
}

.contract-foot strong {
  display: block;
  margin-top: 6px;
  color: #d5d8d0;
  font-size: 12px;
  font-weight: 600;
}

.stage-caption {
  margin: 18px 0 0;
  color: #6c7168;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.signal-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 12px;
  border-left: 1px solid var(--line);
  padding: 22px;
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid span {
  grid-row: 1 / 3;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
}

.signal-grid strong {
  color: #d3d6ce;
  font-size: 13px;
}

.signal-grid small {
  color: #666b62;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.section {
  padding-block: 128px;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.section-intro h2,
.pricing-heading h2,
.guarantee-copy h2,
.faq-heading h2,
.final-panel h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 680;
  font-variation-settings: "wdth" 88;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-intro h2 span,
.pricing-heading h2 span {
  color: #747970;
}

.section-intro > p:last-child {
  max-width: 490px;
  margin: 26px 0 0;
  color: #8f938b;
  font-size: 17px;
  line-height: 1.7;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.process-list h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.process-list p {
  max-width: 530px;
  margin: 9px 0 0;
  color: #858a81;
  line-height: 1.7;
}

.pricing-wrap,
.faq-wrap {
  border-block: 1px solid rgba(9, 10, 8, 0.15);
  background: var(--paper);
  color: var(--ink);
}

.pricing-wrap .section-kicker,
.faq-wrap .section-kicker {
  color: #4d7013;
}

.pricing-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.pricing-heading h2 {
  max-width: 750px;
  font-size: clamp(44px, 6vw, 76px);
}

.pricing-heading > p {
  margin: 0 0 7px;
  color: #60635d;
  font-size: 16px;
  line-height: 1.7;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 55px;
}

.price-card {
  position: relative;
  min-height: 285px;
  border: 1px solid rgba(9, 10, 8, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.28);
  padding: 25px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(15, 18, 11, 0.1);
}

.price-card.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 9px 9px 0 var(--lime);
}

.price-tier {
  color: #686b64;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured .price-tier {
  color: #92978d;
}

.popular {
  position: absolute;
  top: 16px;
  right: 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 38px 0 0;
  font-size: 18px;
  font-weight: 500;
}

.price-card h3 b {
  font-family: var(--mono);
  font-size: 38px;
  font-weight: 600;
}

.price-card .price {
  margin: 14px 0 32px;
  font-size: 30px;
  font-weight: 760;
  letter-spacing: -0.04em;
}

.price-card a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(9, 10, 8, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.featured a {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--lime);
}

.pricing-note {
  margin: 28px 0 0;
  color: #74766f;
  font-family: var(--mono);
  font-size: 10px;
  text-align: center;
}

.guarantee {
  padding-block: 96px;
}

.guarantee-card {
  display: grid;
  grid-template-columns: auto 1fr 0.8fr;
  align-items: center;
  gap: 36px;
  overflow: hidden;
  border: 1px solid rgba(185, 246, 87, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 6% 45%, rgba(185, 246, 87, 0.15), transparent 24%),
    #0c0f0a;
  padding: clamp(30px, 5vw, 62px);
}

.guarantee-mark {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(185, 246, 87, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 0 10px rgba(185, 246, 87, 0.05);
}

.guarantee-mark span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 25px;
  font-weight: 600;
}

.guarantee-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.4vw, 59px);
}

.guarantee-copy > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: #8d9287;
  line-height: 1.75;
}

.guarantee-split {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.guarantee-split > div {
  padding: 18px;
}

.guarantee-split > div + div {
  border-top: 1px solid var(--line);
}

.guarantee-split span,
.guarantee-split strong {
  display: block;
}

.guarantee-split span {
  color: #6f746a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-split strong {
  margin-top: 5px;
  color: #d7dad2;
  font-size: 13px;
}

.disclosure {
  padding-top: 72px;
}

.disclosure-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  border-top: 1px solid var(--line);
  padding-top: 72px;
}

.disclosure-copy {
  color: #9a9e95;
  font-size: 17px;
  line-height: 1.8;
}

.disclosure-copy p {
  margin: 0 0 22px;
}

.disclosure-copy a,
.faq-heading a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading h2 {
  font-size: clamp(42px, 4.7vw, 62px);
}

.faq-heading a {
  margin-top: 28px;
  color: #3f6010;
  font-size: 14px;
}

.faq-list details {
  border-top: 1px solid rgba(9, 10, 8, 0.18);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(9, 10, 8, 0.18);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 25px 44px 25px 0;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: #688d28;
  font-family: var(--mono);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 680px;
  margin: -7px 0 26px;
  color: #60635c;
  line-height: 1.75;
}

.final-cta {
  padding-block: 100px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, transparent 55%, rgba(185, 246, 87, 0.06)),
    #0b0d0a;
  padding: clamp(38px, 7vw, 86px);
}

.final-panel::after {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 380px;
  height: 380px;
  transform: rotate(20deg);
  border: 1px solid rgba(185, 246, 87, 0.2);
  border-radius: 80px;
  content: "";
}

.final-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 800px;
  font-size: clamp(49px, 7vw, 89px);
}

.final-panel .button {
  position: relative;
  z-index: 1;
  margin-top: 35px;
}

.final-panel small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 18px;
  color: #686d64;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060705;
  padding-block: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 34px;
}

.footer-grid > div:first-child > p {
  max-width: 400px;
  margin: 18px 0 0;
  color: #666b62;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: #969a91;
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--lime);
}

.copyright {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #52564f;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.reveal {
  animation: reveal 700ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.reveal-delay {
  animation-delay: 130ms;
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 78px 90px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .contract-stage {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid > div:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .signal-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guarantee-card {
    grid-template-columns: auto 1fr;
  }

  .guarantee-split {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .guarantee-split > div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 620px);
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

  .desktop-nav {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .nav-shell .button {
    min-height: 39px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .hero {
    padding-block: 62px 72px;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 76px);
    line-height: 0.88;
  }

  .hero-lede {
    font-size: 17px;
  }

  .domain-control {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .domain-control button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  .hero-proof {
    display: grid;
  }

  .contract-stage {
    padding-block: 18px;
  }

  .contract-head,
  .contract-domain,
  .validation-ledger {
    padding-inline: 17px;
  }

  .contract-head h2 {
    font-size: 17px;
  }

  .metric-row {
    margin-inline: 17px;
  }

  .metric-row > div {
    padding: 14px 11px;
  }

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

  .contract-foot {
    grid-template-columns: 1fr 1fr;
  }

  .contract-foot > div:last-child {
    grid-column: 1 / -1;
  }

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

  .signal-grid > div {
    border-right: 1px solid var(--line);
  }

  .signal-grid > div + div {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 86px;
  }

  .process,
  .pricing-heading,
  .disclosure-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .section-intro h2,
  .pricing-heading h2,
  .guarantee-copy h2,
  .faq-heading h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

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

  .price-card {
    min-height: 245px;
  }

  .price-card.featured {
    box-shadow: 6px 6px 0 var(--lime);
  }

  .guarantee {
    padding-block: 62px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
  }

  .guarantee-mark {
    width: 72px;
    height: 72px;
  }

  .guarantee-mark span {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .guarantee-split {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .guarantee-split > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .disclosure {
    padding-top: 30px;
  }

  .disclosure-grid {
    padding-top: 54px;
  }

  .final-cta {
    padding-block: 68px;
  }

  .final-panel h2 {
    font-size: clamp(46px, 14vw, 68px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
