:root {
  color-scheme: light;
  --primary: #fbb03b;
  --bg: var(--primary);
  --surface: #ffffff;
  --text: #111111;
  --muted: #555555;
  --accent: var(--primary);
  --border: rgba(17, 17, 17, 0.14);
  --max-width: 48rem;
  --wide-width: 72rem;
  --content-padding-x: 1.25rem;
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

a {
  color: var(--text);
  text-underline-offset: 0.16em;
}

a:hover {
  text-decoration: none;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--primary);
}

.site-header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--wide-width);
  padding: 1rem var(--content-padding-x);
  width: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 2rem;
  width: auto;
}

.brand-text {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  text-decoration: underline;
}

main {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 2rem var(--content-padding-x) 4rem;
}

.home-main {
  max-width: var(--wide-width);
}

.hero {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(18rem, 1fr);
  min-height: calc(100vh - 5rem);
  padding: 2rem 0 3rem;
}

.hero-copy {
  max-width: 34rem;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0.5rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
}

.eyebrow {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 2.25rem 0 0.75rem;
}

h3 {
  font-size: 1rem;
  letter-spacing: 0;
  margin: 1.5rem 0 0.5rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1.25rem;
}

.hero-lead {
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
}

.hero-text {
  color: var(--text);
  font-size: 1.05rem;
  max-width: 32rem;
}

.hero-shot {
  aspect-ratio: 1242 / 1760;
  background: var(--primary);
  border-radius: 0.5rem;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.hero-shot img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 41%;
  width: 100%;
}

.hero-shot figcaption,
.promo-card figcaption {
  background: var(--text);
  border-radius: 0.45rem;
  color: var(--surface);
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 0.7rem 0.85rem 0.85rem;
}

.hero-shot figcaption {
  bottom: 1rem;
  left: 1rem;
  position: absolute;
}

.promo-section {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  padding: 0 0 4rem;
}

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  min-width: 0;
}

.promo-card-wide {
  margin-top: 3rem;
}

.promo-card-wide figcaption {
  align-self: end;
}

.promo-image {
  aspect-ratio: 1242 / 1760;
  background: var(--primary);
  border-radius: 0.5rem;
  overflow: hidden;
}

.promo-card-wide .promo-image {
  aspect-ratio: 1242 / 1450;
}

.promo-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  width: 100%;
}

.promo-image-status img {
  object-position: 50% 34%;
}

.promo-image-place img {
  object-position: 50% 38%;
}

.promo-image-join img {
  object-position: 50% 44%;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.language-nav {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
  padding: 0.9rem 1rem;
}

.language-nav a {
  font-weight: 700;
}

.summary {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-left: 4px solid var(--text);
  border-radius: 0.5rem;
  padding: 1rem 1.1rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.5rem;
  padding: 1.1rem;
}

.card h2 {
  margin-top: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  display: inline-block;
  font-weight: 700;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.button-primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--surface);
}

.feature-section {
  border-top: 1px solid var(--border);
  padding: 4rem 0 1rem;
}

.section-heading {
  max-width: 40rem;
}

.section-heading h2,
.support-band h2 {
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  line-height: 1.08;
  margin-top: 0;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.feature-item {
  background: var(--surface);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 0.5rem;
  padding: 1.15rem;
}

.feature-icon {
  display: block;
  height: 2rem;
  margin-bottom: 0.9rem;
  object-fit: contain;
  width: 2rem;
}

.feature-item h3 {
  margin-top: 0;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.support-band {
  align-items: start;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  margin-top: 3rem;
  padding: 4rem 0 1rem;
}

.support-band > div > p:last-child {
  color: var(--muted);
}

.compact-card-grid {
  margin-top: 0;
}

.section-divider {
  border: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  margin: 2.5rem 0 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
  margin: 0 auto;
  max-width: var(--wide-width);
  padding: 1.5rem var(--content-padding-x);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 42rem) {
  .site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero,
  .promo-section,
  .support-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .promo-card-wide {
    margin-top: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 42.01rem) and (max-width: 60rem) {
  .hero,
  .promo-section,
  .support-band {
    grid-template-columns: 1fr;
  }

  .promo-card-wide {
    margin-top: 0;
  }

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