/* === RESET === */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

/* === DESIGN TOKENS === */
:root{
  --bg-light:#f7f9fe;
  --bg-dark:#10131f;
  --bg-card:#ffffff;
  --clr-primary:#ff7d00;
  --clr-secondary:#6153ff;
  --clr-text:#1c1d29;
  --radius:1.1rem;
  --shadow:0 12px 28px rgba(0,0,0,.08);
  --maxw:1180px;
  font-size:16px;
}

/* === BASE === */
body{
  font-family:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",sans-serif;
  background:var(--bg-light);
  color:var(--clr-text);
  line-height:1.7;
}

.wrap{max-width:var(--maxw);margin-inline:auto;padding:1rem 2rem}
.flow>*+*{margin-top:1rem}

/* === NAV === */
.nav{
  position:sticky;top:0;z-index:1000;
  background:var(--bg-card);box-shadow:var(--shadow)
}
.nav__flex{display:flex;justify-content:space-between;align-items:center}
.brand{font-size:1.4rem;font-weight:800;color:var(--clr-primary);text-decoration:none}
.brand span{color:var(--clr-secondary)}
.nav__menu{display:flex;gap:.9rem;list-style:none}
.nav__menu a{font-size:.9rem;color:var(--clr-text);text-decoration:none;padding:.5rem .7rem;border-radius:.4rem;transition:.2s}
.nav__menu a:hover{background:rgba(0,0,0,.05)}

/* === HERO === */
.hero{
  background:linear-gradient(135deg,var(--clr-primary)0%,var(--clr-secondary)100%);
  color:#fff;text-align:center;padding:5rem 0 4rem;
}
.hero__grid{display:grid;gap:2rem}
.hero h1{font-size:2.8rem;font-weight:900;letter-spacing:-.5px}
.hero__img img{width:100%;border-radius:var(--radius);box-shadow:var(--shadow)}
.movie{width:100%;height:450px;border:none;border-radius:var(--radius);box-shadow:var(--shadow)}

/* === SECTIONS === */
section{padding:4rem 0}
section.alt{background:var(--bg-card)}
section h2{font-size:2rem;color:var(--clr-primary);margin-bottom:1rem}
section h3{font-size:1.25rem;color:var(--clr-secondary);margin-top:1.6rem}
section h4{font-size:1.05rem;color:var(--clr-secondary);margin-top:1.3rem}
ul,ol{padding-left:1.25rem;margin-top:.6rem}
li{margin:.4rem 0}

/* === TABLE === */
table{width:100%;border-collapse:collapse;margin-top:1.6rem;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
th,td{padding:.9rem 1rem;border:1px solid #e1e4f0;text-align:left}
th{background:#f0f2ff;font-weight:600;color:var(--clr-primary)}

/* === FOOTER === */
.footer{background:var(--bg-dark);color:#e4e5f1;text-align:center;padding:2.7rem 0}
.footer small{font-size:.85rem}

/* === RESPONSIVE === */
@media(min-width:768px){
  .hero__grid{grid-template-columns:repeat(2,1fr);align-items:center}
}
@media(min-width:1100px){
  .hero__grid{grid-template-columns:1fr 1fr 1fr}
  .hero h1{grid-column:span 3}
  .hero__img,.movie{grid-column:span 1}
}
