:root {
  --bg: #050816;
  --bg-soft: #0a1022;
  --panel: rgba(14, 23, 43, 0.78);
  --panel-strong: #101a31;
  --text: #edf6ff;
  --muted: #aebbd0;
  --line: rgba(141, 181, 255, 0.2);
  --cyan: #22d9ff;
  --blue: #4f83ff;
  --purple: #9b5cff;
  --green: #45e0a8;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 46px rgba(34, 217, 255, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 6%, rgba(34, 217, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 86% 12%, rgba(79, 131, 255, 0.16), transparent 31rem),
    radial-gradient(circle at 72% 58%, rgba(155, 92, 255, 0.13), transparent 28rem),
    linear-gradient(180deg, #050816 0%, #08101f 46%, #050816 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 72%);
}

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 22, 0.78);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.28);
}

.nav {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 215, 255, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(34, 217, 255, 0.32), rgba(79, 131, 255, 0.22), rgba(155, 92, 255, 0.3)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 30px rgba(34, 217, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand span:last-child {
  font-size: 1.12rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(76, 125, 255, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.section,
.hero {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 86px 0 68px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 34px -48px 20px;
  z-index: -1;
  border: 1px solid rgba(34, 217, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 24%, rgba(34, 217, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 74% 32%, rgba(79, 131, 255, 0.15), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), var(--glow);
}

.hero > div:first-child,
.page-hero,
.login-shell > section:first-child {
  animation: fadeRise 700ms ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #bfefff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 850;
}

h3 {
  font-size: 1.2rem;
  font-weight: 820;
}

p {
  color: var(--muted);
  margin-top: 14px;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.14rem;
}

.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: transform 520ms ease;
}

.btn:hover::after {
  transform: translateX(115%);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #04111d;
  background: linear-gradient(90deg, var(--cyan), #74f2ff);
  box-shadow: 0 16px 42px rgba(34, 217, 255, 0.28);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-purple {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 16px 42px rgba(79, 131, 255, 0.22);
}

.hero-panel,
.card,
.price-card,
.form-panel,
.login-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    linear-gradient(180deg, rgba(17, 27, 49, 0.92), rgba(8, 14, 28, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.card::before,
.price-card::before,
.form-panel::before,
.login-panel::before,
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(34, 217, 255, 0.16), transparent 38%, rgba(155, 92, 255, 0.12));
  opacity: 0;
  transition: opacity 220ms ease;
}

.card:hover,
.price-card:hover,
.form-panel:hover,
.login-panel:hover,
.hero-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 217, 255, 0.42);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.46), 0 0 52px rgba(34, 217, 255, 0.14);
}

.card:hover::before,
.price-card:hover::before,
.form-panel:hover::before,
.login-panel:hover::before,
.hero-panel:hover::before {
  opacity: 1;
}

.hero-panel {
  padding: 24px;
  animation: floatIn 850ms ease both;
}

.terminal {
  overflow: hidden;
  border: 1px solid rgba(24, 215, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 217, 255, 0.1), transparent 18rem),
    #050914;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.terminal-bar span:nth-child(2) {
  background: var(--purple);
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
}

.terminal-content {
  padding: 24px;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: #ccefff;
}

.terminal-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-line:last-child {
  border-bottom: 0;
}

.status {
  color: var(--green);
  text-shadow: 0 0 18px rgba(69, 224, 168, 0.28);
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 28px;
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--cyan);
  background: linear-gradient(135deg, rgba(34, 217, 255, 0.16), rgba(79, 131, 255, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 28px rgba(34, 217, 255, 0.12);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(34, 217, 255, 0.06), rgba(79, 131, 255, 0.025), rgba(155, 92, 255, 0.06)),
    rgba(255, 255, 255, 0.025);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease;
}

.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 217, 255, 0.34);
}

.stat strong {
  display: block;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.page-hero {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 90px 0 42px;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.1rem;
}

.price-card {
  padding: 30px;
}

.price {
  margin: 22px 0;
  color: var(--text);
  font-size: 2.6rem;
  font-weight: 850;
}

.price small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.highlight {
  border-color: rgba(24, 215, 255, 0.45);
  box-shadow: 0 28px 100px rgba(24, 215, 255, 0.16);
}

.domain-search,
.assist-widget {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.domain-search .support-note,
.assist-widget .form-field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(148, 181, 255, 0.25);
  border-radius: 8px;
  color: var(--text);
  background: rgba(3, 8, 18, 0.82);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  background: rgba(3, 8, 18, 0.96);
  box-shadow: 0 0 0 4px rgba(24, 215, 255, 0.11), 0 0 34px rgba(24, 215, 255, 0.08);
}

.form-panel,
.login-panel {
  padding: 30px;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.login-shell {
  width: min(100% - 40px, 980px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 56px 0;
}

.login-panel form {
  display: grid;
  gap: 18px;
}

.support-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 4px 10px;
  border: 1px solid rgba(34, 217, 255, 0.36);
  border-radius: 999px;
  color: #bff4ff;
  background: rgba(34, 217, 255, 0.09);
  box-shadow: 0 0 24px rgba(34, 217, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.support-note .badge {
  margin: 0 8px 0 0;
}

.assist-panel {
  max-width: 860px;
  margin: 0 auto;
}

.assist-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.assist-header .badge {
  margin: 0;
}

.quote-items {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.quote-item,
.quote-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(148, 181, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.quote-item strong,
.quote-total strong {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(34, 217, 255, 0.22);
}

.quote-total {
  margin: 12px 0 20px;
  color: var(--text);
  font-weight: 850;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 18%, rgba(34, 217, 255, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(24, 215, 255, 0.14), rgba(79, 131, 255, 0.1), rgba(168, 85, 247, 0.14));
  box-shadow: var(--shadow), var(--glow);
}

.site-footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 217, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(10, 16, 34, 0.94), rgba(5, 8, 18, 0.98));
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
  align-items: start;
  gap: 30px;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
}

.footer-title {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 181, 255, 0.13);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-bottom span {
  display: inline-block;
  margin-left: 10px;
  color: #c7d6ed;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 11, 22, 0.97);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .login-shell,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero::before {
    inset: 18px -16px 12px;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section,
  .hero,
  .page-hero,
  .nav,
  .footer-inner,
  .login-shell {
    width: min(100% - 28px, var(--max));
  }

  .form-grid,
  .domain-search,
  .assist-widget,
  .stats {
    grid-template-columns: 1fr;
  }

  .assist-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span {
    display: block;
    margin: 8px 0 0;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .card,
  .price-card,
  .form-panel,
  .login-panel,
  .cta-panel {
    padding: 20px;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
