/* ================================================
   enemail.de — Main Stylesheet
   Dark theme · Cyan/Teal accent · Glassmorphism
   ================================================ */

/* ── Custom Properties ── */
:root {
  --bg-base:      #060d18;
  --bg-surface:   #0b1629;
  --bg-card:      rgba(11, 22, 41, 0.7);
  --border:       rgba(0, 196, 255, 0.12);
  --border-hover: rgba(0, 196, 255, 0.3);

  --cyan:   #00c8ff;
  --teal:   #00e5b0;
  --blue:   #0077b6;
  --purple: #7b5ea7;
  --green:  #38e77d;
  --orange: #ff9040;

  --text-primary:   #e8f4f8;
  --text-secondary: #8ba8c0;
  --text-muted:     #4a6070;

  --gradient-main: linear-gradient(135deg, #00c8ff 0%, #00e5b0 100%);
  --gradient-hero: linear-gradient(135deg, #00c8ff 0%, #7b5ea7 50%, #00e5b0 100%);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
  --shadow-glow: 0 0 60px rgba(0, 200, 255, 0.15);

  --nav-h: 68px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal); }
img, svg { display: block; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.w-full { width: 100%; text-align: center; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--gradient-main);
  color: #020e18;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 255, 0.35);
  color: #020e18;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-hover);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.08);
  transform: translateY(-2px);
  color: var(--cyan);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }

.btn-lg { padding: 15px 30px; font-size: 1rem; border-radius: var(--radius-lg); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.25);
  border-radius: 100px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(6, 13, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo strong { font-weight: 800; color: var(--cyan); }
.nav-logo:hover { color: var(--text-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── Language switcher ── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
}
.lang-sep { color: var(--text-muted); font-size: 0.75rem; }
.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  padding: 3px 6px;
  border-radius: 4px;
  transition: color .2s, background .2s;
  font-family: var(--font);
}
.lang-btn:hover { color: var(--text-primary); background: rgba(255,255,255,.06); }
.lang-btn.active { color: var(--cyan); }
.lang-switch-mobile { padding: 4px 14px; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 20px;
  background: rgba(6, 13, 24, 0.97);
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  padding: 10px 14px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.nav-mobile a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: visible;
}

.hero-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(0, 119, 182, 0.18);
  top: -80px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(0, 229, 176, 0.1);
  top: 200px; right: -80px;
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(123, 94, 167, 0.12);
  bottom: 0; left: 30%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 229, 176, 0.08);
  border: 1px solid rgba(0, 229, 176, 0.25);
  border-radius: 100px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease .1s both;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease .2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease .3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  animation: fadeInUp 0.6s ease .4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: fadeIn 0.8s ease .3s both;
}

.mail-card {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  transition: transform .3s;
}
.mail-card:hover { transform: translateY(-4px); }

.mail-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.mail-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #020e18;
  flex-shrink: 0;
}
.mail-meta { display: flex; flex-direction: column; flex: 1; }
.mail-from { font-size: 0.88rem; font-weight: 600; }
.mail-time  { font-size: 0.75rem; color: var(--text-muted); }

.mail-lock {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
}

