/* ─────────────────────────────────────────────────────────────
   Angle mort — newsletter signup landing (production)
   La Warroom
   ───────────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Page chrome ──────────────────────────────────────────── */

.page {
  --max: 1240px;
  --gut: 56px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}
@media (max-width: 760px) {
  .page { --gut: 24px; }
}

/* ── Top nav ──────────────────────────────────────────────── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 28px;
  border-bottom: 1px solid var(--rule-1);
}

.nav__logo img { height: 22px; width: auto; }
.nav__pillars {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--fg-2);
}
.nav__pillars .sep {
  color: var(--lwr-rouge);
  margin: 0 0.5em;
}
.nav__back {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  font-weight: 700;
}
.nav__back:hover { color: var(--lwr-rouge); }

@media (max-width: 760px) {
  .nav__pillars { display: none; }
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 96px;
  padding: 96px 0 80px;
  align-items: start;
  border-bottom: 1px solid var(--rule-1);
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 56px; padding: 56px 0; }
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 40px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero__eyebrow .stamp {
  color: var(--lwr-rouge);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1;
}
.hero__eyebrow .rule {
  flex: 1;
  height: 1px;
  background: var(--rule-1);
  max-width: 80px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0 0 8px;
  color: var(--fg-1);
}
.hero__title .stamp {
  color: var(--lwr-rouge);
  margin-right: 0.12em;
}

.hero__sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--fg-3);
  margin: 0 0 48px;
}
.hero__sub .sep { color: var(--lwr-rouge); margin: 0 0.4em; }

.hero__lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-1);
  max-width: 56ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.hero__lede strong {
  font-weight: 600;
  color: var(--fg-1);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  border-top: 1px solid var(--rule-1);
  border-bottom: 1px solid var(--rule-1);
  padding: 18px 0;
  max-width: 600px;
}

.hero__meta dl {
  margin: 0;
  padding: 0 22px;
  border-right: 1px solid var(--rule-1);
}
.hero__meta dl:first-child { padding-left: 0; }
.hero__meta dl:last-child { border-right: 0; padding-right: 0; }

.hero__meta dt {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--fg-1);
}

@media (max-width: 600px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 16px 0; }
  .hero__meta dl { padding: 0 16px; }
  .hero__meta dl:nth-child(2n+1) { padding-left: 0; }
  .hero__meta dl:nth-child(2n) { border-right: 0; padding-right: 0; }
}

/* ── Form card ──────────────────────────────────────────── */

.form-card {
  background: var(--lwr-blanc);
  color: var(--fg-1);
  border: 1px solid var(--lwr-noir);
  box-shadow: 4px 4px 0 var(--lwr-rouge);
  padding: 36px 32px 32px;
  position: sticky;
  top: 32px;
}

.form-card__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-1);
}

.form-card__title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
}
.form-card__title .stamp { color: var(--lwr-rouge); margin-right: 0.4em; }
.form-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.form {
  display: grid;
  gap: 18px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form__row { grid-template-columns: 1fr; }
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field__label .req { color: var(--lwr-rouge); }

.field__input,
.field__select {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: var(--fg-1);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--noir-300);
  border-radius: 0;
  padding: 8px 0 10px;
  outline: 0;
  transition: border-color 120ms var(--ease-strike);
}

.field__input::placeholder { color: var(--gris-500); font-weight: 400; }

.field__input:focus,
.field__select:focus {
  border-color: var(--lwr-rouge);
  border-bottom-width: 2px;
  padding-bottom: 9px;
}

.field__select {
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 24px;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-1);
}

.consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin: 4px 0 0;
  border: 1px solid var(--lwr-noir);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
}
.consent input[type="checkbox"]:checked {
  background: var(--lwr-rouge);
  border-color: var(--lwr-rouge);
}
.consent input[type="checkbox"]:checked::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.consent label {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-2);
}
.consent a { color: var(--lwr-rouge); text-decoration: underline; text-underline-offset: 2px; }

.btn-strike {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lwr-noir);
  color: var(--lwr-blanc);
  border: 0;
  border-radius: 0;
  padding: 18px 22px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms var(--ease-strike), transform 80ms var(--ease-strike);
  width: 100%;
}
.btn-strike:hover { background: var(--lwr-rouge); }
.btn-strike:active { transform: translate(1px, 1px); }
.btn-strike .arrow { font-size: 16px; }

.form__foot {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.form__foot .dot { color: var(--lwr-rouge); }

/* ── Section header (eyebrow + rule) ─────────────────────── */

.section {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule-1);
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.section__eyebrow .stamp { color: var(--lwr-rouge); font-size: 14px; letter-spacing: 0; }
.section__eyebrow .num {
  font-family: var(--font-mono);
  color: var(--fg-3);
  font-weight: 400;
}
.section__eyebrow .rule { flex: 1; height: 1px; background: var(--rule-1); }

/* ── Cadence block ───────────────────────────────────────── */

.cadence {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .cadence { grid-template-columns: 1fr; gap: 40px; } }

.cadence__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-wrap: balance;
  color: var(--fg-1);
}

