/*
 * Landing Page — PriceGuard for Shopify
 * Aesthetic: Modern tech — dark sophistication meets warm energy
 * Palette: Dark zinc (#27272A) + Amber (#FBBF24)
 * Typography: Funnel Display (display) + Outfit (body)
 */

/* ─── Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── Design Tokens ─── */
.page {
  --primary: #27272A;
  --primary-dark: #18181B;
  --primary-light: #3F3F46;
  --primary-pale: #F4F4F5;
  --primary-wash: rgba(39, 39, 42, 0.05);

  --accent: #FBBF24;
  --accent-hover: #FCD34D;
  --accent-dark: #D97706;
  --accent-muted: #92400E;
  --accent-pale: #FFFBEB;
  --accent-wash: rgba(251, 191, 36, 0.10);

  --ink: #27272A;
  --ink-muted: #52525B;
  --ink-faint: #A1A1AA;

  --surface: #ffffff;
  --background: #FAFAFA;
  --background-alt: #F4F4F5;

  --font-display: 'Funnel Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-card:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(39, 39, 42, 0.06);
  --shadow-card-hover:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(39, 39, 42, 0.1);
}

/* ─── Loading Overlay ─── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loaderHidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loaderIcon {
  width: 64px;
  height: 64px;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

/* ─── Page Shell ─── */
.page {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* Subtle noise texture overlay */
.page::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Floating Geometric Shapes (Hero) ─── */
.floatingShapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floatingShape {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(2rem, 5vw, 3.5rem);
  height: clamp(2rem, 5vw, 3.5rem);
  color: var(--accent);
  opacity: 0;
  animation:
    floatShapeIn 1s var(--ease-out-expo) forwards,
    floatShape 6s ease-in-out infinite;
  animation-delay:
    var(--delay),
    calc(var(--delay) + 1s);
}

.floatingShape svg {
  width: 100%;
  height: 100%;
}

@keyframes floatShapeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  to {
    opacity: 0.08;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

/* ─── Floating Decorative Elements (Page-level) ─── */
.floatingElements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floatingEl {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: clamp(1.8rem, 4vw, 3rem);
  height: clamp(1.8rem, 4vw, 3rem);
  color: var(--accent);
  opacity: 0;
  animation:
    floatElIn 1.2s var(--ease-out-expo) forwards,
    floatElDrift 8s ease-in-out infinite;
  animation-delay:
    var(--delay),
    calc(var(--delay) + 1.2s);
}

.floatingEl svg {
  width: 100%;
  height: 100%;
}

@keyframes floatElIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }
  to {
    opacity: 0.06;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatElDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 4rem 2rem 8rem;
  background: var(--primary);
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(251, 191, 36, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 30%, rgba(251, 191, 36, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 35% 45% at 85% 60%, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.heroInner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
}

.logoWrap {
  margin-bottom: 2rem;
  animation: slideDown 1.2s var(--ease-out-expo) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.logo {
  width: clamp(280px, 50vw, 420px);
  height: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 2rem 0;
  padding: 0.375rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 100px;
  animation: fadeUp 1s var(--ease-out-expo) 0.15s forwards;
  opacity: 0;
}

.tagline {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2.8vw, 1.375rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.25rem 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.45s forwards;
  opacity: 0;
}

.subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 2.5rem 0;
  max-width: 520px;
  animation: fadeUp 1s var(--ease-out-expo) 0.55s forwards;
  opacity: 0;
}

.heroCta {
  animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Primary CTA Button ─── */
.ctaPrimary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--accent);
  padding: 0.9375rem 2rem;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(251, 191, 36, 0.25);
  transition: all 0.25s var(--ease-out-expo);
}

.ctaPrimary:hover {
  background: var(--accent-hover);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 10px 30px rgba(251, 191, 36, 0.35);
  transform: translateY(-2px);
}

.ctaPrimary:active {
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.1),
    0 3px 8px rgba(251, 191, 36, 0.15);
}

.ctaPrimary svg {
  transition: transform 0.25s var(--ease-out-expo);
}

.ctaPrimary:hover svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.sectionAlt {
  background: var(--background-alt);
}

.sectionAlt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 10% 80%,
    rgba(39, 39, 42, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.sectionInner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.sectionEyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-muted);
  margin: 0 0 0.75rem 0;
}

.sectionTitle {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 3.5rem 0;
}

/* ═══════════════════════════════════════
   FEATURE GRID
   ═══════════════════════════════════════ */
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featureCard {
  background: var(--surface);
  border: 1px solid rgba(39, 39, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: all 0.35s var(--ease-out-expo);
}

.featureCard:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(39, 39, 42, 0.2);
}

.featureIcon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-wash);
  border: 1px solid rgba(39, 39, 42, 0.1);
  border-radius: 12px;
  color: var(--primary);
  margin-bottom: 1.25rem;
  transition: all 0.35s var(--ease-out-expo);
}

.featureCard:hover .featureIcon {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: scale(1.05);
}

.featureName {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.featureDesc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0;
}

/* ═══════════════════════════════════════
   PROSE SECTION
   ═══════════════════════════════════════ */
.sectionProse {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: 620px;
  margin: -1.5rem auto 0;
  text-align: center;
}

/* ═══════════════════════════════════════
   STEPS (How It Works)
   ═══════════════════════════════════════ */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 220px;
  max-width: 220px;
}

.stepNumber {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--accent-muted);
  background: var(--surface);
  border: 2px solid var(--accent-dark);
  border-radius: 50%;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(251, 191, 36, 0.1);
  transition: all 0.3s var(--ease-out-expo);
}

.step:hover .stepNumber {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  transform: scale(1.08);
}

