/* Capacity Safe — Editorial Institutional */
:root {
  --ink: #141414;
  --ink-soft: #1a1a1a;
  --paper: #f8f6f1;
  --paper-muted: #ebe8e0;
  --text: #1c1c1c;
  --text-muted: #5c5a56;
  --accent: #2d4a7a;
  --accent-hover: #3a5f96;
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --ease-slow: cubic-bezier(0.22, 1, 0.36, 1);
  --grounded: #3d6b5a;
  --stretched: #8b7355;
  --flooded: #a65d4a;
  --frozen: #5a7a8c;
  --fractured: #6b5a7a;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --max-read: 42rem;
  --max-wide: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff;
}
.skip-link:focus { left: 0; }

/* ——— Nav ——— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  mix-blend-mode: difference;
  pointer-events: none;
}
.site-nav a, .site-nav button {
  pointer-events: auto;
  color: #f8f6f1;
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.site-nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav--light {
  mix-blend-mode: normal;
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--paper-muted);
}
.site-nav--light a, .site-nav--light button { color: var(--text); }

/* ——— Hero ——— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--ink-soft);
  color: #f0ede6;
  display: grid;
  grid-template-columns: 1fr min(38vw, 14rem);
  position: relative;
  overflow: hidden;
}
.hero__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 5rem) clamp(4rem, 8vh, 6rem);
  max-width: 52rem;
}
.hero__rail {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.35);
  border-left: 1px solid rgba(240, 237, 230, 0.08);
  padding: 2rem 0;
}
.hero__mark {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 230, 0.5);
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  margin: 0 0 1.75rem;
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  color: rgba(240, 237, 230, 0.82);
  max-width: 38rem;
  margin: 0 0 2.75rem;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__rail { display: none; }
  .hero__main {
    padding: clamp(5.5rem, 18vw, 7rem) 1.25rem 3rem;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.25;
  }
  .site-nav {
    padding: 1rem 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .site-nav__links {
    gap: 1rem;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease-slow), color 0.35s var(--ease-slow), border-color 0.35s var(--ease-slow), transform 0.35s var(--ease-slow);
  text-decoration: none;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #f0ede6;
  border-color: rgba(240, 237, 230, 0.35);
}
.btn--ghost:hover {
  border-color: #f0ede6;
  color: #fff;
}
.btn--dark-ghost {
  color: var(--text);
  border-color: var(--text-muted);
}
.btn--dark-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 74, 122, 0.6) 30%, rgba(45, 74, 122, 0.6) 70%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-slow);
}
.hero.is-visible .hero__line { transform: scaleX(1); }

/* ——— Sections ——— */
.section {
  padding: var(--space-xl) clamp(1.5rem, 5vw, 4rem);
}
.section--dark {
  background: var(--ink);
  color: #e8e5de;
}
.section--paper { background: var(--paper); }
.section--offset {
  margin-top: -4rem;
  padding-top: calc(var(--space-xl) + 4rem);
  position: relative;
  z-index: 2;
  clip-path: polygon(0 3rem, 100% 0, 100% 100%, 0 100%);
}

.section__label {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.section--dark .section__label { color: rgba(232, 229, 222, 0.45); }

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-md);
  max-width: 28ch;
}

/* Indictment — staggered */
.indictment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-wide);
  margin: 0 auto;
  border-top: 1px solid var(--paper-muted);
}
@media (max-width: 768px) {
  .indictment { grid-template-columns: 1fr; }
}
.indictment__col {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-right: 1px solid var(--paper-muted);
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s var(--ease-slow), transform 0.6s var(--ease-slow);
}
.indictment__col:last-child { border-right: none; }
.indictment__col.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.indictment__col:nth-child(2).is-visible { transition-delay: 0.12s; }
.indictment__col:nth-child(3).is-visible { transition-delay: 0.24s; }
.indictment h3 {
  font-size: 1rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--accent);
}
.indictment p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Capacity Map */
.capacity-map {
  max-width: var(--max-wide);
  margin: 0 auto;
}
.capacity-map__spectrum {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.capacity-map__segment {
  flex: 1;
  transition: flex 0.5s var(--ease-slow);
}
.capacity-map__segment.is-active { flex: 2.2; }

.capacity-map__states {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .capacity-map__states { grid-template-columns: 1fr; }
}
.capacity-state {
  position: relative;
  padding: 1.25rem 1rem 1.5rem;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: default;
  transition: background 0.4s var(--ease-slow), border-color 0.4s var(--ease-slow);
  min-height: 5rem;
}
.capacity-state:hover,
.capacity-state.is-active,
.capacity-state:focus-within {
  border-color: rgba(255,255,255,0.15);
  z-index: 2;
}
.capacity-state__bar {
  height: 3px;
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: 1px;
}
.capacity-state__name {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  color: #e8e5de;
}
.capacity-state__brief {
  font-size: clamp(0.875rem, 1.1vw, 0.95rem);
  color: rgba(232, 229, 222, 0.88);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 900px) {
  .capacity-state__brief { font-size: 0.9375rem; }
}
.capacity-state__detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s var(--ease-slow), opacity 0.45s var(--ease-slow), margin 0.45s var(--ease-slow);
  font-size: 0.8125rem;
  color: rgba(232, 229, 222, 0.7);
  line-height: 1.55;
}
.capacity-state:hover .capacity-state__detail,
.capacity-state.is-active .capacity-state__detail,
.capacity-state:focus-within .capacity-state__detail {
  max-height: 12rem;
  opacity: 1;
  margin-top: 0.75rem;
}