.cadence__lede {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 36ch;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-1);
  border: 1px solid var(--rule-1);
}

.spec {
  background: var(--bg-page);
  padding: 28px 24px;
}

.spec__label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}

.spec__val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  margin-bottom: 4px;
  text-transform: lowercase;
}
.spec__val .accent { color: var(--lwr-rouge); }

.spec__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.45;
}

/* ── Coverage ──────────────────────────────────────────── */

.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-1);
  border: 1px solid var(--rule-1);
}
.coverage--with-image { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 760px) {
  .coverage,
  .coverage--with-image { grid-template-columns: 1fr; }
}

.coverage__col {
  background: var(--bg-page);
  padding: 36px 32px;
}

.coverage__figure {
  margin: 0;
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
}
.coverage__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
  min-height: 320px;
}
.coverage__caption {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--fg-2);
  padding: 16px 24px;
  border-top: 1px solid var(--rule-1);
}
.coverage__caption .stamp { color: var(--lwr-rouge); margin-right: 0.4em; font-weight: 700; }

.coverage__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.coverage__list li {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: var(--fg-1);
  padding-left: 22px;
  position: relative;
}
.coverage__list.is-in li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lwr-rouge);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* ── Sample issue preview ────────────────────────────────── */

.section--sample {
  background: var(--lwr-noir-site);
  color: var(--lwr-blanc);
  border-color: rgba(255,255,255,0.1);
}
.section--sample .section__eyebrow { color: var(--gris-300); }
.section--sample .section__eyebrow .rule { background: rgba(255,255,255,0.18); }

.sample {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
}
@media (max-width: 980px) {
  .sample { grid-template-columns: 1fr; gap: 40px; }
}

.sample__cover {
  background: var(--lwr-blanc);
  color: var(--fg-1);
  padding: 28px 24px 24px;
  border: 1px solid var(--lwr-blanc);
  box-shadow: 4px 4px 0 var(--lwr-rouge);
  position: relative;
  aspect-ratio: 0.78 / 1;
  display: flex;
  flex-direction: column;
}

.sample__masthead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--lwr-noir);
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.sample__brand {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.sample__brand .stamp { color: var(--lwr-rouge); }
.sample__brand .pillar { color: var(--gris-700); font-weight: 400; }
.sample__issue {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris-700);
}

.sample__cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin: 0 0 18px;
}

.sample__cover-deck {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-1);
  margin-bottom: 18px;
}

.sample__cover-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  display: grid;
  gap: 10px;
  flex: 1;
}
.sample__cover-toc li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--fg-2);
}
.sample__cover-toc li .num { color: var(--lwr-rouge); font-weight: 700; }

.sample__cover-foot {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gris-700);
  padding-top: 14px;
  border-top: 1px solid var(--rule-1);
}

.sample__excerpts { display: grid; gap: 36px; }

.excerpt {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 24px;
}
.excerpt:first-child { border-top: 0; padding-top: 0; }

.excerpt__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--lwr-rouge);
}

.excerpt__kicker {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gris-500);
  margin-bottom: 10px;
}
.excerpt__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--lwr-blanc);
  margin: 0 0 10px;
  text-wrap: balance;
}
.excerpt__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris-300);
  margin: 0;
  text-wrap: pretty;
}
.excerpt__body em { font-style: italic; color: var(--gris-100); }

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  padding: 56px 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
@media (max-width: 760px) {
  .footer { flex-direction: column; align-items: flex-start; gap: 24px; }
}

.footer__left { display: flex; flex-direction: column; gap: 12px; }
.footer__pillars {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--fg-2);
}
.footer__pillars .sep { color: var(--lwr-rouge); margin: 0 0.5em; }

.footer__address {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  font-style: normal;
}

.footer__links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer__links a { color: var(--fg-2); text-decoration: none; }
.footer__links a:hover { color: var(--lwr-rouge); }

/* ── Confirmation overlay ────────────────────────────────── */

.confirm {
  position: fixed;
  inset: 0;
  background: var(--lwr-noir);
  color: var(--lwr-blanc);
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 48px;
  animation: fadein 220ms var(--ease-strike);
}
.confirm[hidden] { display: none; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

.confirm__inner {
  max-width: 640px;
  text-align: left;
}
.confirm__eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lwr-rouge);
  margin-bottom: 32px;
}
.confirm__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin: 0 0 24px;
}
.confirm__title .stamp { color: var(--lwr-rouge); }
.confirm__body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--gris-100);
  margin: 0 0 32px;
  max-width: 52ch;
}
.confirm__body strong { color: var(--lwr-blanc); font-weight: 600; }
.confirm__steps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 24px;
}
.confirm__steps li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--gris-300);
}
.confirm__steps li .n {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--lwr-rouge);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.confirm__close {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gris-300);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.confirm__close:hover { color: var(--lwr-blanc); }
