:root {
  color-scheme: dark;
  --ink: #f7f4ec;
  --muted: #b8b4a8;
  --soft: rgba(247, 244, 236, 0.72);
  --surface: rgba(17, 19, 24, 0.74);
  --surface-strong: rgba(18, 22, 29, 0.9);
  --line: rgba(247, 244, 236, 0.14);
  --line-strong: rgba(247, 244, 236, 0.24);
  --mint: #43e7bd;
  --amber: #f2c66d;
  --coral: #ff6f7d;
  --violet: #a997ff;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #07080b;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

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

button {
  font: inherit;
}

#domainCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(120deg, rgba(7, 8, 11, 0.88), rgba(10, 13, 18, 0.72)),
    #07080b;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  padding: 0.85rem 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(67, 231, 189, 0.48);
  border-radius: 8px;
  background: rgba(67, 231, 189, 0.12);
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
}

.brand-title {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  width: 112px;
  height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.06);
}

.lang-button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.lang-button.is-active {
  background: var(--ink);
  color: #08090d;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 32px));
  min-height: 78svh;
  margin: 0 auto;
  padding: clamp(3.4rem, 7vw, 6.8rem) 0 clamp(2.2rem, 5vw, 4.8rem);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: clamp(2.65rem, 6.1vw, 5.85rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 1.8rem;
  color: var(--soft);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: #090b10;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(247, 244, 236, 0.06);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(67, 231, 189, 0.55);
  background: rgba(67, 231, 189, 0.11);
}

.button:focus-visible,
.lang-button:focus-visible,
.contact-link:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 610px;
  margin: 0;
}

.hero-stats div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.055);
}

.hero-stats dt {
  color: var(--mint);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid rgba(247, 244, 236, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 244, 236, 0.12), rgba(247, 244, 236, 0.04)),
    rgba(10, 12, 17, 0.78);
  box-shadow: var(--shadow);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 12%;
  height: 46%;
  border: 1px solid rgba(67, 231, 189, 0.24);
  transform: rotate(-8deg);
}

.signal-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.signal-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 22px rgba(67, 231, 189, 0.9);
}

.featured-domain {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(2.1rem, 5.1vw, 3.6rem);
  font-weight: 800;
  line-height: 0.9;
}

.featured-extensions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.featured-extensions span,
.extension-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 236, 0.065);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  color: var(--soft);
  line-height: 1.65;
}

.panel-price {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
}

.panel-price span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-price strong {
  color: var(--amber);
  font-size: clamp(1.55rem, 3.4vw, 2.25rem);
  line-height: 1;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.section-copy p:not(.eyebrow),
.section-heading p,
.contact-copy p {
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.value-item {
  min-width: 0;
  padding: 1rem;
  border-top: 1px solid var(--line-strong);
  background: rgba(247, 244, 236, 0.045);
}

.value-icon {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.value-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.domains-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  gap: 0.45rem;
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.domain-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 440px;
  padding: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.035)),
    var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.domain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 231, 189, 0.44);
  background:
    linear-gradient(145deg, rgba(67, 231, 189, 0.09), rgba(247, 244, 236, 0.035)),
    var(--surface-strong);
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--coral));
}

.domain-card-inner {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 1rem;
}

.domain-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0.28rem 0.56rem;
  border: 1px solid rgba(242, 198, 109, 0.35);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.domain-name {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 0.92;
}

.domain-description {
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.extensions-list {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 0.45rem;
}

.domain-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.domain-price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.domain-price strong {
  color: var(--ink);
  font-size: clamp(1.24rem, 2.4vw, 1.75rem);
  line-height: 1;
  white-space: nowrap;
}

.domain-card .button {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
}

.contact-actions {
  display: grid;
  gap: 0.9rem;
}

.contact-link {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-link:hover {
  transform: translateY(-3px);
  border-color: rgba(67, 231, 189, 0.48);
  background: rgba(67, 231, 189, 0.09);
}

.contact-link span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-link strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--ink);
  font-weight: 800;
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section-intro,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.6rem;
  }

  .hero-panel {
    max-width: 620px;
  }

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

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

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand-subtitle {
    display: none;
  }

  .language-switch {
    width: 96px;
    height: 40px;
  }

  .hero {
    padding-top: 2.3rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13.5vw, 3.75rem);
  }

  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    display: grid;
  }

  .domain-price {
    align-items: start;
    flex-direction: column;
  }
}