/* Three cards — diagonal offset */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 768px) {
  .triad { grid-template-columns: 1fr; }
}
.triad__card {
  background: #fff;
  border: 1px solid var(--paper-muted);
  padding: 2rem 1.75rem;
  transition: transform 0.45s var(--ease-slow), box-shadow 0.45s var(--ease-slow);
}
.triad__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.06);
}
.triad__card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}
.triad__card p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.triad__card a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.triad__card a:hover { text-decoration: underline; }

/* Standard block */
.standard-block {
  max-width: var(--max-read);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg) 0;
}
.standard-block__version {
  font-family: var(--serif);
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.price-hint {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.65rem;
  letter-spacing: 0.02em;
}
.price-hint--light {
  color: rgba(240, 237, 230, 0.55);
}

.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  text-align: center;
  margin: 2.5rem auto;
  padding: 2rem 1.5rem;
  max-width: 24ch;
  line-height: 1.45;
  color: var(--text);
  border: none;
  border-top: 1px solid var(--paper-muted);
  border-bottom: 1px solid var(--paper-muted);
}

.state-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin: 1.5rem 0; }
.state-table th {
  text-align: left;
  border-bottom: 2px solid var(--paper-muted);
  padding: 0.5rem 0.75rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.state-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--paper-muted);
  vertical-align: top;
}
.state-table__state {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}
.state-table__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.state-table tr[data-state="grounded"] { border-left: 4px solid var(--grounded); }
.state-table tr[data-state="stretched"] { border-left: 4px solid var(--stretched); }
.state-table tr[data-state="flooded"] { border-left: 4px solid var(--flooded); }
.state-table tr[data-state="frozen"] { border-left: 4px solid var(--frozen); }
.state-table tr[data-state="fractured"] { border-left: 4px solid var(--fractured); }

.certify-intro {
  max-width: 40ch;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.course-picker__count {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
.course-picker__scroll-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-style: italic;
}
.standard-block p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* Who — mosaic */
.who-grid {
  columns: 2;
  column-gap: 3rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}
@media (max-width: 640px) {
  .who-grid { columns: 1; }
}
.who-line {
  break-inside: avoid;
  padding: 0.65rem 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding-left 0.35s var(--ease-slow);
  opacity: 0;
  transform: translateX(-8px);
}
.who-line.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s var(--ease-slow), transform 0.5s var(--ease-slow), border-color 0.3s, padding-left 0.35s var(--ease-slow);
}
.who-line:hover {
  border-color: var(--paper-muted);
  padding-left: 0.5rem;
}

/* Path — three lanes */
.path-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: var(--max-wide);
  margin: 0 auto;
  background: var(--ink);
  color: #e8e5de;
}
@media (max-width: 768px) {
  .path-lanes { grid-template-columns: 1fr; }
}
.path-lane {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.path-lane:last-child { border-right: none; }
.path-lane::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.5s var(--ease-slow);
}
.path-lane:hover::before { opacity: 0.08; }
.path-lane > * { position: relative; z-index: 1; }
.path-lane h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.path-lane p {
  font-size: 0.9rem;
  color: rgba(232, 229, 222, 0.6);
  margin: 0 0 1.5rem;
}
.path-lane .btn--ghost {
  color: #e8e5de;
  border-color: rgba(232, 229, 222, 0.3);
}

