:root {
  --sw-purple: #6F4CEE;
  --sw-purple-hover: #5638C3;
  --sw-ink: #291E4F;
  --sw-gold: #FDDA08;
  --sw-bg: #F7F5FC;
  --sw-surface: #FFFFFF;
  --sw-line: rgba(41, 30, 79, 0.12);
  --sw-line-strong: rgba(41, 30, 79, 0.18);
  --sw-text: #1F1A33;
  --sw-muted: #62597F;
  --sw-shadow: 0 20px 50px rgba(50, 34, 101, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sw-text);
  background:
    radial-gradient(circle at top left, rgba(111, 76, 238, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(253, 218, 8, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--sw-bg) 100%);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--sw-purple); text-decoration: none; }
a:hover { color: var(--sw-purple-hover); }
img { display: block; max-width: 100%; height: auto; }

.site-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 22px 0 40px;
}

.hero,
.benefits,
.facts,
.faq {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--sw-line);
  box-shadow: var(--sw-shadow);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -60px -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 76, 238, 0.22), rgba(111, 76, 238, 0));
  pointer-events: none;
}

.eyebrow,
.section-kicker,
.logo-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--sw-purple);
}
h1,h2,h3,h4,h5,h6 {
  font-weight:900 !important;
}
.hero h1 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--sw-purple);
}

.lead {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  color: var(--sw-muted);
}

.logo-bridge {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.logo-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,245,252,0.92));
  border: 1px solid var(--sw-line);
  border-radius: var(--radius-xl);
  padding: 18px;
  min-height: 100%;
}

.logo-label {
  color: var(--sw-ink);
  margin-bottom: 14px;
}

.logo-card img {
  width: 100%;
  object-fit: contain;
}

.old img { max-height: 132px; }
.new img { max-height: 182px; }

.bridge-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 14px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sw-gold), #ffe56b);
  color: #241a00;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 34px rgba(253, 218, 8, 0.28);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sw-purple), #8A68FF);
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 76, 238, 0.28);
}

.btn-primary:hover { color: #fff; background: linear-gradient(135deg, var(--sw-purple-hover), var(--sw-purple)); }

.btn-secondary {
  background: rgba(111, 76, 238, 0.08);
  color: var(--sw-purple);
  border: 1px solid rgba(111, 76, 238, 0.16);
}

.microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.microproof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(41, 30, 79, 0.05);
  color: var(--sw-ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.benefits,
.facts,
.faq {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
}

.benefit-grid,
.facts-grid {
  display: grid;
  gap: 14px;
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.benefit-card,
.fact-item,
.faq-list details {
  border: 1px solid var(--sw-line);
  background: linear-gradient(180deg, #fff, rgba(247,245,252,0.86));
  border-radius: var(--radius-lg);
}

.benefit-card {
  padding: 20px;
}

.benefit-card.highlight {
  background: linear-gradient(135deg, rgba(111,76,238,0.08), rgba(253,218,8,0.12));
  border-color: rgba(111, 76, 238, 0.16);
}

.benefit-card h2,
.benefit-card h3,
.facts h2,
.faq h2 {
  margin: 0 0 10px;
  color: var(--sw-ink);
  letter-spacing: -0.03em;
}

.benefit-card h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
.benefit-card h3 { font-size: 1.18rem; }
.benefit-card p,
.fact-item span,
.faq-list p {
  margin: 0;
  color: var(--sw-muted);
}

.section-head { margin-bottom: 16px; }
.section-kicker { margin-bottom: 8px; }

.facts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-item {
  padding: 18px;
}

.fact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sw-ink);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--sw-ink);
}

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

.faq-list p {
  padding: 0 20px 20px;
}

@media (max-width: 920px) {
  .logo-bridge {
    grid-template-columns: 1fr;
  }

  .bridge-marker {
    width: 100%;
  }

  .benefit-grid,
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--container));
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .hero,
  .benefits,
  .facts,
  .faq {
    padding: 18px;
    border-radius: 22px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3.2rem);
  }
  .hero h1 br {
  	display: none;
  }
  .lead {
    font-size: 1rem;
  }

  .old img { max-height: 96px; }
  .new img { max-height: 132px; }

  .btn {
    width: 100%;
  }

  .microproof span {
    width: 100%;
  }
}
