/* Astro Easy Mode — cinematic night-sky, adapted from design-c-cinematic.html palette */

:root{
  --void:#08080a;
  --void-2:#0c0d10;
  --panel:#111318;
  --panel-edge:rgba(255,255,255,0.08);
  --amber:#d98a3d;
  --amber-hot:#f0a85c;
  --steel:#9aa7b0;
  --steel-dim:#6b7580;
  --white:#f3f1ea;
  --white-dim:#b9b6ae;
  --hair:rgba(243,241,234,0.1);
  --focus:#f0a85c;
  --success:#5fae7a;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{-webkit-text-size-adjust:100%;}
body{
  background:var(--void);
  color:var(--white);
  font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
  line-height:1.5;
  font-size:16.5px;
}
img,video{max-width:100%; display:block;}
a{color:inherit;}
:focus-visible{outline:2px solid var(--focus); outline-offset:3px;}

.container{
  width:100%;
  max-width:1160px;
  margin-inline:auto;
  padding-inline:20px;
}
@media (min-width:900px){ .container{ padding-inline:24px; } }

/* ===== header ===== */
.site-header{
  position:sticky; top:0; z-index:40;
  background:rgba(8,8,10,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--hair);
}
.site-header__bar{
  display:flex; align-items:center; justify-content:space-between;
  min-height:64px;
}
.site-header__brand{
  display:flex; align-items:center; gap:10px;
  font-size:15px; font-weight:700; letter-spacing:0.02em;
  text-decoration:none; color:var(--white);
}
.site-header__mark{
  width:28px; height:28px; flex:none;
}
.site-header__cta{
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(180deg, var(--amber-hot), var(--amber));
  color:#1a0f04;
  font-weight:700;
  font-size:14px;
  padding:10px 16px;
  border-radius:8px;
  text-decoration:none;
  min-height:44px;
}
.site-header__cta:visited{ color:#1a0f04; }
.site-header__cta:hover{ filter:brightness(1.06); }

/* ===== hero ===== */
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 900px 520px at 78% -8%, rgba(217,138,61,0.28), transparent 62%),
    radial-gradient(ellipse 800px 560px at 8% 10%, rgba(70,50,40,0.22), transparent 65%),
    linear-gradient(180deg, #0a0908 0%, #08080a 45%, #060607 100%);
  padding-block:56px 64px;
  border-bottom:1px solid var(--hair);
}
.hero__stars{
  position:absolute; inset:0; z-index:0; pointer-events:none; opacity:0.55;
}
.hero__grid{
  position:relative; z-index:2;
  display:grid;
  gap:36px;
}
@media (min-width:900px){
  .hero__grid{ grid-template-columns:1.05fr 0.95fr; align-items:center; gap:48px; }
}
.hero__eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12.5px; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--amber-hot); font-weight:700;
  margin-bottom:18px;
}
.hero__eyebrow-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--amber-hot); box-shadow:0 0 8px var(--amber-hot);
}
.hero__title{
  font-size:clamp(30px, 6.2vw, 50px);
  line-height:1.05;
  font-weight:800;
  letter-spacing:-0.01em;
  margin-bottom:18px;
}
.hero__title em{
  font-style:normal;
  color:var(--amber-hot);
}
.hero__sub{
  font-size:18.5px;
  color:var(--white-dim);
  max-width:46ch;
  margin-bottom:28px;
}
.hero__actions{
  display:flex; flex-wrap:wrap; gap:14px; align-items:center;
  margin-bottom:22px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:52px;
  padding:14px 26px;
  border-radius:10px;
  font-weight:700;
  font-size:16.5px;
  text-decoration:none;
  border:1px solid transparent;
}
.btn--primary{
  background:linear-gradient(180deg, var(--amber-hot), var(--amber));
  color:#1a0f04;
}
.btn--primary:visited{ color:#1a0f04; }
.btn--primary:hover{ filter:brightness(1.06); }
.btn--primary:focus-visible{ outline-color:var(--white); }
.btn--ghost{
  background:transparent;
  color:var(--white);
  border-color:var(--panel-edge);
}
.btn--ghost:visited{ color:var(--white); }
.btn--ghost:hover{ border-color:var(--steel); }

.hero__proof{
  display:flex; flex-wrap:wrap; gap:18px;
  font-size:13.5px; color:var(--steel);
}
.hero__proof-item{ display:flex; align-items:center; gap:6px; }
.hero__proof-item::before{
  content:"✓"; color:var(--success); font-weight:700;
}

.hero__media{
  position:relative;
}
.hero__frame{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--panel-edge);
  background:var(--panel);
  box-shadow:0 40px 90px -30px rgba(0,0,0,0.75), inset 0 0 0 1px rgba(0,0,0,0.35);
}
.hero__frame img{ width:100%; height:auto; }
.hero__frame-label{
  position:absolute; left:14px; bottom:14px;
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--white);
  background:rgba(8,8,10,0.65);
  border:1px solid var(--panel-edge);
  padding:6px 10px;
  border-radius:999px;
}

