@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;700;800;900&family=Permanent+Marker&display=swap");

:root {
  --black: #030405;
  --panel: #07090b;
  --white: #f6f6f4;
  --muted: #c9d0d8;
  --line: rgba(255, 255, 255, 0.26);
  --blue: #0751d8;
  --blue-dark: #003db0;
  --gold: #ffc400;
  --gold-dark: #d69d00;
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-script: "Permanent Marker", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(250px, 360px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 21px 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.brand img {
  width: 106px;
  height: 106px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.6));
}

.brand-copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand-copy em {
  color: var(--gold);
  font-style: normal;
}

.brand-copy small,
.script {
  display: block;
  color: #1670ff;
  font-family: var(--font-script);
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 28px);
  align-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  white-space: nowrap;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 4px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: #060606;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 635px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #030405 0%, rgba(3, 4, 5, 0.9) 21%, rgba(3, 4, 5, 0.26) 52%, rgba(3, 4, 5, 0.1) 100%),
    linear-gradient(0deg, #030405 0%, rgba(3, 4, 5, 0) 32%),
    url("assets/hero-huddle.png") right center / cover no-repeat;
  z-index: -1;
}

.hero-content {
  max-width: 490px;
  padding: 190px 0 45px 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0;
}

.hero h1,
.about-copy h2,
.community h2,
.welcome-title h2,
.session-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(70px, 8vw, 96px);
  line-height: 0.91;
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
}

.hero h1 span,
.gold,
.together b,
.gold-copy,
.marker,
.footer-callout strong {
  color: var(--gold);
}

.hero-copy {
  max-width: 380px;
  margin: 24px 0 22px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-width: 176px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.session-link:hover {
  transform: translateY(-2px);
}

.button-blue {
  background: linear-gradient(135deg, #0649c5, #0d5cff);
  box-shadow: 0 12px 24px rgba(0, 62, 185, 0.24);
}

.button-outline {
  border: 2px solid var(--gold);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 196, 0, 0.12);
}

.button-gold {
  min-width: 172px;
  background: var(--gold);
  color: #070707;
}

.button svg,
.session-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.small {
  min-width: 214px;
  height: 44px;
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background:
    radial-gradient(circle at 70% 50%, rgba(0, 82, 255, 0.08), transparent 31%),
    #030405;
}

.stats article {
  min-height: 138px;
  padding: 24px 24px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 400;
  line-height: 0.83;
}

.stats .blue,
.place b {
  color: #0754df;
}

.stats span,
.stats small {
  display: block;
  text-transform: uppercase;
}

.stats span {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 0.9;
}

.stats small {
  margin-top: 7px;
  font-size: 14px;
}

.stats .place,
.stats .together {
  font-size: clamp(34px, 4vw, 47px);
  line-height: 0.89;
}

.stats .place {
  text-transform: uppercase;
}

.stats .place span {
  display: block;
}

.stats .place span:first-child {
  color: var(--white);
}

.stats .place span:last-child {
  color: #0754df;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 54%) minmax(350px, 46%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.about-image {
  min-height: 326px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  display: flex;
  min-height: 326px;
  flex-direction: column;
  justify-content: center;
  padding: 42px 56px;
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.82), #030405 28%),
    radial-gradient(circle at 85% 20%, rgba(0, 83, 214, 0.2), transparent 28%);
}

.about-copy h2 {
  margin-top: 12px;
  padding-bottom: 12px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
  position: relative;
}

.about-copy h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 164px;
  height: 6px;
  background: var(--blue);
  content: "";
  box-shadow: 20px 8px 0 -3px rgba(255, 196, 0, 0.98);
}

.about-copy p {
  max-width: 540px;
  margin: 11px 0 0;
  font-size: 17px;
}

.community {
  padding: 24px 30px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: #030405;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.community h2 {
  font-size: clamp(38px, 4vw, 48px);
  line-height: 0.9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.2fr 1.1fr 0.95fr 0.95fr;
  grid-auto-rows: 112px;
  gap: 6px;
}

.tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile.tall {
  grid-row: span 2;
}

.tile.wide {
  grid-column: span 2;
}

.badge-tile {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.3)),
    url("assets/hero-huddle.png") center / cover;
}

.badge-tile img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.badge-tile figcaption {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 0.95;
  text-transform: uppercase;
}

