/* EXIT DOCTRINE — styles.css
   Visual canon per exitdoctrine_landing_website.md v3.1
   ──────────────────────────────────────────────────── */


/* ── 0. CUSTOM PROPERTIES ───────────────────────────── */

:root {
  --void:           #080808;
  --void-deep:      #0a0c0a;
  --white:          #FFFFFF;
  --whisper:        rgba(255, 255, 255, 0.45);
  --forest-active:  #3A7055;
  --forest-deep:    #1A3326;
  --forest-mid:     #243D2E;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Barlow", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", "Courier New", monospace;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-base:    600ms;
  --t-slow:    800ms;

  --max-content: 1400px;
  --pad-x:       80px;
  --pad-y:       160px;
}


/* ── 1. RESET & BASE ────────────────────────────────── */

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

html {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--void-deep);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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


/* ── 2. TYPOGRAPHY TOKENS ───────────────────────────── */

.section-marker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--whisper);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.product-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.product-tagline {
  margin-bottom: 20px;
}

.product-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--whisper);
}

.product-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 28px;
}

.product-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--whisper);
  text-transform: uppercase;
}

.product-footnote {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--whisper);
  text-transform: uppercase;
  margin-top: 16px;
}

.author-lockup {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--whisper);
  margin-bottom: 24px;
}

.forest-dot {
  width: 6px;
  height: 6px;
  background: var(--forest-active);
  border-radius: 50%;
  margin: 0 auto;
}


/* ── 3. SITE HEADER — wordmark top-left fixed ────────── */

.site-header {
  position: fixed;
  top: 32px;
  left: 40px;
  z-index: 200;
}

.site-wordmark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity var(--t-base) var(--ease-out);
}

.site-wordmark:hover {
  opacity: 1;
}


/* ── 4. SIDE DOCK NAV — right-edge fixed, desktop only ── */

.side-dock {
  position: fixed;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.side-dock ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-dock a {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--whisper);
  text-decoration: none;
  position: relative;
  transition:
    font-size var(--t-base) var(--ease-out),
    color     var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out);
}

.side-dock a:hover {
  font-size: 12px;
  color: var(--white);
  transform: translateX(-4px);
}

.side-dock a.is-active {
  color: var(--white);
}

.side-dock a.is-active::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--forest-active);
  border-radius: 50%;
}


/* ── 5. BLOCK — base ──────────────────────────────────── */

.block {
  background: var(--void);
}


/* ── 6. BLOCK 0 — HERO ───────────────────────────────── */

.block-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: var(--void);
}

/* Ink atmosphere — SVG injected by lib/ink-background.js in Fase 5 */
.ink-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ink-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Split content grid */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 45fr 55fr;
  width: 100%;
  max-width: var(--max-content);
  align-items: center;
  gap: 60px;
  padding: 0 var(--pad-x);
}

.hero-left  { position: relative; }
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rotating quotes — Cormorant Roman, NOT italic */
.rotating-quotes {
  position: relative;
  min-height: 240px;
  perspective: 800px;
}

.quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  color: var(--white);
  opacity: 0;
  position: absolute;
  inset: 0;
  transform: rotateY(6deg);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.quote.is-active {
  opacity: 1;
  transform: rotateY(0deg);
}

.quote-citation {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: var(--whisper);
  letter-spacing: 0.05em;
}

/* Forest Active pulse dot — appears briefly between quote transitions */
.quote-pulse-dot {
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--forest-active);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 400ms ease;
}

/* 3D key — Y-axis wobble */
.hero-key {
  width: 100%;
  height: auto;
  max-width: 600px;
  animation: key-breathe 7s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes key-breathe {
  0%, 100% { transform: rotateY(-5deg); }
  50%       { transform: rotateY(5deg);  }
}

/* Author lockup + scroll dot — centered in hero bottom */
.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  padding-bottom: 48px;
}

.scroll-indicator {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--forest-active);
  border-bottom: 2px solid var(--forest-active);
  transform: rotate(45deg);
  animation: scroll-blink 1.4s ease-in-out infinite;
}

@keyframes scroll-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}


/* ── 7. PRODUCT CARD — shared by Newsletter + Blocks 2-5 ─ */