/* ===== section shell ===== */
.section{ padding-block:64px; border-bottom:1px solid var(--hair); }
.section--tight{ padding-block:48px; }
.section__eyebrow{
  font-size:12.5px; letter-spacing:0.22em; text-transform:uppercase;
  color:var(--amber-hot); font-weight:700; margin-bottom:12px;
}
.section__title{
  font-size:clamp(24px, 4vw, 34px);
  font-weight:800;
  letter-spacing:-0.01em;
  margin-bottom:16px;
  max-width:32ch;
}
.section__sub{
  font-size:17px;
  color:var(--white-dim);
  max-width:60ch;
  margin-bottom:36px;
}

/* ===== proof / reveal ===== */
.proof{
  display:grid;
  gap:28px;
}
@media (min-width:900px){ .proof{ grid-template-columns:1fr 1fr; align-items:start; } }
.proof__panel{
  background:var(--panel);
  border:1px solid var(--panel-edge);
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.proof__video{
  width:100%;
  max-width:340px;
  display:block;
  background:none;
  aspect-ratio:9/16;
  object-fit:cover;
}
@media (min-width:900px){
  .proof__video{ max-width:380px; margin-inline:auto; }
}
.proof__caption{
  width:100%;
  padding:14px 18px;
  font-size:13.5px; color:var(--steel);
  border-top:1px solid var(--hair);
}
.proof__credit{
  width:100%;
  padding:0 18px 14px;
  font-size:12.5px;
  color:var(--steel-dim);
}
.proof__list{
  list-style:none;
  display:grid; gap:14px;
}
.proof__list li{
  display:flex; gap:12px;
  font-size:16.5px;
  color:var(--white-dim);
  align-items:flex-start;
}
.proof__list li::before{
  content:"";
  flex:none;
  width:8px; height:8px; margin-top:8px;
  border-radius:50%;
  background:var(--amber-hot);
}

/* ===== steps ===== */
.steps{
  display:grid; gap:24px;
  counter-reset:step;
}
@media (min-width:700px){ .steps{ grid-template-columns:repeat(3,1fr); } }
.steps__item{
  position:relative;
  background:var(--panel);
  border:1px solid var(--panel-edge);
  border-radius:14px;
  padding:26px 22px;
}
.steps__num{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  border-radius:50%;
  background:linear-gradient(180deg, var(--amber-hot), var(--amber));
  color:#1a0f04;
  font-weight:800;
  font-size:15px;
  margin-bottom:16px;
}
.steps__title{ font-size:18.5px; font-weight:700; margin-bottom:8px; }
.steps__text{ font-size:15px; color:var(--white-dim); }
.steps__connector{
  display:none;
}
@media (min-width:700px){
  .steps__item:not(:last-child)::after{
    content:"";
    position:absolute; top:44px; right:-14px;
    width:24px; height:1px;
    background:var(--panel-edge);
  }
}

/* ===== deliverables ===== */
.deliverables{
  display:grid; gap:20px;
}
@media (min-width:700px){ .deliverables{ grid-template-columns:repeat(3,1fr); } }
.deliverable{
  background:var(--panel);
  border:1px solid var(--panel-edge);
  border-radius:14px;
  padding:24px;
}
.deliverable__icon{
  width:34px; height:34px;
  margin-bottom:14px;
  color:var(--amber-hot);
}
.deliverable__title{ font-size:17px; font-weight:700; margin-bottom:6px; }
.deliverable__text{ font-size:14.5px; color:var(--white-dim); }

/* ===== price ===== */
.price{
  background:var(--panel);
  border:1px solid var(--panel-edge);
  border-radius:18px;
  padding:36px 28px;
  text-align:center;
  max-width:520px;
  margin-inline:auto;
}
.price__amount{
  font-size:56px;
  font-weight:800;
  color:var(--amber-hot);
  margin-bottom:6px;
}
.price__unit{ font-size:15px; color:var(--steel); margin-bottom:24px; }
.price__guarantee{
  margin-top:20px;
  font-size:13.5px;
  color:var(--steel);
}

/* ===== FAQ ===== */
.faq{ display:grid; gap:14px; }
.faq__item{
  background:var(--panel);
  border:1px solid var(--panel-edge);
  border-radius:12px;
}
.faq__question{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  font-size:16.5px; font-weight:700;
  cursor:pointer;
  list-style:none;
}
.faq__question::-webkit-details-marker{ display:none; }
.faq__question::after{
  content:"+";
  font-size:22px; color:var(--amber-hot);
  flex:none;
}
details[open] .faq__question::after{ content:"–"; }
.faq__answer{
  padding:0 20px 18px;
  font-size:15px;
  color:var(--white-dim);
  max-width:65ch;
}

/* ===== footer ===== */
.site-footer{
  padding-block:48px 36px;
  background:var(--void-2);
}
.site-footer__grid{
  display:grid; gap:28px;
  margin-bottom:32px;
}
@media (min-width:700px){ .site-footer__grid{ grid-template-columns:1.2fr 1fr; } }
.site-footer__brand{
  font-size:16px; font-weight:700; margin-bottom:8px;
}
.site-footer__text{ font-size:14px; color:var(--steel); max-width:44ch; }
.site-footer__contact a{ color:var(--amber-hot); text-decoration:none; }
.site-footer__contact a:visited{ color:var(--amber-hot); }
.site-footer__contact a:hover{ text-decoration:underline; }
.site-footer__meta{
  border-top:1px solid var(--hair);
  padding-top:20px;
  font-size:13px;
  color:var(--steel-dim);
  text-align:center;
}

.visually-hidden{
  position:absolute; width:1px; height:1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap;
}
