/* ============================================================
   FONTS
   ============================================================ */

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Light.woff2') format('woff2'),
       url('assets/fonts/Gilroy-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Regular.woff2') format('woff2'),
       url('assets/fonts/Gilroy-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-SemiBold.woff2') format('woff2'),
       url('assets/fonts/Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Bold.woff2') format('woff2'),
       url('assets/fonts/Gilroy-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-ExtraBold.woff2') format('woff2'),
       url('assets/fonts/Gilroy-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('assets/fonts/Gilroy-Black.woff2') format('woff2'),
       url('assets/fonts/Gilroy-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  --navy:       #0b0d1b;
  --navy-2:     #2c3162;
  --cream:      #f4f3ed;
  --gold:       #cca84e;
  --gold-dark:  #b8922f;
  --blue:       #a0e0ef;
  --taupe:      #c2b8ab;

  --font: 'Gilroy', system-ui, sans-serif;
  --outer-margin: 195px;
  --ease: 220ms ease-out;
}

/* ============================================================
   RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 32px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 243, 237, 0.45);
}

.btn--outline-cream:hover {
  border-color: var(--cream);
}

/* ============================================================
   LABELS
   ============================================================ */

.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.label--gold {
  color: var(--gold);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px max(80px, calc((100vw - 1280px) / 2));
  background: var(--navy);
  border-bottom: 1px solid rgba(44, 49, 98, 0.5);
}

.nav__logo img {
  height: 44px;
  width: auto;
}

.nav__cta {
  height: 44px;
  padding: 0 32px;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 148px max(80px, calc((100vw - 1280px) / 2)) 120px;
  background-image: url('assets/images/miami-bg.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 13, 27, 0.72) 0%,
    rgba(11, 13, 27, 0.60) 35%,
    rgba(11, 13, 27, 0.82) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__tick {
  width: 1px;
  height: 60px;
  background: rgba(244, 243, 237, 0.25);
  margin-bottom: 40px;
}

.hero__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero__logo {
  width: 444px;
  max-width: 75vw;
  height: auto;
  margin-bottom: 30px;
}

.hero__rule {
  width: 280px;
  max-width: 55vw;
  height: 1px;
  background: var(--blue);
  margin-bottom: 40px;
}

.hero__tagline {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cream);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  padding: 120px max(var(--outer-margin), calc((100vw - 1050px) / 2));
  background: var(--navy);
}

.about__left {
  flex: 1 1 0%;
}

.about__left .label {
  margin-bottom: 48px;
}

.about__headline {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 32px;
}

.about__rule {
  width: 48px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 32px;
}

.about__body {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--taupe);
}

.about__stats {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.stat__number {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 10px;
}

.stat--gold .stat__number {
  color: var(--gold);
}

.stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ============================================================
   EXPECT
   ============================================================ */

.expect {
  display: flex;
  align-items: stretch;
  background: #12152a;
}

.expect__left {
  flex: 2 0 0%;
  padding: 96px 95px 96px max(var(--outer-margin), calc((100vw - 1050px) / 2));
}

.expect__left .label {
  margin-bottom: 56px;
}

.expect__divider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(244, 243, 237, 0.12);
  margin: 64px 0;
}

.expect__right {
  flex: 1 0 0%;
  padding: 96px max(var(--outer-margin), calc((100vw - 1050px) / 2)) 96px 95px;
}

.expect__right .label {
  margin-bottom: 56px;
}

.expect__list li {
  font-size: 18px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  padding: 24px 0 24px 20px;
  position: relative;
  border-bottom: 1px solid rgba(244, 243, 237, 0.1);
}

.expect__list li:first-child {
  border-top: 1px solid rgba(244, 243, 237, 0.1);
}

.expect__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1.4;
}

.expect__list--strike li {
  font-weight: 400;
  color: var(--cream);
}

/* ============================================================
   GET INVOLVED
   ============================================================ */

.involved {
  padding: 120px max(80px, calc((100vw - 1280px) / 2));
  background: var(--navy);
}

.involved > .label {
  margin-bottom: 48px;
}

.involved__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 40px;
  background: #12152a;
  transition: transform var(--ease);
}

@media (hover: hover) {
  .card:hover {
    transform: translateY(-10px);
  }
}

.card__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card--gold {
  background: var(--gold);
}

.card--gold:hover {
  transform: translateY(-10px);
}

.card--gold .card__tag {
  color: rgba(11, 13, 27, 0.6);
}

