:root {
  --bg-deep: #0d0320;
  --bg-mid:  #1a0838;
  --purple-900: #2a0a4a;
  --purple-700: #4b1791;
  --purple-500: #7b3ff2;
  --purple-400: #9b6bff;
  --purple-300: #c9a6ff;
  --purple-100: #ede0ff;
  --text: #f4ecff;
  --text-dim: #b8a6d9;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(155, 107, 255, 0.18);
  --radius: 18px;
  --max-width: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--purple-500);
  color: white;
  padding: 8px 16px;
  z-index: 200;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* Background glow */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 63, 242, 0.35), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(201, 166, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(75, 23, 145, 0.25), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
nav {
  padding: 22px 0;
  position: sticky;
  top: var(--banner-height, 0px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(13, 3, 32, 0.7);
  z-index: 100;
  border-bottom: 1px solid rgba(155, 107, 255, 0.08);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(123, 63, 242, 0.5);
}
.logo-mark svg { width: 22px; height: 22px; fill: white; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-400));
  color: white !important;
  padding: 9px 18px;
  border-radius: 10px;
  font-weight: 600 !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(123, 63, 242, 0.4); }
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155, 107, 255, 0.12);
  border: 1px solid rgba(155, 107, 255, 0.25);
  color: var(--purple-300);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-400);
  box-shadow: 0 0 12px var(--purple-400);
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(123, 63, 242, 0.35);
}
.app-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }
.app-store-btn .text-block { text-align: left; line-height: 1.15; }
.app-store-btn .text-block .small { font-size: 0.7rem; opacity: 0.85; }
.app-store-btn .text-block .big { font-size: 1.15rem; font-weight: 600; }

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.95rem;
}
.rating-inline .stars { color: #ffd166; letter-spacing: 2px; }

/* Phone mockup */
.device-stage {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone {
  width: 280px;
  height: 570px;
  background: #0a021a;
  border-radius: 44px;
  border: 8px solid #1c0838;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(123, 63, 242, 0.35),
    inset 0 0 0 1px rgba(155, 107, 255, 0.2);
  position: relative;
  overflow: hidden;
  transform: rotateX(8deg);
}
.phone::before {
  content: '';
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #000;
  border-radius: 100px;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(201, 166, 255, 0.7), rgba(123, 63, 242, 0.4) 35%, rgba(42, 10, 74, 0.95) 70%, #0a021a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  color: white;
}
.phone-time {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}
.phone-date {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-bottom: 50px;
}
.phone-controls {
  display: flex;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 14px;
}
.phone-ctl {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.phone-ctl svg { width: 22px; height: 22px; fill: white; }
@keyframes glow-pulse {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 1; }
}
.phone-screen { animation: glow-pulse 4s ease-in-out infinite; }

/* Sections */
section {
  padding: 90px 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-dim);
  font-size: 1.1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 107, 255, 0.45);
  background: rgba(155, 107, 255, 0.06);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 63, 242, 0.3), rgba(201, 166, 255, 0.15));
  border: 1px solid rgba(155, 107, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; fill: var(--purple-300); }
.feature h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-dim);
  font-size: 0.97rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: 20px; right: 24px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(155, 107, 255, 0.18);
  line-height: 1;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p { color: var(--text-dim); font-size: 0.97rem; }

/* Devices */
.devices-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.device-chip {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.device-chip svg { width: 18px; height: 18px; fill: var(--purple-300); }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, rgba(75, 23, 145, 0.5), rgba(123, 63, 242, 0.25));
  border: 1px solid rgba(155, 107, 255, 0.3);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 166, 255, 0.35), transparent 60%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.final-cta p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 28px;
  position: relative;
}
.final-cta .cta-row { position: relative; }

/* Footer */
footer {
  border-top: 1px solid rgba(155, 107, 255, 0.1);
  padding: 50px 0 30px;
  margin-top: 60px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
footer a { color: var(--purple-300); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.copyright {
  text-align: center;
  margin-top: 20px;
}

/* Mega footer (multi-column) */
.mega-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px 24px;
  padding-bottom: 30px;
}
.mega-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 14px;
}
.mega-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.95rem;
}
@media (max-width: 540px) {
  .mega-footer { text-align: left; }
}

