/* FightVista - MMA portfolio theme */

:root {
  --green: #ff4d4d;
  --green-2: #d11212;
  --green-dim: rgba(255, 77, 77, 0.14);
  --bg: #0a0a0c;
  --bg-2: #111115;
  --surface: #17171d;
  --surface-2: #20202a;
  --line: rgba(255, 255, 255, 0.08);
  --line-green: rgba(255, 77, 77, 0.35);
  --text: #f8f8fb;
  --muted: #a6a7b3;
  --radius: 16px;
  --radius-lg: 28px;
  --font: 'League Spartan', 'Arial Narrow', system-ui, sans-serif;
  --shadow-green: 0 0 0 1px rgba(255, 77, 77, 0.2), 0 22px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at top, rgba(255, 77, 77, 0.1), transparent 28%),
    linear-gradient(180deg, #09090b 0%, #0f0f14 45%, #0a0a0c 100%);
  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 {
  margin: 0 0 0.45em;
  line-height: 0.98;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 800;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h3 { font-size: 1.2rem; }
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(1180px, 92vw); margin-inline: auto; }
.container-narrow { width: min(820px, 92vw); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green));
  opacity: 0.8;
}
.eyebrow.solo::after { display: none; }

.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.9em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #ff6a5f 0%, #d11212 100%);
  color: white;
  box-shadow: 0 12px 34px rgba(209, 18, 18, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(209, 18, 18, 0.4); }
.btn-outline { background: rgba(255, 255, 255, 0.03); color: #fff; border-color: rgba(255, 255, 255, 0.18); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-lg { padding: 1em 2.5em; font-size: 1rem; }
.btn-sm { padding: 0.62em 1.35em; font-size: 0.82rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 7, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; }
.logo img { height: 34px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav > a:not(.btn) {
  color: #d5d6df;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.site-nav > a:not(.btn):hover { color: var(--green); }
.lang-switcher { display: flex; align-items: center; gap: 0.45rem; }
.lang-pill {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38em 0.75em;
  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; }
.nav-toggle, .nav-burger { display: none; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.76) 0%, rgba(6, 6, 10, 0.44) 28%, rgba(6, 6, 10, 0.58) 54%, rgba(8, 8, 12, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 6, 10, 0.82) 0%, rgba(6, 6, 10, 0.16) 22%, rgba(6, 6, 10, 0.16) 78%, rgba(6, 6, 10, 0.82) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 77, 77, 0.16), transparent 30%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: auto 10% -18% auto;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  clip-path: polygon(25% 6%, 75% 6%, 95% 26%, 95% 74%, 75% 94%, 25% 94%, 5% 74%, 5% 26%);
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.02), rgba(255, 255, 255, 0));
  z-index: 1;
}
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.035);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: 8rem 0 5rem;
}
.hero h1 { text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); margin-bottom: 0.55rem; }
.hero-sub { color: #dbdbe4; font-size: 1.1rem; max-width: 43rem; margin: 0 auto 1.6rem; }
.hero-price-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hero-price-pill {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 150px;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-price-pill strong { color: white; font-size: 1.15rem; }
.hero-price-pill span { color: var(--muted); font-size: 0.86rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 2.2rem auto 0;
}
.hero-stat {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}
.hero-stat strong { display: block; font-size: 1.6rem; color: white; margin-bottom: 0.2rem; }
.hero-stat span { color: var(--muted); font-size: 0.88rem; }

section { padding: 5.5rem 0; position: relative; }
.bg-alt { background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow { justify-content: center; }
.section-head p { font-size: 1rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split-tight { gap: 2rem; }
.split-copy h2 { margin-bottom: 0.9rem; }
.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-radius: 18px;
  padding: 1.15rem 1.2rem;
  position: relative;
  overflow: hidden;
}
.channel-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #ff6a5f, #d11212);
}
.channel-card .tag { display: block; color: var(--green); font-size: 0.78rem; font-weight: 800; letter-spacing: 1.6px; margin-bottom: 0.45rem; text-transform: uppercase; }
.channel-card p { margin: 0; font-size: 0.92rem; }

.split-visual { display: flex; justify-content: center; }
.visual-photo-card {
  position: relative;
  width: min(100%, 460px);
  min-height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 77, 77, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(12, 12, 16, 0.82), rgba(10, 10, 14, 0.96));
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
}
.visual-photo-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.66) saturate(0.95);
  transform: scale(1.04);
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 44%, transparent 88%);
  mask-image: radial-gradient(circle at 50% 48%, #000 44%, transparent 88%);
}
.visual-photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 77, 77, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(9, 9, 13, 0.08) 0%, rgba(9, 9, 13, 0.18) 38%, rgba(9, 9, 13, 0.86) 100%),
    linear-gradient(90deg, rgba(9, 9, 13, 0.9) 0%, rgba(9, 9, 13, 0.08) 18%, rgba(9, 9, 13, 0.08) 82%, rgba(9, 9, 13, 0.9) 100%);
  z-index: 1;
}
.visual-board {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.74), rgba(10, 10, 14, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.board-kicker {
  color: var(--green);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}
.board-title { font-size: 2rem; font-weight: 800; line-height: 1; margin-bottom: 1.2rem; text-transform: uppercase; }
.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.board-chip {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #ececf1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.84rem;
}

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  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: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.16), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 77, 77, 0.28);
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
}
.feature-card p { font-size: 0.92rem; margin: 0; }

