:root {
  --bg: #030A17;
  --bg-soft: #050f24;
  --accent: #5EF1E2;
  --accent-soft: rgba(94,241,226,0.12);
  --text-main: #f7fbff;
  --text-soft: #a7b5d4;
  --border-soft: rgba(255,255,255,0.08);
}

/* Breathing animation for the brand orb */
@keyframes nb-orb-breathe {
  0% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(94,241,226,0.8);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 36px rgba(94,241,226,1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(94,241,226,0.8);
  }
}

/* Smooth fade-in for the whole page */
@keyframes nb-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

html {
  background: #020713; /* deep dark tone that matches your site */
  color-scheme: dark;
  scroll-behavior: smooth; /* smooth scrolling for anchor links */
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
  z-index: 9999;
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0f1c3c 0, var(--bg) 55%, #000 100%);
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  animation: nb-fadein 0.6s ease-out forwards; /* apply fade-in */
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

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

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #5ef1e2, #2a7bff 45%, #030a17 100%);
  box-shadow: 0 0 24px rgba(94,241,226,0.8);
  position: relative;
  animation: nb-orb-breathe 3.3s ease-in-out infinite;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(94,241,226,0.35), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

nav a {
  text-decoration: none;
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  color: var(--text-main);
  border-bottom-color: rgba(94,241,226,0.6);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 40px;
  align-items: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #18264d, #050b18 55%, #020814 100%);
  border: 1px solid var(--border-soft);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  margin-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(3,10,23,0.8);
  color: var(--text-soft);
  font-size: 0.75rem;
  margin-bottom: 14px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5ef1e2;
  box-shadow: 0 0 10px rgba(94,241,226,0.9);
}

.hero h1 {
  font-size: clamp(2.3rem, 2.6rem, 3rem);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}

.hero span.accent {
  background: linear-gradient(120deg, #5ef1e2, #60a9ff, #e76cff);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 34rem;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #5ef1e2, #2f72ff 60%, #08243b 100%);
  color: #020711;
  box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 50px rgba(0,0,0,0.9);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  border-color: rgba(94,241,226,0.6);
  color: var(--accent);
}

.hero-badge-card {
  justify-self: center;
  width: 260px;
  max-width: 100%;
  border-radius: 24px;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 10% 0, rgba(94,241,226,0.25), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(224,111,255,0.25), transparent 65%),
    linear-gradient(145deg, rgba(10,22,49,0.95), rgba(3,10,23,0.98));
  border: 1px solid rgba(94,241,226,0.3);
  box-shadow: 0 25px 70px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0, rgba(94,241,226,0.3), transparent 55%),
              radial-gradient(circle at 20% 90%, rgba(150,122,255,0.25), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}

.hero-badge-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.badge-main {
  font-size: 1rem;
  font-weight: 500;
}

.badge-main span {
  color: var(--accent);
}

.badge-foot {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.badge-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 3px;
}

.badge-chip {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(3,10,23,0.9);
  border: 1px solid rgba(255,255,255,0.12);
}

main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 18px;
}

section {
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  background: rgba(3,10,23,0.9);
  padding: 24px 22px;
}

section h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 52%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #5ef1e2, #60a9ff, #e76cff);
  opacity: 0.7;
}

section p.lead {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.pillar-card {
  border-radius: 14px;
  padding: 14px 14px 16px;
  background: linear-gradient(150deg, rgba(10,22,49,0.95), rgba(3,10,23,0.98));
  border: 1px solid rgba(255,255,255,0.1);
}

.pillar-label {
  font-size: 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.pillar-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* OVA teaser section */
.ova-teaser {
  background: radial-gradient(circle at top left, #071025, #030a17 55%, #02060f 100%);
  border-color: rgba(94,241,226,0.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 26px 70px rgba(0,0,0,0.75);
}

.ova-header {
  max-width: 640px;
}

.ova-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 6px;
}

.ova-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ova-card {
  border-radius: 16px;
  padding: 14px 14px 16px;
  background: linear-gradient(150deg, rgba(10,22,49,0.95), rgba(3,10,23,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
}

.ova-pill {
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(94,241,226,0.4);
  background: rgba(3,10,23,0.9);
  color: var(--accent);
  margin-bottom: 6px;
}

.ova-card h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.ova-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.ova-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ova-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(3,10,23,0.95);
  color: var(--text-soft);
}

.ova-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.ova-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  max-width: 420px;
}

/* CTA + seals + footer */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, #050f24, #04152f);
  border: 1px solid var(--border-soft);
}

.cta-text {
  max-width: 420px;
}

.cta-text p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 4px;
}

.seals-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.seal-pill {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(3,10,23,0.9);
  border: 1px solid rgba(255,255,255,0.1);
}

footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* Smooth hover motion for key cards */
.pillar-card,
.ova-card,
.seal-pill,
.cta-band {
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.pillar-card:hover,
.ova-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.65);
  border-color: rgba(94,241,226,0.35);
}



.seal-pill:hover,
.cta-band:hover {
  transform: translateY(-2px);
  border-color: rgba(94,241,226,0.25);
}

