@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #0b1021;
  --surface: #0f182d;
  --panel: #0f1c35;
  --card: rgba(255, 255, 255, 0.04);
  --accent: #63d5ff;
  --accent-2: #92f5c8;
  --text: #e7edf7;
  --muted: #9aa7c8;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 16px;
  --radius-sm: 10px;
  --max-width: 1200px;
  --blur: blur(12px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(99, 213, 255, 0.08), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(146, 245, 200, 0.08), transparent 30%),
    linear-gradient(180deg, #0c1526 0%, #070c16 100%);
  color: var(--text);
  min-height: 100vh;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

main {
  padding: 40px 24px 96px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: var(--blur);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  color: #0a0f1c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 15px 40px rgba(99, 213, 255, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(99, 213, 255, 0.4);
}

.btn[disabled],
.btn[disabled]:hover {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(99, 213, 255, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0;
  letter-spacing: -0.02em;
}

.hero-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.meta {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta svg {
  width: 18px;
  height: 18px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(99, 213, 255, 0.14), rgba(146, 245, 200, 0.06));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(99, 213, 255, 0.18), transparent 30%),
    radial-gradient(circle at 80% 60%, rgba(146, 245, 200, 0.16), transparent 30%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.carousel-section {
  margin-top: 32px;
}

.carousel-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 360px;
  padding: 0;
}

.carousel-track {
  position: relative;
  min-height: inherit;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.slide-overlay {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(7, 12, 22, 0.7);
  border: 1px solid var(--border);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.5);
  max-width: 360px;
}

.slide-overlay h3 {
  margin: 6px 0 0;
}

.carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 14px 0 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.dot.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: rgba(146, 245, 200, 0.6);
  transform: scale(1.1);
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.what-we-handle {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--border);
}

.what-we-handle .section-title {
  margin: 0 0 12px;
}

.what-we-handle .card-grid {
  margin: 12px 0 0;
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 28px 0;
}

.card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card h3 {
  margin: 8px 0;
}

.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(99, 213, 255, 0.08);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(99, 213, 255, 0.2);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 60px 0 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 36px);
}

.section-title p {
  margin: 4px 0 0;
  color: var(--muted);
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

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

.check {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a0f1c;
  font-weight: 700;
  font-size: 12px;
}

.pricing-card {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(99, 213, 255, 0.12), rgba(15, 24, 45, 0.95));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0 6px;
}

.price sub {
  font-size: 16px;
  color: var(--muted);
}

.pill-note {
  margin-top: 12px;
  color: var(--muted);
}

.price-original {
  position: relative;
  display: inline-flex;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  margin-top: 2px;
  width: fit-content;
}

.price-original::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 50%;
  height: 2px;
  background: linear-gradient(135deg, rgba(99, 213, 255, 0.7), rgba(146, 245, 200, 0.9));
  transform: rotate(-12deg);
  pointer-events: none;
  opacity: 0.9;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(146, 245, 200, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(146, 245, 200, 0.35);
  font-weight: 700;
  width: fit-content;
  margin-top: 6px;
  box-shadow: 0 10px 26px rgba(146, 245, 200, 0.14);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 213, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(99, 213, 255, 0.35);
  font-weight: 700;
  width: fit-content;
}

.price-after {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.faq {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  outline: none;
}

details[open] summary {
  color: var(--accent);
}

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

footer {
  padding: 40px 24px;
  background: #090f1c;
  border-top: 1px solid var(--border);
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

footer h4 {
  margin: 0 0 10px;
}

footer p,
footer a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px 12px;
  max-width: 560px;
  margin: 0 auto;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.footer-links a::before {
  content: '↗';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0f1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 5px 12px rgba(99, 213, 255, 0.18);
}

.footer-links a[href="index.html"]::before { content: '⌂'; }
.footer-links a[href="offers.html"]::before { content: '⚙'; }
.footer-links a[href="pricing.html"]::before { content: '$'; }
.footer-links a[href="how-it-works.html"]::before { content: '↪'; }
.footer-links a[href="faq.html"]::before { content: '?'; }
.footer-links a[href="terms.html"]::before { content: '§'; }
.footer-links a[href="return-policy.html"]::before { content: '↩'; }
.footer-links a[href="client.html"]::before { content: '🔐'; }
.footer-links a[href="domain.html"]::before { content: '🌐'; }

.footer-legal {
  max-width: var(--max-width);
  margin: 12px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.links-heading {
  text-align: center;
  margin: 0 0 12px;
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: var(--blur);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 3vw, 26px);
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 12px rgba(99, 213, 255, 0.25));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(99, 213, 255, 0.35));
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(146, 245, 200, 0.08);
  color: var(--accent-2);
  font-weight: 600;
  border: 1px solid rgba(146, 245, 200, 0.25);
}

