@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  --night: #07111a;
  --deep: #0d2233;
  --panel: #122d42;
  --border: rgba(255, 255, 255, 0.07);
  --blue: #163a57;
  --blue-bright: #268fce;
  --cyan: #fe7700;
  --white: #f0f4ff;
  --muted: #a7b4c5;
  --green: #00e896;
  --brand-gray: #3b3e46;
  --shadow: rgba(0, 0, 0, 0.25);
  --glow: rgba(38, 143, 206, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 255, 0.26), transparent 34rem),
    var(--night);
  color: var(--white);
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  min-height: 98px;
  margin: 0 auto;
}

.brand img {
  width: auto;
  height: 78px;
  max-height: 78px;
  object-fit: contain;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 100px;
  background: currentColor;
  content: '';
}

.nav-toggle span {
  margin: 5px 0;
}

.nav-links {
  position: absolute;
  top: 98px;
  right: 20px;
  left: 20px;
  display: none;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(15, 24, 41, 0.97);
  box-shadow: 0 24px 60px var(--shadow);
}

.nav-links.is-open {
  display: grid;
  gap: 10px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a[aria-current='page'] {
  color: var(--white);
}

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

.section {
  padding: 96px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  padding: 162px 0 88px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 45% 20%, black, transparent 68%);
  content: '';
}

.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(0, 232, 150, 0.7);
  animation: pulse 1.8s ease-in-out infinite;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.04em;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: 0;
}

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

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: 1.12rem;
  opacity: 0.78;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 500;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 24px var(--glow);
}

.btn-primary:hover {
  background: var(--blue-bright);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--deep);
}

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

.trust-item,
.feature-card,
.product-card,
.plan-card,
.contact-panel,
.domain-search {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 24px var(--shadow);
  backdrop-filter: blur(12px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--cyan);
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-icon {
  width: 46px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 34px;
}

.section-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
}

.product-grid,
.plans-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  display: grid;
  gap: 24px;
}

.product-card,
.feature-card,
.plan-card {
  padding: 28px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover,
.feature-card:hover,
.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 126, 255, 0.35);
  box-shadow: 0 12px 40px var(--shadow), 0 0 28px rgba(37, 99, 255, 0.16);
}

.card-label,
.tier {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.price {
  margin: 22px 0;
  color: var(--white);
  font-size: 1.45rem;
  font-weight: 500;
}

.year-price {
  margin: -8px 0 20px;
  color: var(--green);
  font-weight: 500;
}

.divider {
  height: 1px;
  margin: 24px 0;
  background: var(--border);
}

.feature-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 22px;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 232, 150, 0.12);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
}

.featured {
  position: relative;
  border-color: rgba(37, 99, 255, 0.65);
}

.featured-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 100px;
  background: rgba(37, 99, 255, 0.14);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 500;
}

.cta-banner {
  padding: 34px;
  border: 1px solid rgba(37, 99, 255, 0.3);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(38, 143, 206, 0.35), transparent 28rem),
    rgba(255, 255, 255, 0.03);
}

.domain-search {
  padding: 24px;
  margin-top: 32px;
}

.search-row {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
}

input,
select {
  min-height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 154px;
  padding: 14px 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.domain-result {
  display: none;
  margin: 16px 0 0;
  color: var(--green);
}

.domain-result.is-visible {
  display: block;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--night);
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(20px);
  animation: fade-up 0.6s ease forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(0.88);
  }

  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links .btn {
    min-height: 42px;
  }

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

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

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

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

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

  .search-row {
    grid-template-columns: 1fr auto;
  }

  .contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
