:root {
  color-scheme: dark;
  --bg: #07020f;
  --panel: rgba(16, 8, 30, 0.88);
  --panel-strong: rgba(20, 10, 38, 0.95);
  --text: #f9f4ff;
  --muted: #b6a7d7;
  --accent: #ff5fd2;
  --accent-2: #7d2cff;
  --accent-3: #c850ff;
  --accent-4: #ff3fb0;
  --border: rgba(255, 95, 210, 0.22);
  --shadow: 0 28px 70px rgba(7, 2, 15, 0.7);
}

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

body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 17px;
  background: radial-gradient(circle at top, #1a0a2e, #07020f 60%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(9, 3, 18, 0.75);
  border-bottom: 1px solid rgba(255, 95, 210, 0.22);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(15, 7, 30, 0.9);
  padding: 6px;
  box-shadow: 0 10px 22px rgba(255, 95, 210, 0.3);
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: #cbb7f0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 95, 210, 0.4);
  background: rgba(16, 8, 30, 0.6);
  cursor: pointer;
  padding: 10px;
  gap: 5px;
  flex-direction: column;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffd4f1;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.cta-btn {
  border: 1px solid rgba(255, 95, 210, 0.45);
  background: transparent;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 95, 210, 0.35);
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  color: #ffffff;
}

.cta-btn.ghost {
  border-color: rgba(125, 44, 255, 0.6);
}

main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 32px 100px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 80px 0 40px;
}

.hero-content {
  position: relative;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 95, 210, 0.18);
  border: 1px solid rgba(255, 95, 210, 0.45);
  font-size: 0.85rem;
  color: #ffd4f1;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--accent-2);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}

.hero-metrics h3 {
  font-size: 1.8rem;
}

.hero-metrics p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-logo-wrap {
  background: radial-gradient(
    circle,
    rgba(255, 95, 210, 0.22),
    rgba(125, 44, 255, 0.18),
    transparent 70%
  );
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(125, 44, 255, 0.22);
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(220px, 70%);
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(255, 63, 176, 0.35));
}

.glass-card {
  background: var(--panel);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 95, 210, 0.1) 50%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.glass-card:hover {
  transform: translateY(-6px);
}

.glass-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.glass-card p {
  color: var(--muted);
  line-height: 1.5;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 95, 210, 0.25), rgba(125, 44, 255, 0.3));
  border: 1px solid rgba(255, 95, 210, 0.45);
  box-shadow: 0 10px 24px rgba(255, 95, 210, 0.22);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #ffe6ff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signal {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.signal span {
  display: block;
  width: 10px;
  height: 20px;
  border-radius: 6px;
  background: var(--accent-3);
  animation: pulse 1.6s ease-in-out infinite;
}

.signal span:nth-child(2) {
  animation-delay: 0.2s;
}

.signal span:nth-child(3) {
  animation-delay: 0.4s;
}

.cloud-pulse {
  position: relative;
  width: 52px;
  height: 52px;
  margin-top: 14px;
}

.cloud-pulse span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 95, 210, 0.5);
  animation: ripple 2.8s ease-out infinite;
}

.cloud-pulse span:nth-child(2) {
  animation-delay: 0.6s;
}

.cloud-pulse span:nth-child(3) {
  animation-delay: 1.2s;
}

.orbit-dots {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 95, 210, 0.4);
  margin-top: 14px;
  animation: spin 8s linear infinite;
}

.orbit-dots span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 10px rgba(255, 95, 210, 0.6);
}

.orbit-dots span:nth-child(1) {
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dots span:nth-child(2) {
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-dots span:nth-child(3) {
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 95, 210, 0.5);
  margin-top: 18px;
  animation: spin 10s linear infinite;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 95, 210, 0.2);
  color: #ffd2f4;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.75rem;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.mini-stats span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 95, 210, 0.15);
  border: 1px solid rgba(255, 95, 210, 0.3);
}

.section {
  padding: 70px 0;
}

.section.dark {
  background: linear-gradient(180deg, rgba(22, 10, 40, 0.9), transparent);
  border-radius: 32px;
  padding: 80px 40px;
  border: 1px solid rgba(255, 95, 210, 0.2);
  position: relative;
  overflow: hidden;
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Logo.PNG") right 10% top 20% / 240px no-repeat;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.section.dark > * {
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  line-height: 1.7;
}

