@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700;800&family=Lexend:wght@400;500;600;700&display=swap");

:root {
  --navy: #062b65;
  --navy-900: #031b42;
  --navy-800: #082653;
  --teal: #008f96;
  --teal-700: #006d75;
  --teal-soft: #d8f2f1;
  --orange: #f26a21;
  --orange-700: #c9480c;
  --cream: #fff6eb;
  --cream-2: #f8eadb;
  --sand: #f2dac2;
  --white: #ffffff;
  --ink: #10213f;
  --muted: #5c6d86;
  --line: rgba(6, 43, 101, 0.14);
  --shadow-soft: 0 18px 50px rgba(6, 43, 101, 0.14);
  --shadow-card: 0 12px 32px rgba(6, 43, 101, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --max-width: 1180px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(242, 106, 33, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(0, 143, 150, 0.16), transparent 30%),
    linear-gradient(135deg, var(--cream) 0%, #fffaf4 44%, #f7e5d2 100%);
  font-family: "Lexend", "Trebuchet MS", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(0, 143, 150, 0.26) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 18%, transparent 82%, #000 100%);
  opacity: 0.5;
  z-index: -2;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  background: var(--orange);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  color: var(--white);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -64px;
  transition: top 160ms ease;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(255, 246, 235, 0.86);
  border-bottom: 1px solid rgba(6, 43, 101, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: var(--header-height);
  padding: 0 22px;
  position: relative;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  height: 58px;
  width: auto;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  border-radius: 999px;
  color: var(--navy-900);
  display: inline-flex;
  font-weight: 700;
  padding: 10px 15px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-link.nav-cta {
  background: var(--orange);
  color: var(--white);
  margin-left: 4px;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus-visible {
  background: var(--orange-700);
}

.nav-toggle {
  align-items: center;
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  display: none;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
}

.nav-toggle-lines span {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 20px;
}

.nav-open .nav-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-main {
  overflow: hidden;
}

.section {
  padding: clamp(56px, 8vw, 100px) 22px;
}

.section.compact {
  padding: clamp(38px, 6vw, 76px) 22px;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
}

.eyebrow {
  align-items: center;
  color: var(--teal-700);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.11em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  height: 4px;
  width: 42px;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 7.15rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

.lead {
  color: var(--navy-800);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--orange);
}

.teal {
  color: var(--teal);
}

.hero {
  padding: 36px 22px clamp(56px, 7vw, 92px);
}

.hero-shell {
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: calc(100vh - var(--header-height) - 46px);
  place-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.launch-ribbon {
  align-items: center;
  background: linear-gradient(90deg, var(--teal), #00a8a5);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  margin-bottom: 22px;
  padding: 10px 16px;
  box-shadow: var(--shadow-card);
}

.launch-ribbon::before {
  content: "";
  background: var(--orange);
  border-radius: 4px;
  height: 16px;
  transform: rotate(45deg);
  width: 16px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(242, 106, 33, 0.24);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-700);
}

.button.secondary {
  background: var(--navy);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(6, 43, 101, 0.16);
  color: var(--navy);
}

.hero-note {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.hero-note-icon {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-visual::before {
  background: linear-gradient(145deg, rgba(0, 143, 150, 0.24), rgba(242, 106, 33, 0.22));
  border-radius: 42% 58% 60% 40%;
  content: "";
  filter: blur(2px);
  inset: -30px -24px 28px 42px;
  position: absolute;
  transform: rotate(-4deg);
  z-index: -1;
}

.image-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

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

.hero-visual .image-card {
  aspect-ratio: 16 / 11;
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 43, 101, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  max-width: 290px;
  padding: 18px;
  position: absolute;
  right: -8px;
  top: 62%;
}

.floating-card strong {
  color: var(--navy);
  display: block;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

.quick-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 22px;
}

.quick-card .number {
  color: var(--orange);
  display: block;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.section-heading {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  margin-bottom: 34px;
}

.section-heading.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  min-height: 220px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  background: radial-gradient(circle, rgba(0, 143, 150, 0.22), transparent 64%);
  border-radius: 50%;
  content: "";
  height: 150px;
  position: absolute;
  right: -66px;
  top: -72px;
  width: 150px;
}

.feature-icon,
.team-initials,
.sponsor-icon {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  height: 54px;
  justify-content: center;
  margin-bottom: 22px;
  width: 54px;
}

.feature-card:nth-child(2n) .feature-icon,
.feature-card:nth-child(2n) .team-initials,
.feature-card:nth-child(2n) .sponsor-icon {
  background: var(--orange);
}

.feature-card h3,
.team-card h3,
.faq-card h3 {
  margin-bottom: 12px;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.split.reverse {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse .split-copy {
  order: 2;
}

.split.reverse .split-visual {
  order: 1;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.check-list li {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.check-list li::before {
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  content: "+";
  display: inline-flex;
  flex: 0 0 26px;
  font-weight: 800;
  height: 26px;
  justify-content: center;
  line-height: 26px;
  margin-top: 1px;
  width: 26px;
}

.band {
  background:
    radial-gradient(circle at 10% 30%, rgba(0, 143, 150, 0.36), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--navy));
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.band::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.38) 2px, transparent 2px);
  background-size: 22px 22px;
  content: "";
  height: 150px;
  opacity: 0.36;
  position: absolute;
  right: 42px;
  top: 42px;
  width: 170px;
}

.band h2,
.band h3 {
  color: var(--white);
}

.band .lead,
.band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.band-shell {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) auto;
  position: relative;
  z-index: 1;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-weight: 700;
  padding: 9px 13px;
}

.page-hero {
  padding: clamp(52px, 9vw, 118px) 22px clamp(40px, 7vw, 80px);
}

.page-hero-shell {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  margin: 0 auto;
  max-width: var(--max-width);
}

.page-hero p {
  margin-top: 22px;
  max-width: 760px;
}

.page-hero-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  padding: 28px;
}

.page-hero-card strong {
  color: var(--orange);
  display: block;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

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

.timeline li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 12px;
  grid-template-columns: 130px minmax(0, 1fr);
  padding: 22px;
}

.timeline time,
.timeline .label {
  color: var(--orange);
  font-weight: 800;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 26px;
}

.team-role {
  color: var(--teal-700);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-card summary {
  align-items: center;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.1;
  list-style: none;
  padding: 22px 24px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  align-items: center;
  background: var(--teal);
  border-radius: 50%;
  color: var(--white);
  content: "+";
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.faq-card[open] summary::after {
  background: var(--orange);
  content: "-";
}

.faq-card p {
  border-top: 1px solid var(--line);
  padding: 0 24px 24px;
}

.contact-grid {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
}

.contact-card,
.form-card,
.sponsor-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-methods a {
  background: rgba(0, 143, 150, 0.1);
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 800;
  padding: 14px 16px;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  background: #fffaf4;
  border: 1px solid rgba(6, 43, 101, 0.18);
  border-radius: var(--radius-sm);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 143, 150, 0.16);
  outline: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-note {
  margin-top: 18px;
}

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

.sponsor-card {
  min-height: 180px;
}

.sponsor-card strong {
  color: var(--orange);
  display: block;
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 10px;
}

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 44px 22px;
}

.footer-shell {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--max-width);
}

.footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 48px;
}

.footer-logo span {
  color: var(--white);
  font-family: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .stagger > * {
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

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

@media (max-width: 1020px) {
  .hero-shell,
  .split,
  .split.reverse,
  .page-hero-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy,
  .split.reverse .split-visual {
    order: initial;
  }

  .quick-grid,
  .feature-grid,
  .team-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .band-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-card {
    bottom: 18px;
    right: 18px;
    top: auto;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .brand img {
    height: 48px;
    max-width: 238px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    align-items: stretch;
    background: rgba(255, 246, 235, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 6px;
    left: 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 18px;
    top: calc(100% + 8px);
    transform: translateY(-8px);
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, transform 180ms ease;
    visibility: hidden;
  }

  .nav-open .nav-list {
    max-height: 440px;
    opacity: 1;
    padding: 14px;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    justify-content: center;
    padding: 13px 15px;
  }

  .nav-link.nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .nav-shell {
    padding: 0 16px;
  }

  .hero,
  .section,
  .section.compact,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-shell {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .hero-actions,
  .pill-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-grid,
  .feature-grid,
  .team-grid,
  .sponsor-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -28px 18px 0;
  }

  .image-card,
  .hero-visual .image-card {
    border-radius: var(--radius-lg);
  }

  .hero-visual .image-card {
    aspect-ratio: 4 / 5;
  }

  .timeline li {
    grid-template-columns: 1fr;
  }

  .faq-card summary {
    font-size: 1.2rem;
    padding: 20px;
  }

  .faq-card p {
    padding: 0 20px 22px;
  }
}
