/* ═══════════════════════════════════════════════════════════════════
   DROPLINK — style.css
   Color System:
     --bg-primary:   #000000 / #0A0A0A
     --bg-card:      #111111 / #141414 / #1A1A1A
     --silver-hi:    #E2E5EA / #D6DAE0
     --silver-mid:   #C0C6CE / #A8B0BB
     --silver-lo:    #8A9099 / #6B7380
     --border:       rgba(192,198,206,0.15)
     --btn-grad:     #9DA5B0 → #C8CDD6
═══════════════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0A0A0A;
  --bg-card: #111111;
  --bg-card-2: #141414;
  --bg-card-3: #1A1A1A;
  --silver-hi: #E2E5EA;
  --silver-mid: #C0C6CE;
  --silver-accent: #A8B0BB;
  --silver-lo: #8A9099;
  --silver-muted: #6B7380;
  --border: rgba(192, 198, 206, 0.15);
  --border-hover: rgba(192, 198, 206, 0.30);
  --btn-from: #9DA5B0;
  --btn-to: #C8CDD6;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --nav-height: 68px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--silver-hi);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul { list-style: none; }

code {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.875em;
  background: rgba(192, 198, 206, 0.08);
  border: 1px solid var(--border);
  padding: 0.1em 0.45em;
  border-radius: 4px;
  color: var(--silver-mid);
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(192, 198, 206, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(192, 198, 206, 0.35); }

/* ─── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION DEFAULTS ───────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-lo);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--silver-hi);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--silver-lo);
  max-width: 560px;
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  padding: 11px 22px;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--btn-from), var(--btn-to));
  color: #0A0A0A;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B0B8C3, #D6DBE3);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192, 198, 206, 0.18), 0 1px 3px rgba(0,0,0,0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--silver-mid);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(192, 198, 206, 0.06);
  border-color: var(--silver-mid);
  color: var(--silver-hi);
}

.btn-waitlist {
  background: transparent;
  color: var(--silver-muted);
  border: 1px solid rgba(192, 198, 206, 0.12);
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-lg {
  font-size: 0.95rem;
  padding: 13px 28px;
}

.btn-xl {
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 10px;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 8px 16px;
}

.btn-block {
  width: 100%;
}

/* ─── FADE-IN ANIMATION ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 32px;
}

/* Logo */
.nav-logo, .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 28px;
  height: 34px;
}

.logo-icon-sm {
  width: 22px;
  height: 27px;
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--silver-hi);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver-lo);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--silver-hi);
  background: rgba(192, 198, 206, 0.07);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-mid);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  transition: all 0.25s ease;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--silver-lo);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-link:hover { color: var(--silver-hi); }

.mobile-cta {
  margin-top: 16px;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 198, 206, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 198, 206, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 30%, transparent 100%);
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(192, 198, 206, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver-lo);
  background: rgba(192, 198, 206, 0.07);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(76, 175, 80, 0.5);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(76, 175, 80, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 12px rgba(76, 175, 80, 0.8); }
}

/* Heading */
.hero-heading {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--silver-hi);
  margin-bottom: 24px;
}

