/* ============================================================
   SaveReel product pages  ·  fulgorlabs.com/savereel
   Inherits the Fulgor light system (white + blue). No dark surfaces.
   ============================================================ */

/* Sub-page nav is always solid (no hero to sit over) */
.nav--solid,
.nav--scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(16,32,64,0.05);
}

.nav-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-back:hover { color: var(--primary); }

/* ── App hero ── */
.app-hero {
  padding: calc(var(--nav-h) + 72px) 0 var(--space-8);
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(42,107,255,0.09), transparent 62%),
    radial-gradient(46% 44% at 6% 10%, rgba(6,182,212,0.08), transparent 62%),
    linear-gradient(180deg, #FBFCFF 0%, #FFFFFF 70%);
  border-bottom: 1px solid var(--hairline);
}

.app-hero__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: center;
}

/* App icon — squircle, product's own colours */
.app-icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(16,32,64,0.18), 0 0 0 1px rgba(16,32,64,0.06);
}
.app-icon img { width: 100%; height: 100%; object-fit: cover; }
.app-icon--sm { width: 76px; height: 76px; border-radius: 18px; }

.app-hero h1 { margin-top: 10px; }
.app-hero .lead { max-width: 620px; }

.app-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.store-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: var(--space-3); }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: #fff;
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s var(--ease-spring), box-shadow 0.2s, border-color 0.2s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--primary); }
.store-badge svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }
.store-badge small { display: block; font-size: 0.66rem; color: var(--muted); line-height: 1.2; }
.store-badge b { display: block; font-size: 0.95rem; font-weight: 600; line-height: 1.3; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-3); }
.pill {
  font-size: 0.8rem;
  color: var(--text);
  padding: 7px 14px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  background: #fff;
}
.pill--ok { color: var(--secure); border-color: rgba(11,176,123,0.3); background: rgba(11,176,123,0.06); }

/* ── Steps ── */
.how-grid { counter-reset: step; }
.how-step { position: relative; padding-top: var(--space-3); }
.how-step__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--primary-50);
  border: 1px solid rgba(42,107,255,0.18);
  color: var(--primary);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-2);
}

/* ── FAQ accordion ── */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq details[open] { border-color: var(--border-2); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--primary); }
.faq summary::after {
  content: '';
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.2s;
  flex-shrink: 0;
  margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 2px; border-color: var(--primary); }
.faq .faq__body { padding: 0 24px 22px; font-size: 0.95rem; line-height: 1.7; color: var(--muted); }
.faq .faq__body p + p { margin-top: 12px; }
.faq .faq__body a { color: var(--primary); }

/* ── Contact / support ── */
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #EEF4FF 0%, #F7FAFF 60%, #EAF7FF 100%);
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(42,107,255,0.32);
}
.contact-card__icon svg { width: 26px; height: 26px; }
.contact-card h3 { margin-bottom: 4px; }
.contact-card a.email {
  font-family: var(--font-mono);
  font-size: 1.02rem;
  color: var(--primary);
  text-decoration: none;
  word-break: break-all;
}
.contact-card a.email:hover { text-decoration: underline; }

/* Copy-to-clipboard button */
.copy-btn {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, transform 0.15s var(--ease-spring);
}
.copy-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
.copy-btn.is-copied { border-color: var(--secure); color: var(--secure); }

