:root {
  --bg: #050914;
  --bg-2: #081120;
  --panel: #0c1728;
  --panel-2: #111f33;
  --text: #f5f9ff;
  --muted: #b9c6d9;
  --soft: #dce8f7;
  --line: rgba(186, 213, 236, 0.18);
  --cyan: #35c8ff;
  --teal: #43d6b8;
  --gold: #d9b86f;
  --danger: #ff8d8d;
  --success: #7ee0a1;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(214, 92, 168, 0.08), transparent 28rem),
    radial-gradient(circle at 20% 8%, rgba(53, 200, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 48%, #05070d);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 9, 20, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: clamp(12px, 2vw, 24px);
}

.header-end {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  justify-self: end;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.social-link:hover {
  border-color: rgba(53, 200, 255, 0.45);
  background: rgba(53, 200, 255, 0.1);
  color: #fff;
  transform: translateY(-1px);
}

.social-link.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.social-link.is-disabled:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 1;
  min-width: 0;
}

.brand-logo {
  width: clamp(140px, 16vw, 220px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(4px, 1.2vw, 14px);
  flex-shrink: 0;
}

.primary-nav a {
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--soft);
  padding: 10px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: rgba(53, 200, 255, 0.1);
  border-color: rgba(53, 200, 255, 0.3);
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.93) 0%, rgba(5, 9, 20, 0.72) 45%, rgba(5, 9, 20, 0.18) 100%),
    url("assets/hero-domain-marketplace.png") center / cover no-repeat;
}

.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-centered .eyebrow,
.hero-centered h1,
.hero-centered .hero-copy,
.hero-centered .trust-line {
  margin-left: auto;
  margin-right: auto;
}

.hero-centered h1 {
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.08), rgba(5, 9, 20, 0.62));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(70px, 10vw, 130px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
a,
label {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-copy,
.page-hero p,
.contact-layout > div > p,
.trust-line {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-copy {
  max-width: 670px;
  margin: 0 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  background: #fff;
  color: #050914;
  padding: 14px 28px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--soft);
  border-color: #fff;
  color: #050914;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-secondary {
  border-color: rgba(53, 200, 255, 0.55);
  background: transparent;
  color: var(--soft);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(53, 200, 255, 0.12);
  border-color: var(--cyan);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.site-disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.site-disclaimer a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-consent {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.form-consent a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.featured-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 23, 40, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 24px);
}

.featured-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}

.featured-card h3 a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 3px;
}

.featured-card h3 a:hover {
  color: var(--cyan);
  text-decoration-color: rgba(53, 200, 255, 0.5);
}

.featured-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.featured-actions .button,
.featured-actions .button-secondary {
  min-height: 42px;
  min-width: 0;
  padding: 10px 16px;
  font-size: 0.76rem;
}

.section-heading {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 720px;
  margin: 0 0 clamp(28px, 4vw, 36px);
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
}

.section-actions-row {
  margin-top: clamp(24px, 4vw, 32px);
}

.trust-line {
  max-width: 720px;
  margin-top: 24px;
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: translateX(-50%);
  opacity: 0.8;
}

.hero-home {
  min-height: min(92svh, 900px);
}

.browse-disclaimer {
  margin-bottom: 24px;
}

.field-optional {
  font-weight: 400;
  color: var(--muted);
}

.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 9, 20, 0.95), rgba(5, 9, 20, 0.7)),
    url("assets/landing-domain-visual.png") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  padding: clamp(70px, 12vw, 135px) 0 clamp(50px, 8vw, 90px);
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 670px;
  margin-bottom: 0;
}

.contact-layout h2,
.about-intro-inner h2,
.about-focus-inner h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.about-intro-inner,
.about-focus-inner {
  max-width: 760px;
}

.about-intro-inner p,
.about-focus-inner p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.about-lead {
  margin-bottom: 20px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.about-section-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.about-value-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(12, 23, 40, 0.78);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 30px);
}

.about-value-index {
  display: block;
  margin-bottom: 18px;
  color: rgba(53, 200, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.about-value-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.about-focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-focus-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.55;
}

.about-focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--cyan);
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.standalone-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: clamp(32px, 6vw, 72px);
}

.contact-layout > *,
.filter-row > *,
.contact-form,
.browse-panel {
  min-width: 0;
}

