:root,
[data-theme="dark"] {
  --bg-base: #0a0b1e;
  --bg-surface: #131e3a;
  --bg-elevated: #101a34;
  --text-primary: #f4f4f5;
  --text-secondary: #a7b0c0;
  --text-muted: #8e98a9;
  --border: #2a3b63;
  --electric-blue: #12a4ff;
  --vibrant-pink: #ff5ccc;
  --green: #22c55e;
  --amber: #f59e0b;
}

[data-theme="light"] {
  --bg-base: #ffffff;
  --bg-surface: #f0f4f8;
  --bg-elevated: #ffffff;
  --text-primary: #1a1a2e;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: #e2e8f0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
}

@media (min-width: 600px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 80px;
  }
}

.page-shell {
  min-height: 100vh;
}

.navbar {
  background: var(--bg-base);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  align-items: center;
  display: flex;
  height: 64px;
  justify-content: space-between;
}

.navbar-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.navbar-brand img {
  display: block;
  flex-shrink: 0;
  height: 28px;
  object-fit: contain;
  width: auto;
}

.navbar-brand span {
  background: linear-gradient(90deg, var(--vibrant-pink), var(--electric-blue));
  background-clip: text;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-links {
  align-items: center;
  display: none;
  gap: 24px;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
}

.navbar-right {
  align-items: center;
  display: flex;
  gap: 16px;
}

.theme-toggle,
.hamburger {
  align-items: center;
  border-radius: 8px;
  display: flex;
  font-size: 18px;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.theme-toggle:hover,
.hamburger:hover {
  background: rgba(42, 59, 99, 0.35);
}

.mobile-menu {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  display: none;
  left: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 16px 20px;
  position: fixed;
  right: 0;
  top: 64px;
  z-index: 140;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  color: var(--text-secondary);
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}

.mobile-menu hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }

  .hamburger,
  .mobile-menu {
    display: none !important;
  }
}

.btn-gradient,
.btn-outline {
  border-radius: 12px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 13px 24px;
}

.btn-gradient {
  background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-pink));
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-gradient:hover {
  box-shadow: 0 4px 20px rgba(18, 164, 255, 0.35);
}

.btn-outline:hover {
  background: var(--bg-surface);
}

.hero-page {
  padding: 54px 0 48px;
}

.hero-page__eyebrow {
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero-page__title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 820px;
}

.hero-page__sub {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 760px;
}

.hero-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.section {
  padding: 84px 0;
}

.section--surface {
  background: var(--bg-surface);
}

.section-label {
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 720px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--text-secondary);
  font-size: 15px;
}

.card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 14px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill {
  background: rgba(18, 164, 255, 0.12);
  border: 1px solid rgba(18, 164, 255, 0.3);
  border-radius: 999px;
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.step-row {
  align-items: flex-start;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  grid-template-columns: 56px 1fr;
  padding: 22px;
}

.step-num {
  align-items: center;
  background: linear-gradient(135deg, rgba(18, 164, 255, 0.15), rgba(255, 92, 204, 0.12));
  border: 1px solid rgba(18, 164, 255, 0.28);
  border-radius: 14px;
  color: var(--electric-blue);
  display: flex;
  font-size: 18px;
  font-weight: 800;
  height: 56px;
  justify-content: center;
}

.step-copy h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.split {
  display: grid;
  gap: 32px;
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.quote {
  border-left: 3px solid var(--electric-blue);
  color: var(--text-secondary);
  font-size: 18px;
  margin-top: 26px;
  max-width: 760px;
  padding-left: 18px;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

@media (min-width: 980px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(18, 164, 255, 0.45);
  box-shadow: 0 10px 30px rgba(18, 164, 255, 0.08);
}

.pricing-card__tag {
  background: rgba(18, 164, 255, 0.12);
  border: 1px solid rgba(18, 164, 255, 0.3);
  border-radius: 999px;
  color: var(--electric-blue);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  padding: 7px 12px;
  text-transform: uppercase;
}

.pricing-card__price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
  margin: 16px 0 10px;
}

.pricing-card__price small {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}

.pricing-card li {
  color: var(--text-secondary);
  font-size: 15px;
}

.table-wrap {
  margin-top: 32px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
}

td {
  color: var(--text-secondary);
  font-size: 15px;
}

.list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin-top: 18px;
}

.list li {
  color: var(--text-secondary);
  font-size: 15px;
}

.post-list {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.post-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}

.post-meta {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.event-stack {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.event-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.event-item__meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.recap-hero-media {
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
}

.recap-hero-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.recap-snapshot {
  align-items: start;
}

.recap-gallery {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.recap-gallery img {
  border: 1px solid var(--border);
  border-radius: 22px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.recap-gallery--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recap-gallery--mosaic {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.recap-gallery--mosaic img:nth-child(1) {
  aspect-ratio: 16 / 10;
  grid-column: span 7;
}

.recap-gallery--mosaic img:nth-child(2) {
  aspect-ratio: 4 / 5;
  grid-column: span 5;
}

.recap-gallery--mosaic img:nth-child(3) {
  aspect-ratio: 4 / 5;
  grid-column: span 4;
}

.recap-gallery--mosaic img:nth-child(4) {
  aspect-ratio: 16 / 10;
  grid-column: span 4;
}

.recap-gallery--mosaic img:nth-child(5) {
  aspect-ratio: 16 / 10;
  grid-column: span 4;
}

.recap-gallery--tight {
  gap: 14px;
  margin-top: 0;
}

.event-visuals-card {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.event-visuals-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.event-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}

.event-visual img {
  border: 0;
  border-radius: 14px;
  height: auto;
  max-height: none;
  min-height: 0;
  object-fit: contain;
  width: 100%;
}

@media (min-width: 960px) {
  .recap-snapshot--event {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

  .event-visuals-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .recap-gallery--two,
  .recap-gallery--three,
  .recap-gallery--mosaic {
    grid-template-columns: 1fr;
  }

  .recap-gallery--mosaic img:nth-child(n) {
    aspect-ratio: 16 / 10;
    grid-column: auto;
  }

  .event-visuals-grid { grid-template-columns: 1fr; }
}
