/* ============================================================
   eCLUTCH — esports live-streaming portfolio
   Theme: near-black canvas · electric neon green · League Spartan
   Mirrors e-clutch.on-forge.com/landing
   ============================================================ */

:root {
  --green: #20f805;
  --green-2: #1cd104;
  --green-dim: rgba(32, 248, 5, 0.12);
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --surface: #151515;
  --surface-2: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --line-green: rgba(32, 248, 5, 0.35);
  --text: #ffffff;
  --muted: #9a9a9a;
  --muted-2: #6a6a6a;
  --radius: 14px;
  --radius-lg: 20px;
  --font: 'League Spartan', 'Arial Narrow', system-ui, sans-serif;
  --shadow-green: 0 0 0 1px rgba(32, 248, 5, 0.25), 0 10px 40px rgba(32, 248, 5, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font); margin: 0 0 0.4em; line-height: 1.02; letter-spacing: -0.5px; text-transform: uppercase; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.green { color: var(--green); }

.container { width: min(1200px, 92vw); margin-inline: auto; }
.container-narrow { width: min(820px, 92vw); margin-inline: auto; }

/* ---- eyebrow label (small green caps) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 22px; height: 1px; background: var(--green); opacity: 0.6; }
.eyebrow.solo::after { display: none; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.85em 2em;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
}
.btn-primary { background: var(--green); color: #04210a; box-shadow: 0 0 22px rgba(32, 248, 5, 0.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(32, 248, 5, 0.7); }
.btn-outline { background: rgba(255, 255, 255, 0.04); color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-lg { padding: 1em 2.4em; font-size: 1.02rem; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.82rem; }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 0; }
.logo { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 1.5rem; }
.logo img { height: 28px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav > a:not(.btn) { color: #cfcfcf; font-weight: 600; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.15s; }
.site-nav > a:not(.btn):hover { color: var(--green); }
.header-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-toggle, .nav-burger { display: none; }
.lang-pill { color: var(--muted); font-size: 0.8rem; letter-spacing: 1px; border: 1px solid var(--line); border-radius: 6px; padding: 0.4em 0.7em; transition: color 0.15s, border-color 0.15s; }
.lang-pill:hover { color: var(--green); border-color: var(--line-green); }
.lang-pill.lang-active { color: var(--green); border-color: var(--line-green); cursor: default; }
.lang-switcher { display: flex; align-items: center; gap: 0.4rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/img/hero-3.png') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(10,10,10,0.25), rgba(10,10,10,0.85) 75%),
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.96) 100%);
}
.hero-inner { position: relative; z-index: 2; width: min(900px, 92vw); margin-inline: auto; padding: 7rem 0 5rem; }
.hero h1 { text-shadow: 0 4px 40px rgba(0,0,0,0.6); margin-bottom: 0.5rem; }
.hero-sub { color: #d6d6d6; font-size: 1.12rem; max-width: 40rem; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============ generic section ============ */
section { padding: 5.5rem 0; position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 0.6rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-alt { background: var(--bg-2); }

/* ============ broadcaster (split) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.split-copy h2 { margin-bottom: 1rem; }
.channel-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.channel-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: 10px; padding: 1.1rem 1.2rem; }
.channel-card .tag { color: var(--green); font-weight: 800; font-size: 0.78rem; letter-spacing: 2px; display: block; margin-bottom: 0.4rem; }
.channel-card p { margin: 0; font-size: 0.9rem; }

/* ============ feature grid (4 cards) ============ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--line-green); box-shadow: var(--shadow-green); }
.feature-ico {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  border: 1.5px solid var(--green); color: var(--green); background: var(--green-dim);
}
.feature-ico svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; margin: 0; }

/* ============ channel showcase (3 big cards) ============ */
.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.show-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 11; }
.show-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.show-card:hover img { transform: scale(1.05); }
.show-card .overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.3rem 1.4rem;
  background: linear-gradient(180deg, transparent 35%, rgba(5,5,5,0.92) 100%);
}
.show-card h3 { margin: 0 0 0.2rem; }
.show-card span { color: var(--green); font-size: 0.84rem; font-weight: 700; letter-spacing: 1px; }
.badge-soon { position: absolute; top: 1rem; right: 1rem; background: var(--green); color: #04210a; font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px; padding: 0.35em 0.8em; border-radius: 99px; text-transform: uppercase; }

/* ============ 360 tailored ============ */
.tailored { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; text-align: center; }
.tailored img { width: 100%; max-width: 260px; margin-inline: auto; }
.tailored-mid { max-width: 360px; }

/* ============ operators (split + checklist) ============ */
.checklist { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: 0.9rem; }
.checklist li { display: flex; align-items: center; gap: 0.8rem; color: #e4e4e4; font-weight: 600; }
.checklist li::before {
  content: '✓'; flex: none; width: 24px; height: 24px; border-radius: 6px;
  display: grid; place-items: center; background: var(--green); color: #04210a; font-size: 0.8rem; font-weight: 900;
}

/* ============ steps ============ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; text-align: center; }
.step .num { font-size: 3.4rem; font-weight: 800; color: var(--surface-2); -webkit-text-stroke: 1px var(--green); line-height: 1; margin-bottom: 0.6rem; }
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ============ CTA band ============ */
.cta-band { position: relative; text-align: center; padding: 6rem 0; overflow: hidden; }
.cta-band .bg { position: absolute; inset: 0; background: url('/assets/img/hero-1.png') center/cover no-repeat; }
.cta-band .bg::after { content: ''; position: absolute; inset: 0; background: rgba(8,8,8,0.78); }
.cta-band .inner { position: relative; z-index: 2; }
.cta-logo { height: 38px; margin: 0 auto 1rem; }
.cta-band h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.cta-band p { color: #d0d0d0; max-width: 36rem; margin: 0 auto 2rem; }

/* ============ inner page hero ============ */
.page-hero { text-align: center; padding: 4.5rem 0 2.5rem; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.page-hero p { color: var(--muted); max-width: 40rem; margin: 0.6rem auto 0; }

/* ============ pricing ============ */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 400px)); justify-content: center; gap: 1.5rem; }
.plan-card { background: var(--surface); border: 1px solid var(--line-green); border-radius: var(--radius-lg); padding: 2.4rem 2rem; text-align: center; box-shadow: var(--shadow-green); }
.plan-card .eyebrow { justify-content: center; }
.plan-price { font-size: 3.2rem; font-weight: 800; color: #fff; line-height: 1; margin: 1rem 0 0.3rem; }
.plan-price small { display: block; font-size: 0.95rem; color: var(--muted); font-weight: 600; margin-top: 0.5rem; }
.plan-trial { color: var(--green); font-weight: 700; }
.plan-features { list-style: none; margin: 1.6rem 0 2rem; padding: 1.6rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.7rem; text-align: left; }
.plan-features li { display: flex; gap: 0.7rem; color: #ddd; font-size: 0.95rem; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 900; }

/* ============ steps row (pricing/unsub) ============ */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem; }
.step-card .num { color: var(--green); font-weight: 800; font-size: 1rem; letter-spacing: 2px; }
.step-card h3 { font-size: 1.05rem; margin: 0.5rem 0; }
.step-card p { font-size: 0.9rem; margin: 0; }

/* ============ faq ============ */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); margin-bottom: 0.8rem; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.98rem; padding: 1.1rem 3rem 1.1rem 1.3rem; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); color: var(--green); font-size: 1.4rem; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .body { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: 0.95rem; }

