:root {
  --ink: #151221;
  --paper: #fff8ec;
  --pink: #d7357d;
  --rose: #ff8a7a;
  --yellow: #ebe83d;
  --teal: #44c4c8;
  --blue: #23326f;
  --green: #1d7f65;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.top-strip,
.feature-marquee {
  overflow: hidden;
  background: #050505;
  color: white;
  border-bottom: var(--line);
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 34px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--teal);
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(16px, 4vw, 44px);
  background: rgba(255, 248, 236, 0.95);
  border-bottom: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  color: white;
  background: var(--pink);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 15px;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  font-weight: 850;
}

.desktop-nav a {
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  border-color: var(--pink);
}

.header-cta,
.hero-cta,
.final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: white;
  background: var(--pink);
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
}

.header-cta::after,
.hero-cta::after,
.final-cta a::after {
  content: " ->";
  margin-left: 6px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  background: white;
  border: var(--line);
}

.menu-button span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  padding: clamp(34px, 6vw, 70px) clamp(14px, 4vw, 42px) 0;
  overflow: hidden;
  background:
    linear-gradient(transparent 94%, rgba(21, 18, 33, 0.16) 95%),
    linear-gradient(90deg, transparent 94%, rgba(21, 18, 33, 0.16) 95%),
    var(--teal);
  background-size: 28px 28px;
  border-bottom: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(58px, 12vw, 144px);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 rgba(255, 255, 255, 0.7), 8px 8px 0 var(--pink);
}

h1 span {
  display: inline-block;
  color: white;
  -webkit-text-stroke: 3px var(--pink);
  text-shadow: 6px 6px 0 var(--blue);
}

.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun {
  position: absolute;
  top: 14%;
  right: 12%;
  width: clamp(82px, 12vw, 150px);
  aspect-ratio: 1;
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.palace {
  position: absolute;
  left: 8%;
  bottom: 28%;
  display: grid;
  grid-template-columns: repeat(5, 42px);
  gap: 8px;
  align-items: end;
  padding: 16px 18px;
  background: var(--rose);
  border: var(--line);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.palace span {
  display: block;
  height: 82px;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 26px 26px 0 0;
}

.palace span:nth-child(2),
.palace span:nth-child(4) {
  height: 112px;
}

.palace span:nth-child(3) {
  height: 142px;
}

.chip {
  position: absolute;
  display: grid;
  place-items: center;
  width: 68px;
  height: 58px;
  background: white;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 950;
}

.chip-one {
  top: 31%;
  left: 16%;
}

.chip-two {
  right: 20%;
  bottom: 34%;
  background: var(--yellow);
}

.orbit {
  position: absolute;
  right: 8%;
  top: 44%;
  width: 108px;
  height: 108px;
  border: 4px dashed var(--blue);
  border-radius: 50%;
  transform: rotate(18deg);
}

.event-panel {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: clamp(54px, 9vh, 96px) auto 0;
  background: var(--yellow);
  border: var(--line);
  box-shadow: 0 -9px 0 #050505;
  text-align: center;
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  color: white;
  background: #050505;
  font-weight: 950;
  text-transform: uppercase;
}

.countdown span {
  width: 100%;
  padding-top: 5px;
  font-size: 12px;
}

.countdown strong {
  color: var(--yellow);
  font-size: 22px;
}

.countdown small {
  margin-right: 8px;
  font-weight: 950;
}

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  text-align: left;
  border-top: var(--line);
  border-bottom: var(--line);
}

.event-meta div {
  padding: 22px clamp(18px, 4vw, 44px);
}

.event-meta div + div {
  border-left: var(--line);
}

.event-meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-meta strong {
  display: block;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.event-panel .hero-cta {
  width: calc(100% - 36px);
  margin: 18px;
  background: var(--pink);
}

.event-panel p {
  margin: -6px 0 18px;
  font-size: 13px;
  font-weight: 800;
}

.band,
.section,
.partners,
.stats,
.final-cta {
  padding: clamp(56px, 8vw, 104px) clamp(16px, 5vw, 64px);
}

.announcement,
.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--paper);
  border-bottom: var(--line);
}

.announcement figure,
.city-card {
  margin: 0;
  border: var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: white;
}

.announcement img,
.city-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 74px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.announcement p:not(.eyebrow),
.split p:not(.eyebrow),
.final-cta p {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}

.partners {
  background: var(--blue);
  color: white;
  border-bottom: var(--line);
}

.partners .eyebrow {
  color: var(--yellow);
}

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

.partner-grid div {
  min-height: 138px;
  padding: 18px;
  background: white;
  color: var(--ink);
  border: var(--line);
  box-shadow: 5px 5px 0 #050505;
}

.partner-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.partner-grid strong {
  display: block;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.feature-marquee {
  background: var(--pink);
}

.feature-marquee .ticker span {
  min-height: 58px;
  font-size: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1.3fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 900px;
}

.speaker-grid,
.agenda-grid,
.showcase-grid,
.stats-grid,
.event-card-grid {
  display: grid;
  gap: 18px;
}

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

.speaker-grid article,
.agenda-grid article,
.showcase-grid article,
.event-card {
  background: white;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
}

.speaker-grid article {
  min-height: 250px;
  padding: 18px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  margin-bottom: 16px;
  color: white;
  background:
    radial-gradient(circle at 72% 26%, var(--yellow) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--pink), var(--blue));
  border: var(--line);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
}

.speaker-grid h3,
.agenda-grid h3,
.showcase-grid h3,
.event-card h3 {
  margin-bottom: 7px;
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}

.speaker-grid p,
.agenda-grid p,
.showcase-grid p,
.event-card p {
  margin-bottom: 0;
  font-weight: 700;
}