.text-silver {
  background: linear-gradient(135deg, var(--silver-mid), var(--silver-hi), var(--silver-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--silver-lo);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

/* Browser Mockup */
.browser-mockup {
  width: 100%;
  max-width: 780px;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 2px 0 rgba(192, 198, 206, 0.04);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

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

.dot-1 { background: #FF5F57; }
.dot-2 { background: #FEBC2E; }
.dot-3 { background: #28C840; }

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.82rem;
  color: var(--silver-lo);
  overflow: hidden;
}

.url-lock svg {
  width: 12px;
  height: 13px;
  flex-shrink: 0;
}

.url-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--silver-mid);
}

.url-text strong {
  color: var(--silver-hi);
  font-weight: 600;
}

/* Panel mockup inside browser */
.browser-content {
  padding: 0;
  height: 320px;
  overflow: hidden;
}

.panel-mockup {
  display: flex;
  height: 100%;
}

.panel-sidebar {
  width: 64px;
  background: #0D0D0D;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 10px;
  flex-shrink: 0;
}

.sidebar-logo {
  width: 32px;
  height: 32px;
  background: rgba(192, 198, 206, 0.12);
  border-radius: 6px;
  margin-bottom: 10px;
}

.sidebar-item {
  width: 38px;
  height: 8px;
  background: rgba(192, 198, 206, 0.07);
  border-radius: 4px;
}

.sidebar-item.active {
  background: rgba(192, 198, 206, 0.22);
  border-radius: 4px;
}

.panel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.panel-title-bar {
  width: 120px;
  height: 10px;
  background: rgba(192, 198, 206, 0.15);
  border-radius: 4px;
}

.panel-actions {
  display: flex;
  gap: 8px;
}

.panel-btn-sm {
  width: 64px;
  height: 26px;
  border-radius: 5px;
}

.panel-btn-green { background: rgba(76, 175, 80, 0.25); border: 1px solid rgba(76, 175, 80, 0.3); }
.panel-btn-red { background: rgba(244, 67, 54, 0.2); border: 1px solid rgba(244, 67, 54, 0.25); }

.panel-stats {
  display: flex;
  gap: 1px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.stat-card {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  margin: 0 3px;
}

.stat-label {
  width: 48px;
  height: 7px;
  background: rgba(192, 198, 206, 0.12);
  border-radius: 3px;
  margin-bottom: 8px;
}

.stat-value {
  width: 64px;
  height: 11px;
  background: rgba(192, 198, 206, 0.2);
  border-radius: 3px;
}

.stat-value.stat-green { background: rgba(76, 175, 80, 0.35); }

.panel-console {
  flex: 1;
  background: #050505;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}

.console-line {
  height: 8px;
  background: rgba(192, 198, 206, 0.10);
  border-radius: 3px;
  width: 90%;
}

.console-line.line-green { background: rgba(76, 175, 80, 0.3); width: 65%; }
.console-line.line-short { width: 40%; }
.console-line.line-medium { width: 72%; }

.console-cursor {
  width: 8px;
  height: 14px;
  background: rgba(192, 198, 206, 0.5);
  border-radius: 2px;
  animation: blink 1s step-end infinite;
}

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

/* Floating URL badges */
.floating-urls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.url-badge {
  position: absolute;
  background: var(--bg-card-2);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: var(--silver-accent);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.url-badge-1 { top: 42%; left: -2%; animation: float1 6s ease-in-out infinite; }
.url-badge-2 { top: 55%; right: -2%; animation: float2 7s ease-in-out infinite 0.5s; }
.url-badge-3 { bottom: 8%; left: 5%; animation: float3 5.5s ease-in-out infinite 1s; }

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}

.step-card {
  flex: 1;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.step-number {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--silver-muted);
  margin-bottom: 16px;
}

.step-icon {
  width: 44px;
  height: 44px;
  color: var(--silver-accent);
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--silver-hi);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--silver-lo);
  line-height: 1.65;
}

.step-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-hover), transparent);
  align-self: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192, 198, 206, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-2);
  transform: translateY(-4px);
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--silver-accent);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--silver-hi);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--silver-lo);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver-muted);
  background: rgba(192, 198, 206, 0.05);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════
   COMPATIBLE PANELS
═══════════════════════════════════════════════════════════════════ */
.panels {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.panels-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver-accent);
  background: rgba(192, 198, 206, 0.05);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--transition);
  cursor: default;
}

.panel-tag:hover {
  background: rgba(192, 198, 206, 0.1);
  border-color: var(--border-hover);
  color: var(--silver-hi);
}

.panel-tag-featured {
  background: rgba(192, 198, 206, 0.09);
  border-color: rgba(192, 198, 206, 0.25);
  color: var(--silver-hi);
  font-weight: 600;
}

.panel-tag-more {
  color: var(--silver-muted);
  border-style: dashed;
}

.tag-dot {
  width: 7px;
  height: 7px;
  background: var(--silver-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.panels-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--silver-muted);
}

.note-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card-free {
  border-color: rgba(192, 198, 206, 0.25);
}

.price-card-free:hover {
  border-color: rgba(192, 198, 206, 0.4);
  transform: translateY(-3px);
}

.price-card-pro {
  opacity: 0.82;
  background: var(--bg-card-2);
}

.coming-soon-ribbon {
  position: absolute;
  top: 18px;
  right: -30px;
  background: rgba(192, 198, 206, 0.12);
  border: 1px solid var(--border);
  color: var(--silver-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 40px;
  transform: rotate(35deg);
  transform-origin: top right;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.plan-badge-live {
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #6FCF6F;
}

.plan-badge-soon {
  background: rgba(192, 198, 206, 0.07);
  border: 1px solid var(--border);
  color: var(--silver-muted);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--silver-hi);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--silver-hi);
}