.block-newsletter,
.block-product {
  padding: var(--pad-y) 0;
  background: var(--void);
  perspective: 1200px;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(58, 112, 85, 0.3);
  transition:
    border-color var(--t-base) var(--ease-out),
    box-shadow   var(--t-base) var(--ease-out);
}

.product-card:hover {
  border-color: rgba(58, 112, 85, 0.65);
  box-shadow: 0 0 48px rgba(58, 112, 85, 0.07);
}

.product-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  transition: transform var(--t-slow) var(--ease-out);
}

.product-card:hover .product-img {
  transform: translateY(-6px);
}

/* Beehiiv embed wrapper */
.beehiiv-form-wrapper {
  margin: 28px 0 8px;
}

.beehiiv-form-wrapper button,
.beehiiv-form-wrapper [type="submit"] {
  font-family: var(--font-mono) !important;
}


/* ── 8. BLOCK 6 — ASSEMBLY · GOD'S CLOCK ─────────────── */

.block-assembly {
  padding: var(--pad-y) max(var(--pad-x), calc((100vw - 900px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--void);
}

.assembly-headline-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 16px;
}

.godsclock-isotype {
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: 10px;
}

.assembly-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.0;
  color: var(--white);
}

.assembly-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--t-base) var(--ease-out);
}

.assembly-cta:hover {
  border-bottom-color: var(--forest-active);
}


/* ── 9. BLOCK 7 — OPERATOR'S LIBRARY ─────────────────── */

.block-library {
  padding-top: var(--pad-y);
  padding-bottom: var(--pad-y);
  overflow: hidden;
  background: var(--void);
}

.block-header {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  margin-bottom: 56px;
}

.block-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 12px;
}

.block-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: var(--whisper);
}

/* Marquee */
.library-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0, black 8%, black 92%, transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0, black 8%, black 92%, transparent 100%
  );
  margin-bottom: 48px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

.library-item {
  flex-shrink: 0;
  width: 180px;
  padding: 20px 16px;
  border: 1px solid rgba(58, 112, 85, 0.25);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--t-base) var(--ease-out);
  cursor: default;
}

.library-item:hover {
  border-color: rgba(58, 112, 85, 0.65);
}

.library-item-thumb {
  width: 100%;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
  object-fit: contain;
}

.item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.item-category {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--whisper);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.library-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  margin-left: var(--pad-x);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--t-base) var(--ease-out);
}

.library-cta:hover {
  border-bottom-color: var(--forest-active);
}


/* ── 10. BLOCK 8 — ABOUT / CLOSING ──────────────────────── */

.block-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 200px var(--pad-x) 120px;
  background: var(--void);
}

.about-content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 64px;
}

.about-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
}

.about-bio {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
  color: var(--white);
}

.closing-quote {
  margin-top: 80px;
  margin-bottom: 24px;
}

.closing-quote em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  color: var(--white);
}

.closing-social {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.social-handle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--whisper);
  transition: color var(--t-base) var(--ease-out);
}

.social-handle:hover { color: var(--white); }

.closing-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--whisper);
  letter-spacing: 0.06em;
}


/* ── 11. META FOOTER ────────────────────────────────── */

.meta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: var(--void);
}

.meta-links {
  display: flex;
  gap: 28px;
}

.meta-links a,
.meta-back {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--whisper);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--t-base) var(--ease-out);
}

.meta-links a:hover,
.meta-back:hover {
  color: var(--white);
}


/* ── 12. SOVEREIGN SOCIETY SUBPAGE ───────────────────── */

.subpage-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  padding-top: 120px;
}

/* Hero */
.subpage-hero {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 0;
}

.subpage-tagline {
  margin-bottom: 40px;
}

.subpage-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--whisper);
}

.subpage-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subpage-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--white);
}

/* Inner sections */
.subpage-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.subpage-section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.subpage-body-intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--whisper);
  margin-bottom: 48px;
}

/* Four conditions */
.profile-conditions {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.condition {
  padding-left: 20px;
  border-left: 1px solid rgba(58, 112, 85, 0.25);
}

.condition-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.condition-dot {
  width: 6px;
  height: 6px;
  background: var(--forest-active);
  border-radius: 50%;
  flex-shrink: 0;
}

.condition-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--white);
}

.condition-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--white);
}

