:root {
  color-scheme: dark;
  font-family: 'Inter', system-ui, sans-serif;
  background-color: oklch(10% 0.02 260);
  /* Theme tokens for site and configurator */
  --site-accent: #24e1d6;
  --site-accent-2: #ff6fb5;
  --site-muted: rgba(203,213,225,0.9);
  --control-radius: 10px;
  --control-shadow: 0 10px 40px rgba(36,225,214,0.08);
  --glow: oklch(74% 0.16 205);
  /* Hero & logo tweakable tokens */
  --hero-overlay-start: rgba(5,6,10,0.42);
  --hero-overlay-mid: rgba(5,6,10,0.62);
  --hero-overlay-end: rgba(5,6,10,0.78);
  --hero-zoom-duration: 14s;
  --hero-zoom-scale: 1.055;
  --logo-size-desktop: 6.5rem;
  --logo-size-default: 5rem;
  --logo-size-mobile: 3.25rem;
  --logo-pop-duration: 540ms;
  --hero-bg-brightness: 0.52;
  /* Default gradient backdrop so pages remain themed even without JS/image loads */
  --page-wallpaper-fallback: radial-gradient(135deg, rgba(30, 48, 85, 0.65), rgba(5, 6, 10, 0.92) 65%, rgba(5, 6, 10, 0.98));
  --page-wallpaper: var(--page-wallpaper-fallback);
  --page-wallpaper-blur: 14px;
  --page-wallpaper-brightness: 0.55;
  --page-wallpaper-saturate: 0.92;
  --page-vignette-strength: rgba(5, 6, 10, 0.82);
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: oklch(10% 0.02 260);
  position: relative;
  overflow-x: hidden;
  color: white;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--page-wallpaper);
  background-size: cover;
  background-position: center;
  filter:
    blur(var(--page-wallpaper-blur))
    brightness(var(--page-wallpaper-brightness))
    saturate(var(--page-wallpaper-saturate));
  z-index: -2;
  opacity: 1;
  transition: opacity 420ms ease;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% -10%, rgba(120, 255, 255, 0.12), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(255, 170, 255, 0.1), transparent 55%),
    radial-gradient(ellipse at 50% 55%, transparent 35%, var(--page-vignette-strength) 100%);
  pointer-events: none;
  z-index: -1;
  background-attachment: fixed;
}

body.wallpaper-ready::before {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(120, 255, 255, 0.7);
  outline-offset: 4px;
}

.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(5, 6, 10, 0.85));
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(120, 255, 255, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(120, 255, 255, 0.2), 0 18px 40px -10px rgba(120, 255, 255, 0.25);
}

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

.pillar-card__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card__copy {
  color: rgba(203, 213, 225, 0.95);
  line-height: 1.6;
}

.pillar-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

.pillar-card__cta {
  align-self: flex-start;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.pillar-card__cta:hover {
  background: rgba(120, 255, 255, 0.2);
  color: oklch(10% 0.02 260);
}

.pillar-card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(148, 163, 184, 0.75);
}

.community-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 17, 25, 0.8);
  transition: transform 160ms cubic-bezier(.2, .8, .2, 1), border-color 200ms ease;
}

.community-link:hover {

.category-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 16, 0.75);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.9);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms cubic-bezier(.2,.8,.2,1);
}

.category-pill:hover {
  border-color: rgba(120, 255, 255, 0.4);
  color: white;
  transform: translateY(-3px);
}

.category-pill[aria-selected='true'],
.category-pill.active {
  border-color: rgba(255, 170, 255, 0.4);
  background: rgba(255, 170, 255, 0.12);
  color: white;
}

  transform: translateY(-4px);
  border-color: rgba(120, 255, 255, 0.35);
}

