:root {
  --bg: #050b14;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.10);
  --accent: #6cf0c2;
  --accent-2: #7ad0ff;
  --accent-glow: rgba(108, 240, 194, 0.3);
  --text: #e9edf4;
  --muted: #a8b8c8;
  --outline: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--text);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 80% at 20% 0%, rgba(108, 240, 194, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(122, 208, 255, 0.06), transparent 40%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(108, 240, 194, 0.04), transparent 60%);
  overflow-x: hidden;
}

/* ========== Floating Orbs ========== */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-2);
  top: 40%;
  right: -80px;
  animation-delay: -7s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  bottom: 10%;
  left: 20%;
  animation-delay: -14s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(20px, 30px) scale(1.02);
  }
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes staggerFade {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.stagger-fade>* {
  animation: staggerFade 0.5s ease-out forwards;
  opacity: 0;
}

.stagger-fade>*:nth-child(1) {
  animation-delay: 0.3s;
}

.stagger-fade>*:nth-child(2) {
  animation-delay: 0.4s;
}

.stagger-fade>*:nth-child(3) {
  animation-delay: 0.5s;
}

/* ========== Layout ========== */
.page {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ========== Hero ========== */
.hero {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--outline);
  border-radius: calc(var(--radius) * 1.5);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
  opacity: 0.5;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo-icon {
  color: var(--accent);
  font-size: 20px;
}

.hero-content {
  margin-top: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(28px, 5vw, 44px);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(22px, 3vw, 30px);
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

.lede {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  font-size: 16px;
}

/* ========== Fact Cards ========== */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.fact-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: all var(--transition);
}

.fact-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(108, 240, 194, 0.3);
  transform: translateY(-2px);
}

.fact-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

/* ========== Buttons ========== */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.cta:hover::before {
  opacity: 1;
}

.cta.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03121d;
  border: none;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.cta.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.cta.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-icon {
  font-size: 16px;
}

/* ========== Accent Card ========== */
.accent-card {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(108, 240, 194, 0.08), rgba(122, 208, 255, 0.05));
  border: 1px solid rgba(108, 240, 194, 0.2);
  border-radius: var(--radius);
}

.accent-card .card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}

.accent-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}

.accent-card li {
  margin-bottom: 4px;
}

.accent-card strong {
  color: var(--text);
}

/* ========== Sections ========== */
.section {
  margin-top: 48px;
  padding: 28px;
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(108, 240, 194, 0.15), rgba(122, 208, 255, 0.1));
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid rgba(108, 240, 194, 0.2);
}

/* ========== Cards ========== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--card-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

.link {
  margin-top: auto;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.link:hover {
  color: var(--accent);
}

.link .arrow {
  transition: transform var(--transition);
}

.link:hover .arrow {
  transform: translateX(4px);
}

/* ========== Contact ========== */
.contact-card {
  background: linear-gradient(145deg, var(--card-strong), var(--card));
  padding: 28px;
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid var(--outline);
}

.contact-desc {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
  font-size: 15px;
}

.contact-card .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item {
  padding: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border: 1px solid var(--outline);
}

.contact-value {
  margin: 6px 0 0;
  font-weight: 600;
  font-size: 15px;
}

.contact-value.highlight {
  color: var(--accent);
}

/* ========== Footer ========== */
.footer {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.divider {
  color: var(--outline);
}

.copyright {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
  opacity: 0.7;
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
  .page {
    padding: 24px 16px 60px;
  }

  .hero,
  .section {
    padding: 24px 20px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-row {
    width: 100%;
  }

  .cta {
    flex: 1;
    min-width: 140px;
  }

  .section-head {
    flex-direction: column;
  }

  .contact-card .grid {
    grid-template-columns: 1fr;
  }

  .orb-1 {
    width: 250px;
    height: 250px;
  }

  .orb-2 {
    width: 200px;
    height: 200px;
  }

  .orb-3 {
    display: none;
  }
}