/* ============ RelayCreators ============ */
:root {
  --green-950: #081b11;
  --green-900: #0d2b1c;
  --green-800: #123c27;
  --green-700: #1a5236;
  --mint: #cde3d2;
  --mint-bright: #a8d9b8;
  --off-white: #edf1fa;
  --text: #e8efe9;
  --text-dim: #9db5a6;
  --card: rgba(205, 227, 210, 0.06);
  --card-border: rgba(205, 227, 210, 0.14);
  --radius: 20px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--green-950);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mint-bright);
  margin-bottom: 0.9rem;
}

.section-sub {
  color: var(--text-dim);
  max-width: 560px;
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  background: var(--mint);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--mint);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--mint-bright);
  box-shadow: 0 10px 30px rgba(168, 217, 184, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--mint);
}
.btn-ghost:hover { background: rgba(205, 227, 210, 0.08); box-shadow: none; }
.btn-small { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 27, 17, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(205, 227, 210, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-logo { width: 40px; height: 40px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--off-white);
}
.brand-name span { color: var(--mint-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a:not(.btn) {
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--mint); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 9rem) 0 5rem;
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(26, 82, 54, 0.55), transparent 65%),
    radial-gradient(900px 500px at 10% 110%, rgba(18, 60, 39, 0.5), transparent 60%),
    var(--green-950);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(205, 227, 210, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; }
.hero h1 { max-width: 800px; margin: 0 auto; color: var(--off-white); }
.hero h1 em {
  font-style: normal;
  color: var(--mint-bright);
}
.hero-sub {
  max-width: 620px;
  margin: 1.4rem auto 0;
  color: var(--text-dim);
  font-size: 1.1rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 4rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--mint);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(205, 227, 210, 0.15);
}

/* ============ Sections ============ */
.section { padding: 5.5rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(13, 43, 28, 0.55), rgba(8, 27, 17, 0.2));
  border-top: 1px solid rgba(205, 227, 210, 0.07);
  border-bottom: 1px solid rgba(205, 227, 210, 0.07);
}

/* ============ Roster stats ============ */
.roster-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.roster-stat {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.4rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.roster-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(205, 227, 210, 0.35);
}
.roster-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1;
  color: var(--mint);
}
.roster-label {
  display: block;
  margin-top: 0.7rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.roster-cta {
  margin-top: 2.6rem;
  text-align: center;
}

/* ============ Brands ============ */
.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}
.brand-card {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 2.2rem 2rem;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.brand-card:hover { transform: translateY(-4px); border-color: rgba(205, 227, 210, 0.35); }
.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}
.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--off-white);
}
.brand-tag {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.brand-card--next { border-style: dashed; }
.brand-card--next .brand-wordmark { color: var(--mint-bright); }

/* ============ Apply ============ */
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.perks {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
}
.perks li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text);
  font-size: 1rem;
}
.perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.85em;
  height: 0.45em;
  border-left: 2.5px solid var(--mint-bright);
  border-bottom: 2.5px solid var(--mint-bright);
  transform: rotate(-45deg);
}

.apply-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: grid;
  gap: 1.2rem;
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mint);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(8, 27, 17, 0.6);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mint-bright);
  box-shadow: 0 0 0 3px rgba(168, 217, 184, 0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(157, 181, 166, 0.6); }
.field select { appearance: none; }
.field select:invalid { color: rgba(157, 181, 166, 0.6); }

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.form-status {
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-status--success {
  background: rgba(168, 217, 184, 0.14);
  border: 1px solid rgba(168, 217, 184, 0.4);
  color: var(--mint);
}
.form-status--error {
  background: rgba(255, 138, 128, 0.12);
  border: 1px solid rgba(255, 138, 128, 0.4);
  color: #ffb4ab;
}
.form-status a { color: inherit; font-weight: 600; }
.form-status[hidden] { display: none; }

/* ============ Contact ============ */
.contact-inner { text-align: center; }
.contact-inner .section-sub { margin-left: auto; margin-right: auto; }
.contact-email {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  font-weight: 700;
  color: var(--mint);
  text-decoration: none;
  border-bottom: 2px solid rgba(205, 227, 210, 0.3);
  padding-bottom: 0.3rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-email:hover { color: var(--mint-bright); border-color: var(--mint-bright); }

/* ============ Footer ============ */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(205, 227, 210, 0.08);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer .brand-logo { width: 32px; height: 32px; }
.footer .brand-name { font-size: 1rem; }
.footer-copy { color: var(--text-dim); font-size: 0.88rem; }

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .apply-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .roster-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--green-950);
    padding: 1.5rem 4%;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(205, 227, 210, 0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-stats { gap: 1.2rem; }
}