/* ===== Legal / content pages (privacy, terms) ===== */
.page-hero {
  padding: 70px 0 30px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero .meta {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px 80px;
  color: var(--text);
}
.legal h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 38px 0 12px;
  color: var(--text);
}
.legal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--purple-300);
}
.legal p, .legal li {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.legal li { margin-bottom: 6px; }
.legal a { color: var(--purple-300); }
.legal strong { color: var(--text); font-weight: 600; }

/* ===== Feature pages ===== */
.feature-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 24px 60px;
}
.feature-page .lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.feature-page h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 50px 0 14px;
  letter-spacing: -0.01em;
}
.feature-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--purple-300);
}
.feature-page p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.feature-page ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.feature-page li {
  color: var(--text-dim);
  margin-bottom: 8px;
}
.feature-page strong { color: var(--text); }

.callout {
  background: rgba(155, 107, 255, 0.08);
  border-left: 3px solid var(--purple-400);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--text);
}
.callout p { color: var(--text); margin: 0; font-size: 1rem; }

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.bullet-grid .item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px;
}
.bullet-grid .item strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.bullet-grid .item span { color: var(--text-dim); font-size: 0.95rem; }

/* Feature CTA strip */
.feature-cta {
  background: linear-gradient(135deg, rgba(75, 23, 145, 0.4), rgba(123, 63, 242, 0.2));
  border: 1px solid rgba(155, 107, 255, 0.3);
  border-radius: 22px;
  padding: 38px 28px;
  text-align: center;
  margin: 50px 0 30px;
}
.feature-cta h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.feature-cta p { margin-bottom: 18px; }

/* Related features */
.related {
  margin-top: 60px;
}
.related h2 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.related-grid a {
  display: block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.related-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(155, 107, 255, 0.45);
  background: rgba(155, 107, 255, 0.06);
}
.related-grid a strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.related-grid a span { color: var(--text-dim); font-size: 0.9rem; }

/* ===== Features hub (features/index.html) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.hub-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 107, 255, 0.45);
  background: rgba(155, 107, 255, 0.06);
}
.hub-card .feature-icon { margin-bottom: 16px; }
.hub-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.hub-card p { color: var(--text-dim); font-size: 0.97rem; }

/* Make .feature itself clickable as a card variant */
.feature.linked {
  display: block;
  text-decoration: none;
  color: var(--text);
}
.feature .more {
  display: inline-block;
  margin-top: 10px;
  color: var(--purple-300);
  font-size: 0.92rem;
  font-weight: 500;
}
.feature.linked:hover .more { text-decoration: underline; }

/* Color/sound sub-page cards as links */
a.color-card, a.sound-card {
  display: block;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
a.color-card:hover, a.sound-card:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 107, 255, 0.45);
  background: rgba(155, 107, 255, 0.04);
}
.sound-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px;
}

/* Article-style guide pages */
.article-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 16px;
  flex-wrap: wrap;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-meta .dot-sep {
  color: var(--card-border);
}
.toc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 30px 0 40px;
}
.toc h2 {
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-300) !important;
  margin: 0 0 12px !important;
  font-weight: 600 !important;
}
.toc ol {
  margin: 0;
  padding-left: 22px;
}
.toc li {
  color: var(--text);
  margin-bottom: 6px;
}
.toc a {
  color: var(--text);
  text-decoration: none;
}
.toc a:hover {
  color: var(--purple-300);
  text-decoration: underline;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  margin: 40px 0;
}
.article-author .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-300));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
}
.article-author .author-info {
  font-size: 0.92rem;
}
.article-author .author-info strong { color: var(--text); display: block; }
.article-author .author-info span { color: var(--text-dim); }

/* ===== Social proof + conversion components ===== */

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 20px auto 80px;
  padding: 0 24px;
}
.stat-card {
  text-align: center;
  padding: 24px 18px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  transition: border-color 0.2s, background 0.2s;
}
.stat-card:hover {
  border-color: rgba(155, 107, 255, 0.35);
  background: rgba(155, 107, 255, 0.05);
}
.stat-value {
  font-size: 2.1rem;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-value .stat-stars {
  background: none;
  -webkit-text-fill-color: #ffd166;
  color: #ffd166;
  margin-right: 6px;
  font-size: 1.5rem;
  vertical-align: 2px;
}
.stat-label {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 107, 255, 0.35);
}
.testimonial-rating {
  color: #ffd166;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.testimonial-quote {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.testimonial-attribution {
  color: var(--text-dim);
  font-size: 0.88rem;
}
.testimonial-attribution strong {
  color: var(--text);
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 24px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.trust-item .check {
  color: #4fd17a;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Hero rating-callout enhancement */
.hero-trust {
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); opacity: 0.5; }
.hero-trust strong { color: var(--text); }

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 0;
  margin-bottom: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.faq details[open] {
  border-color: rgba(155, 107, 255, 0.4);
  background: rgba(155, 107, 255, 0.05);
}
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--purple-300);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after {
  content: '−';
}
.faq .answer {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.65;
}