/* ── Legal / prose blocks (shared with privacy page) ── */
.legal-hero {
  padding: calc(var(--nav-h) + 56px) 0 var(--space-6);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--primary-50), transparent);
}
.legal-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--muted);
}
.legal-meta strong { color: var(--ink); font-weight: 600; }

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0 var(--space-12);
  align-items: start;
}
.toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}
.toc h2 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.toc a {
  display: block;
  padding: 7px 0 7px 10px;
  margin-left: -2px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.toc a:hover, .toc a.is-active { color: var(--primary); border-left-color: var(--primary); }

.legal-content { min-width: 0; max-width: 780px; }

.legal-block {
  padding: var(--space-4);
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  scroll-margin-top: calc(var(--nav-h) + 20px);
}
.legal-block__num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.legal-block h2 {
  font-size: 1.22rem;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.legal-block h3 { font-size: 0.98rem; margin: 20px 0 8px; }
.legal-block p { font-size: 0.93rem; line-height: 1.75; color: var(--muted); margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--primary); }
.legal-block strong { color: var(--ink); }

.callout {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(42,107,255,0.2);
  border-left: 3px solid var(--primary);
  background: var(--primary-50);
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 24px;
}
.callout--green { border-color: rgba(11,176,123,0.25); border-left-color: var(--secure); background: rgba(11,176,123,0.07); }
.callout--amber { border-color: rgba(245,166,35,0.3); border-left-color: var(--gold); background: rgba(245,166,35,0.08); }
.callout strong { color: var(--ink); }

.list { list-style: none; margin: 12px 0; }
.list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.list li:last-child { border-bottom: none; }
.list li strong { color: var(--ink); }
.list--check li::before { content: '✓'; color: var(--secure); font-weight: 700; flex-shrink: 0; }
.list--cross li::before { content: '✗'; color: var(--warn); font-weight: 700; flex-shrink: 0; }
.list--arrow li::before { content: '→'; color: var(--primary); flex-shrink: 0; }

.data-table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 0.86rem; }
.data-table th, .data-table td {
  text-align: left;
  padding: 11px 13px;
  border: 1px solid var(--border);
  vertical-align: top;
  color: var(--muted);
}
.data-table th { background: var(--bg-soft); color: var(--ink); font-weight: 600; font-size: 0.82rem; }
.data-table td strong { color: var(--text); }

.contact-box {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}
.contact-box p { margin-bottom: 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: var(--space-4); }
  .toc { position: static; }
  .toc nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .data-table { display: block; overflow-x: auto; }
}
@media (max-width: 768px) {
  .app-hero__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: var(--space-3); }
  .app-hero .lead { margin-left: auto; margin-right: auto; }
  .store-row, .pill-row { justify-content: center; }
  .app-icon { width: 104px; height: 104px; border-radius: 24px; }
  .contact-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 520px) {
  .legal-block { padding: 24px 20px; }
  .toc nav { grid-template-columns: 1fr; }
}
@media print {
  .nav, .toc { display: none; }
  .legal-block { break-inside: avoid; }
  .legal-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   Breadcrumb — ties product pages back to the studio
   ============================================================ */
.crumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--faint);
  margin-bottom: var(--space-3);
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.crumbs a:hover { color: var(--primary); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 500; }
.crumbs .sep { color: var(--border-2); }

/* ============================================================
   Cross-product strip — "More from Fulgor Labs"
   ============================================================ */
.crosslinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

.crosslink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s, border-color 0.2s;
}
.crosslink:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--primary); }

.crosslink__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(16,32,64,0.14);
}
.crosslink__icon img { width: 100%; height: 100%; object-fit: cover; }
.crosslink__icon--vpn { background: var(--grad); color: #fff; }
.crosslink__icon--vpn svg { width: 23px; height: 23px; }
.crosslink__icon--studio { background: var(--bg-soft); border: 1px solid var(--border-2); color: var(--primary); }
.crosslink__icon--studio svg { width: 22px; height: 22px; }

.crosslink__meta { min-width: 0; }
.crosslink__meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.crosslink__meta small { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 2px; }

@media (max-width: 900px) { .crosslinks { grid-template-columns: 1fr; } }

/* ============================================================
   Skip link (a11y)
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Status badge
   ============================================================ */
.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.status--live { color: #0A8F64; background: rgba(11,176,123,0.10); border: 1px solid rgba(11,176,123,0.28); }
.status--soon { color: #B45309; background: #FFF6EA; border: 1px solid #F3D6A6; }

/* ============================================================
   Hero app stack — real products as the hero visual
   ============================================================ */
.app-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.app-stack__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s ease, border-color 0.2s ease;
}
.app-stack__item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.app-stack__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(16,32,64,0.14);
}
.app-stack__icon img { width: 100%; height: 100%; object-fit: cover; }
.app-stack__icon--vpn { background: var(--grad); color: #fff; }
.app-stack__icon--vpn svg { width: 22px; height: 22px; }

.app-stack__meta { min-width: 0; text-align: left; }
.app-stack__meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.app-stack__meta small { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 2px; }

/* Hero supporting note */
.hero__note {
  margin-top: 26px;
  font-size: 0.86rem;
  color: var(--faint);
  max-width: 460px;
}

/* ============================================================
   Product showcase — the real portfolio
   ============================================================ */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.showcase {
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, border-color 0.25s ease;
}
.showcase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-2); }

