:root{
  --navy-deep:#050814;
  --navy:#0c1030;
  --navy-mid:#14184a;
  --navy-glow:#3b41b8;
  --orange:#c8481f;
  --orange-light:#e2712f;
  --white:#ffffff;
  --cream:#fbf3e4;
  --muted:#aab0d6;
  --border:rgba(255,255,255,0.1);
  --max:1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Segoe UI',Helvetica,Arial,sans-serif;
  background:var(--navy-deep);
  color:var(--white);
  line-height:1.6;
}
a{color:var(--orange-light); text-decoration:none;}
a:hover{text-decoration:underline;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:13px;
  color:var(--orange-light);
  font-weight:700;
  margin:0 0 10px;
}
h1,h2,h3,h4{margin:0 0 .5em; font-family:Georgia,'Times New Roman',serif;}
h1{font-size:44px; line-height:1.1;}
h2{font-size:32px; line-height:1.2;}
h3{font-size:20px;}
p{color:var(--muted); margin:0 0 1em;}

/* Header */
header.site{
  background:linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-bottom:1px solid var(--border);
  padding:16px 0;
  position:sticky; top:0; z-index:50;
}
header.site .wrap{display:flex; align-items:center; justify-content:space-between;}
.logo-text{
  font-family:Georgia,serif;
  font-size:22px;
  font-weight:700;
  color:var(--white);
  display:flex; align-items:baseline; gap:6px;
}
.logo-text strong{color:var(--orange-light); font-style:italic;}
.header-logo-link{display:flex; align-items:center;}
.header-logo{height:44px; width:auto; display:block;}
nav.main a{
  color:var(--white);
  margin-left:26px;
  font-weight:600;
  font-size:15px;
}
nav.main a:hover{color:var(--orange-light); text-decoration:none;}
.header-cta{
  background:var(--orange);
  color:var(--white);
  padding:10px 20px;
  border-radius:6px;
  font-weight:700;
  margin-left:26px;
  font-size:14px;
}
.header-cta:hover{background:var(--orange-light); text-decoration:none;}