/* Three grammars */
.work-grammars {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.grammar-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--white);
  margin-bottom: 10px;
}

.grammar-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
  color: var(--white);
}

/* Subpage closing */
.subpage-closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
}


/* ── 13. WAITING LIST FORM ───────────────────────────── */

.waitinglist-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 560px;
}

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

.form-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label-note {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  color: var(--whisper);
  text-transform: uppercase;
  font-weight: 400;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--t-base) var(--ease-out);
  caret-color: var(--forest-active);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-qualifying-prompt {
  margin-bottom: 8px;
}

.form-qualifying-prompt em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--white);
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--forest-active);
  padding: 12px 28px;
  cursor: pointer;
  transition:
    background     var(--t-base) var(--ease-out),
    border-color   var(--t-base) var(--ease-out);
}

.form-submit:hover {
  background: rgba(58, 112, 85, 0.12);
  border-color: rgba(58, 112, 85, 0.9);
}

.form-footnote {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  color: var(--whisper);
  text-transform: uppercase;
  line-height: 1.6;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--forest-active);
  letter-spacing: 0.05em;
  min-height: 1em;
}


/* ── 14. UTILITIES ──────────────────────────────────── */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── 15. REDUCED MOTION ─────────────────────────────── */

/* CRITICAL: NEVER apply animation: none to .rotating-quotes .quote
   Quote rotation is informative content — always on. */

@media (prefers-reduced-motion: reduce) {
  .hero-key         { animation: none; }
  .quote-pulse-dot  { animation: none; }
  .scroll-indicator { animation: none; opacity: 1; }

  /* Ink background animation: static (lib/ink-background.js reads this) */
  .ink-bg feTurbulence { animation: none; }

  /* Marquee → manual horizontal scroll */
  .marquee-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
  }
  .library-item { scroll-snap-align: start; }
}


/* ── 16. VIEW TRANSITIONS ───────────────────────────── */

/* Shared name between #assembly headline and sovereign-society h1 */
#assembly .assembly-headline {
  view-transition-name: assembly-headline;
}

.subpage-h1 {
  view-transition-name: assembly-headline;
}

::view-transition-old(assembly-headline) {
  animation: 300ms ease-out both fade-out;
}

::view-transition-new(assembly-headline) {
  animation: 300ms ease-in 150ms both fade-in;
}

@keyframes fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── 17. RESPONSIVE ─────────────────────────────────── */

/* 1024px — side dock off, tablet adjustments */
@media (max-width: 1024px) {
  :root {
    --pad-x: 40px;
    --pad-y: 100px;
  }

  .side-dock { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 40px;
    gap: 40px;
  }

  .hero-right { order: -1; }

  .hero-key {
    max-width: 360px;
    margin: 0 auto;
  }

  .rotating-quotes {
    min-height: 180px;
    text-align: center;
  }

  .quote { text-align: center; }

  .quote-pulse-dot {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .product-img {
    max-width: 300px;
    margin: 0 auto;
  }

  .block-assembly {
    padding: var(--pad-y) var(--pad-x);
  }

  .subpage-main {
    padding: 0 var(--pad-x);
    padding-top: 100px;
  }

  .library-cta { margin-left: var(--pad-x); }
  .block-header { padding: 0 var(--pad-x); }
}

/* 640px — mobile */
@media (max-width: 640px) {
  :root {
    --pad-x: 24px;
    --pad-y: 80px;
  }

  .site-header {
    top: 24px;
    left: 24px;
  }

  .hero-content { padding: 0 24px; }
  .hero-key { max-width: 260px; }
  .rotating-quotes { min-height: 160px; }

  .product-card { padding: 28px 24px; gap: 28px; }

  .block-assembly { padding: var(--pad-y) var(--pad-x); }

  .block-header { padding: 0 var(--pad-x); }
  .library-cta  { margin-left: var(--pad-x); }

  .subpage-main {
    padding: 0 24px;
    padding-top: 80px;
  }

  .meta-footer {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    align-items: flex-start;
  }

  .meta-links { flex-wrap: wrap; gap: 16px; }

  .waitinglist-form { max-width: 100%; }

  .form-submit {
    align-self: stretch;
    text-align: center;
  }

  .block-closing {
    padding-top: 120px;
    padding-bottom: 80px;
  }
}