.card--gold .card__title {
  color: var(--navy);
}

.card--gold .card__body {
  color: rgba(11, 13, 27, 0.75);
}

.card--gold .card__cta {
  color: var(--navy);
}

.card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.card__title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--cream);
}

.card--gold .card__title {
  color: var(--navy);
}

.card__body {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--taupe);
}

.card--gold .card__body {
  color: rgba(11, 13, 27, 0.75);
}

.card__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
}

.card__cta::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Per-card overrides */
.involved__grid > a:nth-child(3) {
  background: #1a1f3a;
}

.involved__grid > a:nth-child(4) {
  background: #0f1120;
  border: 1px solid var(--navy-2);
}

.involved__grid > a:nth-child(2) .card__tag {
  color: var(--blue);
}

.involved__grid > a:nth-child(4) .card__tag {
  color: var(--taupe);
}

.involved__grid > a:nth-child(2) .card__cta {
  color: var(--blue);
}

.involved__grid > a:nth-child(3) .card__cta {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 max(40px, calc((100vw - 1360px) / 2));
  background: var(--navy);
  border-top: 1px solid rgba(44, 49, 98, 0.5);
}

.footer__logo {
  height: 28px;
  width: auto;
}

.footer__meta {
  font-size: 13px;
  font-weight: 400;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--ease);
}

.footer__links a:nth-child(4) {
  color: var(--gold);
}

.footer__links a:hover {
  color: var(--cream);
}

/* ============================================================
   RESPONSIVE — 1100px
   ============================================================ */

@media (max-width: 1100px) {
  :root {
    --outer-margin: 80px;
  }

  .about__headline {
    font-size: 42px;
  }

  .expect__left {
    padding-left: var(--outer-margin);
    padding-right: 60px;
  }

  .expect__right {
    padding-left: 60px;
    padding-right: var(--outer-margin);
  }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */

@media (max-width: 900px) {
  :root {
    --outer-margin: 48px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__logo {
    width: 320px;
  }

  .hero__tagline-break {
    display: block;
  }

  .about {
    flex-direction: column;
    gap: 56px;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: max(48px, 10vw);
    padding-right: max(48px, 10vw);
  }

  .about__stats {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
  }

  .stat__number {
    font-size: 48px;
  }

  .about__headline {
    font-size: 36px;
  }

  .expect {
    flex-direction: column;
  }

  .expect__left {
    padding: 72px max(48px, 10vw) 56px;
  }

  .expect__divider {
    width: auto;
    height: 1px;
    margin: 0 max(48px, 10vw);
  }

  .expect__right {
    padding: 56px max(48px, 10vw) 72px;
  }

  .involved {
    padding-left: max(48px, 10vw);
    padding-right: max(48px, 10vw);
  }

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

  .footer {
    flex-direction: column;
    height: auto;
    padding: 40px;
    gap: 36px;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */

@media (max-width: 600px) {
  :root {
    --outer-margin: 24px;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav__logo img {
    height: 32px;
  }

  .nav__cta {
    display: inline-flex;
    height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero {
    min-height: 0;
    padding: 100px 24px 80px;
  }

  .hero__logo {
    width: 260px;
  }

  .hero__rule {
    width: 160px;
  }

  .hero__tagline {
    font-size: 17px;
    max-width: 60vw;
    width: 100%;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 48vw;
  }

  .hero__ctas .btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 12px 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero__tagline-break {
    display: inline;
  }

  .hero__btn-sep {
    display: none;
  }

  .hero__btn-free {
    display: block;
  }

  .about {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .about__left {
    max-width: 70vw;
    width: 100%;
    align-self: center;
  }

  .about__headline {
    font-size: 28px;
  }

  .about__body {
    font-size: 16px;
  }

  .about__stats {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 24px;
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .stat {
    flex: 1;
    text-align: left;
    min-width: 0;
  }

  .stat__number {
    font-size: 36px;
  }

  .stat__label {
    font-size: 9px;
  }

  .expect__list li {
    font-size: 16px;
  }

  .expect__left {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .expect__right {
    padding-left: 15vw;
    padding-right: 15vw;
  }

  .involved {
    padding: 64px max(24px, 15vw);
  }

  .involved > .label {
    margin-bottom: 32px;
  }

  .involved__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer {
    padding: 32px 24px;
    gap: 48px;
  }

  .footer__logo {
    order: 0;
  }
}
