/* ============================================================
   Clubanizer landing page
   Theme: orange #FD4F02 + grey scale
   ============================================================ */

:root {
  --orange: #FD4F02;
  --orange-600: #E24500;
  --orange-050: #FFF3EB;

  --ink: #1A1A1A;
  --grey-800: #2C2C2E;
  --grey-600: #58575A;
  --grey-500: #6B6B70;
  --grey-300: #C9C9CE;
  --grey-150: #E7E7EA;
  --grey-100: #F2F2F4;
  --grey-050: #F8F8F9;
  --white: #FFFFFF;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 20, 20, .04), 0 12px 32px rgba(20, 20, 20, .06);
  --shadow-sm: 0 1px 2px rgba(20, 20, 20, .05), 0 6px 18px rgba(20, 20, 20, .05);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--orange); }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px;
  width: auto; height: auto; clip: auto;
  z-index: 200; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 8px;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px rgba(253, 79, 2, .28); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--grey-150); }
.btn-ghost:hover { background: var(--grey-100); border-color: var(--grey-300); }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--grey-150);
}
.nav {
  display: flex; align-items: center; gap: 20px;
  height: 66px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand-name { font-size: 19px; color: var(--ink); }
.brand-mark { width: auto; height: 30px; }

.nav-links {
  display: flex; gap: 28px; list-style: none;
  margin: 0 auto 0 24px; padding: 0;
}
.nav-links a { color: var(--grey-600); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 4px; }

/* Language selector */
.lang-select { display: inline-flex; align-items: center; gap: 6px; }
.lang-select > svg { width: 18px; height: 18px; color: var(--grey-500); flex: none; }
.lang-select select {
  appearance: none; -webkit-appearance: none;
  font: inherit; font-weight: 600; font-size: 14px; color: var(--grey-800);
  background-color: #fff; border: 1px solid var(--grey-150);
  padding: 8px 30px 8px 12px; border-radius: 999px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2358575A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 11px center;
  transition: border-color .18s ease, background-color .18s ease;
}
.lang-select select:hover { border-color: var(--grey-300); background-color: var(--grey-050); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

.mobile-menu {
  list-style: none; margin: 0; padding: 12px 24px 20px;
  display: flex; flex-direction: column; gap: 6px;
  border-bottom: 1px solid var(--grey-150); background: #fff;
}
.mobile-menu a { display: block; padding: 12px 4px; color: var(--grey-800); font-weight: 500; }
.mobile-menu .btn { justify-content: center; margin-top: 8px; }

/* -------- Hero -------- */
.hero { padding: 84px 0 72px; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-050);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(38px, 6vw, 64px); font-weight: 800; }
.lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--grey-600); max-width: 34ch; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 20px; font-size: 14px; color: var(--grey-500); }

.hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-logo { width: auto; height: min(360px, 62vw); max-width: 100%; filter: drop-shadow(0 24px 48px rgba(253, 79, 2, .18)); position: relative; z-index: 1; }
.glow {
  position: absolute; inset: 0; margin: auto;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(253, 79, 2, .18), rgba(253, 79, 2, 0) 68%);
  filter: blur(4px);
}

/* -------- Audiences -------- */
.audiences { padding: 24px 0 20px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--grey-050); border: 1px solid var(--grey-150);
  border-radius: var(--radius); padding: 34px 32px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--grey-300); }
.card-icon { font-size: 30px; margin-bottom: 14px; }
.card h2 { font-size: 24px; margin-bottom: 10px; }
.card p { color: var(--grey-600); margin: 0 0 18px; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 28px; color: var(--grey-800); font-weight: 500; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--orange-050);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FD4F02' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* -------- How it works -------- */
.how { padding: 76px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step;
}
.step {
  background: #fff; border: 1px solid var(--grey-150); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 18px;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--grey-600); margin: 0; font-size: 15px; }

/* -------- Features -------- */
.features { padding: 40px 0 84px; background: var(--grey-050); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature { padding: 28px 30px; background: #fff; border: 1px solid var(--grey-150); border-radius: var(--radius); }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature h3::before {
  content: ""; display: inline-block; width: 10px; height: 10px;
  border-radius: 3px; background: var(--orange); margin-right: 10px; vertical-align: middle;
}
.feature p { color: var(--grey-600); margin: 0; }

/* -------- CTA / Waitlist -------- */
.cta { padding: 88px 0; }
.cta-inner {
  text-align: center; max-width: 640px;
  background: linear-gradient(135deg, #1F1F22 0%, #2C2C2E 100%);
  color: #fff; border-radius: 28px; padding: 56px 40px;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ""; position: absolute; top: -80px; right: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(253,79,2,.4), transparent 68%);
}
.cta-inner h2 { color: #fff; font-size: clamp(28px, 4vw, 40px); font-weight: 800; position: relative; }
.cta-inner p { color: rgba(255,255,255,.72); margin: 14px auto 28px; max-width: 44ch; position: relative; }
.waitlist-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.waitlist-form input {
  flex: 1 1 280px; max-width: 340px;
  padding: 15px 18px; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-size: 16px; background: #fff; color: var(--ink);
}
.waitlist-form input:focus { outline: 3px solid rgba(253,79,2,.4); outline-offset: 1px; }
.cta-note { min-height: 20px; margin-top: 16px; font-size: 14px; color: var(--orange); position: relative; }

/* -------- Footer -------- */
.site-footer { border-top: 1px solid var(--grey-150); padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer-tag { color: var(--grey-600); margin: 4px 0 0; }
.footer-copy { color: var(--grey-500); font-size: 14px; margin: 0; }

/* -------- Focus visibility -------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(253,79,2,.45); outline-offset: 2px; border-radius: 6px;
}

/* -------- Responsive -------- */
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .lang-select { margin-left: auto; }
  .nav-toggle { display: flex; margin-left: 8px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .hero-copy { order: 2; }
  .hero-art { order: 1; min-height: 220px; }
  .lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .eyebrow { margin-inline: auto; }

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

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .cta-inner { padding: 44px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
