/* ============================================
   Index-only styles (hero, demo, features, etc.)
   ============================================ */

/* ── Hero ── */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 24px 0 24px;
}
.hero h1 .stack {
  display: block;
  position: relative;
}
.hero h1 em {
  font-style: normal;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Space Grotesk', sans-serif;
}
.hero-sub {
  font-size: 18px;
  color: var(--soft);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--soft);
}
.trust-item .hex-icon { width: 22px; height: 22px; font-size: 9px; }
.trust-divider {
  width: 1px;
  height: 16px;
  background: var(--rule);
}

/* ── Phone-style chat demo ── */
.demo-stage {
  position: relative;
  padding: 24px;
  display: grid;
  place-items: center;
}
.demo-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(91,27,152,0.20) 0%, transparent 60%),
    radial-gradient(60% 50% at 80% 20%, rgba(240,169,91,0.22) 0%, transparent 60%);
  filter: blur(30px);
  z-index: -1;
}

.phone {
  width: 340px;
  height: 620px;
  background: var(--ink);
  border-radius: 44px;
  padding: 8px;
  box-shadow: var(--shadow-glow), 0 0 0 1.5px rgba(255,255,255,0.08) inset;
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 3;
}
.ig-header {
  padding: 38px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #EFEFEF;
  background: #fff;
}
.ig-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-grad);
  display: grid; place-items: center;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.ig-meta { flex: 1; min-width: 0; }
