/* ============================================================
   KYOKUSHIN SONODA — SHARED DESIGN SYSTEM
   karatesonoda.org • 2026
   Palette: #0A0A0A / #FFFFFF / #C8102E / #F5F5F5 / #1C1C1C
   Type: Bebas Neue (display) + Plus Jakarta Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #0A0A0A;
  color: #FFFFFF;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --red:     #C8102E;
  --red-dark:#A00D24;
  --black:   #0A0A0A;
  --card:    #141414;
  --border:  #2A2A2A;
  --mid:     #888888;
  --light:   #F5F5F5;
  --white:   #FFFFFF;
  --nav-h:   72px;
  --max-w:   1200px;
  --section-v: 96px;
}

/* ── Typography Scale ────────────────────────────────────── */
.t-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.t-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.t-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}
.t-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.t-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.t-body { font-size: 1rem; line-height: 1.75; color: #CCCCCC; font-weight: 400; }
.t-small { font-size: 0.875rem; line-height: 1.6; color: var(--mid); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-v) 0; }
.section--light { background: var(--light); color: var(--black); }
.section--card  { background: var(--card); }

/* ── Red slash signature element ─────────────────────────── */
/* A single diagonal red accent line used on hero blocks */
.red-slash {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.red-slash--thick {
  height: 6px;
}

/* ── Site Header / Nav ───────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 12px;
  overflow: visible;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}
.nav-brand__sub {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AAAAAA;
  transition: color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s !important;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: visible;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

/* Hamburger */
.nav-toggle { display: none; }
#navToggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
}
#navToggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s;
}
#navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #0A0A0A;
  border-bottom: 1px solid var(--border);
  z-index: 199;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #AAAAAA;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }
.mobile-menu .nav-cta {
  margin-top: 12px;
  display: block;
  text-align: center;
  border-bottom: none !important;
}

/* ── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--white); }

/* ── Hero Block ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero--tall { min-height: 680px; }
.hero--short { min-height: 360px; }

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--card);
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 64px 0 72px;
}
.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #CCCCCC;
  max-width: 620px;
  margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-dark); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn--outline-dark:hover { background: var(--black); color: var(--white); }
.btn--sm { padding: 10px 20px; font-size: 0.72rem; }

/* ── Section Header ──────────────────────────────────────── */
.section-hdr { margin-bottom: 56px; }
.section-hdr--center { text-align: center; }
.section-hdr__label { margin-bottom: 12px; }
.section-hdr__title { margin-bottom: 16px; }
.section-hdr__desc { max-width: 600px; }
.section-hdr--center .section-hdr__desc { margin: 0 auto; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.card:hover { border-color: #444; }
.card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #1C1C1C; }
.card__img--square { aspect-ratio: 1/1; }
.card__body { padding: 24px; }
.card__label { margin-bottom: 8px; }
.card__title { margin-bottom: 8px; }
.card__text { font-size: 0.9rem; line-height: 1.65; color: #AAAAAA; }
.card__footer { padding: 16px 24px; border-top: 1px solid var(--border); }
.card__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card__link:hover { gap: 10px; }

/* Profile card */
.profile-card { display: flex; gap: 32px; align-items: flex-start; }
.profile-card__img {
  width: 140px; height: 180px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  background: #1C1C1C;
  flex-shrink: 0;
}
.profile-card__body {}
.profile-card__name { margin-bottom: 4px; }
.profile-card__title { font-size: 0.8rem; color: var(--mid); letter-spacing: 0.08em; margin-bottom: 16px; }
.profile-card__text { font-size: 0.92rem; line-height: 1.7; color: #AAAAAA; margin-bottom: 20px; }

/* Instructor card */
.instructor-card { text-align: center; }
.instructor-card__img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  background: #1C1C1C;
  margin-bottom: 20px;
}
.instructor-card__name { margin-bottom: 4px; }
.instructor-card__rank { font-size: 0.75rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.instructor-card__text { font-size: 0.85rem; color: #AAAAAA; line-height: 1.6; }

/* Directory card */
.dir-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s;
}
.dir-card:hover { border-color: #444; }
.dir-card__flag { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.dir-card__country { font-weight: 700; font-size: 0.95rem; margin-bottom: 2px; }
.dir-card__rep { font-size: 0.82rem; color: var(--mid); }

/* Event card */
.event-card { position: relative; overflow: hidden; }
.event-card__date {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 2px;
}
.event-card__type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.event-card__location { font-size: 0.82rem; color: var(--mid); margin-top: 8px; }

/* News card */
.news-card .card__img { aspect-ratio: 16/9; }
.news-card .card__date { font-size: 0.72rem; color: var(--mid); margin-bottom: 8px; letter-spacing: 0.08em; }

/* ── Grids ───────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  padding: 64px 0;
  text-align: center;
}
.cta-band__title { color: var(--white); margin-bottom: 12px; }
.cta-band__sub { font-size: 1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--outline { border-color: rgba(255,255,255,0.5); }
.cta-band .btn--outline:hover { border-color: var(--white); }

/* ── Stat strip ──────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip__item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-strip__item:last-child { border-right: none; }
.stat-strip__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-strip__num span { color: var(--red); }
.stat-strip__label { font-size: 0.72rem; color: var(--mid); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Form ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #111111;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #555; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #111; }
.form-check { display: flex; gap: 12px; align-items: flex-start; }
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--red); flex-shrink: 0; }
.form-check label { font-size: 0.85rem; color: #AAAAAA; line-height: 1.5; }
.form-error { font-size: 0.78rem; color: #FF6B6B; margin-top: 6px; display: none; }
.form-success {
  background: #0A2A0A;
  border: 1px solid #1A5C1A;
  border-radius: 3px;
  padding: 24px;
  text-align: center;
  display: none;
}
.form-success h3 { color: #4ADE80; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: #AAAAAA; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Turnstile mobile fix */
.turnstile-wrap { overflow: hidden; width: 100%; }
.cf-turnstile { transform-origin: left center; }
@media (max-width: 520px) {
  .cf-turnstile { transform: scale(0.78); margin-bottom: -12px; }
}

/* ── Site Footer ─────────────────────────────────────────── */
#site-footer {}
.footer-main {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-brand__org {
  font-size: 0.72rem;
  color: var(--mid);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-brand__domain {
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 16px;
}
.footer-col__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.85rem;
  color: var(--mid);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom__copy { font-size: 0.78rem; color: var(--mid); }
.footer-bottom__credit { font-size: 0.78rem; color: var(--mid); }
.footer-bottom__credit a { color: inherit; text-decoration: underline; }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--white); color: var(--white); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
}
.fab-btn {
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: none;
  transition: transform 0.2s, background 0.2s;
  position: relative;
  z-index: 2;
}
.fab-btn:hover { transform: scale(1.08); background: #20BA5A; }
.fab-btn svg { width: 28px; height: 28px; fill: #fff; }
.fab-bubble {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 280px;
  background: #1C1C1C;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: none;
}
.fab-bubble.open { display: block; }
.fab-bubble__header {
  background: #25D366;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fab-bubble__header-title { font-size: 0.82rem; font-weight: 700; color: #fff; }
.fab-bubble__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.fab-bubble__close:hover { opacity: 1; }
.fab-bubble__body { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.fab-bubble__item {
  display: block;
  padding: 10px 14px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.82rem;
  color: #CCCCCC;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-align: left;
  text-decoration: none;
}
.fab-bubble__item:hover { border-color: #25D366; color: #fff; }

/* Image placeholder */
.img-placeholder {
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Divider ─────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── Reveal animations ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --section-v: 64px; }
  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  #navToggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .profile-card { flex-direction: column; }
  .profile-card__img { width: 100%; height: 240px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero--tall { min-height: 520px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-band__actions { flex-direction: column; align-items: center; }
}


/* ── Demo/launch-safety refinements ─────────────────────── */
:focus-visible { outline: 3px solid rgba(255,255,255,.95); outline-offset: 3px; }
body.menu-open { overflow: hidden; }
.demo-note {
  margin: 0 0 20px; padding: 14px 16px; border: 1px solid rgba(200,16,46,.45);
  background: rgba(200,16,46,.08); border-radius: 3px; color: #d8d8d8; font-size: .82rem; line-height: 1.6;
}
.demo-note strong { color: #fff; }
.verified-state {
  border: 1px solid var(--border); background: var(--card); border-radius: 3px; padding: 36px;
}
.verified-state__eyebrow { color: var(--red); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; font-weight: 700; margin-bottom: 10px; }
.verified-state__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.verified-state__text { color: #aaa; line-height: 1.7; max-width: 760px; }
.demo-success { display:none; padding: 28px; border:1px solid var(--border); background:#111; border-radius:3px; }
.demo-success h3 { margin-bottom:10px; }
.demo-success p { color:#aaa; line-height:1.7; }
.privacy-panel { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.privacy-panel h3 { font-size:.9rem; margin-bottom:10px; }
.privacy-panel p { color:#888; font-size:.78rem; line-height:1.7; }
@media (max-width: 900px) { body.menu-open { overflow: hidden; } }
