/* ============================================================
   FIRE Path — page theme
   Extends ../styles.css (the Runebyte design system) with a
   warm "fire" accent and a few page-specific components.
   ============================================================ */

:root {
  /* Warm fire accent, swapped in for Runebyte's violet/cyan grad */
  --ember:  #ffb347;
  --flame:  #ff7a3c;
  --coal:   #ff4d6d;
  --gold:   #ffd27a;

  --violet: var(--flame);                 /* kickers, nav underline, faq marker */
  --grad: linear-gradient(115deg, #ffce6a 0%, #ff8a3d 48%, #ff4d6d 100%);
}

/* Warm the ambient background */
.aurora { background: radial-gradient(120% 90% at 50% -10%, #1f130a 0%, var(--bg) 55%); }
.blob-1 { background: #ff8a3d; }
.blob-2 { background: #ffb347; }
.blob-3 { background: #ff4d6d; }

/* Primary button glow → warm */
.btn-primary { color: #1a0d05; box-shadow: 0 8px 30px -8px rgba(255,130,60,0.6); }
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(255,130,60,0.78); }

/* ---------- Back-to-studio pill in nav ---------- */
.nav-back { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--muted); transition: color .2s; }
.nav-back:hover { color: var(--text); }
.nav-back svg { width: 15px; height: 15px; }

/* ---------- Hero app-icon lockup ---------- */
.hero-lockup { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.hero-appicon { width: 72px; height: 72px; border-radius: 20px; box-shadow: 0 18px 44px -16px rgba(255,120,50,0.6); border: 1px solid var(--border); }
.hero-lockup .hl-name { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.hero-lockup .hl-sub { font-size: 0.9rem; color: var(--muted); }

.hero-note { margin-top: 14px; font-size: 0.82rem; color: var(--faint); }

/* Store buttons row */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border-strong); transition: transform .25s var(--ease), border-color .25s; }
.store-btn:hover { transform: translateY(-3px); border-color: var(--flame); }
.store-btn svg { width: 22px; height: 22px; }
.store-btn .sb-small { display: block; font-size: 0.66rem; color: var(--muted); line-height: 1.1; }
.store-btn .sb-big { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.store-soon { font-size: 0.78rem; color: var(--faint); border: 1px dashed var(--border-strong); padding: 5px 12px; border-radius: 999px; }

/* ---------- FIRE styles cards ---------- */
.styles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.style-card { position: relative; padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); overflow: hidden; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.style-card:hover { transform: translateY(-5px); border-color: var(--flame); background: var(--surface-2); }
.style-emoji { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.style-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.style-card p { font-size: 0.9rem; color: var(--muted); }
.style-card .style-tick { position: absolute; top: 20px; right: 22px; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--flame); }

/* ---------- Showcase (alternating screenshot rows) ---------- */
.showcase { display: flex; flex-direction: column; gap: 96px; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.show-row.reverse .show-copy { order: 2; }
.show-row.reverse .show-media { order: 1; }
.show-copy .kicker { display: block; margin-bottom: 12px; }
.show-copy h3 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 16px; }
.show-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 20px; }
.show-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.show-list li { position: relative; padding-left: 28px; color: var(--text); font-size: 0.98rem; }
.show-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px rgba(255,130,60,0.6); }

.show-media { display: flex; justify-content: center; position: relative; }
.phone { position: relative; width: 300px; max-width: 78%; border-radius: 42px; padding: 10px; background: linear-gradient(160deg, #2a2a38, #14141c); border: 1px solid var(--border-strong); box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.02) inset; }
.phone::after { content: ""; position: absolute; inset: 0; border-radius: 42px; pointer-events: none; box-shadow: 0 0 60px -10px rgba(255,120,50,0.25); }
.phone img { width: 100%; border-radius: 32px; display: block; }
.show-media .halo { position: absolute; inset: -10% -6%; z-index: -1; background: radial-gradient(circle at 50% 40%, rgba(255,130,60,0.28), transparent 62%); filter: blur(20px); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 860px; margin: 0 auto; }
.price-card { position: relative; padding: 34px 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.price-card.featured { border-color: var(--flame); background: linear-gradient(180deg, rgba(255,130,60,0.08), var(--surface)); box-shadow: 0 30px 70px -34px rgba(255,120,50,0.5); }
.price-badge { position: absolute; top: -12px; right: 26px; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #1a0d05; background: var(--grad); padding: 5px 14px; border-radius: 999px; }
.price-name { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 6px; }
.price-tag { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; margin-bottom: 4px; }
.price-tag .price-alt { display: block; font-size: 0.92rem; font-weight: 500; color: var(--muted); margin-top: 4px; }
.price-cap { font-size: 0.88rem; color: var(--faint); margin-bottom: 22px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.price-list li { position: relative; padding-left: 26px; font-size: 0.94rem; color: var(--text); }
.price-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--flame); font-weight: 700; }
.price-list li.muted { color: var(--muted); }
.price-list li.muted::before { content: "✓"; color: var(--faint); }

/* ---------- Disclaimer ---------- */
.disclaimer { max-width: 720px; margin: 0 auto; text-align: center; color: var(--faint); font-size: 0.9rem; border: 1px solid var(--border); border-radius: 16px; padding: 22px 28px; background: var(--surface); }

/* ---------- Legal / support pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 0 20px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 10px; }
.legal .legal-meta { color: var(--faint); font-size: 0.9rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; }
.legal p { margin-bottom: 14px; }
.legal ul, .legal ol { padding-left: 1.3rem; margin-bottom: 14px; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--flame); transition: color .2s; }
.legal a:hover { color: var(--ember); }
.legal strong { color: var(--text); }
.legal .legal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; margin-bottom: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .show-row { grid-template-columns: 1fr; gap: 32px; }
  .show-row.reverse .show-copy { order: 1; }
  .show-row.reverse .show-media { order: 2; }
  .showcase { gap: 68px; }
}
