:root {
  --bg: #090d0b;
  --bg-soft: #101713;
  --surface: rgba(18, 26, 21, 0.78);
  --surface-strong: rgba(20, 29, 23, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f1f5f2;
  --muted: #a1afa6;
  --accent: #b9ff48;
  --accent-soft: #7bd429;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 255, 72, 0.08), transparent 34%),
    linear-gradient(180deg, #090d0b 0%, #0c120e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.03) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,.02) 0 1px, transparent 1.5px);
  background-size: 18px 18px, 23px 23px;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.025) 4px
  );
}

.radar {
  position: fixed;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(185, 255, 72, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(185, 255, 72, 0.07);
  border-radius: 50%;
}

.radar::after {
  inset: 32%;
}

.radar-left {
  left: -18rem;
  top: 18%;
}

.radar-right {
  right: -18rem;
  bottom: 8%;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(185, 255, 72, 0.35);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(185, 255, 72, 0.06);
  box-shadow: 0 0 28px rgba(185, 255, 72, 0.12);
  font-size: 1.25rem;
}

.brand-text {
  font-weight: 850;
  letter-spacing: 0.12em;
}

.brand-text span {
  color: var(--accent);
}

.min-vh-75 {
  min-height: 75vh;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(185, 255, 72, 0.22);
  border-radius: 999px;
  color: #dfffb1;
  background: rgba(185, 255, 72, 0.06);
  backdrop-filter: blur(14px);
  font-size: 0.92rem;
}

.pulse-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(185, 255, 72, 0.45);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(185, 255, 72, 0.42); }
  70% { box-shadow: 0 0 0 10px rgba(185, 255, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(185, 255, 72, 0); }
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 750;
  font-size: 0.76rem;
}

.hero-title {
  font-size: clamp(3.4rem, 9vw, 8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.hero-title span {
  display: block;
  color: var(--accent);
  text-shadow: 0 0 35px rgba(185, 255, 72, 0.08);
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.75;
}

.btn-accent {
  color: #0a0d0b;
  background: var(--accent);
  border-color: var(--accent);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(185, 255, 72, 0.14);
}

.btn-accent:hover {
  color: #0a0d0b;
  background: #c8ff72;
  border-color: #c8ff72;
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(185, 255, 72, 0.24);
  background: rgba(185, 255, 72, 0.05);
}

.domain-panel {
  max-width: 590px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  background: rgba(10, 15, 12, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.domain-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.domain-name-wrap strong {
  display: block;
  font-size: 1.42rem;
  letter-spacing: 0.02em;
}

.domain-availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 750;
  white-space: nowrap;
}

.use-section {
  padding-top: 4rem;
}

.section-heading h2,
.precision-card h2,
.cta-panel h2 {
  font-weight: 850;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.use-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(24, 35, 28, 0.72), rgba(12, 18, 14, 0.74));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.use-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 255, 72, 0.28);
}

.use-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  color: var(--accent);
  background: rgba(185, 255, 72, 0.07);
  font-size: 1.35rem;
}

.use-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

.use-card p,
.precision-card p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.72;
}

.precision-section {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.precision-card {
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(185, 255, 72, 0.14);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at 20% 50%, rgba(185, 255, 72, 0.07), transparent 32%),
    rgba(15, 22, 17, 0.86);
  box-shadow: var(--shadow);
}

.target-graphic {
  position: relative;
  width: min(330px, 75vw);
  aspect-ratio: 1;
  margin: 0 auto;
}

.target-ring,
.target-cross,
.target-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.target-ring {
  border: 1px solid rgba(185, 255, 72, 0.22);
  border-radius: 50%;
}

.ring-1 { width: 100%; height: 100%; }
.ring-2 { width: 66%; height: 66%; }
.ring-3 { width: 33%; height: 33%; }

.target-cross.horizontal {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,255,72,.35), transparent);
}

.target-cross.vertical {
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(185,255,72,.35), transparent);
}

.target-core {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(185, 255, 72, 0.75);
}

.brand-points {
  display: grid;
  gap: 0.85rem;
}

.brand-points div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #d7dfd9;
}

.brand-points i {
  color: var(--accent);
}

.cta-section {
  padding-top: 2rem !important;
  padding-bottom: 7rem !important;
}

.cta-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgba(185, 255, 72, 0.15);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at top, rgba(185, 255, 72, 0.075), transparent 48%),
    rgba(14, 21, 16, 0.9);
  box-shadow: var(--shadow);
}

.footer {
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 767.98px) {
  .navbar {
    padding-top: 1.25rem !important;
  }

  .hero-title {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .domain-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .precision-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .cta-section {
    padding-bottom: 4rem !important;
  }
}

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

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