.price-tba {
  font-size: 1.8rem;
  color: var(--silver-muted);
}

.price-period {
  font-size: 0.875rem;
  color: var(--silver-muted);
}

.plan-tagline {
  font-size: 0.875rem;
  color: var(--silver-lo);
  margin-bottom: 28px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--silver-accent);
}

.feat-check {
  font-size: 0.8rem;
  color: var(--silver-mid);
  flex-shrink: 0;
  width: 16px;
}

.feat-locked {
  color: var(--silver-muted);
  opacity: 0.75;
}

/* Waitlist banner */
.waitlist-banner {
  max-width: 820px;
  margin: 28px auto 0;
  background: rgba(192, 198, 206, 0.04);
  border: 1px solid rgba(192, 198, 206, 0.18);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.waitlist-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.waitlist-icon {
  width: 22px;
  height: 22px;
  color: var(--silver-accent);
  flex-shrink: 0;
}

.waitlist-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--silver-lo);
  line-height: 1.5;
}

.waitlist-text strong {
  color: var(--silver-mid);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(192, 198, 206, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--silver-hi);
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--silver-lo);
  margin-bottom: 40px;
}

.cta-footnote {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--silver-muted);
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-inner {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
  align-items: flex-start;
}

.footer-left {
  min-width: 200px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--silver-muted);
  margin-top: 12px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--silver-muted);
  margin-top: 4px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 48px;
  margin-left: auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-muted);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--silver-lo);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-link:hover { color: var(--silver-hi); }

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.discord-icon {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--silver-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero-heading { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .steps-row {
    flex-direction: column;
    gap: 16px;
  }

  .step-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--border-hover), transparent);
    align-self: center;
    margin: 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
    margin-left: 0;
  }

  .waitlist-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .url-badge { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .container { padding: 0 16px; }

  .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }
  .hero-heading { font-size: 2.2rem; }
  .hero-sub { font-size: 0.975rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .browser-content { height: 220px; }

  .feature-card { padding: 26px 22px; }
  .price-card { padding: 28px 24px; }

  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .cta-heading { font-size: 1.85rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAV ACTIVE STATE
═══════════════════════════════════════════════════════════════════ */
.nav-link.active {
  color: var(--silver-hi);
  background: rgba(192, 198, 206, 0.08);
}

/* ═══════════════════════════════════════════════════════════════════
   WAITLIST MODAL
═══════════════════════════════════════════════════════════════════ */
#waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

#waitlist-modal.modal-visible .modal-overlay {
  opacity: 1;
}

.modal-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card-2);
  border: 1px solid rgba(192, 198, 206, 0.22);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255,255,255,0.03) inset;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#waitlist-modal.modal-visible .modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--silver-muted);
  transition: all var(--transition);
  cursor: pointer;
}

.modal-close:hover {
  background: rgba(192, 198, 206, 0.08);
  color: var(--silver-hi);
}

.modal-close svg { width: 16px; height: 16px; }

.modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--silver-hi);
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--silver-lo);
  margin-bottom: 28px;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.modal-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--silver-lo);
  letter-spacing: 0.03em;
}

.modal-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--silver-hi);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-input::placeholder { color: var(--silver-muted); }

.modal-input:focus {
  border-color: var(--silver-accent);
  box-shadow: 0 0 0 3px rgba(192, 198, 206, 0.08);
}

.modal-input.input-error {
  border-color: rgba(244, 67, 54, 0.5);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.08);
}

.modal-submit {
  width: 100%;
  padding: 13px;
  font-size: 0.9rem;
}

.modal-fine {
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--silver-muted);
  line-height: 1.5;
}

.modal-success {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.success-icon {
  width: 44px;
  height: 44px;
  background: rgba(76, 175, 80, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6FCF6F;
}

.success-icon svg { width: 22px; height: 22px; }

.success-text {
  font-size: 0.9rem;
  color: var(--silver-accent);
  line-height: 1.55;
}

@media (max-width: 500px) {
  .modal-box { padding: 32px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════════════════ */
#dl-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-card-3);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 0.875rem;
  color: var(--silver-hi);
  z-index: 2000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  pointer-events: none;
}

#dl-toast.toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
