@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/heebo-400.ttf") format("truetype");
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/heebo-500.ttf") format("truetype");
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/heebo-600.ttf") format("truetype");
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/heebo-700.ttf") format("truetype");
}

:root {
  --ink: #07101a;
  --ink-soft: #354351;
  --paper: #f5f7f4;
  --paper-strong: #ffffff;
  --night: #050706;
  --night-soft: #101411;
  --night-line: rgba(255, 255, 255, 0.13);
  --green: #25bb4d;
  --green-bright: #58c965;
  --green-soft: #e7f8e9;
  --line: #dce3dd;
  --shadow: 0 24px 80px rgba(6, 13, 9, 0.15);
  --radius-lg: 36px;
  --radius-md: 22px;
  --radius-sm: 12px;
  --shell: 1248px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Heebo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #031008;
  background: #ffffff;
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.section {
  padding-block: 112px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 68% 44%, rgba(36, 187, 77, 0.09), transparent 34%),
    linear-gradient(135deg, #070907 0%, #030503 64%, #0b0d0b 100%);
  border-radius: 0 0 58px 58px;
}

.hero__ambient,
.hero__grid,
.hero__orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0%, black 70%, transparent 100%);
}

.hero__orb {
  width: 420px;
  height: 420px;
  inset: auto;
  border-radius: 50%;
  filter: blur(8px);
}

.hero__orb--one {
  top: 156px;
  right: 8%;
  background: radial-gradient(circle, rgba(37, 187, 77, 0.17), transparent 66%);
}

.hero__orb--two {
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(151, 239, 161, 0.08), transparent 67%);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--night-line);
}

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

.official-chip {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.official-chip:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

.official-chip__pulse {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(88, 201, 101, 0.14);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.75fr);
  gap: 80px;
  align-items: center;
  padding-block: 98px 84px;
}

.hero__copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #168b37;
}

.eyebrow__mark {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(52px, 5.15vw, 78px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.99;
}

h1 em {
  color: var(--green-bright);
  font-style: normal;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4.15vw, 60px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h3 {
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.016em;
  line-height: 1.2;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(37, 187, 77, 0.18);
}

.button--primary:hover {
  background: #1faa45;
}

.button--quiet {
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.19);
}

.button--quiet:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
}

.button--dark {
  flex: 0 0 auto;
  color: #ffffff;
  background: var(--ink);
}

.button--dark:hover {
  background: #132231;
}

.button--large {
  min-height: 62px;
  padding-inline: 28px;
}

.hero__ownership {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.hero__ownership-icon {
  display: inline-grid;
  width: 21px;
  height: 21px;
  color: #051107;
  font-size: 12px;
  font-weight: 700;
  background: var(--green-bright);
  border-radius: 50%;
  place-items: center;
}

.domain-card {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    #0c100d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.55),
    inset 0 1px rgba(255, 255, 255, 0.07);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.domain-card::after {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -120px;
  bottom: -130px;
  background: rgba(37, 187, 77, 0.22);
  border-radius: 50%;
  filter: blur(45px);
  content: "";
  pointer-events: none;
}

.domain-card__top {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 49px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid var(--night-line);
}

.window-dot {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.21);
  border-radius: 50%;
}

.domain-card__label {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.domain-card__address {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  margin: 18px;
  padding: 0 17px;
  color: #ffffff;
  font-family: "Heebo", monospace;
  font-size: 16px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.27);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
}

.lock-mark {
  position: relative;
  width: 15px;
  height: 13px;
  background: var(--green-bright);
  border-radius: 3px;
}

.lock-mark::before {
  position: absolute;
  width: 9px;
  height: 9px;
  left: 3px;
  top: -6px;
  border: 2px solid var(--green-bright);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
}

.domain-card__status {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 25px 24px;
}

.status-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  color: #061209;
  font-weight: 700;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(88, 201, 101, 0.09);
  place-items: center;
}

.domain-card__status p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.domain-card__status span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.route {
  margin: 0 18px 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
}

