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

:root {
  --bg: #020617;
  --bg-alt: #020617;
  --card: #020617;
  --card-alt: #020617;
  --border-subtle: #1e293b;
  --accent: #eab308;
  --accent-soft: rgba(234, 179, 8, 0.15);
  --accent-strong: #facc15;
  --text-main: #e5e7eb;
  --text-soft: #9ca3af;
  --text-muted: #6b7280;
  --chip-bg: rgba(148, 163, 184, 0.12);
  --btn-bg: #f97316;
  --btn-bg-hover: #fb923c;
  --btn-ghost: rgba(15, 23, 42, 0.8);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.6);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.7);
  --transition-fast: 180ms ease-out;
  --transition-med: 220ms ease;
}

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 45%, #000000 100%);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.86));
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.75rem;
  border-radius: 999px;
  background: radial-gradient(circle at 10% 0, #22c55e, #0ea5e9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0b1120;
}

.logo-text {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  font-size: 0.82rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-soft);
  padding: 0.35rem 0.4rem;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
  color: var(--accent-strong);
  background: rgba(15, 23, 42, 0.9);
  transform: translateY(-1px);
}

.hero {
  padding: 2.8rem 0 2.4rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-soft);
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), color var(--transition-med), border-color var(--transition-med), transform var(--transition-fast), box-shadow var(--transition-med);
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-color: rgba(248, 250, 252, 0.06);
  color: #020617;
  box-shadow: 0 14px 36px rgba(248, 113, 22, 0.4);
}

.btn.primary:hover {
  background: linear-gradient(135deg, #fb923c, #f97316);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(248, 113, 22, 0.55);
}

.btn.ghost {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text-main);
}

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

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.hero-tags span {
  font-size: 0.7rem;
  padding: 0.33rem 0.7rem;
  border-radius: 999px;
  background: var(--chip-bg);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 0 0, rgba(234, 179, 8, 0.12), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(250, 204, 21, 0.4);
  box-shadow: var(--shadow-card);
  padding: 1.5rem 1.6rem;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.key-dates-list {
  list-style: none;
  font-size: 0.9rem;
}

.key-dates-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}

.key-dates-list li:last-child {
  border-bottom: none;
}

.small-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.section {
  padding: 2.4rem 0;
}

.section-alt {
  background: radial-gradient(circle at top center, rgba(15, 23, 42, 0.85), #020617);
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.section-intro {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: flex-start;
}

.info-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.bullet-list {
  list-style: none;
  margin-top: 0.4rem;
  color: var(--text-soft);
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 0.38rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent-strong), var(--accent));
}

.bullet-list.tight li {
  margin-bottom: 0.28rem;
}

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

.cat-card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.05rem 1.1rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.cat-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
}

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

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
  border-color: rgba(250, 204, 21, 0.6);
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.2), rgba(15, 23, 42, 0.98));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.timeline-item {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.timeline-item h3 {
  font-size: 0.96rem;
  margin-bottom: 0.25rem;
}

.timeline-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(15, 23, 42, 1);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.numbered-list {
  list-style: none;
  counter-reset: step;
  margin-top: 0.4rem;
}

.numbered-list li {
  counter-increment: step;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.numbered-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  color: var(--accent-strong);
}

.form-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 1.3rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}

label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

input,
select,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(250, 204, 21, 0.9);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.5);
  background: rgba(15, 23, 42, 1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkbox input {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 0.3rem;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 1px solid rgba(30, 64, 175, 0.5);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
  padding: 1.6rem 0 1.4rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-brand {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Blog & nominees layout */

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.blog-layout {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.post-card {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.post-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.post-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.post-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.post-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.share-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.share-link {
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--accent-strong);
}

.share-link:hover {
  text-decoration: underline;
}

.nominee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.1rem;
}

.nominee-card {
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.nominee-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.nominee-name {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.nominee-bio {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.nominee-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.nominee-meta a {
  color: var(--accent-strong);
  text-decoration: none;
}

.nominee-meta a:hover {
  text-decoration: underline;
}

.nominee-actions {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero-inner,
  .two-col,
  .timeline,
  .grid-3,
  .form-grid,
  .nominee-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.1rem;
  }

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

  .main-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-card {
    margin-top: 0.4rem;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .post-card {
    padding: 1.1rem 1.1rem;
  }
}