nav[data-app-nav] {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(18px);
  background: linear-gradient(120deg, rgba(5, 6, 10, 0.94), rgba(5, 6, 10, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav[data-app-nav] a.active {
  color: rgba(120, 255, 255, 0.95);
}

footer[data-app-footer] {
  background: rgba(5, 6, 10, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

[data-surface] {
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(5, 6, 10, 0.88));
  box-shadow: 0 30px 70px -40px rgba(120, 255, 255, 0.2);
}

[data-gradient-divider] {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(120, 255, 255, 0), rgba(120, 255, 255, 0.35), rgba(120, 255, 255, 0));
}

[data-hero-grid] {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-size: 120px 120px;
  background-image: linear-gradient(transparent 95%, rgba(120, 255, 255, 0.07) 95%),
    linear-gradient(90deg, transparent 95%, rgba(120, 255, 255, 0.07) 95%);
  pointer-events: none;
}

.motion-minimal * {
  transition-duration: 0ms !important;
  animation-duration: 0ms !important;
}

@media (prefers-reduced-motion: reduce) {
  :root:not(.motion-full) {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

[data-toast] {
  pointer-events: none;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

[data-toast] .toast-message {
  pointer-events: auto;
  background: rgba(5, 6, 10, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(120, 255, 255, 0.2);
  padding: 0.85rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

[data-toast] .toast-message svg {
  flex-shrink: 0;
  color: rgba(120, 255, 255, 0.9);
}

[data-modal-backdrop] {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.8);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 200;
}

[data-modal-panel] {
  width: min(560px, 100%);
  border-radius: 1.5rem;
  border: 1px solid rgba(120, 255, 255, 0.25);
  background: rgba(5, 6, 10, 0.96);
  padding: 2rem;
  box-shadow: 0 25px 70px -20px rgba(120, 255, 255, 0.35);
}

[data-chip] {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

[data-tag-pink] {
  border-color: rgba(255, 170, 255, 0.4);
  color: rgba(255, 170, 255, 0.9);
}

[data-tag-lime] {
  border-color: rgba(180, 255, 170, 0.35);
  color: rgba(180, 255, 170, 0.9);
}

[data-tag-cyan] {
  border-color: rgba(170, 255, 255, 0.35);
  color: rgba(170, 255, 255, 0.9);
}

[data-divider] {
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 255, 255, 0), rgba(120, 255, 255, 0.35), rgba(120, 255, 255, 0));
  margin: 1.5rem 0;
}

[data-section-title] {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  color: rgba(120, 255, 255, 0.85);
}

[data-scroll-shadow-top] {
  position: relative;
}

[data-scroll-shadow-top]::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 30px;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.95), transparent);
  pointer-events: none;
  z-index: 1;
}

[data-scroll-shadow-bottom] {
  position: relative;
}

[data-scroll-shadow-bottom]::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 30px;
  background: linear-gradient(0deg, rgba(5, 6, 10, 0.95), transparent);
  pointer-events: none;
  z-index: 1;
}

[data-empty-state] {
  border: 1px dashed rgba(148, 163, 184, 0.35);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  color: rgba(148, 163, 184, 0.9);
}

button[disabled] {
  opacity: 0.6;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

[data-shimmer] {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(120, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 2.2s infinite;
}

.event-card {
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.8rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 18, 0.85);
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 160ms cubic-bezier(.2,.8,.2,1), border-color 160ms ease;
}

.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 255, 255, 0.35);
}

.event-card__title {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.event-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.8);
}

.event-card--active {
  border-color: rgba(255, 170, 255, 0.45);
  background: rgba(255, 170, 255, 0.1);
}

.event-slot {
  min-height: 52px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}

/* Small utility: fade-in for logo and micro-animations */
@keyframes fadeInUpSmall {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeInUpSmall 700ms ease both;
}

/* Subtle hero background slow zoom for parallax effect */
.hero-slow-zoom {
  position: absolute;
  inset: 0;
  /* configurable background via CSS variable --hero-bg (url('...')) */
  background-image: var(--hero-bg, url('/assets/naraka-bg.png'));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: saturate(0.85) contrast(0.9) brightness(0.52);
  transition: transform var(--hero-zoom-duration) linear;
  will-change: transform;
  pointer-events: none;
  /* ensure hero image is the farthest-back layer so overlays and gradient wash sit above it */
  z-index: -20;
  transform-origin: center center;
}
.hero-slow-zoom::after {
  /* subtle color wash overlay to preserve text contrast */
  content: '';
  position: absolute; inset: 0;
  /* slightly darker overlay for stronger contrast on text */
  background: linear-gradient(120deg, var(--hero-overlay-start) 0%, var(--hero-overlay-mid) 60%, var(--hero-overlay-end) 100%);
  mix-blend-mode: multiply;
}
.hero-slow-zoom[aria-hidden='true']::before {
  /* animated gentle zoom */
  content: '';
  position: absolute; inset: 0;
  transform: scale(1);
  /* faster, smoother zoom for more subtle motion */
  animation: heroZoom var(--hero-zoom-duration) ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(var(--hero-zoom-scale)); }
}