.show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.show-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 330px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 77, 77, 0.14), transparent 32%),
    linear-gradient(180deg, #1a1a22 0%, #121218 100%);
}
.show-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.74) saturate(0.95);
  transform: scale(1.03);
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 42%, transparent 92%);
  mask-image: radial-gradient(circle at 50% 48%, #000 42%, transparent 92%);
}
.show-art-top {
  object-position: center top;
}
.show-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.06) 0%, rgba(10, 10, 12, 0.3) 48%, rgba(10, 10, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 10, 12, 0.84) 0%, rgba(10, 10, 12, 0.08) 18%, rgba(10, 10, 12, 0.08) 82%, rgba(10, 10, 12, 0.84) 100%);
  z-index: 1;
}
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 28%, rgba(10, 10, 12, 0.92) 100%);
  z-index: 2;
}
.overlay h3 { margin-bottom: 0.25rem; }
.overlay span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.overlay p { margin: 0; font-size: 0.9rem; color: #d2d3dc; }
.badge-soon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a5f, #d11212);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tailored { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; }
.tailored-panel {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 77, 77, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(14, 14, 18, 0.9), rgba(10, 10, 14, 0.98));
}
.tailored-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.08), rgba(8, 8, 12, 0.84)),
    linear-gradient(90deg, rgba(8, 8, 12, 0.88) 0%, rgba(8, 8, 12, 0.1) 22%, rgba(8, 8, 12, 0.1) 78%, rgba(8, 8, 12, 0.88) 100%);
}
.tailored-panel-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.94);
  transform: scale(1.035);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 44%, transparent 90%);
  mask-image: radial-gradient(circle at 50% 50%, #000 44%, transparent 90%);
}
.tailored-panel-alt {
  justify-content: flex-end;
}
.tailored-panel span {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.38);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.tailored-mid { max-width: 380px; text-align: center; }

.checklist { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.checklist li { display: flex; align-items: center; gap: 0.8rem; color: #e6e6ed; font-weight: 600; }
.checklist li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #ff6a5f, #d11212);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  flex: none;
}
.ring-side { display: grid; gap: 0.9rem; }
.ring-card {
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ring-card strong {
  display: block;
  margin-bottom: 0.3rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ring-card span { color: var(--muted); font-size: 0.9rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.step {
  text-align: left;
  padding: 1.6rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.step .num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 77, 77, 0.2);
  -webkit-text-stroke: 1px rgba(255, 77, 77, 0.6);
  margin-bottom: 0.8rem;
}
.step p { margin: 0; font-size: 0.92rem; }

.faq-shell { padding-top: 4.5rem; }
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 0.95rem;
  padding: 1.1rem 3rem 1.1rem 1.2rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.35rem;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .body { padding: 0 1.2rem 1.15rem; color: var(--muted); font-size: 0.94rem; }

.cta-band {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 6rem 0;
}
.cta-band .bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cta-band .bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.74), rgba(8, 8, 12, 0.48) 36%, rgba(8, 8, 12, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 8, 12, 0.88) 0%, rgba(8, 8, 12, 0.2) 18%, rgba(8, 8, 12, 0.2) 82%, rgba(8, 8, 12, 0.88) 100%);
  z-index: 1;
}
.cta-band .bg::after {
  content: '';
  position: absolute;
  inset: 12% 34%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  clip-path: polygon(25% 6%, 75% 6%, 95% 26%, 95% 74%, 75% 94%, 25% 94%, 5% 74%, 5% 26%);
  z-index: 1;
}
.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.9);
  transform: scale(1.04);
}
.cta-band .inner { position: relative; z-index: 2; }
.cta-logo { height: 42px; margin: 0 auto 1rem; }
.cta-band p { max-width: 40rem; margin: 0 auto 2rem; color: #d7d7df; }

.page-hero {
  text-align: center;
  padding: 4.7rem 0 2.7rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
.page-hero p { max-width: 42rem; margin: 0.7rem auto 0; }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 460px)); justify-content: center; gap: 1.4rem; }
.plan-card {
  background: linear-gradient(180deg, rgba(255, 77, 77, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 77, 77, 0.24);
  border-radius: 24px;
  padding: 2.2rem 1.9rem;
  text-align: center;
  box-shadow: var(--shadow-green);
}
.plan-card .eyebrow { justify-content: center; }
.plan-price { font-size: 2.1rem; font-weight: 800; color: white; line-height: 1.2; margin: 1rem 0 0.35rem; }
.plan-trial { color: var(--green); font-weight: 700; }
.plan-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.7rem;
  text-align: left;
}
.plan-features li { display: flex; gap: 0.7rem; color: #e0e0e8; font-size: 0.95rem; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 900; }

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
}
.step-card .num { color: var(--green); font-weight: 800; font-size: 1rem; letter-spacing: 2px; }
.step-card p { margin: 0; font-size: 0.92rem; }

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

.form-card, .contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-green);
}
.form-card.narrow { max-width: 460px; margin-inline: auto; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  color: #d9dae2;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  font: inherit;
  color: white;
  padding: 0.85em 1em;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 77, 77, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.error-msg,
.errorMsg { display: none; color: #ff9d9d; font-size: 0.84rem; margin-top: 0.35rem; }
.form-success,
.successMsg { color: #ffb6b6; font-size: 0.92rem; margin-top: 1rem; }
.form-disclaimer { font-size: 0.84rem; margin-top: 0.9rem; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 3rem 0 1.4rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { max-width: 34rem; }
.footer-col h4 {
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  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; }
}

@media (max-width: 960px) {
  .split,
  .feature-grid,
  .show-grid,
  .steps,
  .steps-row,
  .footer-grid,
  .hero-stats,
  .form-row { grid-template-columns: 1fr; }
  .tailored { grid-template-columns: 1fr; }
  .tailored-mid { max-width: none; }
  .channel-cards,
  .board-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 840px) {
  .site-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    background: rgba(10, 10, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.2rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .nav-burger span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 999px;
  }
  .nav-toggle { display: none; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
}