.route__label {
  margin-bottom: 8px;
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route__domain {
  margin-bottom: 7px;
  color: #ffffff;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.route__description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.domain-card__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 59px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  border-top: 1px solid var(--night-line);
}

.domain-card__footer a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.hero__foot {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 34px;
  align-items: center;
  padding-bottom: 36px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__foot span {
  display: flex;
  gap: 34px;
  align-items: center;
}

.hero__foot span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  background: var(--green-bright);
  border-radius: 50%;
  content: "";
}

.trust-section {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  column-gap: 100px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--ink-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  position: relative;
  min-height: 355px;
  padding: 30px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(11, 20, 13, 0.035);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.trust-card:hover {
  border-color: #c8d4ca;
  box-shadow: 0 20px 55px rgba(11, 20, 13, 0.075);
  transform: translateY(-4px);
}

.trust-card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #abb5ad;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.trust-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 56px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 16px;
  place-items: center;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.trust-card p a {
  color: #137f32;
  font-weight: 600;
  text-underline-offset: 3px;
}

.icon-domain {
  position: relative;
  width: 26px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.icon-domain::before {
  position: absolute;
  width: 100%;
  height: 4px;
  top: 3px;
  left: 0;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.icon-layers {
  position: relative;
  width: 27px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: translate(-3px, -3px);
}

.icon-layers::before {
  position: absolute;
  width: 23px;
  height: 14px;
  top: 5px;
  left: 5px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.icon-lock {
  position: relative;
  width: 23px;
  height: 20px;
  top: 3px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.icon-lock::before {
  position: absolute;
  width: 13px;
  height: 11px;
  left: 3px;
  top: -10px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  content: "";
}

.verify-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 10%, rgba(37, 187, 77, 0.1), transparent 32%),
    var(--night);
}

.verify-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.8fr);
  gap: 110px;
  align-items: start;
}

.verify-intro {
  position: sticky;
  top: 36px;
}

.verify-intro h2 {
  max-width: 570px;
}

.verify-intro > p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.58);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--green-bright);
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  display: block;
  width: 0;
  height: 1px;
  margin-left: -100%;
  margin-top: 25px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 100%;
}

.verify-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verify-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.verify-list__number {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 700;
  background: rgba(88, 201, 101, 0.11);
  border: 1px solid rgba(88, 201, 101, 0.2);
  border-radius: 12px;
  place-items: center;
}

.verify-list h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.verify-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
}

code {
  padding: 1px 5px;
  color: #a0eca8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86em;
  background: rgba(88, 201, 101, 0.09);
  border: 1px solid rgba(88, 201, 101, 0.15);
  border-radius: 5px;
}

.namespace-section {
  background: #ffffff;
}

.namespace-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(480px, 0.82fr);
  gap: 104px;
  align-items: center;
}

.namespace-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.privacy-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  max-width: 570px;
  margin-top: 34px;
  padding: 18px;
  background: #f4f8f4;
  border: 1px solid #dbe9dd;
  border-radius: 14px;
}

.privacy-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  background: var(--green);
  border-radius: 50%;
  place-items: center;
}

.privacy-note p {
  margin: 0;
  color: #425146;
  font-size: 14px;
}

.namespace-visual {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f4f6f3;
  border: 1px solid #e2e7e2;
  border-radius: 24px;
}

.namespace-line {
  display: grid;
  grid-template-columns: 1fr 1.35fr auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e5e0;
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(7, 16, 10, 0.035);
}