/* Site header / logo entrance and responsive sizing */
.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none; /* allow clicks through except the image */
  transition: background-color 240ms ease, backdrop-filter 240ms ease, transform 240ms ease;
}
.site-header.scrolled {
  background-color: rgba(5,6,10,0.45);
  backdrop-filter: blur(6px);
}
.site-logo {
  height: var(--logo-size-default); /* default */
  width: auto;
  pointer-events: auto;
  transform-origin: center;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), opacity 320ms ease;
  opacity: 0;
}
.site-logo.logo-enter {
  opacity: 1;
  transform: scale(1);
}

/* larger title-bar logo on desktop, compact on mobile */
@media (min-width: 1024px) {
  .site-logo { height: var(--logo-size-desktop); }
}
@media (max-width: 640px) {
  .site-logo { height: var(--logo-size-mobile); transform: translateY(-2px); }
}

/* logo load-in pop + fade */
@keyframes logoPop {
  0% { transform: scale(0.85) rotate(-3deg); opacity: 0; }
  60% { transform: scale(1.06) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.animate-pop { animation: logoPop 700ms cubic-bezier(.2,.9,.2,1) both; }
.animate-pop { animation: logoPop var(--logo-pop-duration) cubic-bezier(.2,.9,.2,1) both; }
@media (max-width: 768px) {
  .site-logo { height: 3.25rem; /* reduce on small screens */ }
}
@media (max-width: 420px) {
  .site-logo { height: 2.5rem; }
}

@keyframes logoPop {
  0% { transform: scale(0.88); opacity: 0; }
  60% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.site-logo.animate-pop { animation: logoPop 540ms cubic-bezier(.2,.9,.2,1) both; }
.site-logo.animate-pop { animation: logoPop var(--logo-pop-duration) cubic-bezier(.2,.9,.2,1) both; }

[data-readonly='true'] .event-slot {
  opacity: 0.4;
}

/* ===========================
   UNIFIED BUTTON SYSTEM
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--control-radius, 10px);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: all 160ms cubic-bezier(.2,.8,.2,1);
  user-select: none;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

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

/* Primary button (accent gradient) */
.btn-primary {
  background: linear-gradient(90deg, var(--site-accent), var(--site-accent-2));
  color: #05060a;
  border: none;
  box-shadow: var(--control-shadow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(36,225,214,0.2);
}

/* Secondary button (outline) */
.btn-secondary {
  border-color: var(--site-accent);
  color: var(--site-accent);
  background: rgba(36,225,214,0.05);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(36,225,214,0.15);
  transform: translateY(-2px);
}

/* Ghost button (minimal) */
.btn-ghost {
  border-color: rgba(255,255,255,0.1);
  color: var(--site-muted);
  background: rgba(255,255,255,0.03);
}

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

/* Danger button */
.btn-danger {
  border-color: #ef4444;
  color: #fca5a5;
  background: rgba(239,68,68,0.1);
}

.btn-danger:hover:not(:disabled) {
  background: rgba(239,68,68,0.2);
  transform: translateY(-2px);
}

/* Success button */
.btn-success {
  border-color: #10b981;
  color: #6ee7b7;
  background: rgba(16,185,129,0.1);
}

.btn-success:hover:not(:disabled) {
  background: rgba(16,185,129,0.2);
  transform: translateY(-2px);
}

/* Small button variant */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

/* Large button variant */
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===========================
   UNIFIED CHIP SYSTEM
   =========================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--site-muted);
  cursor: default;
  transition: all 140ms cubic-bezier(.2,.8,.2,1);
}

.chip-clickable {
  cursor: pointer;
}

.chip-clickable:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, var(--site-accent), var(--site-accent-2));
  color: #05060a;
  border-color: transparent;
}

.chip-active {
  background: linear-gradient(90deg, var(--site-accent), var(--site-accent-2));
  color: #05060a;
  border-color: transparent;
  box-shadow: var(--control-shadow);
}

/* ===========================
   UNIFIED NAVIGATION
   =========================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(18px);
  background: linear-gradient(120deg, rgba(5, 6, 10, 0.94), rgba(5, 6, 10, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 1.5rem;
}

.site-nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
}

.site-nav-logo img {
  height: 2rem;
  width: auto;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav-link {
  color: var(--site-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 160ms ease;
}

.site-nav-link:hover,
.site-nav-link.active {
  color: var(--site-accent);
}

@media (max-width: 768px) {
  .site-nav-links {
    display: none;
  }
}

/* ===========================
   PAGE LAYOUT & FLOW
   =========================== */
