/* ══════════════════════════════════════
   BEARING EYEBROW — section labels styled as
   compass bearings (000° / 090° / 180°...), since the
   subject itself is built entirely around degree headings.
   ══════════════════════════════════════ */
.bearing {
  display: inline-flex; align-items: baseline; gap: .55em;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; color: var(--cyan);
  margin-bottom: var(--space-sm);
}
.bearing__deg { font-size: 1rem; }
.bearing__label {
  text-transform: uppercase; color: var(--ink-400); letter-spacing: .16em;
}

/* ══════════════════════════════════════
   PILL
   ══════════════════════════════════════ */
.pill {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .4em .9em; border-radius: var(--r-pill);
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid rgba(79, 216, 232, 0.32);
  margin-bottom: var(--space-sm);
}
.pill--brass {
  background: var(--brass-dim); color: var(--brass);
  border-color: rgba(217, 168, 87, 0.4);
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  padding: .75em 1.5em; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--cyan); color: var(--void-deep); border-color: var(--cyan); }
.btn-primary:hover { background: #6fe3f0; box-shadow: var(--glow-cyan); }
.btn-ghost { background: transparent; color: var(--ink-100); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── Play badge ── */
.play-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: var(--ink-100); color: var(--void-deep);
  border: 2px solid transparent;
  border-radius: var(--r-md); padding: .7rem 1.3rem;
  transition: all .2s ease;
}
.play-badge:hover { background: var(--cyan); box-shadow: var(--glow-cyan); }
.play-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.play-badge__text { display: flex; flex-direction: column; line-height: 1.15; }
.play-badge__small { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.play-badge__big { font-size: 1.05rem; font-weight: 700; }

/* ══════════════════════════════════════
   PHONE MOCKUP
   ══════════════════════════════════════ */
.phone {
  position: relative;
  width: 230px; flex-shrink: 0;
  aspect-ratio: 9 / 18.2;
  border-radius: 34px;
  background: var(--void-card);
  border: 3px solid #1c2840;
  box-shadow: 0 0 0 1px rgba(79,216,232,.08), var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.phone::before {
  content: ''; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 7px; background: var(--void-deep); border-radius: var(--r-pill); z-index: 2;
}
.phone img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center; border-radius: 31px;
}
.phone--hero { width: clamp(210px, 26vw, 280px); }
.phone--sm { width: clamp(165px, 19vw, 220px); }
.phone--glow { box-shadow: 0 0 0 1px rgba(79,216,232,.18), var(--shadow-lg), var(--glow-cyan); }
.phone--offset { transform: translateY(40px); }
@media (max-width: 860px) { .phone--offset { transform: none; } }

.img-fallback {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--void-card); color: var(--ink-600);
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  letter-spacing: .02em; padding: 1rem;
}
.phone .img-fallback { position: absolute; inset: 0; border-radius: 31px; }
.theme-card .img-fallback { width: 100%; aspect-ratio: 9/17; }

/* ══════════════════════════════════════
   STAT CHIP
   ══════════════════════════════════════ */
.stat-chip {
  display: flex; flex-direction: column; align-items: center;
  background: var(--void-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 1rem 1.3rem;
  min-width: 112px;
}
.stat-chip__num {
  font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700;
  color: var(--cyan); line-height: 1;
}
.stat-chip__label { font-size: .74rem; color: var(--ink-400); margin-top: .3rem; text-align: center; }

/* ══════════════════════════════════════
   FEATURE CARD
   ══════════════════════════════════════ */
.feature-card {
  background: var(--void-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: rgba(79,216,232,.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon { width: 36px; height: 36px; color: var(--cyan); margin-bottom: var(--space-sm); }
.feature-card h3 { margin-bottom: .45rem; font-size: 1.05rem; }
.feature-card p { color: var(--ink-400); font-size: .9rem; max-width: none; }

/* ══════════════════════════════════════
   FAQ ITEM
   ══════════════════════════════════════ */
.faq-item {
  background: var(--void-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1.15rem 1.3rem;
  font-weight: 600; font-size: .95rem; color: var(--ink-100);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--cyan);
  flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.3rem 1.15rem; color: var(--ink-400); font-size: .9rem; max-width: none; }

/* ══════════════════════════════════════
   THEME / TEMPLATE CARD (dial skins gallery)
   ══════════════════════════════════════ */
.theme-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--void-raised);
  border: 1px solid var(--hairline);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.theme-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(79,216,232,.35); }
.theme-card img { width: 100%; aspect-ratio: 9/17; object-fit: cover; object-position: top center; }
.theme-card figcaption { padding: .8rem 1rem; display: flex; flex-direction: column; gap: .15rem; }
.theme-card figcaption strong { color: var(--ink-100); font-size: .92rem; }
.theme-card figcaption span { color: var(--ink-600); font-size: .78rem; }

/* ══════════════════════════════════════
   STEP NUMBER (used only where order is real — calibration sequence)
   ══════════════════════════════════════ */
.step-number {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  color: var(--brass); letter-spacing: .12em; display: block; margin-bottom: .4rem;
}
