:root {
  color-scheme: dark;
  font-family: 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ink: #05060a;
  --cloud: #f7f7ff;
  --violet: #7744ff;
  --cyan: #12d6ff;
  --amber: #ffc857;
  --emerald: #4ef0c3;
  --slate: rgba(255, 255, 255, 0.65);
  --glass: rgba(8, 10, 20, 0.65);
  --border: rgba(255, 255, 255, 0.12);
  --radius: 22px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #0a0d1c, #020205 60%);
  color: var(--cloud);
  line-height: 1.6;
  overflow-x: hidden;
}

.aurora-shell {
  position: relative;
  isolation: isolate;
}

.meteor-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: transparent;
}

.aurora-shell::before {
  content: '';
  position: fixed;
  inset: -40% auto auto -20%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(119, 68, 255, 0.25), transparent 65%);
  filter: blur(40px);
  animation: orbit 24s linear infinite;
  z-index: -3;
}

@keyframes orbit {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(20%, -10%, 0) scale(1.1);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

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

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

header {
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
}

.zenith-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.zenith-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.zenith-link {
  position: relative;
  padding-bottom: 0.3rem;
}

.zenith-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.zenith-link:hover::after,
.zenith-link:focus-visible::after {
  transform: scaleX(1);
}

.zenith-logo {
  max-width: 65px;
}

.zenith-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cloud);
  padding: 0.65rem 1.25rem;
  border-radius: 99px;
  font-weight: 600;
}

.zenith-mobile {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 15, 0.9);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

.zenith-mobile a {
  font-size: 1.2rem;
}

.zenith-mobile.active {
  transform: translateY(0);
}

.zenith-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
}

.zenith-close::before,
.zenith-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--cloud);
}

.zenith-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.zenith-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.zenith-cta {
  margin-top: 1rem;
  display: inline-flex;
  justify-content: center;
  padding: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--violet), var(--cyan));
  color: var(--ink);
  font-weight: 700;
}

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

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin: 0.5rem 0 1rem;
}

.hero-gradient {
  display: inline-flex;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--slate);
}

.hero-sub {
  color: var(--slate);
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.prime-btn,
.ghost-btn {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prime-btn {
  background: linear-gradient(120deg, var(--violet), var(--cyan));
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 0, 50, 0.4);
}

.ghost-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cloud);
}

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

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--slate);
}

.hero-points li::before {
  content: '✦';
  margin-right: 0.6rem;
  color: var(--emerald);
}

.hero-visual {
  position: relative;
}

.hero-flare {
  position: absolute;
  inset: 10% 10% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(18, 214, 255, 0.6), transparent 70%);
  filter: blur(28px);
  animation: pulse 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

main {
  padding: 0 clamp(1.5rem, 5vw, 5rem) 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.pulse-panel,
.prism-section,
.review-boulevard,
.faq-atlas,
.guardian-band {
  background: rgba(4, 6, 16, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.panel-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.panel-tag {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--slate);
}

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

.orbit-card {
  background: linear-gradient(180deg, rgba(7, 9, 20, 0.9), rgba(6, 8, 18, 0.6));
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.orbit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(18, 214, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.orbit-card:hover::after {
  opacity: 1;
}

.orbit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--slate);
  display: grid;
  gap: 0.4rem;
}

.orbit-card li::before {
  content: '•';
  color: var(--amber);
  margin-right: 0.4rem;
}

.orbit-link {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
}

.orbit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.orbit-badge {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
}

.prism-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.prism-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.prism-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.prism-list li::before {
  content: '⏣';
  color: var(--cyan);
}

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

.prism-stats article {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
}

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

.review-card {
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.orbit-card,
.prism-stats article,
.review-card,
.faq-grid article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stars {
  color: var(--amber);
  margin: 0.4rem 0;
}

.faq-grid article {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
}

.guardian-band {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.policy-page header,
.policy-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.mini-header {
  padding: 2rem clamp(1.5rem, 5vw, 5rem) 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.crumbs {
  display: flex;
  gap: 0.5rem;
  color: var(--slate);
}

.policy-wrap {
  padding: 0 clamp(1.5rem, 5vw, 5rem) 3rem;
}

.policy-wrap h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-wrap h2 {
  margin-top: 2rem;
  color: var(--emerald);
}

.policy-wrap p,
.policy-wrap ul {
  color: var(--slate);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  padding: 0.9rem 1rem;
  color: var(--cloud);
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--violet);
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--slate);
}

.form-status.success {
  color: var(--emerald);
}

.form-status.error {
  color: #ff7b7b;
}

.contact-info {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 1.5rem;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
}

.success-content {
  background: linear-gradient(180deg, rgba(7, 9, 20, 0.95), rgba(6, 8, 18, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.success-modal.active .success-content {
  transform: scale(1);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(78, 240, 195, 0.3);
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-content h2 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  color: var(--cloud);
}

.success-content p {
  color: var(--slate);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.success-content .prime-btn {
  width: 100%;
  max-width: 200px;
}

.nebula-footer {
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border);
  background: rgba(1, 2, 5, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 500;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-compliance a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgb(255 255 255 / 50%);
  color: var(--cloud);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.footer-compliance a:hover,
.footer-compliance a:focus-visible {
  border-color: var(--emerald);
  transform: translateY(-1px);
}

.footer-compliance img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-copy {
  color: var(--slate);
  margin: 0;
}

@media (max-width: 1080px) {
  header {
    padding-top: 2rem;
  }
}

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

  .zenith-burger {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
  }

  .guardian-band {
    flex-direction: column;
    text-align: center;
  }
}