/* ============ legals ============ */
.legals-wrap { padding: 3.5rem 0; }
.legals { width: min(840px, 92vw); margin-inline: auto; }
.legals h6 { font-size: 1.1rem; font-weight: 800; text-transform: uppercase; color: #fff; margin: 2rem 0 0.6rem; letter-spacing: 0.5px; }
.legals p { color: var(--muted); font-size: 0.95rem; }
.cls-int { font-style: normal; }

/* ============ contact / signin forms ============ */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; max-width: 640px; margin-inline: auto; }
.form-card.narrow { max-width: 460px; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.45rem; color: #cfcfcf; }
.form-group input, .form-group textarea {
  width: 100%; font: inherit; color: #fff; padding: 0.8em 1em;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 8px;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.errorMsg { color: #ff5c4d; font-size: 0.82rem; margin-top: 0.3rem; }
.successMsg { color: var(--green); font-weight: 700; }
.form-disclaimer { color: var(--muted-2); font-size: 0.82rem; margin-top: 1rem; }
.care-line { font-size: 1.05rem; color: #ddd; }
.care-line a { color: var(--green); }

/* ============ footer ============ */
.site-footer { background: #060606; border-top: 1px solid var(--line); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.4rem; }
.footer-brand .logo { font-size: 1.5rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 1rem; max-width: 24rem; }
.footer-entity { color: var(--muted-2); font-size: 0.82rem; margin-top: 1rem; }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 2px; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--muted); font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--green); }
.news-form { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.news-form input { flex: 1; background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 0.7em 0.9em; color: #fff; font: inherit; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 2.6rem; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; color: var(--muted-2); font-size: 0.82rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; color: var(--muted); transition: 0.15s; }
.footer-social a:hover { border-color: var(--green); color: var(--green); }
.footer-social svg { width: 16px; height: 16px; }

/* ============ reveal ============ */
html.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ============ responsive ============ */
@media (max-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .show-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .steps, .steps-row { grid-template-columns: 1fr; gap: 1.6rem; }
  .tailored { grid-template-columns: 1fr; }
  .tailored img { max-width: 180px; }
  .channel-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    gap: 1.2rem; background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 1.4rem 6vw 2rem; display: none;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
  .nav-burger span { width: 24px; height: 2px; background: #fff; }
}

/* Legals */
.legals-wrap { padding: 3.5rem 0; }
.legals { padding-top: 1rem; padding-bottom: 5rem; }
.legals h1 { display: none; }
.legals h6 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent, #e83d72); margin: 2rem 0 0.5rem; }
.legals p { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.8rem; }
.legals ul { margin: 0.5rem 0 1rem; padding-left: 1.5rem; }
.legals li { font-size: 0.92rem; line-height: 1.8; margin-bottom: 0.4rem; }
.legals a { color: var(--accent, #e83d72); }
