/* ========== TOKENS ========== */
:root {
  --bg: #FAF7F2;
  --bg-2: #F2EDE4;
  --ink: #0F0F0F;
  --ink-2: #2A2A2A;
  --ink-3: #6B6B6B;
  --line: #1a1a1a14;
  --line-strong: #1a1a1a26;
  --accent: #ffe747;
  --accent-ink: #0F0F0F;

  --display: "Rubik Doodle Shadow", "Rubik", system-ui, sans-serif;
  --body: "Mate", Georgia, "Times New Roman", serif;

  --font-display: var(--display);
  --font-body: var(--body);
  --font-ui: var(--body);

  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad: clamp(72px, 10vw, 140px);
}

[data-theme="dark"] {
  --bg: #0E0E0C;
  --bg-2: #1A1A18;
  --ink: #F4EFE6;
  --ink-2: #DCD6CB;
  --ink-3: #8C8676;
  --line: #f4efe614;
  --line-strong: #f4efe626;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html { scroll-behavior: smooth; }

/* Display elements use Rubik Doodle Shadow */
.section-head__title,
.hero__title,
.foot__big h2,
.adrian__stat-n,
.kupujesz__title,
.proces__title,
.faq__q-text,
.hero__mark,
.hero__name,
.section-head__num {
  font-family: var(--font-display);
  font-variation-settings: normal;
  font-weight: 400;
  letter-spacing: 0;
}

/* Everything else (incl. would-be italics) uses body font, italicized where intended */
.hero__title em,
.section-head__title em,
.foot__big h2 em,
.manifest__lead,
.manifest__pull,
.manifest__pull em,
.section-head__lede,
.adrian__why,
.kupujesz__promise,
.manifest__sig-label,
.adrian__photo-name,
.proces__guarantee:first-child h4 {
  font-family: var(--font-body);
  font-style: italic;
  font-variation-settings: normal;
  letter-spacing: 0;
}

/* Display ems stay in display font */
.hero__title em,
.section-head__title em,
.foot__big h2 em {
  font-family: var(--font-display);
  font-style: normal;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* ========== LAYOUT ========== */
.page {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-pad) 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* ========== SECTION HEAD ========== */
.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 880px;
}
.section-head__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-head__num {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: pretty;
}
.section-head__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.section-head__lede {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
  font-style: italic;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--lg { padding: 20px 32px; font-size: 17px; }
.btn__arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  border-top: 0;
  padding: 32px 0 var(--section-pad);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 100px);
}
.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-family: var(--font-ui);
  font-size: 13px;
}
.hero__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero__logo {
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero__logo-dot { color: var(--accent); }
.hero__nav {
  display: flex;
  gap: 28px;
  color: var(--ink-2);
}
.hero__nav a:hover { color: var(--accent); }
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
}
.hero__live .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  max-width: 920px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.97;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero__sub {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
  font-style: italic;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__assurances {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-3);
}
.hero__assurances li { display: inline-flex; align-items: center; gap: 8px; }
.hero__assurances span { color: var(--accent); }

.hero__foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__foot-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__foot-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__foot-val {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
}

/* ========== MANIFEST ========== */
.manifest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 720px;
  font-size: 21px;
  line-height: 1.55;
}
.manifest__lead {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0;
}
.manifest__pull {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.25;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
  margin: 16px 0;
}
.manifest__pull em { font-style: normal; color: var(--accent); font-weight: 500; }
.manifest p { margin: 0; }
.manifest__signature {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.manifest__sig-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
}
.manifest__sig-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}

/* ========== ADRIAN ========== */
.adrian__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.adrian__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  background:
    repeating-linear-gradient(135deg, var(--bg-2) 0 8px, transparent 8px 16px),
    var(--bg-2);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.adrian__photo-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.adrian__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.adrian__photo--has-image .adrian__photo-inner {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}
.adrian__photo--has-image .adrian__photo-label,
.adrian__photo--has-image .adrian__photo-name {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.adrian__photo-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
.adrian__photo-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.adrian__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 19px;
  line-height: 1.55;
}
.adrian__copy p { margin: 0; }
.adrian__copy strong { font-weight: 600; }
.adrian__why {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  font-style: italic;
}

.adrian__stats {
  list-style: none;
  margin: clamp(48px, 6vw, 80px) 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.adrian__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.adrian__stat:last-child { border-right: 0; }
.adrian__stat-n {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1;
}
.adrian__stat-l {
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-3);
}

/* ========== CO KUPUJESZ ========== */
.kupujesz__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.kupujesz__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.kupujesz__item:nth-child(odd) { padding-right: 32px; border-right: 1px solid var(--line); }
.kupujesz__item:nth-child(even) { padding-left: 32px; }
.kupujesz__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  width: 32px;
  flex-shrink: 0;
}
.kupujesz__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.15;
}
.kupujesz__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.kupujesz__promise {
  margin-top: 48px;
  padding: 32px 40px;
  background: var(--bg-2);
  border-left: 3px solid var(--accent);
  font-size: 19px;
  line-height: 1.5;
  font-style: italic;
}
.kupujesz__promise p { margin: 0; }
.kupujesz__promise strong { font-style: normal; font-weight: 600; }

