/* ==========================================================================
   VRSVET - "fight night"
   Near-black arena canvas washed by a hot overhead spotlight, blood-red accent,
   poster-weight display type, panels cut like fight cards.
   ========================================================================== */

:root {
  --bg: #08090c;
  --bg-2: #0e1116;
  --bg-3: #141922;
  --surface: rgba(20, 25, 34, 0.78);
  --surface-solid: #141922;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.2);

  --text: #f4f5f7;
  --muted: #9aa3b2;
  --muted-2: #6c7686;

  --accent: #e11d2a;
  --accent-hot: #ff3b30;
  --accent-deep: #8f0f18;
  --flare: linear-gradient(100deg, #8f0f18 0%, #e11d2a 55%, #ff3b30 100%);

  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 10px;
  --header-h: 74px;

  --font-display: 'Anton', 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.5);
  --glow: 0 0 50px rgba(225, 29, 42, 0.35);
}

/* ── Reset / base ───────────────────────────────────────────────────────── */

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

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Overhead spotlight wash + faint canvas grain. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 40% at 50% -8%, rgba(225, 29, 42, 0.2), transparent 70%),
    radial-gradient(45% 35% at 92% 12%, rgba(255, 59, 48, 0.09), transparent 70%),
    radial-gradient(70% 50% at 8% 88%, rgba(143, 15, 24, 0.12), transparent 70%);
  pointer-events: none;
}

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

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

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.6rem;
  line-height: 1.05;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h3,
h4,
h5 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-inline-start: 1.15rem;
}

:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 3px;
}

/* ── Layout primitives ──────────────────────────────────────────────────── */

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

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

.container-mid {
  width: min(960px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 3rem;
  width: min(46rem, 100%);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-head .lead {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 3px;
  background: var(--accent);
}

.grad-text {
  color: var(--accent-hot);
}

/* ── Buttons ────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(225, 29, 42, 0.34);
}

.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(225, 29, 42, 0.48);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.62rem 1.2rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 1.1rem 2.3rem;
  font-size: 0.97rem;
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* ── Header + navigation ────────────────────────────────────────────────── */

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  direction: ltr;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 9, 12, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo svg {
  height: 30px;
  width: auto;
  display: block;
}

.site-nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav-desktop a:not(.btn),
.site-nav a:not(.btn) {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s ease;
}

.site-nav-desktop a:not(.btn):hover,
.site-nav a:not(.btn):hover,
.site-nav-desktop a.active,
.site-nav a.active {
  color: #fff;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding-inline-start: 0.9rem;
  border-inline-start: 1px solid var(--border);
}

.lang-pill {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.58rem;
  border-radius: var(--radius-sm);
  color: var(--muted-2);
  border: 1px solid transparent;
}

.lang-pill:hover {
  color: #fff;
}

.lang-active {
  color: #fff;
  border-color: var(--border-strong);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav {
  display: none;
}

@media (max-width: 960px) {
  .site-nav-desktop {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 800;
    padding: 1.1rem 4vw 1.6rem;
    background: rgba(10, 12, 16, 0.99);
    border-bottom: 1px solid var(--border);
    transform: translateY(-115%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .site-nav a:not(.btn),
  .site-nav .lang-switcher {
    padding: 0.65rem 0;
  }
  .site-nav .lang-switcher {
    border-inline-start: 0;
    border-top: 1px solid var(--border);
    margin-top: 0.6rem;
    padding-inline-start: 0;
  }
  .site-nav .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.7rem;
  }
  .nav-toggle:checked ~ .site-nav {
    transform: translateY(0);
    visibility: visible;
  }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .site-header .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: min(84vh, 760px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  filter: grayscale(0.35) contrast(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, 0.97) 0%, rgba(8, 9, 12, 0.86) 42%, rgba(8, 9, 12, 0.35) 100%),
    linear-gradient(to top, rgba(8, 9, 12, 1) 2%, transparent 45%);
}

.hero-copy {
  width: min(46rem, 100%);
}

.hero-copy h1 {
  margin-bottom: 1.1rem;
}

.hero-copy .lead {
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-signin {
  margin-top: 1.7rem;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.hero-signin a {
  color: var(--accent-hot);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 59, 48, 0.45);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--accent-hot);
}

/* Signature element: the live pulse dot. */
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(225, 29, 42, 0.14);
  border: 1px solid rgba(225, 29, 42, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-hot);
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.75);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(255, 59, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

/* ── Page hero (inner pages) ────────────────────────────────────────────── */

.page-hero {
  padding: 4.5rem 0 2.5rem;
  position: relative;
}

.page-hero h1 {
  margin-bottom: 0.9rem;
}

.page-hero .lead {
  margin-bottom: 0;
}

/* ── Cards / panels ─────────────────────────────────────────────────────── */

.panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.panel::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.panel:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(26, 32, 43, 0.9);
}

.panel:hover::before {
  opacity: 1;
}

.panel h3 {
  margin-bottom: 0.5rem;
}

.panel .body {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: rgba(225, 29, 42, 0.14);
  border: 1px solid rgba(225, 29, 42, 0.45);
  color: var(--accent-hot);
}

.icon-badge svg {
  width: 23px;
  height: 23px;
}

/* ── Showcase ───────────────────────────────────────────────────────────── */

.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.3rem;
}

.shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  min-height: 250px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.08);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.shot:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.12);
}

