:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --card: rgba(255, 255, 255, 0.09);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a7b4c6;
  --green: #18d68a;
  --green-dark: #0ca76a;
  --blue: #6ca8ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(24, 214, 138, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(108, 168, 255, 0.16), transparent 32%),
    var(--bg);
  color: var(--text);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 22px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #06111f;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(24, 214, 138, 0.22);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.menu a:hover {
  color: var(--text);
}

.nav-btn,
.search-row button,
.cta-card a,
.ghost-btn {
  border: 0;
  cursor: pointer;
  border-radius: 15px;
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-btn {
  padding: 13px 19px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--card-border);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  padding: 86px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 10px 15px;
  border: 1px solid rgba(24, 214, 138, 0.28);
  background: rgba(24, 214, 138, 0.1);
  color: #bdfce1;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero p {
  margin: 24px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.search-card {
  margin-top: 34px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.search-card label {
  display: block;
  margin: 0 0 10px 4px;
  color: #dce8f7;
  font-weight: 700;
  font-size: 14px;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row input {
  flex: 1;
  min-width: 0;
  height: 64px;
  border: 0;
  outline: none;
  border-radius: 18px;
  padding: 0 20px;
  background: #fff;
  color: #07111f;
  font-size: 17px;
  font-weight: 700;
}

.search-row input::placeholder {
  color: #8b98aa;
}

.search-row button {
  padding: 0 28px;
  background: linear-gradient(135deg, var(--green), #8affc5);
  color: #07111f;
  font-size: 16px;
}

.search-row button:hover,
.cta-card a:hover {
  transform: translateY(-2px);
}

.quick-tlds {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.quick-tlds button {
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.08);
  color: #dfeafa;
  border-radius: 999px;
  padding: 9px 13px;
  cursor: pointer;
}

.quick-tlds button:hover {
  background: rgba(255, 255, 255, 0.16);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 22px;
}

.stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.panel {
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.panel-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
}

.panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.panel-body {
  padding: 26px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  margin-bottom: 18px;
}

.panel-title h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.panel-title small {
  color: var(--muted);
}

.results {
  min-height: 104px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.result-domain {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.result-status {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  min-width: 90px;
  text-align: center;
}

.bulk-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.bulk-box h3 {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.bulk-box textarea {
  width: 100%;
  min-height: 126px;
  resize: vertical;
  outline: none;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.ghost-btn {
  width: 100%;
  margin-top: 12px;
  padding: 15px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--card-border);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.features,
.faq {
  padding: 78px 0;
}

.section-head {
  max-width: 650px;
  margin-bottom: 30px;
}

.section-head span,
.cta-card span {
  color: var(--green);
  font-weight: 900;
}

.section-head h2,
.cta-card h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -0.06em;
}

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

.feature-grid article {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(24, 214, 138, 0.12);
  color: #adffd8;
  font-weight: 900;
}

.feature-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta {
  padding: 20px 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(24, 214, 138, 0.18), rgba(108, 168, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

.cta-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.cta-card a {
  padding: 17px 22px;
  background: linear-gradient(135deg, var(--green), #8affc5);
  color: #07111f;
  font-weight: 900;
  white-space: nowrap;
}

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

details {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  padding: 32px 0;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

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

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

  .cta-card,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    font-size: 19px;
  }

  .nav-btn {
    display: none;
  }

  .search-row {
    flex-direction: column;
  }

  .search-row button {
    height: 58px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .panel-body,
  .feature-grid article,
  .cta-card {
    padding: 22px;
  }

  .result-item {
    align-items: flex-start;
    flex-direction: column;
  }
}
.whois-details {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.whois-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;
  border-radius: 10px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);

  font-size: 13px;
}

.whois-label {
  color: #94a3b8;
}

.whois-value {
  color: #fff;
  font-weight: 600;
}
.result-status.available {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.result-status.taken {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.result-status.invalid {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.25);
}