.ig-name {
  font-size: 14px;
  font-weight: 600;
  color: #0E1838;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ig-name svg { width: 12px; height: 12px; }
.ig-status {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ig-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34D399;
}
.ig-controls {
  display: flex;
  gap: 14px;
  color: #888;
}
.ig-controls svg { width: 18px; height: 18px; }

.ig-chat {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  scroll-behavior: smooth;
}
.ig-chat::-webkit-scrollbar { width: 0; }

.bubble {
  max-width: 75%;
  padding: 9px 13px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: bubble-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes bubble-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.bubble-c {
  align-self: flex-end;
  background: linear-gradient(135deg, #5B1B98, #1A6FB8);
  color: #fff;
  border-bottom-right-radius: 6px;
}
.bubble-a {
  align-self: flex-start;
  background: #F1F2F6;
  color: #1A1A1A;
  border-bottom-left-radius: 6px;
}
.bubble-img {
  align-self: flex-start;
  width: 65%;
  border-radius: 14px;
  overflow: hidden;
  background: #F1F2F6;
  flex-shrink: 0;
  animation: bubble-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bubble-img-art {
  width: 100%;
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(45deg, #EFE7F8 0 8px, #F5EFFB 8px 16px);
  position: relative;
  display: grid;
  place-items: center;
}
.bubble-img-art::before {
  content: "PRODUCT IMAGE";
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: #8470A8;
  letter-spacing: 0.14em;
}
.bubble-img-caption {
  padding: 8px 12px;
  font-size: 12px;
  color: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bubble-img-caption strong {
  font-weight: 600;
}

.typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  background: #F1F2F6;
  padding: 12px 14px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #888;
  animation: typing 1.2s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.15s; }
.typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Customer-side image bubble (product photo customer sent in) */
.bubble-img-c {
  align-self: flex-end;
  width: 55%;
  background: linear-gradient(135deg, #5B1B98, #1A6FB8);
  padding: 4px;
  border-radius: 16px;
  border-bottom-right-radius: 6px;
  flex-shrink: 0;
}
.bubble-img-c.receipt {
  width: 60%;
  padding: 4px;
  background: linear-gradient(135deg, #5B1B98, #1A6FB8);
  border-radius: 16px;
  border-bottom-right-radius: 6px;
}
.bubble-img-c.receipt img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.bubble-img-c .bubble-img-art {
  border-radius: 12px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 6px, rgba(255,255,255,0.06) 6px 12px),
    linear-gradient(135deg, #6B2BA8, #2A7FC4);
}
.bubble-img-c .bubble-img-art::before {
  content: "FORWARDED · POST";
  color: rgba(255,255,255,0.7);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.bubble-img-caption.c {
  color: #fff;
  padding: 6px 10px 4px;
  font-size: 12px;
  justify-content: flex-end;
}

/* Customer shared an Instagram post (image + post meta header) */
.shared-post {
  align-self: flex-end;
  width: 72%;
  background: linear-gradient(135deg, #5B1B98, #1A6FB8);
  padding: 4px;
  border-radius: 16px;
  border-bottom-right-radius: 6px;
  flex-shrink: 0;
  overflow: hidden;
  animation: bubble-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.shared-post-head {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.95);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px 4px;
}
.shared-post-img {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.shared-post-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.shared-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: -10px;
  padding: 8px 12px 10px;
  position: relative;
  z-index: 1;
}
.shared-post-title { font-size: 12px; font-weight: 600; color: #0E1838; }
.shared-post-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Generic mini-card inside chat (gigl picker, order summary, confirm) */
.product-card {
  align-self: stretch;
  background: linear-gradient(135deg, #FBFAFF 0%, #FFF8F0 100%);
  border: 1px solid #EFE7F8;
  border-radius: 14px;
  padding: 14px;
  margin: 4px 8px;
  flex-shrink: 0;
  animation: bubble-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.product-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B1B98;
  margin-bottom: 10px;
}
.product-card-dot {
  width: 14px; height: 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--brand-grad);
  flex-shrink: 0;
}
.kv-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 0;
  color: #1A1A1A;
}
.kv-row span:first-child { color: #888; }
.kv-row.total { font-weight: 700; font-size: 13px; }
.kv-row.total span:first-child { color: #1A1A1A; }
.kv-divider {
  height: 1px;
  background: #EFE7F8;
  margin: 8px 0;
}

/* Product detail card (with bullets) */
.product-card.detail {
  padding: 14px 16px;
}
.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px solid #EFE7F8;
  margin-bottom: 8px;
}
.detail-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0E1838;
}
.detail-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.detail-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail-bullet {
  font-size: 12px;
  color: #3A3A3A;
  line-height: 1.45;
}

/* GIGL prompt line under options */
.gigl-prompt {
  margin-top: 10px;
  font-size: 12px;
  color: #5C6584;
  font-style: italic;
}

/* Generic in-card footer line */
.card-footer {
  margin-top: 10px;
  font-size: 12px;
  color: #1A1A1A;
  line-height: 1.45;
}
.card-footer strong {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* GIGL drop-off option rows */
.gigl-opt {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border: 1px solid #EFE7F8;
  border-radius: 8px;
  margin-top: 6px;
  background: #fff;
}
.gigl-opt:first-of-type {
  border-color: rgba(91,27,152,0.35);
  background: linear-gradient(135deg, rgba(91,27,152,0.04), rgba(240,169,91,0.04));
}
.gigl-opt-name { font-size: 12px; font-weight: 600; color: #1A1A1A; }
.gigl-opt-addr { font-size: 10.5px; color: #888; font-family: 'JetBrains Mono', monospace; margin-top: 1px; }

/* Bank transfer block (inside order card) */
.bank-block {
  background: linear-gradient(135deg, #0E1838 0%, #1B2A5E 100%);
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 4px;
}
.bank-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.bank-acc {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.bank-meta {
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* Final confirmation card */
.confirm-card {
  background: linear-gradient(135deg, rgba(91,27,152,0.06), rgba(240,169,91,0.08));
  border-color: rgba(91,27,152,0.25);
  text-align: center;
  padding: 18px 14px;
}
.confirm-tick {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-grad);
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -8px rgba(91,27,152,0.4);
}
.confirm-tick svg { width: 22px; height: 22px; }
.confirm-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0E1838;
  margin-bottom: 4px;
}
.confirm-ref {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #5C6584;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.confirm-ref strong {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.confirm-rows {
  text-align: left;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
.confirm-footer {
  font-size: 11.5px;
  color: #5C6584;
  line-height: 1.4;
}
.confirm-sub {
  font-size: 12px;
  color: #5C6584;
  line-height: 1.4;
}
.confirm-sub strong {
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.ig-composer {
  padding: 10px 12px;
  border-top: 1px solid #EFEFEF;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff;
}
.ig-composer-input {
  flex: 1;
  background: #F1F2F6;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ig-composer-input::before {
  content: "";
  width: 14px; height: 14px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--brand-grad);
}

.demo-tag {
  position: absolute;
  z-index: 4;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.demo-tag .hex-icon { width: 22px; height: 22px; }
.demo-tag .mono { font-family: 'JetBrains Mono', monospace; color: var(--soft); font-size: 11px; }
.demo-tag-tl { top: -8px; left: -32px; }
.demo-tag-br { bottom: 24px; right: -48px; }
@media (max-width: 980px) {
  .demo-tag-tl { left: -16px; }
  .demo-tag-br { right: -16px; }
}
@media (max-width: 600px) {
  .phone { width: 300px; height: 580px; }
  .demo-tag-tl, .demo-tag-br { display: none; }
}

.demo-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  backdrop-filter: blur(8px);
}
.demo-controls-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--soft);
}
.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s;
}
.demo-btn:hover { transform: translateY(-1px); }
.demo-btn svg { width: 11px; height: 11px; }

/* ── Logos strip ── */
.logos-strip {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--card);
}
.logos-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logos-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--softer);
}
.logos-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.logo-chip {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--soft);
  letter-spacing: -0.01em;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.logo-chip:hover { opacity: 1; color: var(--ink); }
.logo-chip.italic { font-style: italic; }

/* ── How it works ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 820px) {
  .steps-row { grid-template-columns: 1fr; }
}
.step-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,27,152,0.2);
  box-shadow: var(--shadow-lift);
}
.step-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--softer);
  margin-bottom: 16px;
}
.step-card-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--brand-grad);
  display: grid;
  place-items: center;
  color: #fff;
}
.step-card-icon svg { width: 24px; height: 24px; }
.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-card p {
  font-size: 14.5px;
  color: var(--soft);
  line-height: 1.55;
}

/* ── Features (bento grid) ── */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}
@media (max-width: 880px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .bento { grid-template-columns: 1fr; } }

.bento-card {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bento-card:hover {
  border-color: rgba(91,27,152,0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.bento-card .hex-icon { width: 36px; height: 36px; }
.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.bento-card p {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.55;
}
.bento-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--softer);
  margin-bottom: -4px;
}

.bento-wide { grid-column: span 4; }
.bento-third { grid-column: span 2; }
.bento-half { grid-column: span 3; }
@media (max-width: 880px) {
  .bento-wide, .bento-third, .bento-half { grid-column: span 2; }
}
@media (max-width: 540px) {
  .bento-wide, .bento-third, .bento-half { grid-column: span 1; }
}

/* Visual: dashboard preview */
.dash-mock {
  margin-top: 16px;
  background: linear-gradient(180deg, #FBFAFE 0%, #fff 100%);
  border: 1px solid var(--rule-2);
  border-radius: var(--r);
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  overflow: hidden;
}
.dash-row {
  display: flex;
  gap: 10px;
}
.dash-stat {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 10px 12px;
}
.dash-stat .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.dash-stat .num .gradient-text { font-weight: 700; }
.dash-stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--softer);
  text-transform: uppercase;
}
.dash-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.dash-item {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: 8px;
  padding: 8px 10px;
}
.dash-item-thumb {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: repeating-linear-gradient(45deg, #EFE7F8 0 4px, #F5EFFB 4px 8px);
  flex-shrink: 0;
}
.dash-item-meta { flex: 1; min-width: 0; }
.dash-item-meta .nm { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.dash-item-meta .pr { font-size: 10px; color: var(--soft); font-family: 'JetBrains Mono', monospace; }
.dash-item-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #2A8E5C;
  background: #E6F6EB;
  padding: 2px 6px;
  border-radius: 4px;
}
.dash-item-tag.warn { color: #C58A0C; background: #FBF4E0; }

/* Personality dial visual */
.dial {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.dial-pill {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
}
.dial-pill::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rule);
}
.dial-pill.active {
  border-color: transparent;
  background: var(--brand-grad-soft);
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.dial-pill.active::before { background: var(--brand-grad); }

/* Skin-tone chart visual */
.skin-row {
  margin-top: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.skin-swatch {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  position: relative;
}
.skin-swatch span {
  position: absolute;
  bottom: -16px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--softer);
}
.skin-swatch.selected {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ── Audience cards ── */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .aud-grid { grid-template-columns: 1fr; } }
.aud-card {
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 24px 22px;
  background: var(--card);
  transition: transform 0.2s, border-color 0.2s;
}
.aud-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91,27,152,0.25);
}
.aud-card .hex-icon { margin-bottom: 16px; }
.aud-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.aud-card p {
  font-size: 13.5px;
  color: var(--soft);
  line-height: 1.55;
}

/* ── Big stats band ── */
.stats-band {
  margin: 0 0 0;
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 80% at 0% 50%, rgba(91,27,152,0.45) 0%, transparent 60%),
    radial-gradient(40% 80% at 100% 50%, rgba(240,169,91,0.30) 0%, transparent 60%);
  opacity: 0.8;
}
.stats-band > * { position: relative; z-index: 1; }
.stats-band h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.015em;
}
.stat-item .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
@media (max-width: 880px) {
  .stats-band { grid-template-columns: 1fr 1fr; padding: 40px 28px; }
  .stat-item .num { font-size: 34px; }
}

/* ── CTA ── */
.cta-final {
  text-align: center;
  padding: 96px 32px;
  background: var(--brand-grad-soft);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(91,27,152,0.18) 0%, transparent 60%),
    radial-gradient(60% 70% at 50% 120%, rgba(240,169,91,0.20) 0%, transparent 60%);
  opacity: 0.7;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.cta-final p {
  font-size: 18px;
  color: var(--soft);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* ── FAQ ── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.18s;
}
.faq-item[open] { border-color: rgba(91,27,152,0.25); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  color: var(--soft);
  font-size: 22px;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-body {
  padding: 0 24px 22px;
  color: var(--soft);
  font-size: 14.5px;
  line-height: 1.6;
}