.namespace-line > a,
.namespace-line > span:nth-child(2) {
  overflow: hidden;
  color: #0a1a11;
  font-weight: 600;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.namespace-line__label {
  color: #758078;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.namespace-line__tag {
  padding: 5px 9px;
  color: #68746b;
  font-size: 11px;
  background: #f0f3f0;
  border-radius: 999px;
}

.namespace-line--active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.namespace-line--active > span:nth-child(2) {
  color: #ffffff;
}

.namespace-line--active .namespace-line__label {
  color: var(--green-bright);
}

.namespace-line--active .namespace-line__tag {
  color: #a6eaae;
  background: rgba(88, 201, 101, 0.12);
}

.security-section {
  padding: 0 0 112px;
  background: #ffffff;
}

.security-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 36px;
  background: linear-gradient(135deg, #e3f6e5, #f2fbf3);
  border: 1px solid #cce7d0;
  border-radius: 22px;
}

.security-panel__mark {
  display: grid;
  width: 62px;
  height: 62px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(37, 187, 77, 0.18);
  place-items: center;
}

.security-panel .eyebrow {
  margin-bottom: 8px;
}

.security-panel h2 {
  margin-bottom: 8px;
  font-size: 27px;
  letter-spacing: -0.02em;
}

.security-panel p:last-child {
  max-width: 750px;
  margin-bottom: 0;
  color: #405046;
  font-size: 14px;
}

.closing-section {
  padding: 0 0 34px;
  background: var(--paper);
}

.closing-panel {
  position: relative;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 62px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 20%, rgba(37, 187, 77, 0.19), transparent 25%),
    var(--night);
  border-radius: var(--radius-lg);
}

.closing-panel::after {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -190px;
  bottom: -260px;
  background: rgba(37, 187, 77, 0.17);
  border-radius: 50%;
  filter: blur(20px);
  content: "";
  pointer-events: none;
}

.closing-panel > * {
  position: relative;
  z-index: 1;
}

.closing-panel h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.footer {
  padding-block: 42px;
  color: rgba(255, 255, 255, 0.54);
  background: var(--night);
}

.footer__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.footer p:nth-child(2) {
  text-align: center;
}

.not-found-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 20%, rgba(37, 187, 77, 0.14), transparent 30%),
    var(--night);
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(calc(100% - 48px), 820px);
  min-height: 100vh;
  margin-inline: auto;
  padding-block: 72px;
}

.not-found__code {
  margin: 86px 0 14px;
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.not-found h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 82px);
}

.not-found > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 19px;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 46px;
  }

  .verify-layout,
  .namespace-layout {
    gap: 68px;
  }

  .section-heading {
    column-gap: 60px;
  }

  .namespace-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .namespace-line__tag {
    justify-self: start;
  }
}

@media (max-width: 880px) {
  .section {
    padding-block: 86px;
  }

  .hero {
    border-radius: 0 0 42px 42px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 62px;
    padding-block: 82px 70px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .domain-card {
    width: min(100%, 620px);
    transform: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 24px;
  }

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

  .trust-card {
    min-height: 0;
  }

  .trust-card__icon {
    margin-bottom: 40px;
  }

  .verify-layout,
  .namespace-layout {
    grid-template-columns: 1fr;
  }

  .verify-intro {
    position: static;
  }

  .security-panel {
    grid-template-columns: auto 1fr;
  }

  .security-panel .button {
    grid-column: 2;
    justify-self: start;
  }

  .closing-panel {
    display: grid;
    padding: 48px;
  }

  .closing-panel .button {
    justify-self: start;
  }

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

  .footer p:nth-child(2) {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 70px;
  }

  .nav {
    min-height: 84px;
  }

  .official-chip {
    font-size: 0;
  }

  .official-chip::after {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    content: "Official domain";
  }

  .official-chip > span:last-child {
    display: none;
  }

  .hero__content {
    padding-block: 64px 56px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 60px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(34px, 10vw, 45px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__foot {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .hero__foot span {
    gap: 20px;
  }

  .domain-card__footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .trust-card {
    padding: 26px;
  }

  .verify-list li {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .namespace-visual {
    padding: 10px;
  }

  .namespace-line {
    padding: 16px;
  }

  .security-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .security-panel .button {
    grid-column: 1;
    width: 100%;
  }

  .closing-panel {
    gap: 34px;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .closing-panel .button {
    width: 100%;
  }

  .footer {
    padding-block: 34px;
  }

  .not-found {
    width: min(calc(100% - 32px), 820px);
  }

  .not-found__actions {
    width: 100%;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .hero {
    min-height: auto;
    color: #000000;
    background: #ffffff;
    border: 0;
  }

  .hero__ambient,
  .hero__actions,
  .official-chip,
  .closing-section {
    display: none;
  }
}
