/*
 * Copyright @ OnCore Consulting LLC a Voyatek Company
 * OnCore NewSite — modern design, Voyatek palette
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Instrument+Sans:wght@500;600;700&display=swap');

:root {
  --vt-dark: #131A2A;
  --vt-dark-muted: #1a2332;
  --vt-red: #FF6B7F;
  --vt-red-hover: #FF8999;
  --vt-red-button: #C4102E;
  --vt-red-button-hover: #A30D25;
  --vt-purple: #8338FF;
  --vt-cyan: #22D3EE;
  --vt-teal: #00DA98;
  --accent: #fff;
  --accent-rgb: 255, 255, 255;
  --accent-text-glow: 0 0 10px rgba(255, 255, 255, 0.45), 0 0 22px rgba(255, 255, 255, 0.18);
  --accent-box-glow: 0 0 14px rgba(255, 255, 255, 0.22), inset 0 0 10px rgba(255, 255, 255, 0.06);
  --vt-gray-text: #636B71;
  --vt-gray-muted: #516387;
  --vt-gray-light: #E7E6E6;
  --bg: #131A2A;
  --bg-muted: #1a2332;
  --bg-elevated: #243044;
  --bg-card: #1e2a3d;
  --text: #E7E6E6;
  --text-muted: #a8b0b8;
  --border: rgba(81, 99, 135, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Instrument Sans', 'DM Sans', sans-serif;
  --max: 1200px;
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vt-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); text-shadow: var(--accent-text-glow); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; color: var(--text-muted); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section--muted { background: var(--bg-muted); }
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: var(--accent-text-glow);
  margin-bottom: 0.75rem;
}
.section__title { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--text); margin-bottom: 1rem; }
.section__lead { font-size: 1.125rem; max-width: 640px; }

/* Top bar */
.topbar {
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 992px) {
  .topbar { display: block; }
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: var(--text-muted); }
.topbar a:hover { color: var(--vt-red); }
.topbar__social { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.topbar__voyatek {
  font-weight: 600;
  padding-right: 0.75rem;
  margin-right: 0.25rem;
  border-right: 1px solid var(--border);
}

/* Social icons (topbar + footer) */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.social-icon svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}
.social-icon:hover {
  color: #fff;
  background: var(--vt-red-button);
  border-color: var(--vt-red-button);
}
.topbar .social-icon {
  width: 1.75rem;
  height: 1.75rem;
}
.topbar .social-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
.topbar a.social-icon:hover {
  color: #fff;
  background: var(--vt-red-button);
  border-color: var(--vt-red-button);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 26, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  flex-shrink: 0;
  text-decoration: none;
}
.header__logo img { max-height: 52px; width: auto; display: block; }
.header__tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  margin-left: 24px;
}
.nav { display: none; }
@media (min-width: 992px) {
  .nav { display: flex; gap: 0.25rem; }
}
.nav a {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s, text-shadow 0.2s;
}
.nav a:hover, .nav a.is-active {
  color: var(--accent);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  text-shadow: var(--accent-text-glow);
  box-shadow: var(--accent-box-glow);
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--text);
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover, .mobile-nav a.is-active {
  color: var(--accent);
  text-shadow: var(--accent-text-glow);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19, 26, 42, 0.92) 0%, rgba(19, 26, 42, 0.75) 45%, rgba(131, 56, 255, 0.15) 100%),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat;
}
.hero__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 17, 50, 0.2) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; padding: 4rem 0; }
a.license-ref {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
a.license-ref:hover { color: var(--vt-red); border-bottom-color: var(--vt-red); }
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--vt-red), var(--vt-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn--primary {
  background: var(--vt-red-button);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 16, 46, 0.35);
}
.btn--primary:hover { background: var(--vt-red-button-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--accent);
  text-shadow: var(--accent-text-glow);
  box-shadow: var(--accent-box-glow);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat__label { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.5rem; }

/* About */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-grid__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.values { display: grid; gap: 1rem; margin-top: 2rem; }
.value-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s;
}
.value-card:hover { border-color: rgba(131, 56, 255, 0.4); }
.value-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(237, 17, 50, 0.2), rgba(131, 56, 255, 0.2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.value-card h4 { font-size: 0.9375rem; margin-bottom: 0.35rem; color: var(--text); }
.value-card p { font-size: 0.875rem; margin: 0; }

/* Services bento */
.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(131, 56, 255, 0.4);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(237, 17, 50, 0.2), rgba(131, 56, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.0625rem; color: var(--text); margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; margin: 0; }

/* RAPID2 banner */
.rapid-banner {
  background: linear-gradient(135deg, var(--bg-elevated) 0%, rgba(131, 56, 255, 0.12) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .rapid-banner { grid-template-columns: 1.2fr 1fr; }
}
.rapid-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
.rapid-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--accent);
  text-shadow: var(--accent-text-glow);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* RAPID2 intro + Dash mascot */
.rapid-intro {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .rapid-intro {
    grid-template-columns: 1fr minmax(180px, 280px);
    gap: 2.5rem;
  }
}
@media (min-width: 992px) {
  .rapid-intro { grid-template-columns: 1fr minmax(220px, 340px); gap: 3rem; }
}
.rapid-intro__mascot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.rapid-intro__mascot img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

/* Portfolio */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--vt-red-button);
  border-color: var(--vt-red-button);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(196, 16, 46, 0.35);
}
.filter-btn:hover {
  background: var(--vt-red-button-hover);
  border-color: var(--vt-red-button-hover);
}
.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.portfolio-card.is-hidden { display: none; }
.portfolio-card__img { aspect-ratio: 16/10; overflow: hidden; display: block; }
.portfolio-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.portfolio-card:hover .portfolio-card__img img { transform: scale(1.05); }
.portfolio-card__body { padding: 1.25rem; }
.portfolio-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.35rem;
}
.portfolio-card h3 { font-size: 1rem; margin-bottom: 0.35rem; color: var(--text); }
.portfolio-card p { font-size: 0.8125rem; margin-bottom: 1rem; }
.portfolio-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--vt-red);
}