.contact-form,
.browse-panel,
.trust-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 23, 40, 0.78);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label,
.field-label,
.filter-label {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.search-input,
.sort-select {
  width: 100%;
  border: 1px solid rgba(186, 213, 236, 0.24);
  border-radius: 8px;
  background: rgba(2, 8, 18, 0.84);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field textarea:focus,
.search-input:focus,
.sort-select:focus {
  border-color: rgba(53, 200, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(53, 200, 255, 0.14);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.recaptcha-wrap,
.turnstile-wrap {
  min-height: 78px;
  max-width: 100%;
  overflow-x: auto;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.browse-panel {
  margin-bottom: 28px;
  padding: 20px;
}

.browse-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.browse-panel-top .filter-label {
  margin: 0;
}

.export-domains-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(53, 200, 255, 0.45);
  border-radius: 6px;
  background: rgba(53, 200, 255, 0.08);
  color: var(--soft);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.export-domains-btn:hover {
  border-color: var(--cyan);
  background: rgba(53, 200, 255, 0.16);
  color: #fff;
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 200px) 180px;
  align-items: end;
  gap: 18px;
}

.domain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.domain-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(240px, auto);
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.domain-card-head {
  min-width: 0;
}

.domain-card-details {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.domain-card h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.26rem);
  line-height: 1.18;
}

.domain-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.domain-price {
  color: var(--teal);
  font-size: 1.22rem;
  font-weight: 900;
  text-align: right;
}

.domain-card p {
  margin: 0;
  color: var(--muted);
}

.domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.domain-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 108px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  background: #fff;
  color: #050914;
  padding: 14px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.domain-actions a.button-secondary {
  border-color: rgba(53, 200, 255, 0.55);
  background: transparent;
  color: var(--soft);
  box-shadow: none;
}

.domain-actions a:hover {
  transform: translateY(-1px);
  background: var(--soft);
  border-color: #fff;
  color: #050914;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.domain-actions a.button-secondary:hover {
  background: rgba(53, 200, 255, 0.12);
  border-color: var(--cyan);
  color: #fff;
  box-shadow: none;
}

.empty-state {
  margin: 24px 0 0;
  color: var(--muted);
}

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

.trust-card {
  padding: 22px;
}

.trust-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(53, 200, 255, 0.32);
  border-radius: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 10px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.section-actions {
  margin-top: 28px;
}

.privacy-content {
  max-width: 760px;
}

.privacy-meta {
  margin: 0 0 24px;
  color: rgba(53, 200, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-intro {
  margin-bottom: clamp(36px, 5vw, 52px);
}

.privacy-block + .privacy-block {
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: clamp(36px, 5vw, 48px);
  border-top: 1px solid var(--line);
}

.privacy-block h2 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.privacy-block p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}

.privacy-block li + li {
  margin-top: 8px;
}

.privacy-link {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(53, 200, 255, 0.45);
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.privacy-link:hover {
  color: var(--soft);
  text-decoration-color: rgba(220, 232, 247, 0.65);
}

.faq-layout {
  max-width: 760px;
}

.faq-intro {
  margin: 0 0 clamp(36px, 5vw, 48px);
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}

.faq-group + .faq-group {
  margin-top: clamp(40px, 5vw, 56px);
}

.faq-group-title {
  margin: 0 0 20px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 16, 32, 0.55);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item:hover {
  border-color: rgba(53, 200, 255, 0.28);
}

.faq-item[open] {
  border-color: rgba(53, 200, 255, 0.42);
  box-shadow: 0 0 0 1px rgba(53, 200, 255, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--soft);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(53, 200, 255, 0.85);
  border-bottom: 2px solid rgba(53, 200, 255, 0.85);
  transform: rotate(45deg);
  transition: transform 180ms ease;
  content: "";
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translateY(3px);
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.25vw, 1.02rem);
  line-height: 1.7;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-cta {
  margin-top: clamp(48px, 6vw, 64px);
  padding-top: clamp(36px, 5vw, 48px);
  border-top: 1px solid var(--line);
}

.faq-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
}

.faq-cta p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-notice {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1200;
  padding: 14px 0;
  border-top: 1px solid rgba(217, 184, 111, 0.22);
  background: #000;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 280ms ease, transform 280ms ease;
  pointer-events: none;
}

.cookie-notice--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice--hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-notice__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.cookie-notice__text {
  flex: 1 1 280px;
  margin: 0;
  color: #fff;
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
}

.cookie-notice__link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.85);
  text-underline-offset: 3px;
}

.cookie-notice__link:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.cookie-notice__accept {
  flex-shrink: 0;
  min-width: 132px;
  min-height: 44px;
  padding: 12px 26px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: #050914;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cookie-notice__accept:hover {
  transform: translateY(-1px);
  background: var(--soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 14, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px 0;
}

.footer-logo {
  width: clamp(160px, 18vw, 210px);
  height: auto;
  object-fit: contain;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  justify-content: flex-end;
  color: var(--soft);
}

.footer-nav-legal {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-nav-legal a:hover {
  color: var(--soft);
}

.copyright {
  grid-column: 1 / -1;
  font-size: 0.9rem;
}

.terms-content {
  max-width: 760px;
}

.terms-block + .terms-block {
  margin-top: clamp(36px, 5vw, 48px);
  padding-top: clamp(36px, 5vw, 48px);
  border-top: 1px solid var(--line);
}

.terms-block h2 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

.terms-block p,
.terms-block ul {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.7;
}

.terms-block ul {
  padding-left: 1.25rem;
}

.terms-link {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-page-section {
  padding-top: clamp(72px, 14vw, 120px);
  padding-bottom: clamp(72px, 14vw, 120px);
}

.error-page-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  margin: 0 0 12px;
  color: rgba(53, 200, 255, 0.42);
  font-size: clamp(4rem, 18vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
}

.error-page-inner h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.error-message {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.error-page-actions {
  justify-content: center;
  margin-bottom: 24px;
}

.error-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .contact-layout,
  .about-values-grid,
  .about-focus-list,
  .featured-grid,
  .filter-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

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

  .header-inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand end";
    min-height: 68px;
    gap: 10px;
    padding-right: 0;
  }

  .brand {
    grid-area: brand;
    max-width: 100%;
  }

  .header-end {
    grid-area: end;
    gap: 8px;
  }

  .brand-logo {
    width: min(150px, 100%);
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    top: auto;
    right: auto;
    z-index: 2;
    transform: none;
    flex-shrink: 0;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 40;
    display: grid;
    gap: 6px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 9, 20, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-align: left;
    white-space: normal;
    padding: 12px 14px;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .primary-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header {
    z-index: 30;
  }

  .hero,
  .hero-home {
    min-height: calc(100dvh - 68px);
    min-height: calc(100svh - 68px);
    background:
      linear-gradient(180deg, rgba(5, 9, 20, 0.9), rgba(5, 9, 20, 0.58)),
      url("assets/hero-domain-marketplace.png") center / cover no-repeat;
  }

  .hero-content {
    padding: clamp(48px, 12vw, 90px) 0;
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.75rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .hero-copy,
  .page-hero p,
  .browse-disclaimer,
  .site-disclaimer {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 320px;
  }

  .page-hero {
    background:
      linear-gradient(180deg, rgba(5, 9, 20, 0.94), rgba(5, 9, 20, 0.72)),
      url("assets/landing-domain-visual.png") center / cover no-repeat;
  }

  .browse-panel,
  .domain-grid {
    width: 100%;
    max-width: 100%;
  }

  .browse-panel {
    padding: 16px;
  }

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

  .domain-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 20px 0;
  }

  .domain-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .domain-price {
    text-align: left;
    font-size: 1.1rem;
  }

  .domain-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .domain-actions a {
    min-width: 0;
    width: 100%;
    min-height: 44px;
    padding: 12px 10px;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .page-hero-inner {
    padding: 58px 0 clamp(40px, 8vw, 70px);
  }

  .section {
    padding: clamp(44px, 8vw, 72px) 0;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-layout h2,
  .about-intro-inner h2,
  .about-focus-inner h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .footer-inner {
    gap: 16px;
    padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0));
  }

  .footer-logo {
    width: min(180px, 70vw);
  }

  .footer-nav,
  .footer-nav-legal {
    justify-content: flex-start;
    width: 100%;
  }

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

  .privacy-content,
  .terms-content,
  .faq-layout {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cookie-notice {
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0));
  }

  .cookie-notice .cookie-notice__inner {
    width: min(1160px, calc(100% - 16px));
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
  }

  .cookie-notice__text {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .cookie-notice__accept {
    width: auto;
    min-width: 0;
    min-height: 32px;
    padding: 6px 12px;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1160px, calc(100% - 20px));
  }

  .cookie-notice__text {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .cookie-notice__accept {
    padding: 5px 10px;
    min-height: 30px;
    font-size: 0.62rem;
  }

  .domain-actions {
    grid-template-columns: 1fr;
  }

  .domain-actions a {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: min(132px, 58vw);
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem);
  }

  .primary-nav a {
    font-size: 0.78rem;
  }
}

