/* LUKON Fodbold — dark pitch identity
 * Web maps Lukon House tokens (tokens.css ← brand/tokens.json v0.1).
 * Leftover hex (rgba overlays like #2f9e5f33) stay this pass.
 * See docs/design-lukon-dk-package-2026-08-05.md § A.1
 */
@import url("tokens.css");
:root {
  --bg: var(--lukon-nat);  /* canvas void */
  --elev: #121a15;         /* cards */
  --sub: #18241c;          /* strip / secondary fill */
  --fg: #eef2ef;
  --mut: #9aab9f;
  --subtl: #6b7a70;
  --bd: #243028;
  --bds: #334a3a;
  /* web brand — NOT 1:1 app pitch / pitchDeep */
  --p: var(--lukon-gro);   /* web primary (CTA, labels) — still gro; do not restyle buttons to gold */
  --p-deep: #0f7a61;       /* web gradient MID — not LukonBrand.pitchDeep */
  --pfg: #041208;
  --ps: #1a3d28;           /* icon wells */
  --live: #db2e2e;         /* LukonBrand.live — status only */
  --warn: #f29e2e;         /* LukonSemantic.statusPause */
  --gold: var(--lukon-mark); /* celebrate / stævne accent — sparsom */
  --sh: 0 12px 40px -16px #0000008c;
  --radius: 1rem;          /* ~ cardRadius 16 */
  --radius-hero: 1.25rem;  /* ~ heroRadius 20 */
  --radius-control: 0.875rem; /* ~ controlRadius 14 */
  --hdr-h: 4rem;
  --wrap: 72rem;
  /* Visual modernize 2026-08-07 — guided chrome reduction */
  --gap-cards: 1.35rem;
  --gap-cards-lg: 1.5rem;
  --chrome-border: color-mix(in oklab, var(--bd) 72%, transparent);
  --chrome-fill: color-mix(in oklab, var(--elev) 78%, transparent);
  --chrome-fill-solid: #121a15e6; /* readable on .band */
  --sec-pad-y: 5.5rem;
  --hero-pad-top: 7.75rem;
  --hero-pad-bottom: 3.75rem;
  /* House aliases (available; product --live/--warn stay as-is) */
  --bane: var(--lukon-bane);
  --ok: var(--lukon-ok);
  --stop: var(--lukon-stop);
  --vent: var(--lukon-vent);
  --papir: var(--lukon-papir);
  --stoj: var(--lukon-stoj);
  --mark: var(--lukon-mark);
  --nat: var(--lukon-nat);
  --gro: var(--lukon-gro);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn:active {
    transform: none;
  }
  .hdr {
    transition: none;
  }
  .btn,
  .fblock,
  .shot,
  .scope-col {
    transition: none !important;
  }
  .fblock:hover,
  .shot:hover,
  .btn-p:hover,
  .scope-col:hover {
    transform: none !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Instrument Sans", "DM Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .wrap {
    padding: 0 2rem;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--p);
  color: var(--pfg);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Header —— */
.hdr {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: 0.2s background, 0.2s border-color;
}

.hdr.on {
  background: #0a0f0cd9;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: #243028cc;
}

.hdr .inner {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  min-width: 0;
}

.brand-logo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.62rem;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px #ffffff18, 0 4px 14px -4px #000a;
  background: #0d3d2a;
}

.brand-name {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mut);
}

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

.acts {
  display: none;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav,
  .acts {
    display: flex;
  }
  .mbtn {
    display: none !important;
  }
}

.mbtn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--bd);
  border-radius: 0.75rem;
  background: var(--elev);
  font-size: 1.1rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    filter 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-p {
  background: var(--p);
  color: var(--pfg);
  box-shadow: var(--sh);
}

.btn-p:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -14px #00000099, 0 0 0 1px color-mix(in oklab, var(--p) 35%, transparent);
}

.btn-s {
  background: var(--sub);
  color: var(--fg);
  border: 1px solid var(--bd);
}