.stat-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.stat-card {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.feature-card {
  background: var(--panel-strong);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: transform 0.4s ease, border 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 95, 210, 0.6);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-card.accent {
  background: linear-gradient(
    135deg,
    rgba(255, 95, 210, 0.18),
    rgba(125, 44, 255, 0.2)
  );
}

.mini-graph {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  align-items: flex-end;
  height: 38px;
}

.mini-graph span {
  width: 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 14px rgba(255, 95, 210, 0.25);
  animation: graphPulse 2.4s ease-in-out infinite;
}

.mini-graph span:nth-child(1) {
  height: 40%;
}

.mini-graph span:nth-child(2) {
  height: 70%;
  animation-delay: 0.2s;
}

.mini-graph span:nth-child(3) {
  height: 55%;
  animation-delay: 0.4s;
}

.mini-graph span:nth-child(4) {
  height: 85%;
  animation-delay: 0.6s;
}

.mini-graph span:nth-child(5) {
  height: 60%;
  animation-delay: 0.8s;
}

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

.timeline-step {
  background: rgba(16, 8, 30, 0.9);
  border: 1px solid rgba(125, 44, 255, 0.35);
  padding: 24px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.timeline-step::after {
  content: "";
  position: absolute;
  inset: auto 12% 0 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-4), var(--accent-2));
  opacity: 0.8;
}

.timeline-step span {
  font-size: 0.9rem;
  color: var(--accent-3);
}

.timeline-step h3 {
  margin: 12px 0 10px;
}

.timeline-step p {
  color: var(--muted);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.cert-card {
  background: rgba(16, 8, 30, 0.92);
  border: 1px solid rgba(255, 95, 210, 0.3);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.cert-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-4);
  box-shadow: 0 0 12px rgba(255, 63, 176, 0.8);
}

.cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(125, 44, 255, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.cert-card h3 {
  margin-bottom: 8px;
}

.cert-card p {
  color: var(--muted);
}

.callout {
  background: linear-gradient(120deg, rgba(255, 95, 210, 0.25), rgba(125, 44, 255, 0.18));
  border: 1px solid rgba(255, 95, 210, 0.4);
  border-radius: 26px;
  padding: 50px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.callout::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 240px;
  height: 240px;
  background: url("Logo.PNG") center / contain no-repeat;
  opacity: 0.08;
  transform: rotate(12deg);
}

.callout p {
  color: var(--muted);
  margin-top: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 95, 210, 0.25);
  padding: 40px 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  color: var(--muted);
}

.value-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.value-points div {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
}

.mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 95, 210, 0.25), rgba(125, 44, 255, 0.25));
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 95, 210, 0.35);
}

.mini-icon svg {
  width: 18px;
  height: 18px;
  stroke: #ffe6ff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 95, 210, 0.28), rgba(125, 44, 255, 0.28));
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 95, 210, 0.4);
}

.step-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ffe6ff;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 6px 16px rgba(255, 95, 210, 0.35);
}

.cert-card:nth-child(2) .cert-icon {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
}

.cert-card:nth-child(3) .cert-icon {
  background: linear-gradient(135deg, var(--accent-4), var(--accent-2));
}

.cert-card:nth-child(4) .cert-icon {
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
}

.cert-card:nth-child(5) .cert-icon {
  background: linear-gradient(135deg, #ffd2f4, var(--accent-4));
}

.cert-card:nth-child(6) .cert-icon {
  background: linear-gradient(135deg, #9b6bff, var(--accent));
}

.cert-card:nth-child(7) .cert-icon {
  background: linear-gradient(135deg, var(--accent-2), #ff9fdf);
}

.cert-card:nth-child(8) .cert-icon {
  background: linear-gradient(135deg, var(--accent-3), #ff7fd0);
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-note {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes pulse {
  0%,
  100% {
    height: 16px;
    opacity: 0.7;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes graphPulse {
  0%,
  100% {
    transform: scaleY(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.02);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: row;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin: 12px 0 0;
    background: rgba(10, 4, 22, 0.95);
    border: 1px solid rgba(255, 95, 210, 0.25);
    border-radius: 16px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav.open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  main {
    padding: 20px 20px 80px;
  }

  .section.dark {
    padding: 60px 24px;
  }
}
