:root {
  color-scheme: dark;
  --bg: #070a0b;
  --panel: rgba(255,255,255,.072);
  --panel-strong: rgba(255,255,255,.105);
  --line: rgba(255,255,255,.14);
  --text: #f4f7f7;
  --muted: rgba(244,247,247,.68);
  --teal: #8bc6c6;
  --cyan: #28e4ee;
  --gold: #d7b98c;
  --shadow: 0 28px 90px rgba(0,0,0,.44);
}
* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  color: var(--text);
  font: 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 14% 4%, rgba(40,228,238,.22), transparent 33rem),
    radial-gradient(circle at 86% 10%, rgba(215,185,140,.20), transparent 31rem),
    linear-gradient(135deg, #030506, #101719 52%, #050708);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.page-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}
.hero,
.logo-card {
  border: 1px solid var(--line);
  border-radius: clamp(24px, 3vw, 36px);
  background: linear-gradient(145deg, var(--panel-strong), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 6vw, 70px);
  overflow: hidden;
}
.topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.topline span,
.meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(244,247,247,.78);
  background: rgba(0,0,0,.18);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topline span:first-child {
  color: #061012;
  border: 0;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}
h1 {
  margin: 0 0 22px;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.domain {
  color: var(--gold);
  overflow-wrap: anywhere;
  text-shadow: 0 0 34px rgba(215,185,140,.16);
}
p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
  background: rgba(255,255,255,.06);
}
a.primary {
  color: #061012;
  border: 0;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}
.logo-card {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  justify-self: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(40,228,238,.16), transparent 38%),
    radial-gradient(circle at 65% 48%, rgba(215,185,140,.13), transparent 42%),
    rgba(255,255,255,.025);
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(139,198,198,.22);
  border-radius: 999px;
  box-shadow: 0 0 56px rgba(40,228,238,.18), inset 0 0 36px rgba(215,185,140,.10);
}
.logo-orb {
  position: relative;
  z-index: 1;
  width: min(430px, 82%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 44px rgba(40,228,238,.22), 0 24px 70px rgba(0,0,0,.34);
}
.logo-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 0 26px rgba(40,228,238,.26));
}
@media (max-width: 900px) {
  .page-shell { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .logo-card { width: min(520px, 100%); padding: 28px; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.8rem); }
}