.latest-events {
  background: var(--paper);
  border-bottom: var(--line);
}

.event-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.event-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 22px;
}

.event-type {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: white;
  background: var(--blue);
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0;
}

.event-card dt {
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-card dd {
  margin: 2px 0 0;
  font-weight: 900;
  line-height: 1.15;
}

.card-link,
.section-link,
.detail-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  margin-top: auto;
  color: var(--ink);
  background: var(--yellow);
  border: var(--line);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 950;
}

.card-link::after,
.section-link::after,
.detail-hero-cta::after {
  content: " ->";
  margin-left: 6px;
}

.section-link {
  margin-top: 26px;
}

.page-hero,
.detail-hero {
  padding: clamp(58px, 8vw, 112px) clamp(16px, 5vw, 64px);
  background:
    linear-gradient(transparent 94%, rgba(21, 18, 33, 0.16) 95%),
    linear-gradient(90deg, transparent 94%, rgba(21, 18, 33, 0.16) 95%),
    var(--teal);
  background-size: 28px 28px;
  border-bottom: var(--line);
}

.page-hero h1,
.detail-hero h1 {
  max-width: 1120px;
  font-size: clamp(52px, 10vw, 132px);
}

.page-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
  max-width: 850px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
}

.event-filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.event-filter-strip span {
  padding: 8px 11px;
  background: white;
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.detail-panel,
.detail-card,
.timeline li {
  background: white;
  border: var(--line);
  box-shadow: 5px 5px 0 var(--ink);
}

.detail-panel {
  padding: 22px;
}

.detail-panel dl {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.detail-panel dt {
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 2px 0 0;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.85fr);
  gap: 24px;
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 64px);
  background: var(--paper);
}

.detail-card {
  padding: 24px;
}

.detail-card + .detail-card,
.timeline + .detail-card {
  margin-top: 18px;
}

.detail-card h2,
.detail-card h3 {
  font-size: clamp(28px, 4vw, 46px);
}

.detail-card p,
.detail-card li {
  font-size: 17px;
  font-weight: 750;
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 18px;
}

.timeline time {
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-bottom: 4px;
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
}

.map-box {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(transparent 90%, rgba(21, 18, 33, 0.15) 91%),
    linear-gradient(90deg, transparent 90%, rgba(21, 18, 33, 0.15) 91%),
    var(--yellow);
  background-size: 24px 24px;
  border: var(--line);
  font-size: 24px;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.agenda {
  background: #f7a6a0;
  border-block: var(--line);
}

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

.agenda-grid article,
.showcase-grid article {
  min-height: 250px;
  padding: 24px;
}

.agenda-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  color: white;
  background: var(--blue);
  border: 2px solid var(--ink);
  font-weight: 950;
  text-transform: uppercase;
}

.split {
  background: var(--yellow);
}

.stats {
  background: var(--green);
  color: white;
  border-bottom: var(--line);
}

.stats .eyebrow {
  color: var(--yellow);
}

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

.stats-grid div {
  min-height: 138px;
  padding: 16px;
  background: #fff8ec;
  color: var(--ink);
  border: var(--line);
}

.stats-grid strong {
  display: block;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 0.96;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.faq {
  background: var(--blue);
  color: white;
  border-top: var(--line);
  border-bottom: var(--line);
}

.faq .eyebrow {
  color: var(--yellow);
}

details {
  max-width: 980px;
  margin: 0 0 14px auto;
  background: white;
  color: var(--ink);
  border: var(--line);
  box-shadow: 5px 5px 0 #050505;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  font-weight: 700;
}

.final-cta {
  min-height: 70vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    linear-gradient(rgba(21, 18, 33, 0.28), rgba(21, 18, 33, 0.28)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Hawa%20Mahal%20in%20Jaipur%2C%20Rajasthan.jpg?width=1600")
      center / cover;
  color: white;
  border-bottom: var(--line);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.final-cta h2 {
  max-width: 980px;
  text-shadow: 5px 5px 0 var(--ink);
}

.final-cta a {
  margin: 8px 0 12px;
  background: var(--yellow);
  color: var(--ink);
}

.final-cta small {
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(16px, 5vw, 64px);
  background: #050505;
  color: white;
}

footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    justify-self: end;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav.open {
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    z-index: 19;
    display: grid;
    gap: 0;
    background: var(--paper);
    border-bottom: var(--line);
  }

  .mobile-nav a {
    padding: 16px 22px;
    border-top: 2px solid var(--ink);
    font-weight: 950;
  }

  .speaker-grid,
  .showcase-grid,
  .event-card-grid,
  .events-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .palace {
    left: 2%;
    opacity: 0.8;
    transform: scale(0.78) rotate(-4deg);
    transform-origin: left bottom;
  }
}

@media (max-width: 760px) {
  .top-strip .ticker span {
    min-height: 28px;
    font-size: 11px;
  }

  .site-header {
    top: 0;
    min-height: 70px;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 44px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .mobile-nav.open {
    top: 98px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(54px, 19vw, 92px);
    text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.72), 5px 5px 0 var(--pink);
  }

  h1 span {
    -webkit-text-stroke-width: 2px;
  }

  .sun,
  .orbit,
  .chip {
    opacity: 0.55;
  }

  .palace {
    display: none;
  }

  .event-panel {
    margin-top: 42px;
  }

  .event-meta,
  .announcement,
  .split,
  .section-heading,
  .detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .event-meta div + div {
    border-left: 0;
    border-top: var(--line);
  }

  .partner-grid,
  .agenda-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .speaker-grid,
  .showcase-grid,
  .event-card-grid,
  .events-page-grid {
    grid-template-columns: 1fr;
  }

  .event-card dl,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 6px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