/* Hero */
.hero{
  position:relative;
  overflow:hidden;
  background:radial-gradient(ellipse at 25% 20%, var(--navy-glow) 0%, var(--navy) 45%, var(--navy-deep) 100%);
  padding:70px 0 90px;
  border-bottom:1px solid var(--border);
}
.hero .wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}
.hero .stars{
  position:absolute; inset:0;
  background-image:radial-gradient(1px 1px at 10% 20%, #fff 50%, transparent),
                    radial-gradient(1px 1px at 80% 10%, #fff 50%, transparent),
                    radial-gradient(1px 1px at 60% 70%, #fff 50%, transparent),
                    radial-gradient(1px 1px at 30% 80%, #fff 50%, transparent),
                    radial-gradient(1px 1px at 90% 60%, #fff 50%, transparent);
  opacity:.4;
  pointer-events:none;
}
.hero-copy{position:relative; z-index:2;}
.hero-copy h1{color:var(--white);}
.hero-copy h1 span{color:var(--orange-light); font-style:italic;}
.hero-copy .tagline{
  font-size:18px;
  color:var(--cream);
  margin-bottom:26px;
  max-width:520px;
}
.hero-art{position:relative; z-index:2; display:flex; align-items:center; justify-content:center;}
.hero-art::before{
  content:'';
  position:absolute;
  width:70%;
  height:70%;
  background:radial-gradient(circle, rgba(255,255,255,.28) 0%, rgba(255,255,255,.1) 45%, rgba(255,255,255,0) 75%);
  filter:blur(10px);
  z-index:0;
}
.hero-art img{
  position:relative;
  z-index:1;
  filter:drop-shadow(0 20px 40px rgba(0,0,0,.45));
  width:100%;
  max-width:420px;
  height:auto;
}
.btn-row{display:flex; gap:16px; flex-wrap:wrap; margin-top:10px;}
.btn{
  display:inline-block;
  padding:14px 26px;
  border-radius:8px;
  font-weight:700;
  font-size:15px;
}
.btn-primary{background:var(--orange); color:var(--white);}
.btn-primary:hover{background:var(--orange-light); text-decoration:none;}
.btn-secondary{background:transparent; color:var(--white); border:1px solid var(--border);}
.btn-secondary:hover{border-color:var(--orange-light); color:var(--orange-light); text-decoration:none;}
.stat-row{display:flex; gap:28px; margin-top:34px; flex-wrap:wrap;}
.stat-chip{
  background:rgba(255,255,255,.05);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px 18px;
  min-width:150px;
}
.stat-chip strong{display:block; color:var(--orange-light); font-size:20px; font-family:Georgia,serif;}
.stat-chip span{font-size:13px; color:var(--muted);}

/* Sections */
section{padding:70px 0;}
section.alt{background:var(--navy);}
.section-head{max-width:680px; margin:0 auto 40px; text-align:center;}
.section-head h2{color:var(--white);}

/* Story */
.story-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.story-grid p{color:var(--muted); font-size:16px;}
.timeline{list-style:none; margin:20px 0 0; padding:0;}
.timeline li{
  border-left:2px solid var(--orange);
  padding:0 0 22px 20px;
  margin-left:6px;
  position:relative;
}
.timeline li::before{
  content:'';
  position:absolute; left:-7px; top:2px;
  width:12px; height:12px; border-radius:50%;
  background:var(--orange-light);
  border:2px solid var(--navy-deep);
}
.timeline strong{color:var(--white); display:block; font-family:Georgia,serif; font-size:16px;}
.timeline span{color:var(--muted); font-size:14px;}

/* Partners / distribution */
.partner-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:24px;
}
.partner-card{
  background:linear-gradient(160deg, var(--navy-mid), var(--navy));
  border:1px solid var(--border);
  border-radius:14px;
  padding:30px;
}
.partner-card h3{color:var(--white);}
.partner-card .card-link{
  display:inline-block; margin-top:14px; font-weight:700; color:var(--orange-light);
}

/* Download CTA */
.cta-band{
  background:linear-gradient(120deg, var(--navy-mid), var(--navy-glow));
  border-radius:18px;
  padding:50px;
  text-align:center;
  margin:0 auto;
}
.cta-band h2{color:var(--white);}
.cta-band p{color:var(--cream); max-width:560px; margin:0 auto 26px;}

.stream-row{
  margin-top:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  font-size:14px;
}
.stream-label{color:var(--cream);}
.stream-row a{
  color:var(--white);
  background:rgba(255,255,255,.1);
  border:1px solid var(--border);
  padding:6px 16px;
  border-radius:20px;
  font-weight:600;
}
.stream-row a:hover{background:rgba(255,255,255,.18); text-decoration:none;}

/* Footer */
footer{
  border-top:1px solid var(--border);
  padding:40px 0 26px;
  background:var(--navy-deep);
}
.footer-grid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px;}
.footer-brand .footer-logo-link{display:inline-block; margin-bottom:14px;}
.footer-brand .footer-logo{width:150px; height:auto; display:block;}
.footer-brand p{max-width:340px; font-size:14px;}
.footer-links{display:flex; gap:40px; flex-wrap:wrap;}
.footer-links h4{color:var(--white); font-size:14px; margin-bottom:10px;}
.footer-links a{display:block; color:var(--muted); font-size:14px; margin-bottom:8px;}
.footer-links a:hover{color:var(--orange-light); text-decoration:none;}
.footer-bottom{
  border-top:1px solid var(--border);
  margin-top:30px; padding-top:20px;
  font-size:13px; color:var(--muted);
  text-align:center;
}

@media (max-width:860px){
  .hero .wrap{grid-template-columns:1fr;}
  .hero-art{order:-1;}
  .story-grid{grid-template-columns:1fr;}
  .partner-grid{grid-template-columns:1fr;}
  nav.main{display:none;}
  h1{font-size:32px;}
  h2{font-size:26px;}
  .cta-band{padding:34px 22px;}
}