/* Whelmish bridge */
.whelmish-bridge {
  text-align: center;
  padding: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--paper-muted);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(232, 229, 222, 0.55);
  padding: var(--space-lg) clamp(1.5rem, 5vw, 4rem) var(--space-md);
  font-size: 0.875rem;
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
}
@media (max-width: 640px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__founding {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(232, 229, 222, 0.75);
  max-width: 32rem;
  margin: 0.5rem 0 0;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}
.site-footer a {
  color: rgba(232, 229, 222, 0.7);
  text-decoration: none;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer a:hover { color: #fff; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s var(--ease-slow), transform 0.55s var(--ease-slow);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Inner pages ——— */
.page-hero {
  padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 5vw, 4rem) var(--space-lg);
  background: var(--paper);
  border-bottom: 1px solid var(--paper-muted);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  max-width: 20ch;
}
.page-hero p {
  color: var(--text-muted);
  max-width: var(--max-read);
  margin: 0;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 1000;
  transition: width 0.1s linear;
}

.standard-doc {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-lg) clamp(1.5rem, 5vw, 3rem) var(--space-xl);
}
.standard-doc h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 5rem;
}
.standard-doc h3 { font-size: 1.1rem; margin: 2rem 0 0.75rem; }
.standard-doc p, .standard-doc li { color: var(--text); }
.standard-doc .lead {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.75;
}

.certify-choice {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) 2rem;
  text-align: center;
}
.certify-choice h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 22ch;
  margin-bottom: var(--space-lg);
}
.certify-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.certify-options .btn { min-width: 12rem; }

.certify-panel {
  display: none;
  max-width: var(--max-read);
  margin: 0 auto;
  padding: var(--space-lg) 2rem var(--space-xl);
}
.certify-panel.is-active { display: block; }

/* Notify / waitlist */
.notify-page {
  padding: clamp(6rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem) var(--space-xl);
}
.notify-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  max-width: var(--max-wide);
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .notify-layout { grid-template-columns: 1fr; }
}
.notify-intro h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
}
.notify-intro p {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.course-picker {
  background: #fff;
  border: 1px solid var(--paper-muted);
  padding: 1.5rem;
}
.course-picker__search-wrap {
  position: relative;
  margin-bottom: 1rem;
}
.course-picker__search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid var(--paper-muted);
  background: var(--paper);
  transition: border-color 0.3s;
}
.course-picker__search:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.course-picker__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
  pointer-events: none;
}
.course-picker__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.filter-chip {
  font-family: var(--sans);
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--paper-muted);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.filter-chip:hover,
.filter-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.course-picker__list {
  max-height: 16rem;
  overflow-y: auto;
  border: 1px solid var(--paper-muted);
  margin-bottom: 1.25rem;
}
.course-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--paper-muted);
  cursor: pointer;
  transition: background 0.25s;
}
.course-item:last-child { border-bottom: none; }
.course-item:hover { background: var(--paper); }
.course-item.is-hidden { display: none; }
.course-item input { margin-top: 0.2rem; accent-color: var(--accent); }
.course-item__meta {
  flex: 1;
  min-width: 0;
}
.course-item__title {
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
}
.course-item__audience {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.selected-courses {
  min-height: 3rem;
  padding: 0.75rem;
  background: var(--paper);
  border: 1px dashed var(--paper-muted);
  margin-bottom: 1.25rem;
}
.selected-courses__empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.selected-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--ink);
  color: #e8e5de;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  margin: 0.25rem;
}
.selected-tag button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.7;
}
.selected-tag button:hover { opacity: 1; }

.notify-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.notify-form input[type="email"],
.notify-form input[type="text"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  border: 1px solid var(--paper-muted);
  margin-bottom: 1rem;
}
.notify-form .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  tabindex: -1;
}
.form-status {
  font-size: 0.9rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  display: none;
}
.form-status.is-error {
  display: block;
  background: #f5ebe8;
  color: var(--flooded);
  border: 1px solid rgba(166, 93, 74, 0.3);
}
.form-status.is-success {
  display: block;
  background: #e8f0ec;
  color: var(--grounded);
  border: 1px solid rgba(61, 107, 90, 0.3);
}
.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.5rem 0 1rem;
}

/* Cookie notice — non-blocking */
.consent-minimal {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 18rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: rgba(232, 229, 222, 0.8);
  font-size: 0.75rem;
  z-index: 800;
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(120%);
  transition: transform 0.5s var(--ease-slow);
}
.consent-minimal.is-shown { transform: translateY(0); }
.consent-minimal button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
  margin-left: 0.25rem;
}