.mail-subject {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.mail-preview {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}
.mail-tags { display: flex; gap: 6px; }
.tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.tag-green { background: rgba(0,229,176,.1); color: var(--teal); border: 1px solid rgba(0,229,176,.2); }
.tag-blue  { background: rgba(0,200,255,.1); color: var(--cyan); border: 1px solid rgba(0,200,255,.2); }

/* Shield ring */
.shield-ring {
  width: 200px;
  height: 200px;
  position: relative;
  animation: rotateRing 20s linear infinite;
}
.shield-ring svg { width: 100%; height: 100%; }

.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-main);
  box-shadow: 0 0 12px var(--cyan);
}
.orbit-dot-1 { top: 5%; left: 50%; transform: translateX(-50%); animation: orbitPulse 2s ease-in-out infinite; }
.orbit-dot-2 { bottom: 12%; right: 8%; animation: orbitPulse 2s ease-in-out .6s infinite; }
.orbit-dot-3 { bottom: 12%; left: 8%; animation: orbitPulse 2s ease-in-out 1.2s infinite; }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(11, 22, 41, 0.5);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  gap: 4px;
}
.stat-val {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit { font-size: 1.2rem; font-weight: 700; color: var(--cyan); display: inline; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; letter-spacing: .03em; text-align: center; }
.stat-divider { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ══════════════════════════════════════
   FEATURES GRID
══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px 24px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-cyan   { background: rgba(0,200,255,.12); color: var(--cyan); }
.icon-teal   { background: rgba(0,229,176,.12); color: var(--teal); }
.icon-blue   { background: rgba(0,119,182,.2);  color: #48cae4; }
.icon-purple { background: rgba(123,94,167,.2); color: #c3b1e1; }
.icon-green  { background: rgba(56,231,125,.12); color: var(--green); }
.icon-orange { background: rgba(255,144,64,.12); color: var(--orange); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how { background: rgba(11,22,41,.4); }

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 60px;
}
.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.how-connector {
  flex: 0 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 26px;
}
.connector-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  opacity: .35;
}

.step-number {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text-muted);
}
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,200,255,.08);
  border: 2px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.how-step:hover .step-icon {
  border-color: var(--cyan);
  background: rgba(0,200,255,.15);
  box-shadow: 0 0 30px rgba(0,200,255,.2);
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; max-width: 200px; }

/* Encryption visual */
.encryption-visual {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  overflow: hidden;
}
.enc-block { flex: 1; }
.enc-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.enc-text {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  line-height: 1.6;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.enc-text.plain     { background: rgba(56,231,125,.06); color: var(--green); border: 1px solid rgba(56,231,125,.15); }
.enc-text.encrypted { background: rgba(0,200,255,.06);  color: var(--cyan);  border: 1px solid rgba(0,200,255,.15); }

.enc-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.enc-arrow span { font-size: 0.72rem; color: var(--cyan); font-weight: 600; white-space: nowrap; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}
.pricing-card {
  padding: 32px 28px;
  transition: transform .3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-featured {
  background: linear-gradient(160deg, rgba(0,200,255,.12) 0%, rgba(0,229,176,.06) 100%);
  border-color: rgba(0,200,255,.3);
  box-shadow: var(--shadow-card), 0 0 60px rgba(0,200,255,.12);
}
.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #020e18;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.price-amount { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; }
.price-period { color: var(--text-muted); font-size: 0.9rem; }
.plan-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
}
.plan-features li.feature-no { color: var(--text-muted); }

.pricing-note {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════ */
.comparison { background: rgba(11,22,41,.3); }

.table-wrapper { padding: 0; overflow: hidden; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table th { font-weight: 700; font-size: 0.82rem; letter-spacing: .04em; color: var(--text-secondary); text-transform: uppercase; background: rgba(0,0,0,.2); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,.02); }

.th-highlight { color: var(--cyan) !important; }
.th-hint { opacity: .85; }
.td-check { color: var(--teal); }
.td-cross { color: var(--text-muted); }
.td-partial { color: #f6ad55; font-size: 0.82rem; font-weight: 600; }

.hint-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.hint-purple {
  background: rgba(108,73,193,.15);
  color: #c3b1e1;
  border: 1px solid rgba(108,73,193,.3);
}
.hint-green {
  background: rgba(0,160,100,.12);
  color: #5ecfad;
  border: 1px solid rgba(0,160,100,.25);
}

.cmp-footnote {
  padding: 12px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-style: italic;
}
.cmp-footnotes {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cmp-footnotes p {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
}
.td-note { font-size: 0.8rem; }
.td-note small { font-size: 0.68rem; color: var(--text-muted); font-style: italic; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--cyan); }
.faq-chevron { flex-shrink: 0; transition: transform .3s; color: var(--text-muted); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  padding: 0 24px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,200,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-inner p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; margin-bottom: 20px; }
.cta-sub { font-size: 0.875rem; color: var(--text-muted); }
.cta-sub a { color: var(--cyan); }
.cta-links { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 16px; font-size: 0.82rem; color: var(--text-muted); }
.cta-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.cta-links a:hover { color: var(--cyan); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(6,13,24,.8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--border-hover); background: rgba(0,200,255,.08); }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-tagline { display: flex; align-items: center; gap: 6px; color: var(--teal); }
.footer-legal-links { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }
.footer-legal-links a { color: var(--text-muted); text-decoration: none; }
.footer-legal-links a:hover { color: var(--cyan); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotateRing {
  to { transform: rotate(360deg); }
}
@keyframes orbitPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%       { opacity: .4; transform: translateX(-50%) scale(.6); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   REGISTRATION CLOSED MODAL
══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 10, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 40px 36px 32px;
  text-align: center;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
}
.modal-backdrop.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s, background .2s;
}
.modal-close:hover { color: var(--text-primary); background: rgba(255,255,255,.1); }

.modal-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,200,255,.08);
  border: 2px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}
.modal-sub strong { color: var(--cyan); }

.modal-waitlist { margin-top: 20px; }
.modal-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.modal-input-row input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  min-width: 0;
}
.modal-input-row input::placeholder { color: var(--text-muted); }
.modal-input-row input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,200,255,.12);
}
.modal-waitlist-note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.modal-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(0,229,176,.08);
  border: 1px solid rgba(0,229,176,.2);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--teal);
  font-weight: 600;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.modal-divider::before, .modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.modal-follow {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.modal-follow a { color: var(--cyan); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    gap: 40px;
  }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }

  .how-steps { flex-direction: column; gap: 32px; }
  .how-connector { width: 100%; flex: 0 0 40px; padding-top: 0; }
  .connector-line { height: 100%; width: 2px; background: linear-gradient(180deg, var(--cyan), var(--teal)); margin: 0 auto; }

  .encryption-visual { flex-direction: column; }
  .enc-arrow { flex-direction: row; }

  .stats-grid { gap: 0; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }

  .compare-table th:last-child, .compare-table td:last-child,
  .compare-table th:nth-child(3), .compare-table td:nth-child(3) { display: none; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .btn-lg { padding: 13px 22px; font-size: 0.95rem; }
}
