:root {
  /* Sampled live from sirexe.ci's own CSS custom properties on 2026-09-16 */
  --sx-green: #007b39;       /* --secondary: primary buttons ("Join SIREXE") */
  --sx-green-dark: #022d1c;  /* --secondary-dark: topbar, dark section bands */
  --sx-orange: #f18511;      /* --primary: active nav / accent highlights */
  --sx-white: #ffffff;       /* --light / body background */
  --sx-ink: #212529;         /* --bs-body-color: body text */
  --sx-muted: #6c757d;       /* --bs-gray */
  --sx-border: #dee2e6;      /* --bs-border-color */
  --sx-panel: #f6f8f7;       /* footer / light section background */
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--sx-white);
  color: var(--sx-ink);
  font-family: var(--font-stack);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* Topbar + header */

.topbar {
  background: var(--sx-green-dark);
  color: var(--sx-white);
  text-align: center;
  font-size: 0.78rem;
  padding: 6px 16px;
  letter-spacing: 0.01em;
}

.site-header {
  padding: 16px 16px;
  text-align: center;
  background: var(--sx-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
}

.site-header .logo {
  margin: auto;
  height: 70px;
  width: auto;
}

/* Hero / video */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--sx-green-dark) url("assets/poster.jpg") center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--sx-green-dark);
}

.play-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 45, 28, 0.35);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.play-overlay.is-visible {
  display: flex;
}

.play-icon {
  width: 76px;
  height: 76px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--sx-orange);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--sx-white);
}

/* Pitch copy */

.pitch {
  padding: 28px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.pitch p {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sx-ink);
}

.pitch p.pitch-highlight {
  margin-bottom: 0;
  color: var(--sx-orange);
  font-weight: 700;
}

/* CTA */

.cta {
  padding: 8px 20px 32px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  padding: 16px 24px;
  background: var(--sx-green);
  color: var(--sx-white);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  min-height: 44px;
  transition: background 0.15s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: var(--sx-green-dark);
}

/* Pass summary — mirrors the two-tone pass cards on sirexe.ci/en/participant */

.passes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 20px 40px;
  max-width: 720px;
  margin: 0 auto;
}

.pass-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sx-ink);
}

.pass-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.pass-list--check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--sx-ink);
  font-weight: 700;
}

.pass-list--plus li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--sx-ink);
  font-weight: 700;
}

/* Feature list repeated inside the price panel, right below Reserve Now,
   so the visitor sees what's included at the moment they decide. */

.pass-list--panel {
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--sx-white);
  font-size: 0.85rem;
}

.pass-list--panel li {
  margin-bottom: 8px;
}

.pass-list--panel li:last-child {
  margin-bottom: 0;
}

.pass-list--panel.pass-list--check li::before,
.pass-list--panel.pass-list--plus li::before {
  color: var(--sx-white);
}

.pass-price-panel {
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}

.pass-price-panel--green {
  background: var(--sx-green-dark);
}

.pass-price-panel--orange {
  background: var(--sx-orange);
}

/* Orange panel gets black text where the green panel uses white,
   since white-on-orange reads worse than black-on-orange here. */

.pass-price-panel--orange .pass-price-label,
.pass-price-panel--orange .pass-list--panel {
  color: #000000;
}

.pass-price-panel--orange .pass-list--panel.pass-list--check li::before,
.pass-price-panel--orange .pass-list--panel.pass-list--plus li::before {
  color: #000000;
}

.pass-price-panel--orange .pass-list--panel {
  border-top-color: rgba(33, 37, 41, 0.25);
}

.pass-price-label {
  margin: 0 0 16px;
  color: var(--sx-white);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pass-price-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 18px;
  background: var(--sx-white);
  border-radius: 8px;
  padding: 14px 12px;
}

.pass-price-amount {
  color: var(--sx-ink);
  font-size: 1.4rem;
  font-weight: 800;
}

.pass-price-fx {
  color: var(--sx-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.pass-price-btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  min-height: 44px;
  box-sizing: border-box;
}

.pass-price-btn--light {
  background: var(--sx-white);
  color: var(--sx-ink);
}

.pass-price-btn--dark {
  background: #000000;
  color: var(--sx-white);
}

/* Footer */

.site-footer {
  background: var(--sx-panel);
  border-top: 1px solid var(--sx-border);
  padding: 24px 20px 32px;
  text-align: center;
}

.contact-line {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--sx-ink);
}

.contact-line a {
  text-decoration: none;
  color: var(--sx-green);
}

.copyright {
  margin: 0;
  font-size: 0.78rem;
  color: var(--sx-muted);
}

/* Tablet / desktop */

@media (min-width: 640px) {
  .pitch p {
    font-size: 1.15rem;
  }
}

@media (min-width: 900px) {
  .hero {
    max-width: 960px;
    margin: 0 auto;
  }

  .site-header {
    padding-top: 24px;
    padding-bottom: 20px;
  }
}
