/* =========================================================
   StoneParks Shared Styles (Landing, Pay, Success, Admin)
   ========================================================= */

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
  color: #e5e7eb;
  -webkit-font-smoothing: antialiased;
}

/* Basic layout shells */
.page-shell,
.pay-shell,
.success-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 16px 32px;
}

/* Simple top brand strip (used by landing/pay/success if needed) */
.brand-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #4ade80, #22c55e);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
}

.brand-tagline {
  font-size: 0.8rem;
  opacity: 0.7;
}

.brand-right {
  font-size: 0.78rem;
  text-align: right;
  opacity: 0.8;
}

/* Global text helpers */
.muted {
  opacity: 0.75;
  font-size: 0.85rem;
}

.small {
  font-size: 0.8rem;
}

/* Cards */
.card,
.glass-card {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.85),
    0 0 0 1px rgba(15, 23, 42, 0.7);
  padding: 18px 16px;
}

/* Hero layout (index / landing) */
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Left side hero content */
.hero-left h1,
.hero-title {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 8px;
}

.hero-subtitle {
  font-size: 0.98rem;
  opacity: 0.86;
  margin-bottom: 16px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* Badge / pill styles */
.pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
}

.pill-green {
  border-color: rgba(34, 197, 94, 0.7);
  color: #bbf7d0;
  background: rgba(22, 163, 74, 0.14);
}

.pill-blue {
  border-color: rgba(59, 130, 246, 0.7);
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
}

.pill-amber {
  border-color: rgba(245, 158, 11, 0.7);
  color: #fed7aa;
  background: rgba(245, 158, 11, 0.12);
}

/* Right side hero “system” card / highlight */
.hero-right {
  position: relative;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.hero-right-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-right-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 10px;
}

.hero-right-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(30, 64, 175, 0.5);
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.08s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #0b1120;
  border-color: rgba(34, 197, 94, 0.9);
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-0.5px);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.btn-secondary:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.92);
}

/* Ticket lookup form on landing / pay */
.ticket-lookup-card {
  margin-top: 16px;
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px dashed rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.99));
}

.ticket-lookup-heading {
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.ticket-lookup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ticket-lookup-form input[type="text"],
.ticket-lookup-form input[type="number"] {
  flex: 1;
  min-width: 150px;
  padding: 7px 10px;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
}

/* Pay page layout */
.pay-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .pay-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pay-summary-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 16px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.99));
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.pay-summary-heading {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.ticket-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.88rem;
  padding: 4px 0;
}

.ticket-detail-label {
  opacity: 0.7;
}

.ticket-detail-value {
  font-weight: 500;
}

.ticket-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.ticket-status-unpaid {
  background: rgba(248, 113, 113, 0.07);
  border: 1px solid rgba(248, 113, 113, 0.75);
  color: #fecaca;
}

.ticket-status-paid {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.75);
  color: #bbf7d0;
}

/* Pay side / steps */
.pay-side-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 18px 16px;
  background: radial-gradient(circle at top right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.7);
}

.pay-steps {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  font-size: 0.88rem;
}

.pay-steps li {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  opacity: 0.85;
}

.pay-steps span.step-badge {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.school-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

/* Success page */
.success-hero {
  margin-top: 20px;
}

.success-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 20px 18px 18px;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.99));
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.7);
  text-align: left;
}

.success-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.8);
  background: radial-gradient(circle at 30% 30%, #4ade80, #22c55e);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.7);
  color: #052e16;
  margin-bottom: 10px;
}

.success-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.success-subtitle {
  font-size: 0.92rem;
  opacity: 0.86;
  margin-bottom: 12px;
}

.success-meta {
  font-size: 0.85rem;
  opacity: 0.8;
}

.success-ticket-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.78rem;
}