.stepContent {
  padding: 0 0.5rem;
}

.stepName {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.stepDesc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
}

.stepConnector {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--accent-dark);
  padding-top: 1.25rem;
  flex: 0 0 60px;
}

.stepConnector svg:first-child {
  width: 48px;
  height: 24px;
}

.stepArrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CAPABILITIES GRID
   ═══════════════════════════════════════ */
.capGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 2rem auto 0;
}

.cap {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(39, 39, 42, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.3s var(--ease-out-expo);
}

.cap:hover {
  box-shadow: 0 2px 8px rgba(39, 39, 42, 0.08);
  border-color: rgba(39, 39, 42, 0.2);
}

.capIcon {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
  transition: color 0.3s var(--ease-out-expo);
}

.cap:hover .capIcon {
  color: var(--accent);
}

.cap div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cap strong {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.cap span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.sectionCta {
  background: var(--accent);
  position: relative;
}

.sectionCta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.ctaTitle {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--primary);
  margin: 0 0 0.75rem 0;
}

.ctaSubtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: rgba(39, 39, 42, 0.6);
  margin: 0 0 2rem 0;
}

.sectionCta .ctaPrimary {
  background: var(--primary);
  color: var(--surface);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(39, 39, 42, 0.3);
}

.sectionCta .ctaPrimary:hover {
  background: var(--primary-light);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2),
    0 12px 32px rgba(39, 39, 42, 0.4);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0;
  padding: 1.25rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--ink-faint);
  background: var(--background);
  border-top: 1px solid rgba(39, 39, 42, 0.06);
}

.footer a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--accent-muted);
  text-decoration: underline;
}

.footerIcon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
}

.footerDot {
  margin: 0 0.5rem;
  color: var(--ink-faint);
  opacity: 0.5;
}

.footerMadeBy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════════════════════════
   HERO VARIANTS
   ═══════════════════════════════════════ */

/* Active: Dark primary */
.heroDark {
  background: var(--primary);
}

.heroDark::before {
  background:
    radial-gradient(ellipse 70% 50% at 50% 45%, rgba(251, 191, 36, 0.07) 0%, transparent 60%);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 768px) {
  .featureGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .step {
    flex: none;
    max-width: 320px;
  }

  .stepConnector {
    transform: rotate(90deg);
    padding-top: 0;
    flex: 0 0 40px;
  }

  .capGrid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem 1.5rem 6rem;
    min-height: auto;
    padding-top: max(3rem, 12vh);
  }
}

/* Mobile */
@media (max-width: 520px) {
  .featureGrid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .logo {
    width: clamp(200px, 70vw, 300px);
  }

  .floatingShape {
    display: none;
  }

  .floatingEl {
    display: none;
  }

  .footer {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .footerDot {
    display: none;
  }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .loaderIcon,
  .floatingShape,
  .floatingEl,
  .logoWrap,
  .eyebrow,
  .tagline,
  .subtitle,
  .heroCta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .featureCard:hover,
  .step:hover .stepNumber,
  .featureCard:hover .featureIcon,
  .ctaPrimary:hover {
    transform: none;
  }

  .ctaPrimary:hover svg {
    transform: none;
  }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Privacy Policy, etc.)
   ═══════════════════════════════════════ */
.legalHeader {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 1rem 2rem;
}

.legalHeaderInner {
  max-width: 960px;
  margin: 0 auto;
}

.legalLogoLink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.legalLogoIcon {
  width: 28px;
  height: 28px;
}

.legalLogoText {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legalContent {
  position: relative;
  z-index: 1;
  padding: 3rem 2rem 4rem;
}

.legalInner {
  max-width: 720px;
  margin: 0 auto;
}

.legalTitle {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.5rem 0;
}

.legalMeta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin: 0 0 2.5rem 0;
}

.legalContent h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  margin: 2.5rem 0 0.75rem 0;
}

.legalContent p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  margin: 0 0 1rem 0;
}

.legalContent ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem 0;
}

.legalContent li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.legalContent a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legalContent a:hover {
  color: var(--accent-muted);
}

.legalContent strong {
  font-weight: 600;
  color: var(--ink);
}

.legalTableWrap {
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

.legalTable {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.8125rem;
}

.legalTable th {
  text-align: left;
  padding: 0.625rem 0.75rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid rgba(39, 39, 42, 0.12);
}

.legalTable td {
  padding: 0.625rem 0.75rem;
  font-weight: 300;
  color: var(--ink-muted);
  border-bottom: 1px solid rgba(39, 39, 42, 0.06);
  line-height: 1.5;
}

.legalTable td:first-child {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 520px) {
  .legalContent {
    padding: 2rem 1.25rem 3rem;
  }
}

/* ═══════════════════════════════════════
   CHANGELOG
   ═══════════════════════════════════════ */
.changelogDate {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--ink-faint);
}

.legalContent code {
  font-size: 0.8125rem;
  background: var(--background-alt);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   FAQ (details/summary accordion)
   ═══════════════════════════════════════ */
.faqItem {
  border-bottom: 1px solid rgba(39, 39, 42, 0.08);
}

.faqItem summary {
  padding: 0.875rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
}

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

.faqItem summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.625rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink-faint);
  border: 1px solid rgba(39, 39, 42, 0.15);
  border-radius: 4px;
  vertical-align: middle;
  transition: all 0.2s ease;
}

.faqItem[open] summary::before {
  content: '\2212';
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.faqAnswer {
  padding: 0 0 1rem 1.875rem;
}

.faqWarning {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent-muted);
  background: var(--accent-pale);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  margin: 0 0 1rem 0;
}
