/* burnt for you — landing pages shared styles */
:root {
  --night-1: #05070f;
  --night-2: #0a0e1c;
  --night-3: #101627;
  --case-edge: #2a3350;
  --ink: #e8e6f0;
  --ink-dim: #8b93ad;
  --ember: #ff9a3c;
  --ember-hot: #ffc07a;
  --ember-deep: #d96a1e;
  --hand: 'Caveat', cursive;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--night-1);
  color: var(--ink);
  font-family: 'VT323', 'Courier New', monospace;
  font-size: 20px;
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* subtle scanline grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0.022) 0px,
    rgba(255,255,255,0.022) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  z-index: 5;
}

/* warm glow top-center */
body::before {
  content: '';
  position: fixed;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 560px;
  background: radial-gradient(ellipse at center, rgba(255,154,60,0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}

/* header / nav */
.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.site-head .brand {
  font-family: 'Silkscreen', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
}
.site-head .brand span { color: var(--ember); }
.site-head nav a {
  font-family: 'Silkscreen', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  text-decoration: none;
  margin-left: 18px;
}
.site-head nav a:hover { color: var(--ember-hot); }

/* hero */
.hero { text-align: center; padding: 56px 0 30px; }
.hero .kicker {
  font-family: 'Silkscreen', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ember);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Silkscreen', monospace;
  font-size: clamp(28px, 6vw, 46px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--ember-hot);
}
.hero p.lead {
  font-size: 23px;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto;
}
.hero .hand-note {
  font-family: var(--hand);
  font-size: 30px;
  color: #efe6d2;
  margin-top: 18px;
  transform: rotate(-1.2deg);
  display: inline-block;
}

/* CTA */
.cta {
  display: inline-block;
  margin-top: 30px;
  padding: 16px 42px;
  background: linear-gradient(180deg, var(--ember-hot), var(--ember-deep));
  color: #241000;
  font-family: 'Silkscreen', monospace;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(255,154,60,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 38px rgba(255,154,60,0.5);
}
.cta-sub {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-dim);
}

/* CD disc decoration */
.cd-deco {
  width: 150px; height: 150px;
  border-radius: 50%;
  margin: 0 auto 8px;
  background:
    radial-gradient(circle at 50% 50%, var(--night-1) 0 13%, transparent 13.5%),
    conic-gradient(from 200deg, #c8cdd8, #8f96a8 15%, #dfe3ec 30%, #9aa1b4 45%, #e8ebf2 60%, #a5acc0 75%, #d5d9e4 90%, #c8cdd8);
  border: 1px solid var(--case-edge);
  position: relative;
  animation: deco-spin 24s linear infinite;
}
.cd-deco::after {
  content: '';
  position: absolute; inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,154,60,0.35) 0%, rgba(255,154,60,0.08) 60%, transparent 70%);
}
@keyframes deco-spin { to { transform: rotate(360deg); } }

/* sections */
section.block { padding: 44px 0; }
section.block h2 {
  font-family: 'Silkscreen', monospace;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  color: var(--ink);
}
section.block h2 em { font-style: normal; color: var(--ember-hot); }
section.block p { color: var(--ink-dim); margin-bottom: 14px; max-width: 64ch; }
section.block p strong { color: var(--ink); font-weight: normal; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; margin-top: 22px; }
.step {
  border: 1px solid var(--case-edge);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 18px 16px;
}
.step .n {
  font-family: 'Silkscreen', monospace;
  font-size: 11px;
  color: var(--ember);
  display: block;
  margin-bottom: 8px;
}
.step .t { font-size: 20px; color: var(--ink); }
.step .d { font-size: 17px; color: var(--ink-dim); margin-top: 6px; }

/* faq */
.faq details {
  border-bottom: 1px solid var(--case-edge);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 21px;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 26px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute; right: 4px;
  color: var(--ember);
  font-family: 'Silkscreen', monospace;
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  margin-top: 10px;
  font-size: 19px;
  color: var(--ink-dim);
  max-width: 64ch;
}

/* quote strip */
.quote-strip {
  border-left: 3px solid var(--ember);
  background: rgba(255,154,60,0.06);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 26px 0;
}
.quote-strip .q {
  font-family: var(--hand);
  font-size: 28px;
  color: #efe6d2;
  line-height: 1.35;
}
.quote-strip .src { font-size: 16px; color: var(--ink-dim); margin-top: 8px; }

/* internal links */
.more-links { margin-top: 10px; }
.more-links a {
  display: inline-block;
  margin: 4px 14px 4px 0;
  color: var(--ember-hot);
  text-decoration: none;
  font-size: 19px;
  border-bottom: 1px dashed rgba(255,192,122,0.4);
}
.more-links a:hover { color: var(--ember); border-bottom-style: solid; }

/* footer */
.site-foot {
  margin-top: 60px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--case-edge);
  text-align: center;
  color: var(--ink-dim);
  font-size: 16px;
  opacity: 0.75;
}
.site-foot .hand-note {
  font-family: var(--hand);
  font-size: 26px;
  color: #efe6d2;
  display: block;
  margin-bottom: 10px;
}
.site-foot a { color: var(--ember-hot); text-decoration: none; }

@media (max-width: 560px) {
  body { font-size: 18px; }
  .hero { padding: 40px 0 24px; }
  .hero p.lead { font-size: 20px; }
}
