
:root {
  --bg: #020617;
  --bg-soft: #030818;
  --glass: rgba(15, 23, 42, 0.72);
  --glass-strong: rgba(15, 23, 42, 0.9);
  --accent-1: #22d3ee;
  --accent-2: #4ade80;
  --accent-3: #a855f7;
  --accent-4: #f97316;
  --text: #f9fafb;
  --muted: #cbd5f5;
  --muted-soft: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.45);
  --border-strong: rgba(148, 163, 184, 0.85);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.92);
  --shadow-sm: 0 18px 40px rgba(15, 23, 42, 0.85);
  --max-width: 1120px;
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  isolation: isolate;
}

/* Particle canvas */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

/* Gradient overlay */
.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.18), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(59, 130, 246, 0.25), transparent 60%);
  opacity: 0.9;
  z-index: -3;
}

.page-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 18px 16px 72px;
}

/* TOP BAR */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.brand-side {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 0, #0f172a, #020617);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.6), var(--shadow-sm);
  flex-shrink: 0;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f9fafb;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(15, 23, 42, 0.9);
}

.brand-subtitle {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.pill {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.2), transparent 60%),
              rgba(15, 23, 42, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.8);
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--accent-1), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.right-brand {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.right-brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(15, 23, 42, 0.9));
}

/* NAV */
.nav-anchors {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
  max-width: 100%;
  overflow-x: auto;
  backdrop-filter: blur(22px);
}

.nav-chip {
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted-soft);
  cursor: pointer;
  transition: all 0.2s ease-out;
  background: transparent;
  white-space: nowrap;
}

.nav-chip:hover {
  border-color: rgba(148, 163, 184, 0.8);
  color: #f9fafb;
  background: rgba(15, 23, 42, 0.9);
}

.nav-chip.primary {
  border-color: rgba(56, 189, 248, 1);
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.35), transparent 70%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(74, 222, 128, 0.3));
  color: #e0f2fe;
  box-shadow: 0 16px 40px rgba(34, 211, 238, 0.6);
}

/* HERO */
.hero-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 26px;
  position: relative;
  border: 1px solid rgba(129, 140, 248, 0.7);
  background: #020617;
  box-shadow: var(--shadow-soft);
}

.hero-banner img.hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.7)),
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 60%);
  mix-blend-mode: soft-light;
}

/* INTRO */
.intro {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 24px;
  align-items: flex-start;
}

.intro-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.intro-title {
  font-size: clamp(28px, 3.2vw, 34px);
  line-height: 1.12;
  font-weight: 680;
  letter-spacing: 0.05em;
  text-shadow: 0 0 32px rgba(15, 23, 42, 1);
}

.intro-title span.highlight {
  background: linear-gradient(120deg, #e5f0ff, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

.intro-subtitle {
  font-size: 14px;
  color: var(--muted);
}

.date-venue {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-soft);
}

.date-venue span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.2), transparent 70%);
}

.intro-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.primary-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

/* BUTTONS */
.btn {
  border-radius: 999px;
  border: none;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    background 0.16s ease-out,
    border-color 0.16s ease-out;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.btn-primary {
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.55), transparent 55%),
    linear-gradient(135deg, #22d3ee, #4ade80);
  color: #020617;
  box-shadow: 0 22px 45px rgba(34, 211, 238, 0.65);
}

.btn-outline {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.85);
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 26px 55px rgba(34, 211, 238, 0.8);
}

.btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(248, 250, 252, 0.9);
  background: rgba(15, 23, 42, 1);
}

.micro-copy {
  max-width: 260px;
  font-size: 11px;
  color: #e5e7eb;
  text-align: right;
}

/* SECTIONS */
.section {
  margin-bottom: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(148, 163, 184, 0.65);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.12), transparent 60%),
    radial-gradient(circle at 100% 0, rgba(168, 85, 247, 0.12), transparent 60%),
    radial-gradient(circle at 0 100%, rgba(52, 211, 153, 0.08), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  align-items: flex-end;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  padding-bottom: 8px;
}

.section-heading-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.section-title {
  font-size: 17px;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  font-size: 12px;
  color: var(--muted);
}

.section-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
  white-space: nowrap;
  background: rgba(15, 23, 42, 0.9);
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 2.2fr);
  gap: 18px;
}