/* ========== PROCES ========== */
.proces__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.proces__step {
  padding: 32px 24px 32px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.proces__step:last-child { border-right: 0; padding-right: 0; }
.proces__step:not(:first-child) { padding-left: 24px; }
.proces__step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.proces__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  font-weight: 500;
}
.proces__time {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.proces__title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0;
  line-height: 1.15;
}
.proces__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

.proces__guarantees {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.proces__guarantee {
  padding: 32px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
}
.proces__guarantee:first-child {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.proces__guarantee h4 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 12px;
}
.proces__guarantee:first-child h4 { color: var(--accent); font-style: italic; }
.proces__guarantee p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

/* ========== FAQ ========== */
.faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: 0;
  text-align: left;
  color: var(--ink);
}
.faq__q-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  width: 36px;
}
.faq__q-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-weight: 500;
}
.faq__q-icon {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink-3);
  flex-shrink: 0;
}
.faq__item.is-open .faq__q-icon { color: var(--accent); }
.faq__a {
  padding: 0 0 28px 60px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 70ch;
  display: none;
}
.faq__item.is-open .faq__a { display: block; }

/* ========== FOOTER ========== */
.foot {
  border-top: 1px solid var(--line);
  padding: var(--section-pad) 0 64px;
}
.foot__big {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 0 var(--section-pad);
  border-bottom: 1px solid var(--line);
}
.foot__big h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}
.foot__big h2 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.foot__note {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
}

.foot__meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.foot__col { display: flex; flex-direction: column; gap: 8px; }
.foot__logo {
  font-family: var(--font-display), system-ui, sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 4px 0 8px;
  display: block;
}
.foot__logo-dot { color: var(--accent); }
.foot__label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.foot__col p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero__top {
    flex-wrap: wrap;
    gap: 16px 20px;
  }
  .hero__brand { order: 1; }
  .hero__live { order: 2; display: none; }
  .hero__nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 14px;
    padding-top: 4px;
  }
  .hero__foot { grid-template-columns: 1fr 1fr; }
  .adrian__grid { grid-template-columns: 1fr; }
  .adrian__stats { grid-template-columns: 1fr 1fr; }
  .adrian__stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .kupujesz__list { grid-template-columns: 1fr; }
  .kupujesz__item, .kupujesz__item:nth-child(odd), .kupujesz__item:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
  .proces__list { grid-template-columns: 1fr 1fr; }
  .proces__step { border-bottom: 1px solid var(--line); }
  .proces__guarantees { grid-template-columns: 1fr; }
  .foot__meta { grid-template-columns: 1fr 1fr; }
}

/* ========== ARTICLE / TUTORIAL ========== */
.article__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.article__back {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  transition: color .15s ease;
}
.article__back:hover { color: var(--accent); }

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 8vw, 120px);
}

.article__head {
  margin-bottom: clamp(48px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.article__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}
.article__title em {
  font-family: var(--font-display);
  font-style: normal;
  color: var(--accent);
}
.article__lede {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
  margin: 0;
  max-width: 60ch;
}

.article__body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}
.article__body > * + * { margin-top: 1.2em; }
.article__body p { margin: 0; }
.article__body strong { font-weight: 600; color: var(--ink); }
.article__body em { font-style: italic; }
.article__body a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  transition: border-color .15s ease;
}
.article__body a:hover { border-bottom-color: var(--accent); }

.article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 400;
  margin: 2.4em 0 0.6em !important;
  text-wrap: balance;
}
.article__body h2 code {
  font-family: var(--mono, "JetBrains Mono", ui-monospace, monospace);
  font-size: 0.7em;
  background: var(--bg-2);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--accent);
  font-weight: 500;
}
.article__body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 400;
  margin: 1.8em 0 0.5em !important;
  color: var(--ink);
}

.article__intro {
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 24px 0 24px 28px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink-2);
}
.article__intro p { margin: 0; }
.article__intro strong { color: var(--ink); font-style: normal; }

.article__pull {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  color: var(--accent);
  font-weight: 400;
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 2em 0 !important;
}
.article__pull strong {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent);
}

.article__list {
  margin: 0;
  padding-left: 1.4em;
}
.article__list li {
  margin: 0.6em 0;
  padding-left: 0.4em;
}
.article__list li::marker { color: var(--accent); }
ol.article__list li::marker { font-family: var(--font-display); }

.article__body pre {
  margin: 1.6em 0 !important;
  padding: 24px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.5;
}
.article__body pre code {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  color: var(--ink);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.article__body code {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  font-size: 0.88em;
  background: var(--bg-2);
  padding: 2px 8px;
  border-radius: 5px;
  color: var(--accent);
  white-space: nowrap;
}

.article__table-wrap {
  overflow-x: auto;
  margin: 1.6em 0 !important;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}
.article__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
}
.article__table th,
.article__table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.article__table thead th {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  background: var(--bg-2);
}
.article__table tbody tr:last-child td { border-bottom: 0; }
.article__table td strong { color: var(--ink); }

.article__foot {
  margin-top: clamp(64px, 8vw, 120px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.article__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.article__cta-label {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 8px;
}
.article__sig {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.article__sig .manifest__sig-meta a {
  color: inherit;
  border-bottom: 1px solid var(--line-strong);
}
.article__sig .manifest__sig-meta a:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 700px) {
  .article__topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .article__back { font-size: 12px; }
  .article__body { font-size: 18px; }
  .article__lede { font-size: 19px; }
}

