:root {
  --ink: #17211f;
  --muted: #5c6a66;
  --line: #d9e4df;
  --panel: #f7faf8;
  --paper: #ffffff;
  --green: #1e6f52;
  --green-2: #0f513d;
  --blue: #295a78;
  --gold: #b8852e;
  --soft: #edf5f1;
  --shadow: 0 18px 48px rgba(23, 33, 31, 0.14);
}

* {
  box-sizing: border-box;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 228, 223, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  font-size: 19px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.brand-mark.legal {
  background: linear-gradient(135deg, #243447, #8d6b2f);
}

.brand-mark.trade {
  background: linear-gradient(135deg, #1f6b54, #6b6f2a);
}

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

.nav-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-2);
  border-radius: 7px;
  padding: 10px 16px;
  background: var(--green-2);
  color: #fff;
  font-weight: 750;
  font-size: 14px;
}

.button.secondary {
  background: #fff;
  color: var(--green-2);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eaf3ef;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.88) 38%, rgba(255,255,255,0.32) 68%, rgba(255,255,255,0.16) 100%),
    linear-gradient(0deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0) 36%);
  z-index: 1;
}

.hero.legal,
.hero.trade {
  background: #f4f7f5;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 760;
}

h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: #394743;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  background: var(--paper);
  padding: 24px;
}

.trust-item strong {
  display: block;
  font-size: 22px;
  line-height: 1.15;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: 76px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.08;
}

.copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

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

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.module,
.resource-card,
.use-case,
.purchase-option {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.module {
  min-height: 168px;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--green-2);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module b,
.resource-card strong,
.use-case strong,
.purchase-option strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.module p,
.resource-card span,
.use-case span,
.purchase-option p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.domain-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.value-box {
  container-type: inline-size;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(23, 33, 31, 0.06);
}

.domain-name {
  margin: 0;
  font-size: clamp(24px, 11cqw, 62px);
  line-height: 1;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

.facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.fact {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.fact strong {
  color: var(--ink);
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 48px;
  align-items: start;
}

.purchase-options {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.purchase-option a,
.resource-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-2);
  font-weight: 800;
  font-size: 14px;
}

form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cbd8d3;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fineprint,
.disclosure {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 760;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
}

.related a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.related strong,
.related span {
  display: block;
}

.related span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #111a18;
  color: #dbe5e1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #b8c8c2;
  font-size: 14px;
}

.consent-bar {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(390px, calc(100% - 40px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.consent-bar p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-actions button {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.consent-actions button.primary {
  border-color: var(--green-2);
  background: var(--green-2);
  color: #fff;
}

.legal-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
}

@media (max-width: 900px) {
  .nav {
    padding: 14px 0;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .trust-row,
  .split,
  .domain-panel,
  .contact,
  .use-cases,
  .module-grid,
  .resource-grid,
  .related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 46px;
  }

  .hero-content {
    padding: 88px 0 48px;
  }

  section {
    padding: 56px 0;
  }

  .form-row,
  .hero-actions,
  .consent-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }
}