.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.page-header {
  padding: 2rem 0;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.page-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--site-accent);
  border-radius: 3px;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--site-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-main {
  position: relative;
  padding-bottom: 6rem;
}

.hero-section {
  position: relative;
  padding-top: 5rem;
}

.hero-section .content-container {
  position: relative;
}

.hero-section [data-hero-grid] {
  opacity: 0.18;
  background-size: 140px 140px;
}

.hero-layout {
  display: grid;
  gap: 3rem;
  align-items: stretch;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.hero-copy {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.9);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(120, 255, 255, 0.8);
  box-shadow: 0 0 12px rgba(120, 255, 255, 0.6);
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.75rem, 4vw, 4.5rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 42ch;
  color: rgba(226, 232, 240, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions .btn-lg {
  padding-inline: 1.5rem;
  padding-block: 0.9rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.85);
  transition: color 180ms ease;
}

.hero-link::after {
  content: '→';
  font-size: 0.8rem;
  transform: translateY(-1px);
}

.hero-link:hover {
  color: white;
}

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

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-metric dt {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.hero-metric dd {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.82);
}

.hero-panel {
  grid-column: span 5;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(120, 255, 255, 0.16), transparent 60%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-panel header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-panel-title {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.85);
}

.hero-panel-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel-step {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.hero-panel-step-index {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
}

.hero-panel-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-panel-step-body h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-panel-step-body p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.85);
}

.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--site-accent);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(148, 163, 184, 0.85);
}

.section-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.section-description {
  max-width: 60ch;
  margin-top: 0.75rem;
  color: rgba(203, 213, 225, 0.78);
}

.workflow-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-step {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 220px;
  overflow: hidden;
}

.workflow-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(120, 255, 255, 0.16), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.workflow-step > * {
  position: relative;
  z-index: 1;
}

.workflow-step-number {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.workflow-step-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0;
}

.workflow-step-copy {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.8);
}

.workflow-step-footer {
  margin-top: auto;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(120, 255, 255, 0.75);
}

.tool-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tool-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(5, 6, 10, 0.82));
  transition: transform 220ms cubic-bezier(.2,.8,.2,1), border-color 220ms ease, box-shadow 220ms ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  border-color: rgba(120, 255, 255, 0.35);
  box-shadow: 0 18px 40px -10px rgba(120, 255, 255, 0.25);
}

.tool-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

.tool-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.8);
}

.tool-card footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.updates-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  margin-top: 2.5rem;
}

.updates-feed {
  display: grid;
  gap: 1.25rem;
}

.updates-aside {
  display: grid;
  gap: 1.5rem;
}

.status-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(120, 255, 255, 0.25);
  background: rgba(36, 225, 214, 0.12);
  color: rgba(222, 255, 250, 0.92);
}

.status-card strong {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.quick-links {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(14px);
}

.quick-links h3 {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.quick-links ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.quick-links a {
  font-size: 0.9rem;
  color: rgba(203, 213, 225, 0.85);
  transition: color 180ms ease;
}

.quick-links a:hover {
  color: white;
}

.community-panel {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(5, 6, 10, 0.88));
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.community-panel h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
}

.community-panel p {
  margin: 1rem 0 0;
  color: rgba(203, 213, 225, 0.82);
}

.community-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(203, 213, 225, 0.9);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.community-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(120, 255, 255, 0.35);
  color: white;
}

.community-panel aside {
  display: grid;
  gap: 1rem;
}

.community-note {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.85);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-panel {
    grid-column: auto;
  }
  .hero-panel {
    padding: 1.75rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .updates-grid {
    grid-template-columns: 1fr;
  }
  .community-panel {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .hero-copy,
  .hero-panel {
    grid-column: span 6;
  }
}

/* ===========================
   UNIFIED FORM CONTROLS
   =========================== */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--control-radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: inherit;
  font-size: 0.875rem;
  transition: all 160ms ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--site-accent);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 3px rgba(36,225,214,0.1);
  transform: translateY(-1px);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

/* ===========================
   UNIFIED SURFACE/PANEL SYSTEM
   =========================== */
.surface {
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(5, 6, 10, 0.88));
  backdrop-filter: blur(8px);
}

.surface-elevated {
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