.btn-s:hover {
  border-color: var(--bds);
}

.btn-g {
  color: var(--mut);
}

.btn-g:hover {
  color: var(--fg);
}

.btn-sm {
  min-height: 2.25rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
}

.btn-lg {
  min-height: 3rem;
  padding: 0.65rem 1.75rem;
  font-size: 1rem;
}

.full {
  width: 100%;
}

.mob .btn.full {
  margin-top: 1rem;
}

/* —— Hero —— */
.hero {
  padding: var(--hero-pad-top, 7.75rem) 0 var(--hero-pad-bottom, 3.75rem);
}

.hero-grid {
  display: grid;
  gap: 3.25rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.75rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--bd);
  background: #121a15cc;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--mut);
  margin-bottom: 1.25rem;
}

.dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 99px;
  background: var(--p);
  box-shadow: 0 0 0 3px #2f9e5f33;
}

/* LIVE status chip — only for live urgency, not general brand dots */
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--live);
}

.badge-live::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 0 0 2px #ffffff44;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  text-wrap: balance;
  max-width: 12ch;
  letter-spacing: -0.03em;
}

.lead {
  margin-top: 1.35rem;
  max-width: 32rem;
  color: var(--mut);
  line-height: 1.62;
  font-size: 1.08rem;
}

.cta {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Single primary conversion emphasis (hero + close band) */
.cta .btn-p.btn-lg {
  min-height: 3.15rem;
  padding-inline: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.cta-close {
  justify-content: center;
  margin-top: 1.5rem;
}

.micro {
  margin-top: 1.15rem;
  font-size: 0.78rem;
  color: var(--subtl);
  letter-spacing: 0.01em;
}

/* Phone frame */
.phone-frame {
  position: relative;
  max-width: 17.5rem;
  margin: 0 auto;
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(ellipse at 50% 40%, #2f9e5f33, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  border: 1px solid var(--bds);
  border-radius: 2rem;
  background: #0d1210;
  box-shadow: var(--sh), 0 0 0 1px #ffffff08;
  overflow: hidden;
}

.phone img {
  width: 100%;
  display: block;
  vertical-align: top;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.phone-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--subtl);
}

/* —— Trust strip —— */
.strip {
  border-block: 1px solid var(--chrome-border, var(--bd));
  background: color-mix(in oklab, var(--sub) 35%, transparent);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 2.75rem;
  padding: 1.85rem 1.25rem;
  color: var(--mut);
  font-size: 0.875rem;
  font-weight: 500;
}

.strip strong {
  color: var(--fg);
  font-weight: 600;
}

.strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* —— Sections —— */
.sec {
  padding: var(--sec-pad-y, 5.5rem) 0;
}

.lab {
  color: var(--p);
  font-size: 0.875rem;
  font-weight: 500;
}

.sec h2 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-top: 0.55rem;
}

.muted {
  color: var(--mut);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 36rem;
}

.grid3 {
  display: grid;
  gap: var(--gap-cards, 1.35rem);
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .grid3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  border: 1px solid var(--chrome-border, var(--bd));
  background: var(--chrome-fill-solid, var(--elev));
  border-radius: var(--radius);
  padding: 1.45rem 1.4rem 1.5rem;
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.card p {
  margin-top: 0.45rem;
  font-size: 0.875rem;
  color: var(--mut);
  line-height: 1.55;
}

.ico {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--ps);
  color: var(--p);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ico-svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.em {
  color: var(--fg);
  font-weight: 600;
}

.em-soft {
  color: var(--mut);
  font-weight: 500;
}

.text-link {
  color: var(--p);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.text-link:hover {
  filter: brightness(1.12);
}

.step-title {
  margin-top: 0.75rem;
}

.card strong.em {
  font-weight: 600;
}

.band {
  border-block: 1px solid var(--chrome-border, var(--bd));
  background: #121a1580;
}

/* Screens gallery — KEEP desktop grid; mobile snap is additive only */
.shots {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .shots {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ADD ONLY — mobile snap carousel; does not touch ≥768 rules */
@media (max-width: 767px) {
  .shots {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .shot {
    flex: 0 0 min(78vw, 17.5rem);
    scroll-snap-align: start;
  }
}

.shot {
  border: 1px solid var(--bd);
  background: var(--elev);
  border-radius: 1.25rem;
  padding: 0.65rem;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .shot:hover {
    border-color: color-mix(in oklab, var(--p) 35%, var(--bd));
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -18px #00000090;
  }
}

.shot img {
  border-radius: 0.95rem;
  border: 1px solid var(--bds);
  width: 100%;
  height: auto;
  background: #0d1210;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--mut);
  text-align: center;
  line-height: 1.4;
}

/* Steps */
.steps {
  display: grid;
  gap: var(--gap-cards, 1.35rem);
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.steps .card {
  background: var(--chrome-fill-solid, var(--elev));
  box-shadow: inset 0 2px 0 0 color-mix(in oklab, var(--p) 40%, transparent);
}

/* Privacy grid — solid elev for band readability */
#privatliv .card {
  background: var(--chrome-fill-solid, var(--elev));
  border-color: var(--chrome-border, var(--bd));
  box-shadow: none;
}

.stepn {
  color: var(--p);
  font-weight: 600;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}

.price-note {
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--subtl);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* —— App shell map (site mirror of iOS tabs) —— */
.shell-map {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.shell-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--bds);
  background: var(--sub);
  color: var(--fg);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}

.shell-pill-soft {
  border-color: var(--bd);
  background: transparent;
  color: var(--mut);
  font-weight: 500;
}

.shell-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 99px;
  background: var(--p);
  flex-shrink: 0;
}

.feature-blocks {
  display: grid;
  gap: var(--gap-cards-lg, 1.5rem);
  margin-top: 2.25rem;
}

@media (min-width: 900px) {
  .feature-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.fblock {
  border: 1px solid var(--chrome-border, var(--bd));
  background: var(--chrome-fill-solid, var(--elev));
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  /* pitch top accent — brand, not live-red */
  box-shadow: inset 0 2px 0 0 color-mix(in oklab, var(--p) 55%, transparent);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .fblock:hover {
    border-color: color-mix(in oklab, var(--p) 40%, var(--bd));
    transform: translateY(-2px);
    box-shadow:
      inset 0 2px 0 0 color-mix(in oklab, var(--p) 70%, transparent),
      0 12px 28px -16px #00000080;
  }
}

.fblock-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding-bottom: 0.15rem;
}

.fblock-tab {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--p);
}

.fblock h3 {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
}

.fblock-lead {
  margin: 0;
  font-size: 0.875rem;
  color: var(--mut);
  line-height: 1.58;
}

.check-list {
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.875rem;
  color: var(--mut);
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 99px;
  background: var(--p);
  box-shadow: 0 0 0 3px #2f9e5f22;
}

/* Scope: what you get / don't get */
.scope-grid {
  display: grid;
  gap: var(--gap-cards-lg, 1.5rem);
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.scope-col {
  border: 1px solid var(--chrome-border, var(--bd));
  /* solid-enough on .band for mobile readability (I-3) */
  background: var(--chrome-fill-solid, var(--elev));
  border-radius: var(--radius);
  padding: 1.45rem 1.5rem 1.55rem;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.scope-yes {
  box-shadow: inset 0 2px 0 0 color-mix(in oklab, var(--p) 60%, transparent);
}

.scope-no {
  box-shadow: inset 0 2px 0 0 color-mix(in oklab, #e08a8a 45%, transparent);
}

@media (hover: hover) and (pointer: fine) {
  .scope-col:hover {
    transform: translateY(-1px);
  }
  .scope-yes:hover {
    border-color: color-mix(in oklab, var(--p) 35%, var(--bd));
  }
  .scope-no:hover {
    border-color: color-mix(in oklab, #e08a8a 30%, var(--bd));
  }
}

.scope-col h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.scope-ico {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scope-ico .ico-svg {
  width: 1rem;
  height: 1rem;
}

.scope-yes .scope-ico {
  background: var(--ps);
  color: var(--p);
}

.scope-no .scope-ico {
  background: #3a2222;
  color: #e08a8a;
}

.scope-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-col li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-size: 0.875rem;
  color: var(--mut);
  line-height: 1.5;
  border-top: 1px solid #ffffff08;
}

.scope-col li:first-child {
  border-top: 0;
  padding-top: 0;
}

.scope-yes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 99px;
  background: var(--p);
}

.scope-no li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 99px;
  background: #8a5555;
}

.scope-col li:first-child::before {
  top: 0.45rem;
}

/* CTA band — single tight close */
.cta-sec {
  text-align: center;
  border-top: 1px solid var(--chrome-border, var(--bd));
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, color-mix(in oklab, var(--p) 12%, transparent), transparent 55%),
    #121a15cc;
  padding: 4.25rem 0 4.5rem;
}

.cta-sec .lab {
  margin: 0;
}

.cta-sec h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  text-wrap: balance;
  /* full locked CTA needs room (I-1 / design rev 2) */
  max-width: min(32ch, 100%);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.cta-sec .close-lead {
  margin: 0.9rem auto 0;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.6;
}

.cta-sec .micro {
  color: var(--subtl);
  margin-top: 1.15rem;
}

/* Footer */
footer {
  border-top: 1px solid var(--bd);
  padding: 2.5rem 0;
  color: var(--subtl);
  font-size: 0.75rem;
}

footer .inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  footer .inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

footer a {
  color: var(--mut);
}

footer a:hover {
  color: var(--fg);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* Mobile nav */
.mob {
  display: none;
  position: fixed;
  inset: var(--hdr-h) 0 0 0;
  background: #0a0f0cf2;
  padding: 1.5rem;
  z-index: 40;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
}

.mob a {
  padding: 0.85rem;
  border-radius: 0.75rem;
  font-weight: 500;
}

.mob a:hover {
  background: var(--sub);
}

.mob.open {
  display: flex;
}

/* Legal pages */
.legal {
  padding: 7rem 0 4rem;
  max-width: 42rem;
}

.legal h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.legal h2 {
  font-size: 1.15rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal p,
.legal li {
  color: var(--mut);
  line-height: 1.65;
  margin-top: 0.65rem;
  font-size: 0.95rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.legal a {
  color: var(--p);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal .back {
  margin-top: 2.5rem;
}

/* Sidelinjen journal */
.essay { padding: 7rem 0 4rem; max-width: 38rem; }
.essay h1 { font-size: clamp(1.85rem, 3.4vw, 2.45rem); letter-spacing: -0.03em; text-wrap: balance; line-height: 1.2; }
.essay .byline { margin-top: 0.85rem; font-size: 0.88rem; color: var(--subtl); }
.essay .lede { margin-top: 1.6rem; font-size: 1.12rem; line-height: 1.62; color: var(--fg); }
.essay p, .essay li { color: var(--mut); line-height: 1.7; margin-top: 1.05rem; font-size: 1.02rem; }
.essay h2 { font-size: 1.2rem; margin-top: 2.25rem; letter-spacing: -0.02em; }
.essay-list { margin-top: 2rem; }
.essay-card { display: block; padding: 1.35rem 0; border-top: 1px solid var(--chrome-border, var(--bd)); color: inherit; }
.essay-card:hover .essay-card-title { color: var(--p); }
.essay-card-title { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; }
.essay-card-meta { margin-top: 0.4rem; font-size: 0.82rem; color: var(--subtl); }
.essay-close { margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid var(--chrome-border, var(--bd)); }
.essay-close .cta { margin-top: 1.25rem; }
.essay .back { margin-top: 2.5rem; }