.about-copy {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.pill-soft {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--muted);
}

/* TRIAD */
.triad-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
}

.triad-card {
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 60%);
}

.triad-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.triad-title {
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 3px;
}

.triad-text {
  font-size: 11px;
  color: var(--muted);
}

/* CATEGORY GRID + GLASS CARDS */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  border-radius: 22px;
  padding: 13px 12px 12px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  background: radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.18), transparent 65%),
              radial-gradient(circle at 100% 100%, rgba(168, 85, 247, 0.16), transparent 65%),
              rgba(15, 23, 42, 0.86);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(22px);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.28), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(248, 250, 252, 0.16), transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 1);
  border-color: rgba(248, 250, 252, 0.9);
}

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

.category-card-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
}

.category-chip {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 4px;
}

.category-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.category-target {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}

.category-icon-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--accent-1), var(--accent-3));
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.16);
  flex-shrink: 0;
}

/* Collapsible details */
.category-details {
  font-size: 11px;
  color: var(--muted);
  padding-top: 6px;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  margin-top: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.category-card.expanded .category-details {
  max-height: 220px;
  opacity: 1;
}

.category-list {
  padding-left: 15px;
}

.category-list li {
  margin-bottom: 4px;
}

.category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: rgba(226, 232, 240, 0.9);
  margin-top: 2px;
}

.category-toggle-icon {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.special-note {
  font-size: 11px;
  color: #e5e7eb;
  margin-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
  padding-top: 7px;
}

/* NOMINATION + TWO COL */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.3fr);
  gap: 16px;
}

.step-list {
  list-style: none;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-item {
  display: flex;
  gap: 10px;
}

.step-badge {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #bfdbfe;
  background: radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.85), transparent 60%);
  flex-shrink: 0;
  margin-top: 3px;
}

.step-content strong {
  font-weight: 500;
  color: #f9fafb;
}

.eligibility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.eligibility-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.95);
}

.bullet-list {
  font-size: 12px;
  color: var(--muted);
  padding-left: 16px;
}

.bullet-list li {
  margin-bottom: 4px;
}

/* EVALUATION GRID */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.criteria-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 10px;
  background:
    radial-gradient(circle at 0 0, rgba(34, 211, 238, 0.22), transparent 65%),
    rgba(15, 23, 42, 0.96);
  font-size: 11px;
  color: var(--muted);
}

.criteria-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.criteria-weight {
  font-size: 11px;
  color: var(--muted-soft);
  margin-bottom: 3px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}

.timeline-step {
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  padding: 10px;
  background: rgba(15, 23, 42, 0.96);
}

.timeline-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 3px;
}

.timeline-date {
  font-size: 11px;
  color: #e5e7eb;
  margin-bottom: 3px;
}

/* CEREMONY */
.ceremony-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 2.1fr);
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}

.mini-heading {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #e5e7eb;
}

.micro-list {
  padding-left: 14px;
}

.micro-list li {
  margin-bottom: 3px;
}

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

.badge {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  color: #e5e7eb;
}

/* FAQ & CONTACT */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 18px;
  font-size: 12px;
  color: var(--muted);
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(15, 23, 42, 0.98);
}

.faq-q {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #f9fafb;
}

.faq-cta {
  margin-top: 6px;
}

.contact-card {
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, 0.45), transparent 60%),
    rgba(15, 23, 42, 0.98);
  padding: 12px;
  color: #e5e7eb;
  box-shadow: var(--shadow-sm);
}

.contact-card p {
  font-size: 12px;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.contact-meta {
  font-size: 11px;
  color: var(--muted);
}

.contact-meta span {
  display: block;
}

.footer-strip {
  margin-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.75);
  padding-top: 10px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .intro,
  .about-grid,
  .two-col,
  .ceremony-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-actions {
    align-items: flex-start;
  }

  .micro-copy {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-inner {
    padding-inline: 14px;
  }

  .nav-anchors {
    width: 100%;
  }

  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 14px 12px 16px;
  }

  .right-brand img {
    height: 28px;
  }
}

@media (max-width: 520px) {
  .criteria-grid,
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-anchors {
    overflow-x: auto;
  }
}
