:root {
  --ink: #0b0e14;
  --ink-soft: #111820;
  --paper: #f5f7fa;
  --white: #ffffff;
  --muted: #a8b3c3;
  --line: rgba(245, 247, 250, 0.16);
  --line-dark: rgba(11, 14, 20, 0.12);
  --orange: #ff5a36;
  --gold: #ffb020;
  --court: #2fbf71;
  --sky: #42b7e8;
  --shadow: 0 24px 80px rgba(11, 14, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-shell {
  min-height: 100svh;
  overflow: hidden;
}

.site-header {
  align-items: center;
  background: rgba(11, 14, 20, 0.88);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
}

.brand-lockup {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 800;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  background: var(--ink);
  border: 1px solid rgba(255, 176, 32, 0.34);
  border-radius: 8px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.nav-links {
  align-items: center;
  color: rgba(245, 247, 250, 0.76);
  display: flex;
  font-size: 0.9rem;
  font-weight: 700;
  gap: clamp(16px, 3vw, 32px);
}

.nav-links a,
.header-action,
.button {
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.header-action,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.header-action {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--ink);
  min-height: 44px;
  min-width: 132px;
  padding: 0 18px;
}

.button {
  border: 1px solid transparent;
  min-height: 52px;
  padding: 0 22px;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(245, 247, 250, 0.34);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(245, 247, 250, 0.1);
  border-color: rgba(245, 247, 250, 0.62);
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(11, 14, 20, 0.96) 0%, rgba(11, 14, 20, 0.84) 42%, rgba(11, 14, 20, 0.52) 100%),
    linear-gradient(0deg, rgba(11, 14, 20, 0.72), rgba(11, 14, 20, 0.22)),
    url("/photos/laro-nation-cover.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  min-height: min(780px, 82svh);
  padding: 132px clamp(20px, 5vw, 72px) 42px;
  position: relative;
}

.hero::after {
  border: 2px solid rgba(255, 176, 32, 0.45);
  border-radius: 999px;
  content: "";
  height: 540px;
  pointer-events: none;
  position: absolute;
  right: -220px;
  top: 74px;
  width: 540px;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.6rem, 11vw, 9rem);
  line-height: 0.88;
  margin-bottom: 18px;
  max-width: 9ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 0.98;
  margin-bottom: 0;
  max-width: 11ch;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.tagline {
  color: var(--orange);
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy {
  color: rgba(245, 247, 250, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 690px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  align-self: end;
  backdrop-filter: blur(10px);
  background: rgba(17, 24, 32, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-panel p,
.hero-panel span {
  color: var(--muted);
}

.hero-panel p {
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-panel strong {
  color: var(--white);
  display: block;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  margin-bottom: 12px;
}

.hero-panel span {
  display: block;
  font-size: 0.98rem;
  line-height: 1.55;
}

.launch-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.launch-strip div {
  background:
    linear-gradient(135deg, rgba(255, 90, 54, 0.08), rgba(47, 191, 113, 0.08)),
    var(--white);
  min-height: 124px;
  padding: 28px clamp(20px, 4vw, 56px);
}

.launch-strip span,
.program-card span {
  color: var(--orange);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.launch-strip strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.05;
}

.section {
  display: grid;
  gap: clamp(32px, 6vw, 84px);
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.intro-section {
  background:
    linear-gradient(135deg, rgba(66, 183, 232, 0.12), transparent 42%),
    var(--paper);
}

.section-heading {
  max-width: 680px;
}

.intro-copy {
  color: #334050;
  display: grid;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  gap: 22px;
  line-height: 1.75;
}

.intro-copy p,
.partner-copy p,
.contact-content p {
  margin-bottom: 0;
}

.dark-section {
  background:
    linear-gradient(135deg, rgba(255, 90, 54, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(47, 191, 113, 0.14), transparent 42%),
    var(--ink);
  color: var(--white);
}

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

.program-card {
  background: rgba(245, 247, 250, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 238px;
  padding: 24px;
}

.program-card h3 {
  color: var(--white);
}

.program-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.events-section {
  background: var(--white);
}

.events-section .eyebrow {
  color: var(--court);
}

.format-board {
  display: grid;
  gap: 12px;
}

.format-item,
.principle {
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 14px 1fr;
  min-height: 74px;
  padding: 18px 20px;
}

.format-item span,
.principle span {
  border-radius: 50%;
  height: 14px;
  width: 14px;
}

.format-item:nth-child(3n + 1) span,
.principle:nth-child(3n + 1) span {
  background: var(--orange);
}

.format-item:nth-child(3n + 2) span,
.principle:nth-child(3n + 2) span {
  background: var(--court);
}

.format-item:nth-child(3n) span,
.principle:nth-child(3n) span {
  background: var(--sky);
}

.format-item p,
.principle p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0;
}

.partner-section {
  background:
    linear-gradient(rgba(11, 14, 20, 0.84), rgba(11, 14, 20, 0.9)),
    url("/photos/laro-nation-cover.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.partner-copy {
  max-width: 740px;
}

.partner-copy h2 {
  max-width: 13ch;
}

.partner-copy p:not(.eyebrow) {
  color: rgba(245, 247, 250, 0.8);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
  margin-top: 24px;
}

.principles-list {
  display: grid;
  gap: 12px;
}

.principle {
  background: rgba(245, 247, 250, 0.08);
  border-color: var(--line);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.18), transparent 38%),
    linear-gradient(315deg, rgba(66, 183, 232, 0.16), transparent 34%),
    var(--ink-soft);
  color: var(--white);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
}

.contact-content {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.contact-content h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 15ch;
}

.contact-content p:not(.eyebrow) {
  color: rgba(245, 247, 250, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  margin: 24px auto 30px;
  max-width: 760px;
}

.contact-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .site-header {
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
    padding-top: 118px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .launch-strip,
  .program-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand-lockup span {
    display: none;
  }

  .header-action {
    min-width: 120px;
  }

  .hero {
    background-position: 28% center;
    min-height: 86svh;
    padding: 108px 18px 28px;
  }

  .hero::after {
    height: 340px;
    right: -210px;
    top: 108px;
    width: 340px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

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

  .button {
    width: 100%;
  }

  .launch-strip div,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .program-card {
    min-height: auto;
  }
}