.welcome-session {
  display: grid;
  grid-template-columns: minmax(0, 57%) minmax(380px, 43%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.welcome-block {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 42px;
  align-items: center;
  min-height: 252px;
  padding: 26px 34px;
  background:
    linear-gradient(90deg, #030405, #080a0d),
    radial-gradient(circle at 10% 90%, rgba(255, 196, 0, 0.14), transparent 24%);
}

.welcome-title {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  padding-right: 34px;
}

.welcome-title h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.95;
}

.welcome-title .script {
  margin-top: 12px;
}

.paint-stroke {
  display: block;
  width: 196px;
  height: 10px;
  margin-top: 17px;
  background: linear-gradient(100deg, var(--gold), transparent 92%);
  clip-path: polygon(0 42%, 100% 0, 94% 64%, 4% 100%);
}

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

.welcome-list li {
  position: relative;
  padding-left: 42px;
  font-size: 17px;
}

.welcome-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #1670ff;
  border-radius: 999px;
  color: #1670ff;
  content: "";
}

.welcome-list li::after {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #1670ff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.marker {
  grid-column: 2;
  margin: -5px 0 0;
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 35px);
  line-height: 1;
  text-transform: uppercase;
}

.session-card {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  min-height: 252px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 196, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #064fcf, #0038ac 58%, #03266f);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.session-content {
  padding: 25px 22px 22px 28px;
}

.session-card h2 {
  font-size: 40px;
  line-height: 0.9;
  white-space: nowrap;
}

.session-link,
.session-detail {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 13px;
  color: var(--white);
}

.session-link {
  border-radius: 4px;
  padding: 6px 7px 6px 0;
  transition: transform 160ms ease, background 160ms ease;
}

.session-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.session-link svg,
.session-detail svg {
  color: var(--gold);
}

.session-link span,
.session-detail span {
  font-size: 15px;
  line-height: 1.2;
}

.session-link strong {
  font-weight: 800;
}

.session-detail {
  margin-bottom: 0;
}

.contact-panel {
  padding: 48px 28px 24px;
}

.contact-panel p {
  margin: 21px 0 18px;
  font-size: 15px;
  line-height: 1.3;
}

.news-strip {
  display: none;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.75fr) minmax(340px, 1.15fr);
  gap: 34px;
  padding: 25px 34px 28px;
  background:
    radial-gradient(circle at 100% 100%, rgba(0, 82, 255, 0.5), transparent 18%),
    radial-gradient(circle at 98% 25%, rgba(255, 196, 0, 0.32), transparent 15%),
    #030405;
  overflow: hidden;
}

.site-footer::after {
  position: absolute;
  right: -74px;
  bottom: -96px;
  width: 330px;
  height: 240px;
  background:
    linear-gradient(140deg, transparent 36%, rgba(255, 196, 0, 0.9) 37% 38%, transparent 39% 42%, rgba(0, 82, 255, 0.9) 43% 44%, transparent 45%),
    radial-gradient(circle, rgba(255, 196, 0, 0.7) 1px, transparent 2px);
  background-size: auto, 14px 14px;
  content: "";
  opacity: 0.9;
  transform: rotate(-11deg);
}

.footer-about,
.footer-links,
.footer-callout,
.copyright {
  position: relative;
  z-index: 1;
}