/* Footer / legal */
.footer {
  margin-top: 18px;
  font-size: 0.78rem;
  opacity: 0.75;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-pill {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
}

/* Admin / log-specific general helpers (to match log.html / log.js) */

body {
  /* Keep the dark gradient you already have, just make sure
     content isn’t smashed against the edges */
  margin: 0;
}

.sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sp-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.sp-header-title h1 {
  font-size: 1.6rem;
  margin: 0;
}

.sp-header-title p {
  margin: 2px 0 0;
  font-size: 0.95rem;
  opacity: 0.75;
}

.sp-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.btn-logout {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.btn-logout:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Main content wrapper */

.sp-main {
  max-width: 1100px;
  margin: 0 auto 72px;
  padding: 24px 16px 0;
}

/* Cards / panels */

.panel.card {
  background: rgba(2, 8, 23, 0.9);
  border-radius: 16px;
  padding: 20px 24px 24px;
  margin-top: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.panel.card h2 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

/* Login form */

#login-panel {
  margin-top: 24px;
}

#login-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-top: 10px;
}

#login-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

#login-form input {
  min-width: 180px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

/* Buttons */

.btn-primary {
  padding: 8px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #16a34a;
  color: white;
  font-weight: 600;
}

.btn-primary:hover {
  background: #15803d;
}

.btn-secondary {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: rgba(148, 163, 184, 0.12);
}

/* Overview KPIs */

.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 14px 0 18px;
}

.kpi-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: radial-gradient(circle at top left, #0ea5e9 0, #020617 55%, #000 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.kpi-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.kpi-value {
  margin-top: 6px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* Filters + table */

.ticket-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.input-inline {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  font-size: 0.9rem;
}

.ticket-table-wrapper {
  overflow-x: auto;
}

.ticket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ticket-table thead {
  background: rgba(15, 23, 42, 0.95);
}

.ticket-table th,
.ticket-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(30, 64, 175, 0.5);
  text-align: left;
}

.ticket-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.ticket-table tbody tr:hover {
  background: rgba(15, 23, 42, 0.8);
}

.ticket-empty {
  text-align: center;
  padding: 18px;
  opacity: 0.7;
}

/* Status pills */

.badge-status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-unpaid {
  background: rgba(220, 38, 38, 0.12);
  color: #fca5a5;
}

.badge-paid {
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
}

/* Thumbnail + photo modal */

.photo-cell {
  text-align: center;
}

.ticket-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  cursor: zoom-in;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

/* Modal overlay for ticket photo */

.photo-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.photo-modal.hidden {
  display: none;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
}

.photo-modal-content {
  position: relative;
  z-index: 1;
  background: #020617;
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
}

.photo-modal-close {
  position: absolute;
  top: 6px;
  right: 10px;
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 1.4rem;
  cursor: pointer;
}

#photo-modal-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 12px;
}

/* Misc */

.hidden {
  display: none !important;
}

/* ================================
   Multi-school theming hooks
   ================================ */

/* Default StoneParks / Pelham-ish green */
.theme-default {
  /* no overrides yet – this is your current look */
}

/* Crimson Ridge theme (red + white demo school) */

.theme-crimson-ridge {
  /* Accent color variable if we ever expand */
}

