/* POWR — Product of War-Rooms · https://duesdayx.com
   Copyright (c) 2026 War-Rooms. All rights reserved.

   No webfonts. A site whose whole argument is that nothing leaves your
   machine should not open by fetching a typeface from Google. Georgia is
   on every machine that matters and is close enough to Lora to feel like
   the same product. */

:root {
  --paper: #15101E;
  --lift: #231B31;
  --rule: #332942;
  --ink: #E4DAEE;
  --soft: #94849F;
  --accent: #E8748C;
  --display: #F0A86A;
  --dot: #7FBF8F;
  --wrap: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 40px 24px 72px; }

header.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-decoration: none;
}

.wordmark .var { color: var(--display); }
nav.top-nav { display: flex; gap: 18px; font-size: 0.85rem; }
nav.top-nav a { color: var(--soft); text-decoration: none; }
nav.top-nav a:hover, nav.top-nav a[aria-current] { color: var(--display); }

h1 {
  margin: 44px 0 10px;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  margin: 44px 0 10px;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--display);
}

h3 { margin: 26px 0 6px; font-size: 1rem; font-weight: 400; color: var(--ink); }
p { margin: 0 0 16px; }
.lede { font-size: 1.15rem; color: var(--soft); font-style: italic; }
a { color: var(--display); }
strong { font-weight: 400; color: var(--display); }
ul { margin: 0 0 16px; padding-left: 20px; }
li { margin-bottom: 6px; }
hr { margin: 40px 0; border: none; border-top: 1px solid var(--rule); }

.cta {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 11px 22px;
  font-size: 0.95rem;
  color: var(--paper);
  background: var(--display);
  border-radius: 999px;
  text-decoration: none;
}

.cta:hover { background: var(--ink); }
.cta.quiet { color: var(--display); background: none; border: 1px solid var(--rule); }
.cta.quiet:hover { border-color: var(--display); }

.surfaces { display: grid; gap: 12px; margin: 22px 0 8px; }

.surface {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  align-items: baseline;
  padding: 14px 18px;
  background: var(--lift);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--rule);
  border-radius: 6px;
}

.surface.now { border-left-color: var(--dot); }
.surface.next { border-left-color: var(--display); }
.surface.later { border-left-color: var(--rule); }
.surface h3 { margin: 0; }
.surface p { grid-column: 1 / -1; margin: 0; font-size: 0.88rem; color: var(--soft); }

.tag {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft);
  white-space: nowrap;
}

.surface.now .tag { color: var(--dot); }
.surface.next .tag { color: var(--display); }

.plain { background: var(--lift); border: 1px solid var(--rule); border-radius: 6px; padding: 18px 20px; }
.plain p:last-child { margin-bottom: 0; }

footer.foot {
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 0.8rem;
  color: var(--soft);
  text-align: center;
}

footer.foot a { color: var(--soft); }
footer.foot a:hover { color: var(--display); }
.foot-line { margin: 0 0 6px; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 1.7rem; }
  .wrap { padding: 28px 18px 56px; }
}

/* the last thing on the page is the thing it stands for */
.closer {
  margin-top: 26px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--display);
}
