/* ===========================================
   NEVAROQ — Cyberpunk Design System
   =========================================== */

:root {
  /* Colors */
  --bg: #0A0A0F;
  --bg-surface: #12121A;
  --bg-elevated: #1A1A24;
  --border: #1F1F2E;
  --border-strong: #2A2A3F;

  --text: #E8E8F0;
  --text-muted: #8A8AA0;
  --text-dim: #5A5A70;

  --neon-pink: #FF2E63;
  --neon-cyan: #00F0FF;
  --neon-pink-glow: rgba(255, 46, 99, 0.35);
  --neon-cyan-glow: rgba(0, 240, 255, 0.25);

  /* Typography */
  --font-display: 'Chakra Petch', 'Courier New', monospace;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ===========================================
   BACKGROUND LAYERS
   =========================================== */

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 46, 99, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 90%);
}

.bg-scanlines {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 2px,
    rgba(255, 255, 255, 0.012) 3px
  );
  pointer-events: none;
  z-index: 1;
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 46, 99, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

/* ===========================================
   HEADER
   =========================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease;
  position: relative;
}

.site-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan-glow);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-cyan);
  transition: width 0.2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

@media (max-width: 640px) {
  .site-nav { gap: 1.25rem; }
  .site-nav a { font-size: 0.7rem; }
}

/* ===========================================
   HERO
   =========================================== */

.hero {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 10vw, 7rem) var(--gutter) clamp(4rem, 8vw, 6rem);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  margin-bottom: 2rem;
}

.tag-dot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-title .glitch {
  background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title .glitch::before,
.hero-title .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  pointer-events: none;
}

.hero-title .glitch::before {
  background: var(--neon-pink);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate(2px, 0);
  opacity: 0;
  animation: glitch-1 4s steps(1) infinite;
}

.hero-title .glitch::after {
  background: var(--neon-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translate(-2px, 0);
  opacity: 0;
  animation: glitch-2 4s steps(1) infinite;
}

@keyframes glitch-1 {
  0%, 95%, 100% { opacity: 0; transform: translate(0); }
  96% { opacity: 0.7; transform: translate(3px, 1px); }
  97% { opacity: 0; }
  98% { opacity: 0.6; transform: translate(-2px, -1px); }
  99% { opacity: 0; }
}

@keyframes glitch-2 {
  0%, 94%, 100% { opacity: 0; transform: translate(0); }
  96% { opacity: 0.6; transform: translate(-3px, 1px); }
  97% { opacity: 0; }
  98% { opacity: 0.5; transform: translate(2px, -2px); }
  99% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ===========================================
   BUTTONS
   =========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}

.btn-primary {
  background: var(--neon-pink);
  color: var(--bg);
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 0 var(--neon-pink-glow);
}

.btn-primary:hover {
  background: transparent;
  color: var(--neon-pink);
  box-shadow: 0 0 24px var(--neon-pink-glow), inset 0 0 0 1px var(--neon-pink);
  transform: translateY(-1px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan-glow);
}

/* ===========================================
   SECTIONS
   =========================================== */

section {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--gutter);
}

.section-head {
  margin-bottom: 3rem;
  max-width: 720px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===========================================
   PRODUCTS
   =========================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 46, 99, 0.03), transparent 50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.featured {
  border-color: rgba(255, 46, 99, 0.3);
  box-shadow: 0 0 32px rgba(255, 46, 99, 0.08);
}

.product-card.featured:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 48px rgba(255, 46, 99, 0.18);
}