/* Buttons & pills when Crimson Ridge is active */
.theme-crimson-ridge .btn-primary {
  background: linear-gradient(135deg, #C1121F, #8F0D18);
  border-color: rgba(193, 18, 31, 0.95);
  color: #FEF9C3;
  box-shadow: 0 16px 40px rgba(193, 18, 31, 0.7);
}

.theme-crimson-ridge .pill-green {
  /* Reuse structure but tint red instead of green */
  border-color: rgba(193, 18, 31, 0.75);
  color: #FECACA;
  background: rgba(193, 18, 31, 0.14);
}

/* Optional: success pill variant for Crimson Ridge */
.theme-crimson-ridge .ticket-status-paid,
.theme-crimson-ridge .status-paid {
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

/* Optional: global background tint for Crimson Ridge pages */
body.theme-crimson-ridge {
  background:
    radial-gradient(circle at top left, rgba(193,18,31,0.25), #020617 45%, #000 100%);
}

/* ===========================
   Shared footer + brand row
   =========================== */

.site-footer {
  max-width: 1040px;
  margin: 40px auto 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(30, 64, 175, 0.35);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #9ca3af;
}

.site-footer .accept {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-footer .accept img {
  height: 18px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1);
  opacity: 0.9;
}

.site-footer .accept img:first-of-type {
  height: 20px; /* Visa just a touch taller */
}

.site-footer .copyright span,
.site-footer small {
  color: #6b7280;
}

@media (max-width: 640px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===========================
   Background logo overlays
   =========================== */

.bg-panther {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(15, 23, 42, 0.98), #020617 55%, #000 100%),
    url("/assets/panther.png") no-repeat left top;
  background-size: cover, min(520px, 42vw) auto;
  opacity: 0.55;
}

/* Crimson Ridge variant when the theme class is present */
body.theme-crimson-ridge .bg-panther {
  background:
    radial-gradient(circle at top left, rgba(193, 18, 31, 0.45), #020617 55%, #020617 100%),
    url("/assets/crimson-ridge-bg.svg") no-repeat left top;
  background-size: cover, min(520px, 42vw) auto;
  opacity: 0.72;
}

/* ===========================
   Marketing header + About / FAQ
   =========================== */

/* Site header / nav for marketing pages (index, about, faq) */

.site-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
  backdrop-filter: blur(10px);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 10px;
}

.site-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo-dot {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at 20% 0, #22c55e, #0f172a 55%, #020617 95%);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.35);
}

.site-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-header-title {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.site-header-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
}

.site-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav-link {
  font-size: 0.9rem;
  color: #9ca3af;
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-nav-link:hover {
  color: #f9fafb;
  background-color: rgba(148, 163, 184, 0.12);
}

.site-nav-link-active {
  color: #f9fafb;
  background-color: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.8);
}

.site-nav-login {
  font-size: 0.9rem;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.28), rgba(15, 23, 42, 0.9));
  color: #f9fafb;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.8);
}

.site-nav-login:hover {
  border-color: rgba(34, 197, 94, 0.9);
  background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.38), rgba(15, 23, 42, 0.95));
}

/* Marketing main wrapper (for about/faq pages) */

.marketing-main {
  padding-top: 18px;
}

/* FAQ page layout */

.faq-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.faq-hero-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  margin: 0 0 0.4rem;
}

.faq-hero-subtitle {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 640px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-wrap: wrap;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-main {
    padding-top: 14px;
  }
}

.faq-panel {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 16px 18px;
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
}

.faq-panel-secondary {
  border-color: rgba(51, 65, 85, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.99));
}

.faq-section-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.7rem;
}

.faq-item {
  margin-bottom: 0.75rem;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 550;
  margin-bottom: 0.12rem;
}

.faq-a {
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.45;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbf7d0;
  background-color: rgba(22, 163, 74, 0.15);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
  border: 1px solid rgba(74, 222, 128, 0.6);
  margin-bottom: 0.65rem;
}

.faq-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.faq-reassure-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}

.faq-reassure-list li {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.faq-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.9);
}

/* About page layout */

.about-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.about-hero-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 650;
  letter-spacing: 0.02em;
  margin: 0 0 0.45rem;
}

.about-hero-subtitle {
  font-size: 0.98rem;
  color: #9ca3af;
  max-width: 640px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 20px;
  margin-top: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-panel {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  padding: 16px 18px;
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
}

.about-heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
}

.about-text {
  font-size: 0.92rem;
  color: #9ca3af;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0.1rem;
}

.about-list li {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-check-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.9);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbf7d0;
  background-color: rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  border: 1px solid rgba(74, 222, 128, 0.65);
  margin-bottom: 0.65rem;
}

.about-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.about-side {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border-radius: 18px;
  border: 1px solid rgba(51, 65, 85, 0.9);
  padding: 16px 18px;
  box-shadow:
    0 22px 45px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.85);
}

.about-side-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.about-pill-list {
  list-style: none;
  padding-left: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.about-pill {
  font-size: 0.85rem;
  color: #e5e7eb;
  background-color: rgba(15, 23, 42, 0.85);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.35rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: flex-start;
}

.about-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.85);
}