.showcase__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-3);
}

.showcase__icon {
  width: 56px; height: 56px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(16,32,64,0.16);
}
.showcase__icon img { width: 100%; height: 100%; object-fit: cover; }
.showcase__icon--vpn { background: var(--grad); color: #fff; }
.showcase__icon--vpn svg { width: 27px; height: 27px; }

.showcase__kicker {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 3px;
}

.showcase__text { font-size: 0.94rem; line-height: 1.7; color: var(--muted); }

.showcase__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: var(--space-3) 0;
}
.showcase__points li {
  font-size: 0.76rem;
  color: var(--text);
  padding: 5px 11px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  background: var(--bg-soft);
}

.showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: var(--space-2);
}
.showcase__actions .btn { font-size: 0.86rem; padding: 12px 20px; }

/* ============================================================
   Deliverables panel (process)
   ============================================================ */
.deliverables {
  padding: var(--space-4);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #EFF4FF 0%, #F9FBFF 55%, #EDF7FF 100%);
  box-shadow: var(--shadow-sm);
}
.deliverables .list li { border-bottom-color: rgba(16,32,64,0.07); }
.deliverables__foot {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(16,32,64,0.09);
  font-size: 0.9rem;
  color: var(--muted);
}
.deliverables__foot strong { color: var(--ink); }

/* ============================================================
   Principles grid (studio)
   ============================================================ */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principle {
  padding: var(--space-3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s var(--ease-out-expo), box-shadow 0.2s;
}
.principle:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.principle .h3 { font-size: 1.02rem; margin-bottom: 6px; }

/* CTA supporting note */
.cta-box__note {
  margin-top: var(--space-3);
  font-size: 0.84rem;
  color: var(--faint);
}

@media (max-width: 1024px) {
  .product-showcase { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .principles { grid-template-columns: 1fr; }
  .app-stack { padding: 14px; }
  .hero__note { margin-left: auto; margin-right: auto; }
}

/* ============================================================
   Pricing — free vs one-time unlock
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--space-4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.price-card--featured {
  border-color: var(--primary);
  box-shadow: 0 18px 50px rgba(42,107,255,0.16);
  background: linear-gradient(170deg, #F4F8FF 0%, #FFFFFF 55%);
}

.price-card__flag {
  position: absolute;
  top: -12px;
  left: var(--space-4);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 6px 16px rgba(42,107,255,0.32);
}

.price-card__name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 10px 0 4px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price-card__amount small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.price-card__note { font-size: 0.9rem; color: var(--muted); margin-bottom: var(--space-3); }
.price-card .list { margin-top: 0; flex: 1; }

/* Reassurance strip under pricing */
.price-assure {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-4);
}

/* ============================================================
   Score dial — the "88/100" proof element
   ============================================================ */
.score-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #EEF4FF 0%, #F8FBFF 60%, #EAF6FF 100%);
  box-shadow: var(--shadow-sm);
}

.score-dial {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: conic-gradient(var(--primary) 0turn 0.88turn, #DCE5F4 0.88turn 1turn);
  position: relative;
}
.score-dial::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 2px 8px rgba(16,32,64,0.06);
}
.score-dial span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.score-dial small { display: block; font-family: var(--font-mono); font-size: 0.6rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 4px; }

/* Accent chip — uses the product's own orange, sparingly */
.chip-accent {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B45309;
  background: #FFF5E6;
  border: 1px solid #F6D9A8;
  padding: 6px 13px;
  border-radius: 100px;
}

@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .score-panel { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