.shot-tall {
  grid-row: span 2;
}

.shot-cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 3rem 1.5rem 1.3rem;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.97), rgba(8, 9, 12, 0.72) 45%, transparent);
}

.shot-cap h3 {
  margin-bottom: 0.25rem;
}

.shot-cap .body {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* Disciplines panel - typographic, no imagery needed. */
.disciplines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.9rem 1.7rem;
  background: linear-gradient(160deg, #161b24, #0b0d12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.disciplines h3 {
  margin-bottom: 1.1rem;
}

.disc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.disc-list li {
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.42rem 0.8rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.disc-list li:nth-child(odd) {
  color: var(--accent-hot);
  border-color: rgba(225, 29, 42, 0.5);
}

/* ── Why us strip ───────────────────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 2.2rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.3rem 0;
  border-top: 1px solid var(--border);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  flex: none;
  line-height: 1;
  padding-top: 0.2rem;
}

.why-item h3 {
  font-size: 1.03rem;
  margin-bottom: 0.28rem;
}

.why-item .body {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ── Split band ─────────────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem;
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.split-media img {
  filter: grayscale(0.2) contrast(1.08);
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.97rem;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 0.22rem;
  color: var(--accent-hot);
}

/* ── Steps ──────────────────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.6rem;
}

.step-num {
  position: absolute;
  top: -19px;
  inset-inline-start: 1.4rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 22px rgba(225, 29, 42, 0.4);
}

.step h3 {
  font-size: 1.06rem;
  margin: 0.5rem 0 0.4rem;
}

.step .body {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0;
}

/* ── Pricing cards ──────────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: var(--flare);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
}

.pricing-op {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.pricing-users {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 1.3rem;
}

.price-val {
  font-family: var(--font-display);
  font-size: 2.3rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin-bottom: 0.2rem;
  color: var(--accent-hot);
}

.price-freq {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.price-trial {
  color: var(--accent-hot);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.price-note {
  color: var(--muted-2);
  font-size: 0.88rem;
  text-align: center;
  margin: 1.8rem auto 0;
}

/* ── Opt-out ────────────────────────────────────────────────────────────── */

.optout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.3rem;
}

.optout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.optout-op {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 1rem;
}

.sms-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 1.15rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.55);
  border: 1px dashed rgba(225, 29, 42, 0.55);
  direction: ltr;
}

.sms-key {
  font-family: 'Barlow', monospace;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}

.sms-arrow {
  color: var(--muted-2);
  font-size: 1.1rem;
}

.sms-dest {
  font-family: 'Barlow', monospace;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-hot);
}

.sms-label {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.85rem 0 0;
}

.optout-link {
  display: inline-block;
  color: var(--accent-hot);
  font-weight: 600;
  word-break: break-all;
}

.notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.note {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.note svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.2rem;
  color: var(--accent-hot);
}

/* ── Policy list ────────────────────────────────────────────────────────── */

.policy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.policy-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.policy-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: none;
  margin-top: 0.6rem;
  background: var(--accent);
  transform: rotate(45deg);
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(225, 29, 42, 0.5);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.01rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-hot);
  flex: none;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── CTA band ───────────────────────────────────────────────────────────── */

.cta-band {
  position: relative;
  background: var(--flare);
  padding: 4rem 2.4rem;
  text-align: center;
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-band h2 {
  margin-bottom: 0.7rem;
  color: #fff;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.92);
  width: min(46rem, 100%);
  margin: 0 auto 1.9rem;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-band .btn-primary:hover {
  background: #fff;
  color: #000;
}

/* ── Forms (contact + signin) ───────────────────────────────────────────── */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.form-card.narrow {
  width: min(520px, 100%);
  margin-inline: auto;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.1rem;
}

.contact-form h3,
.form-card h3 {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signin-card button,
.form-card button {
  margin-top: 0.5rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-2);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(225, 29, 42, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.error-msg,
.errorMsg {
  display: none;
  color: #ff6b5e;
  font-size: 0.84rem;
  margin-top: 0.3rem;
}

.form-success,
.successMsg {
  display: none;
  color: #4ade80;
  font-weight: 700;
  margin-top: 1rem;
}

.form-disclaimer {
  color: var(--muted-2);
  font-size: 0.84rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.care-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.6rem;
}

.care-card a {
  color: var(--accent-hot);
  font-weight: 600;
  word-break: break-word;
}

.care-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.care-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 1.6rem;
}

.care-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
  opacity: 0.85;
}

/* ── 404 ────────────────────────────────────────────────────────────────── */

.not-found {
  min-height: 62vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 0;
}

.big-num {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 19vw, 11rem);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
  color: var(--accent);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 6, 8, 0.85);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2.5rem;
}

.footer-brand svg {
  height: 30px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .body {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 0.18s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-entity {
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.7;
}

.footer-entity a {
  color: var(--accent-hot);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 0.84rem;
}

.footer-bottom .body {
  margin: 0;
}

.footer-version {
  opacity: 0.55;
  font-size: 0.74rem;
}

/* ── Legal pages ────────────────────────────────────────────────────────── */

.legals-wrap {
  padding: 1rem 0 3.5rem;
}

.legals {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.legals .container {
  width: min(840px, 92vw);
  margin-inline: auto;
}

.legals h1 {
  display: none;
}

.legals h6 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hot);
  margin: 2rem 0 0.5rem;
}

.legals p {
  margin-bottom: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
}

.legals ul {
  margin: 0.5rem 0 1rem;
  padding-inline-start: 1.2rem;
}

.legals li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
  color: var(--muted);
}

.legals a {
  color: var(--accent-hot);
}

.legals span {
  color: var(--text);
}

.legals table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.legals td,
.legals th {
  border: 1px solid var(--border);
  padding: 0.6rem 0.8rem;
  color: var(--muted);
  font-size: 0.93rem;
  text-align: start;
}

/* ── Scroll reveal (gated on html.js so no-JS visitors see everything) ──── */

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  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;
  }
  .live-dot {
    animation: none;
  }
  .shot img {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1000px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .grid-3,
  .why-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .shot-tall {
    grid-row: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-bg img {
    object-position: 68% center;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 3.8rem 0;
  }
  .grid-3,
  .grid-2,
  .why-grid,
  .steps,
  .notes,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .form-card,
  .policy-card {
    padding: 1.5rem;
  }
  .cta-band {
    padding: 2.8rem 1.4rem;
  }
  .hero {
    min-height: 0;
    padding: 3rem 0 3.5rem;
  }
  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(8, 9, 12, 0.95) 0%, rgba(8, 9, 12, 0.8) 100%),
      linear-gradient(to top, rgba(8, 9, 12, 1) 2%, transparent 55%);
  }
}