.badge.badge-soon {
  background: rgba(255, 175, 69, 0.14);
  color: #ffaf45;
  border-color: rgba(255, 175, 69, 0.4);
  box-shadow: 0 12px 30px rgba(255, 175, 69, 0.14);
  margin-bottom: 10px;
  align-self: flex-start;
}

.pricing-card.coming-soon > *:not(.badge) {
  opacity: 0.42;
}

.pricing-card.coming-soon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, 0.65);
  backdrop-filter: blur(3px) saturate(0.65);
  z-index: 1;
  border-radius: inherit;
}

.pricing-card.coming-soon .badge.badge-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  margin-bottom: 0;
  padding: 14px 22px;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.pricing-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.pricing-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  order: 2;
  margin-top: auto;
  justify-content: center;
}

.pricing-actions .pill-note {
  margin: 0;
  order: 1;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.step-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0a0f1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 8px;
  box-shadow: 0 10px 24px rgba(99, 213, 255, 0.18);
}

.easy-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(146, 245, 200, 0.25);
  background: linear-gradient(180deg, rgba(146, 245, 200, 0.08), rgba(15, 24, 45, 0.9));
  box-shadow: var(--shadow);
}

.easy-card h3 {
  margin: 0 0 10px;
}

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

.easy-list {
  margin-top: 16px;
}

.confirmation-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(99, 213, 255, 0.06), rgba(15, 24, 45, 0.92));
  align-items: center;
  box-shadow: var(--shadow);
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: #63d5ff;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.warning {
  color: #ffaf45;
  font-weight: 600;
}

.offer-hero {
  position: relative;
  padding: 32px 26px 18px;
  margin-bottom: 36px;
  border-radius: 20px;
  background: radial-gradient(circle at 15% 20%, rgba(99, 213, 255, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(146, 245, 200, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(15, 24, 45, 0.94), rgba(10, 16, 30, 0.9));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.offer-hero .hero {
  position: relative;
  z-index: 1;
}

.offer-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.beam {
  position: absolute;
  width: 120%;
  height: 220px;
  top: 14%;
  left: -10%;
  background: linear-gradient(120deg, rgba(99, 213, 255, 0.06), rgba(146, 245, 200, 0.08), rgba(99, 213, 255, 0.04));
  filter: blur(18px);
  transform: rotate(-6deg);
  opacity: 0.8;
}

.orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 213, 255, 0.14), transparent 60%);
  filter: blur(6px);
  animation: float 12s ease-in-out infinite;
  opacity: 0.8;
}

.orb-1 {
  top: 12%;
  right: 12%;
  animation-delay: 0s;
}

.orb-2 {
  bottom: -6%;
  left: 8%;
  animation-delay: 2.2s;
}

.orb-3 {
  bottom: 10%;
  right: -4%;
  animation-delay: 4.4s;
}

.offer-image {
  position: relative;
}

.offer-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(99, 213, 255, 0.1), transparent 35%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.offer-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 213, 255, 0.15);
  border: 1px solid rgba(99, 213, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
}

.card.accent {
  border: 1px solid rgba(99, 213, 255, 0.22);
  background: linear-gradient(180deg, rgba(99, 213, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.status-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(99, 213, 255, 0.05), rgba(255, 255, 255, 0.02));
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 0 8px rgba(99, 213, 255, 0.12);
}

.status-dot.live {
  background: linear-gradient(135deg, #92f5c8, #63d5ff);
}

.status-dot.building {
  background: linear-gradient(135deg, #ffaf45, #ffd166);
  box-shadow: 0 0 0 8px rgba(255, 209, 102, 0.12);
}

.status-dot.ready {
  background: linear-gradient(135deg, #63d5ff, #92f5c8);
}

.bg-net {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

main.has-overlay {
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.04);
  }
}

.stat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stat strong {
  font-size: 20px;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .carousel-frame {
    min-height: 280px;
  }

  .slide-overlay {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .carousel-controls {
    width: 100%;
    justify-content: flex-start;
  }
}