/* OnCore Advantage */
.section__lead {
  max-width: 42rem;
  margin: -0.5rem auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.0625rem;
}
.advantage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .advantage-grid { grid-template-columns: repeat(2, 1fr); } }
.advantage-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.advantage-block h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.advantage-block > p {
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}
.advantage-block > p:last-child { margin-bottom: 0; }
.advantage-callout {
  border-left: 3px solid var(--vt-red);
  padding-left: 1rem;
  margin: 0.75rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}
.advantage-badges,
.advantage-clients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.advantage-badge,
.advantage-client {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
.advantage-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--vt-red);
}
.advantage-steps { display: grid; gap: 1rem; margin-top: 0.5rem; }
.advantage-step {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.advantage-step__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--vt-red);
  background: rgba(196, 30, 58, 0.08);
  border-radius: 50%;
}
.advantage-step strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.advantage-step p {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--text-muted);
}
.advantage-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
}
.advantage-mini-stat { text-align: center; }
.advantage-mini-stat__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vt-red);
  line-height: 1.2;
}
.advantage-mini-stat__label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; max-width: 800px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--vt-red);
  transition: transform 0.2s;
}
.faq-item.is-open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item__a-inner { padding: 0 1.5rem 1.25rem; }
.faq-item__a p { margin: 0; font-size: 0.9375rem; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 2fr 1fr; } }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-card h3 { font-size: 1rem; color: var(--accent); text-shadow: var(--accent-text-glow); margin-bottom: 0.5rem; }

/* Footer */
.footer {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }
.footer h4 { font-size: 0.9375rem; margin-bottom: 1rem; color: var(--text); }
.footer-tagline { font-style: italic; color: var(--text-muted); font-size: 0.875rem; margin: -0.5rem 0 1rem; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: var(--text-muted); font-size: 0.875rem; }
.footer ul a:hover { color: var(--vt-red); }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-social .social-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: var(--vt-red-button);
  border-color: var(--vt-red-button);
  color: #fff;
}
.footer-social .social-icon:hover {
  background: var(--vt-red-button-hover);
  border-color: var(--vt-red-button-hover);
  color: #fff;
}
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Inner pages */
.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb span { color: var(--vt-red); }

.detail-block {
  display: grid;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .detail-block { grid-template-columns: 1fr 1fr; }
  .detail-block--reverse .detail-block__media { order: 2; }
}
.detail-block__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.detail-block__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.detail-block h2 { font-size: 1.25rem; color: var(--text); margin-bottom: 1rem; }

/* Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 1.5rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}
.comparison-table th { background: var(--bg-elevated); color: var(--text); }
.comparison-table td { background: var(--bg-card); color: var(--text-muted); }
.comparison-table td:last-child { color: var(--accent); text-shadow: var(--accent-text-glow); }

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.feature-item h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.875rem; margin: 0; }

.numbered-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .numbered-grid { grid-template-columns: repeat(3, 1fr); } }
.numbered-item {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.numbered-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--vt-red);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.community-stat {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.community-stat__num { font-size: 2rem; font-weight: 700; color: var(--vt-red); }
.community-stat__label { font-size: 0.875rem; color: var(--text-muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vt-red-button);
  color: #fff;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 99;
  font-size: 1.25rem;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; }