.corner {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.corner-tl {
  top: 8px;
  left: 8px;
  border-top: 1px solid var(--neon-cyan);
  border-left: 1px solid var(--neon-cyan);
}

.corner-br {
  bottom: 8px;
  right: 8px;
  border-bottom: 1px solid var(--neon-pink);
  border-right: 1px solid var(--neon-pink);
}

.product-card.coming-soon .corner-tl {
  border-color: var(--text-dim);
}

.product-card.coming-soon .corner-br {
  border-color: var(--text-dim);
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-live {
  background: var(--neon-cyan);
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: pulse 2s ease-in-out infinite;
}

.status-pending {
  background: var(--text-dim);
}

.product-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.product-icon {
  flex-shrink: 0;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}

.product-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.product-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.35rem 0;
}

.product-features .check {
  color: var(--neon-pink);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card.coming-soon .product-features .check {
  color: var(--text-dim);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-display);
}

.price-currency {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.price-tbd .price-note {
  margin-left: 0;
  font-size: 0.85rem;
}

/* ===========================================
   ABOUT
   =========================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.about-principles {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--neon-cyan);
  padding: 1.75rem;
}

.principles-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.about-principles ul {
  list-style: none;
}

.about-principles li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.about-principles li:last-child {
  border-bottom: none;
}

.about-principles li strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

/* ===========================================
   CONTACT
   =========================================== */

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

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.contact-card:hover {
  border-color: var(--neon-cyan);
  background: var(--bg-elevated);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 240, 255, 0.1);
}

.contact-icon {
  color: var(--neon-cyan);
  margin-bottom: 0.5rem;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.01em;
}

.contact-card-static {
  cursor: default;
}

.contact-card-static:hover {
  border-color: var(--border);
  background: var(--bg-surface);
  transform: none;
  box-shadow: none;
}

/* ===========================================
   SERVICES
   =========================================== */

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.service-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.service-card.service-featured {
  border-color: rgba(255, 46, 99, 0.35);
  box-shadow: 0 0 32px rgba(255, 46, 99, 0.08);
}

.service-card.service-featured:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 48px rgba(255, 46, 99, 0.18);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--neon-pink);
  padding: 0.25rem 0.55rem;
  background: rgba(255, 46, 99, 0.08);
  border: 1px solid rgba(255, 46, 99, 0.4);
  border-radius: 2px;
}

.service-tier {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--neon-cyan);
}

.service-featured .tier-name {
  color: var(--neon-pink);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.service-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  padding: 0.3rem 0;
}

.service-features .check {
  color: var(--neon-pink);
  font-weight: 700;
  flex-shrink: 0;
}

.service-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.service-time,
.service-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
}

.service-price .meta-value {
  color: var(--neon-cyan);
}

.service-featured .service-price .meta-value {
  color: var(--neon-pink);
}

.meta-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}

.service-cta {
  width: 100%;
  justify-content: center;
}

/* Add-ons */
.services-addons {
  margin-bottom: 3rem;
  padding: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--neon-cyan);
}

.addons-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem 2rem;
  margin-bottom: 1.5rem;
}

.addon {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.addon-name {
  color: var(--text);
}

.addon-price {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.addons-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-style: italic;
}

/* How we work */
.services-howto {
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--border);
}

.howto-title {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--neon-cyan);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.howto-step {
  position: relative;
  padding-left: 3.5rem;
}

.howto-num {
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--neon-pink);
  letter-spacing: -0.02em;
}

.howto-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.howto-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===========================================
   FAQ
   =========================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 820px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(0, 240, 255, 0.25);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover {
  color: var(--neon-cyan);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease, color 0.15s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--neon-cyan);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.faq-answer a {
  color: var(--neon-cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.15s ease;
}

.faq-answer a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

/* ===========================================
   WAITLIST
   =========================================== */

.waitlist {
  position: relative;
  z-index: 2;
}

.waitlist-inner {
  background: linear-gradient(135deg,
    rgba(255, 46, 99, 0.04) 0%,
    rgba(0, 240, 255, 0.04) 100%);
  border: 1px solid rgba(255, 46, 99, 0.18);
  border-radius: 4px;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.waitlist-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(0, 240, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255, 46, 99, 0.08), transparent 50%);
  pointer-events: none;
}

.waitlist-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 2rem;
}

.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 1rem 0;
  color: var(--text);
}

.waitlist-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.waitlist-form {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-input-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.waitlist-label {
  flex: 1;
  display: block;
}

.waitlist-label input[type="email"] {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: all 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.waitlist-label input[type="email"]::placeholder {
  color: var(--text-dim);
}

.waitlist-label input[type="email"]:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}

.waitlist-submit {
  flex-shrink: 0;
}

.waitlist-fineprint {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.waitlist-fineprint a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--text-dim);
  text-underline-offset: 2px;
}

.waitlist-fineprint a:hover {
  color: var(--neon-cyan);
  text-decoration-color: var(--neon-cyan);
}

@media (max-width: 540px) {
  .waitlist-input-row {
    flex-direction: column;
  }
}

/* ===========================================
   THANK YOU TOAST
   =========================================== */

.thanks-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--neon-cyan);
  border-left: 3px solid var(--neon-cyan);
  padding: 1rem 1.5rem;
  max-width: 380px;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.15);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.thanks-toast.show {
  transform: translateY(0);
}

.thanks-toast-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.thanks-toast-msg {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 540px) {
  .thanks-toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    max-width: none;
  }
}

/* ===========================================
   FOOTER
   =========================================== */

.site-footer {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  padding: 2.5rem var(--gutter) 2rem;
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-nav a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-tag {
  letter-spacing: 0.1em;
}

/* ===========================================
   REDUCED MOTION
   =========================================== */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