.footer-about {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
  align-items: center;
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-about img {
  width: 98px;
}

.footer-about p {
  margin: 0;
  max-width: 390px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 28px;
  align-content: center;
  font-size: 14px;
}

.footer-links strong {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-callout {
  align-content: center;
  display: grid;
  justify-content: start;
}

.footer-callout p,
.footer-callout span,
.footer-callout strong {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.06;
  text-transform: uppercase;
}

.footer-callout span {
  color: #1670ff;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: -8px;
  text-align: center;
  color: #9aa3ad;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-socials {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-left: 128px;
  }

  .hero-content {
    padding-top: 210px;
  }

  .welcome-session,
  .about-split,
  .session-card {
    grid-template-columns: 1fr;
  }

  .session-card h2 {
    white-space: normal;
  }

  .session-card {
    border-left: 0;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: fixed;
    grid-template-columns: 1fr auto;
    padding: 24px 24px 0;
    background: linear-gradient(180deg, rgba(3, 4, 5, 0.86), rgba(3, 4, 5, 0));
  }

  .brand {
    width: max-content;
    gap: 0;
  }

  .brand img {
    width: 86px;
    height: 86px;
  }

  .brand-copy {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: 34px;
    right: 24px;
    left: auto;
    z-index: 45;
    display: block;
    width: 44px;
    height: 44px;
    margin-top: 0;
    padding: 7px;
    border: 0;
    background: transparent;
  }

  .main-nav {
    position: fixed;
    z-index: 40;
    top: 88px;
    right: 22px;
    left: auto;
    display: none;
    width: min(268px, calc(100vw - 44px));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background:
      radial-gradient(circle at 100% 0%, rgba(0, 82, 255, 0.28), transparent 45%),
      #030405;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.48);
    font-size: 21px;
    white-space: nowrap;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.active {
    color: var(--gold);
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 34px;
    right: 24px;
    left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 1;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: none;
  }

  .hero {
    min-height: 742px;
  }

  .hero-media {
    background:
      linear-gradient(0deg, #030405 0%, rgba(3, 4, 5, 0.78) 26%, rgba(3, 4, 5, 0.18) 58%, rgba(3, 4, 5, 0.5) 100%),
      url("assets/hero-huddle.png") 57% top / auto 430px no-repeat,
      #030405;
  }

  .hero-content {
    padding: 310px 24px 34px;
  }

  .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 74px);
    line-height: 0.92;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .stats article {
    min-width: 0;
    min-height: 162px;
    padding: 34px 16px 28px;
  }

  .stats article:nth-child(even) {
    border-right: 0;
  }

  .stats article:nth-child(5) {
    display: none;
  }

  .about-split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-copy {
    order: 1;
    min-width: 0;
    min-height: 0;
    padding: 42px 26px 34px;
    background: #030405;
  }

  .about-copy h2 {
    font-size: 48px;
  }

  .about-image {
    order: 2;
    min-height: 270px;
  }

  .community {
    padding: 28px 22px 34px;
    overflow: hidden;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    margin-bottom: 22px;
  }

  .section-heading > div::after {
    display: block;
    width: 38px;
    height: 3px;
    margin-top: 14px;
    background: var(--blue);
    content: "";
  }

  .community .script {
    max-width: 290px;
    font-size: 16px;
    line-height: 1.28;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 146px;
    gap: 5px;
  }

  .tile.tall,
  .tile.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .welcome-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 44px 28px 38px;
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 196, 0, 0.12), transparent 26%),
      linear-gradient(145deg, #0756dc, #003596 72%);
  }

  .welcome-title {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .welcome-title h2 {
    font-size: 46px;
  }

  .welcome-list {
    gap: 18px;
  }

  .marker {
    grid-column: auto;
  }

  .session-card {
    display: block;
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 196, 0, 0.13), transparent 28%),
      linear-gradient(145deg, #0756dc, #003596 72%);
  }

  .session-content {
    padding: 44px 30px 8px;
  }

  .session-card h2 {
    font-size: 47px;
  }

  .session-link,
  .session-detail {
    grid-template-columns: 34px 1fr;
    gap: 18px;
    margin-top: 22px;
  }

  .contact-panel {
    padding: 18px 30px 42px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 650px;
    padding: 72px 34px 42px;
    text-align: center;
  }

  .footer-about {
    order: 1;
    display: flex;
    justify-content: center;
    border-right: 0;
    padding-right: 0;
  }

  .footer-about img {
    width: 170px;
  }

  .footer-about p {
    display: none;
  }

  .footer-callout {
    order: 2;
    justify-content: center;
  }

  .footer-links {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 13px;
    font-size: 17px;
  }

  .footer-links strong {
    display: none;
  }

  .copyright {
    order: 4;
    margin-top: 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 64px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .stats article {
    border-right: 0;
  }

  .stats article:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stats strong {
    font-size: 52px;
  }

  .stats .place,
  .stats .together {
    font-size: 35px;
  }

  .stats span {
    font-size: 24px;
  }

  .stats small {
    font-size: 12px;
  }

  .about-copy {
    padding: 34px 22px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 132px;
  }

  .badge-tile {
    min-height: 132px;
  }

  .session-card {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    padding-top: 10px;
  }

  .footer-about {
    grid-template-columns: 74px 1fr;
    gap: 16px;
  }

  .footer-about img {
    width: 74px;
  }
}
