/* Base / reset */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  min-width: 100%;
  width: 100vw;
  scroll-snap-type: y mandatory;
}
* { box-sizing: border-box; }
html { scroll-snap-type: y mandatory; }
body {
  overscroll-behavior-y: contain;
  /* System font stack for privacy (no web font fetch) */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--fg); background: var(--bg); line-height: 1.6;
}

/* Palette */
:root{
  --bg:#0b0d10;
  --teal:#0d5158;
  --cream:#efe6d2;
  --fg:#e9eef3;
  --muted:#b7c4d3;
  --accent:#e0ff33;
  --card:#14181d;
  --line:#22303d;
}

/* Layout helpers */
.wrap{ max-width:1080px; margin:0 auto; padding:0 22px; }
.grid2{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
@media (max-width:880px){ .grid2{ grid-template-columns:1fr; } }

/* Fullscreen stripes (hero + date) */
.stack-hero, .date{
  display:block;
  position:relative;
  margin:0 auto;
}

.stack-line, .date-line{
  min-height: 100svh;
  scroll-snap-align: start;
  display: grid; place-items: center; text-align: center;
  text-transform: uppercase; letter-spacing: 1px; line-height: .9;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Corrected font size for all screens */
.stack-line{
  font-size: clamp(72px, 20vw, 360px);
}

.date-line{
  font-size: clamp(40px, 12vw, 360px);
}

/* Colors per stripe */
.stack-line.gaza { background:#0d5158; color:#efe6d2; }
.stack-line.day { background:#efe6d2; color:#0d5158; }
.stack-line.off { background:#0b0d10; color:#efe6d2; }
.date-line.date { background:#000000; color:#13fe0f; }
.date-line.spend { background:#000000; color:#e5ff00; }
.date-line.work { background:#0b0d10; color:#c8ff00; }

.stack-hero::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:110px;
  background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}

/* Sections / Panels (normal flow, not fullscreen) */
.panel{
  padding: 60px 0;
  border-top:1px solid var(--line);
  scroll-snap-align: start;
  text-transform: none;
  font-weight: 400;
}
.panel.alt{ background:#0e1318; }
.panel.big h2{
  font-size:clamp(28px,4.5vw,44px);
  margin:0 0 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.panel p, .panel li{ font-size:clamp(16px,2.1vw,20px); font-weight: 400; }

/* Buttons */
.btn{
  display:inline-block; padding:12px 16px; border-radius:12px;
  border:1px solid var(--line); text-decoration:none; color:var(--fg);
  background:var(--card); cursor:pointer;
}
.btn:hover{ border-color:#34485c; }
.btn:focus{ outline:2px solid var(--accent); outline-offset:2px; }
.btn.primary{ background:var(--accent); color:#111; font-weight:800; border-color:transparent; }
.btn.ghost{ background:transparent; }

/* Lists */
.checklist{ list-style:none; margin:0; padding:0; }
.checklist li{ padding-left:30px; position:relative; margin:10px 0; }
.checklist li::before{
  content:"✓"; position:absolute; left:0; top:0; color:var(--accent); font-weight:900;
}
.bullets{ padding-left:20px; margin:0; }

/* Quote block */
.quote{
  margin:0; padding:22px; background:#0b0f14; border:1px solid var(--line);
  border-radius:14px; color:#dbe6f2;
}

/* Footer & end section */
.end{
  min-height: 100svh;
  padding-bottom: 160px;
}
.site-footer{
  padding:20px 0; border-top:4px solid var(--accent); background:#0d1116;
  scroll-snap-align: end;
  scroll-snap-stop: always;
}
.site-footer p{ margin:0; color:var(--muted); }

/* Small note */
.smallnote{ font-size:.9em; opacity:.8; margin-top:10px; }

/* Motion/accessibility */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}
/* --- bring back punchy style just for headings + lists --- */

/* Section headings bold + all caps */
.panel h2 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
}

/* Checklist items slightly bolder but not all caps */
.checklist li {
  font-weight: 600;
  text-transform: none;
}

/* Optional: make the “Who’s On Board” list pop a bit */
#support li {
  font-weight: 700;
  letter-spacing: 1px;
}

.video { margin-top: 16px; }
.video video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.video figcaption { margin-top: 8px; }

/* Tiny scroll-to-next puck for full-screen stripes */
.scroll-next{
  position: absolute;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.38);   /* dark puck for contrast */
  color: inherit;                 /* arrow uses the stripe's text color */
  display: grid; place-items: center;
  cursor: pointer;
}

.scroll-next:hover{ background: rgba(0,0,0,.5); }
.scroll-next:focus{ outline: 2px solid var(--accent); outline-offset: 2px; }

.scroll-next svg{
  width: 18px; height: 18px;
  stroke: currentColor; stroke-width: 2; fill: none;
}

/* gentle nudge animation (disabled for reduced-motion) */
@keyframes nudgeDown { 
  0%,100% { transform: translate(-50%, 0); } 
  50%     { transform: translate(-50%, 4px); } 
}
.scroll-next { animation: nudgeDown 1.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){
  .scroll-next{ animation: none; }
}

/* Tiny scroll-to-next puck */
.scroll-next{
  position: absolute;
  bottom: calc(18px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: rgba(18, 237, 233, 0.479);
  color: inherit;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 2;
}
.scroll-next:hover{ background: hsla(64, 95%, 43%, 0.402); }
.scroll-next:focus{ outline: 2px solid var(--accent); outline-offset: 2px; }
.scroll-next svg{ width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* gentle nudge animation (respects reduced motion) */
@keyframes nudgeDown { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,4px)} }
.scroll-next { animation: nudgeDown 1.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){ .scroll-next{ animation:none; } }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 16, 0.7); /* semi-transparent over hero */
  backdrop-filter: blur(6px); /* subtle blur if browser supports */
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 12px 24px;
}

.site-nav a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--accent);
}
