/* ═══════════════════════════════════════════════════════════════════
   WE ARE MARS · REBELLION
   ───────────────────────────────────────────────────────────────────
   One page: key art, synopsis, a still, one social link. Nothing else
   — this is a holding page until the trailer lands.

   The key art carries the title, so the page never sets it in type.
   The palette comes off that artwork: a near-black that keeps a little
   warmth rather than going flat grey, the ember of the Martian horizon,
   and the brushed silver of the lettering.
   ═══════════════════════════════════════════════════════════════════ */

:root{
  --void:#08060A;          /* page ground                    */
  --ash:#181114;           /* hairlines, quiet edges         */
  --ember:#E2432A;         /* the accent                     */
  --ember-l:#FF6A45;       /* hover only                     */
  --silver:#D9DCE2;        /* the title lettering            */
  --bone:#F3EEEA;          /* body white, slightly warm      */
  --bone-2:rgba(243,238,234,.66);
  --bone-3:rgba(243,238,234,.36);
  --line:rgba(243,238,234,.10);

  --display:'Oswald',Impact,system-ui,sans-serif;
  --body:'Inter',system-ui,-apple-system,sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);

  /* one rail for every line on the page */
  --gut:clamp(20px,5vw,72px);
  --rail:max(var(--gut),calc((100% - 1180px) / 2));
  --pad-y:clamp(56px,9vw,116px);
}

*,*::before,*::after{box-sizing:border-box}
html{background:var(--void);-webkit-text-size-adjust:100%}
body{
  margin:0;                                  /* the art touches all four edges */
  background:var(--void);color:var(--bone);
  font-family:var(--body);font-weight:300;line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%;height:auto}
h1{margin:0;font-weight:inherit}
p{margin:0}
::selection{background:var(--ember);color:#fff}
:focus-visible{outline:2px solid var(--ember-l);outline-offset:4px}
.skip{position:absolute;left:-9999px;z-index:50;background:var(--ember);color:#fff;
  padding:12px 20px;font-weight:600;letter-spacing:.08em}
.skip:focus{left:12px;top:12px}

/* ═══ FULL-BLEED PICTURE ═════════════════════════════════════════
   100% of the page: no margin, no padding, no border, no radius, no
   container. Each picture keeps its own ratio, so the lettering in the
   key art is never cropped. Used by the hero and by the still below
   the synopsis — one rule, both places. */
.bleed{position:relative;width:100%;margin:0;padding:0;overflow:hidden;
  background:#000;line-height:0}
.bleed img{width:100%;height:auto;display:block}
/* the hero's foot dissolves into the page instead of butting against it
   — the only thing drawn over any artwork on this page */
.hero::after{content:'';position:absolute;left:0;right:0;bottom:-1px;height:20%;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(8,6,10,0),var(--void))}

/* ═══ BANDS ══════════════════════════════════════════════════════
   Every block of type shares one rail and one rhythm. */
.band{padding:var(--pad-y) var(--rail)}

.eyebrow{font-size:10.5px;font-weight:600;letter-spacing:.34em;text-transform:uppercase;
  color:var(--bone-3);margin-bottom:clamp(18px,2.4vw,30px)}

/* ═══ SYNOPSIS ═══════════════════════════════════════════════════
   The heading is set in the same brushed silver as the key art's
   lettering — heavy, wide, and a proper display size rather than the
   hairline eyebrow it replaced. */
.section-head{font-family:var(--display);font-weight:700;text-transform:uppercase;
  color:var(--silver);
  font-size:clamp(1.5rem,4.2vw,3rem);line-height:1.06;letter-spacing:.035em;
  margin-bottom:clamp(26px,3.4vw,42px);text-wrap:balance}
.lede{max-width:62ch;font-size:clamp(1.0625rem,1.5vw,1.375rem);line-height:1.72;
  color:var(--bone-2)}
.lede + .lede{margin-top:clamp(20px,2.4vw,32px)}
/* only the opening line lifts to full white — repeating it on every
   paragraph would stripe the block */
.lede:first-of-type::first-line{color:var(--bone)}

/* ═══ FOLLOW ═════════════════════════════════════════════════════ */
.follow{border-top:1px solid var(--line)}
.follow-line{font-family:var(--display);font-weight:600;text-transform:uppercase;
  font-size:clamp(1.375rem,3.4vw,2.25rem);line-height:1.05;letter-spacing:.01em;
  margin-bottom:clamp(26px,3.2vw,38px)}
.social{display:inline-flex;align-items:center;gap:14px;
  padding:15px 28px 15px 24px;border:1px solid var(--line);border-radius:999px;
  color:var(--bone);text-decoration:none;
  font-family:var(--display);font-weight:600;text-transform:uppercase;
  font-size:13px;letter-spacing:.2em;
  transition:border-color .35s var(--ease),color .35s var(--ease),
             background-color .35s var(--ease)}
.social svg{width:21px;height:21px;flex:none;
  fill:none;stroke:currentColor;stroke-width:1.7;
  stroke-linecap:round;stroke-linejoin:round}
.social svg .dot{fill:currentColor;stroke:none}
.social:hover,.social:focus-visible{
  color:#fff;border-color:var(--ember);background:var(--ember)}

/* ═══ FOOTER ═════════════════════════════════════════════════════ */
footer{padding:clamp(34px,5vw,56px) var(--rail);border-top:1px solid var(--line);
  font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--bone-3)}

/* ═══ NARROW SCREENS ═════════════════════════════════════════════
   Same page, same order, same full-bleed artwork — only the rail
   tightens. The key art is never cropped: the title is inside it, and a
   crop would cut the lettering. */
@media(max-width:640px){
  .hero::after{height:15%}
}

@media(prefers-reduced-motion:reduce){
  *{transition-duration:.01ms!important;animation-duration:.01ms!important}
}
