/* Sadid marketing + legal site.
   Palette lifted from the portals' astryx-theme.css so the web presence and the
   product read as one brand. No build step on purpose: these pages must stay
   deployable to any static host the day the domain resolves. */

:root {
  color-scheme: light dark;

  --brand-900: #133A24;
  --brand-700: #1F5D3A;
  --brand-600: #27714A;
  --brand-500: #2F8A59;
  --brand-300: #7FCE9E;

  --bg:        light-dark(#FFFFFF, #0E1512);
  --bg-soft:   light-dark(#F6F8F7, #141C18);
  --card:      light-dark(#FFFFFF, #18211D);
  --text-1:    light-dark(#0E1512, #F2F5F3);
  --text-2:    light-dark(#4A5652, #A6B2AD);
  --text-3:    light-dark(#6E7A76, #7E8C87);
  --border:    light-dark(#E2E8E5, #26302B);
  --accent:      light-dark(#1F5D3A, #7FCE9E);
  --accent-fill: light-dark(#1F5D3A, #27714A);

  --r: 14px;
  --r-sm: 9px;
  --maxw: 720px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-1);
  font: 400 17px/1.65 ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── Chrome ─────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .inner,
.site-footer .inner,
main {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.site-header .inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 640;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text-1);
  text-decoration: none;
}

.wordmark img { width: 26px; height: 26px; border-radius: 6px; display: block; }

.site-header nav {
  margin-inline-start: auto;
  display: flex;
  gap: 20px;
  font-size: 14.5px;
}

.site-header nav a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 140ms ease;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--accent); }

main { padding-block: 52px 72px; }

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding-block: 30px;
  font-size: 14.5px;
  color: var(--text-3);
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-inline-start: auto; }
.site-footer a { color: var(--text-2); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }

/* ── Type ───────────────────────────────────────────────────────────── */

h1 {
  font-size: clamp(30px, 6vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.028em;
  font-weight: 680;
  margin: 0 0 14px;
}

h2 {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 620;
  margin: 34px 0 8px;
}

p { margin: 0 0 15px; color: var(--text-2); }
h1 + p.lede { font-size: 19px; color: var(--text-2); max-width: 56ch; }
a { color: var(--accent); }

.updated {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

ul { margin: 0 0 15px; padding-inline-start: 22px; color: var(--text-2); }
li { margin-bottom: 7px; }
li::marker { color: var(--text-3); }

/* ── Components ─────────────────────────────────────────────────────── */

.hero { padding-block: 18px 8px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 26px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 19px;
  border-radius: var(--r-sm);
  font-size: 15.5px;
  font-weight: 560;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.btn-primary { background: var(--accent-fill); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }

.btn-secondary { border-color: var(--border); color: var(--text-1); background: var(--card); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn:active { transform: translateY(1px); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 14px;
  margin: 34px 0 8px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 19px;
  background: var(--card);
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 610;
  letter-spacing: -0.01em;
}

.card p { margin: 0; font-size: 15px; line-height: 1.55; }

.callout {
  border: 1px solid var(--border);
  border-inline-start: 3px solid var(--accent);
  border-radius: var(--r-sm);
  background: var(--bg-soft);
  padding: 17px 19px;
  margin: 26px 0;
}

.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--text-1); }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 20px; }

.steps li {
  counter-increment: step;
  position: relative;
  padding-inline-start: 40px;
  margin-bottom: 15px;
  color: var(--text-2);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-fill);
  color: #fff;
  font-size: 13.5px;
  font-weight: 620;
  display: grid;
  place-items: center;
}

.notice {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-3);
}

/* ── Landing ────────────────────────────────────────────────────────
   Legal pages stay at the narrow reading measure; the landing page opts
   into a wider grid with .wide on <main>. */

main.wide { max-width: 1040px; padding-block: 0 0; }

.band { padding-block: 60px; border-bottom: 1px solid var(--border); }
.band:last-of-type { border-bottom: 0; }
.band > h2 { margin-top: 0; font-size: clamp(23px, 3.4vw, 30px); letter-spacing: -0.02em; }
.band > p.band-lede { max-width: 60ch; font-size: 17.5px; }

.band-hero {
  padding-block: clamp(56px, 9vw, 96px);
  background:
    radial-gradient(120% 90% at 12% 0%,
      color-mix(in srgb, var(--accent) 11%, transparent) 0%, transparent 62%);
  border-bottom: 1px solid var(--border);
}

.band-hero h1 { max-width: 17ch; }
.band-hero p.lede { max-width: 54ch; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Two-up audience blocks — the venue and tournament conversion paths. */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }

.pitch-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--card);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.pitch-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 640;
  letter-spacing: -0.015em;
}

.pitch-card ul { margin: 4px 0 22px; }
.pitch-card .btn-row { margin-top: auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 30px;
  counter-reset: s;
}

.steps-grid > div { counter-increment: s; }

.steps-grid > div::before {
  content: counter(s);
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-fill);
  color: #fff;
  font-size: 15px;
  font-weight: 680;
  margin-bottom: 13px;
}

.steps-grid h3 { margin: 0 0 5px; font-size: 16.5px; font-weight: 620; }
.steps-grid p { margin: 0; font-size: 15px; }

/* FAQ — <details> so it works with no JS and stays crawlable. */
.faq { margin-top: 26px; border-top: 1px solid var(--border); }

.faq details { border-bottom: 1px solid var(--border); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 17px 34px 17px 0;
  font-size: 16.5px;
  font-weight: 570;
  color: var(--text-1);
  position: relative;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 6px;
  top: 26px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-3);
  border-bottom: 2px solid var(--text-3);
  transform: rotate(45deg);
  transition: transform var(--t);
}

.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--accent); }
.faq details > p { padding: 0 0 18px; margin: 0; max-width: 68ch; }

/* Narrow screens: the nav no longer fits beside the wordmark, so it drops to
   its own row rather than wrapping mid-label. */
@media (max-width: 560px) {
  .site-header .inner {
    flex-wrap: wrap;
    min-height: 0;
    padding-block: 12px;
    gap: 4px 14px;
  }
  .site-header nav {
    margin-inline-start: 0;
    width: 100%;
    gap: 18px;
    font-size: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-header nav::-webkit-scrollbar { display: none; }
  .site-header nav a { white-space: nowrap; }

  .site-footer nav { margin-inline-start: 0; width: 100%; }
  .band { padding-block: 44px; }
  .band-hero { padding-block: 40px 48px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
