:root {
  --bg: #07110f;
  --panel: rgba(7, 17, 15, 0.62);
  --panel-strong: rgba(6, 14, 13, 0.82);
  --panel-soft: rgba(8, 18, 16, 0.52);
  --text: #f3f8f5;
  --muted: rgba(228, 238, 233, 0.78);
  --line: rgba(161, 212, 194, 0.2);
  --glow: #dfffee;
  --glow-soft: rgba(191, 255, 228, 0.42);
  --accent: #a7ffd3;
  --accent-strong: #edfff5;
  --accent-deep: #163228;
  --danger: #ffb4b4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  background-color: #07110f;
  overscroll-behavior: none;
}

body {
  background:
    radial-gradient(circle at top left, rgba(102, 187, 149, 0.14), transparent 30%),
    linear-gradient(180deg, #0a1614 0%, var(--bg) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overscroll-behavior: none;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

img {
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: stretch;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform: translateZ(0);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  will-change: transform;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 9, 0.88) 0%, rgba(3, 10, 9, 0.58) 28%, rgba(3, 10, 9, 0.18) 47%, rgba(3, 10, 9, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 10, 9, 0.35) 0%, rgba(3, 10, 9, 0.08) 35%, rgba(3, 10, 9, 0.68) 100%);
}

.hero-rim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(197, 255, 233, 0.08), transparent 12%),
    radial-gradient(circle at 18% 18%, rgba(133, 182, 255, 0.1), transparent 20%);
  mix-blend-mode: screen;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(90vw, 52rem);
  margin: clamp(1.25rem, 3vw, 2.5rem);
  padding: 0;
  align-self: start;
  justify-self: start;
  margin-top: clamp(1.5rem, 5vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(222, 255, 243, 0.76);
}

h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.65rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 {
  font-family: "Press Start 2P", monospace;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 1.55;
  letter-spacing: 0em;
  margin-top: 2in;
}

.h1-line {
  display: block;
  position: relative;
}

.h1-ghost {
  display: block;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.h1-typed,
.h1-typed-line {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.55),
    0 0 16px rgba(255, 130, 10, 0.35),
    0 0 40px rgba(255, 70, 0, 0.15);
}

.typewriter-cursor {
  display: inline-block;
  margin-left: 0.12em;
  width: 3px;
  height: 0.95em;
  vertical-align: text-bottom;
  background: rgba(0, 210, 190, 0.9);
  box-shadow:
    0 0 4px rgba(0, 220, 200, 0.8),
    0 0 10px rgba(0, 180, 160, 0.4);
  border-radius: 1px;
  animation: tw-blink 0.75s step-end infinite;
}

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

.hero-text {
  margin: 3rem 0 0;
  max-width: 27rem;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.68;
  color: var(--muted);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-meta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.power-line {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: rgba(180, 210, 200, 0.52);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.power-line span {
  color: var(--accent-strong);
}

.power-line sup {
  font-size: 0.6em;
  vertical-align: super;
  letter-spacing: 0;
}

.project-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: rgba(0, 210, 180, 0.75);
  text-decoration: none;
  transition: color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  transform: none;
  border-color: transparent;
  background: none;
  color: rgba(0, 230, 200, 1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-copy .eyebrow,
.hero-copy .primary-link,
.hero-copy .secondary-link {
  /* backdrop-filter removed — GPU composite cost during scroll */
}

.primary-link,
.secondary-link,
.submit-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-link,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.3rem;
  background: linear-gradient(135deg, rgba(167, 255, 211, 0.16), rgba(167, 255, 211, 0.26));
  border: 1px solid rgba(167, 255, 211, 0.36);
  color: var(--accent-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.9rem 1.3rem;
  background: rgba(7, 15, 13, 0.26);
  border: 1px solid rgba(214, 255, 239, 0.14);
  color: rgba(234, 243, 239, 0.86);
}

.primary-link:hover,
.primary-link:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  transform: translateY(-1px);
}

.section-block {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 0 0 2rem;
}

.manifesto {
  margin-top: -2rem;
}

.section-heading {
  margin-bottom: 1.35rem;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.section-kicker {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(222, 255, 243, 0.7);
}

.section-heading h2,
.rule-card h3,
.list-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.section-caption {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
}

.manifesto-card,
.list-card,
.rule-card,
.submission-form {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(8, 17, 15, 0.9), rgba(8, 17, 15, 0.6));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.manifesto-card {
  padding: 2rem 2.5rem;
}

.manifesto-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: center;
}

.manifesto-card p + p {
  margin-top: 1rem;
}

.list-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.list-grid .list-card {
  grid-column: span 2;
}

/* Centre the last 2 cards when 5 are present */
.list-grid .list-card:nth-child(4) { grid-column: 2 / 4; }
.list-grid .list-card:nth-child(5) { grid-column: 4 / 6; }

.rules-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.rules-grid .rule-card {
  grid-column: span 2;
}

/* Centre the 4th card under the 3-card row */
.rules-grid .rule-card:nth-child(4) { grid-column: 3 / 5; }

.list-card,
.rule-card {
  padding: 1.35rem;
}

/* ── Decision card colour variants ─────────────────────────────────── */
.list-card--green  { --card-accent: #22d3a0; }
.list-card--sky    { --card-accent: #38bdf8; }
.list-card--amber  { --card-accent: #fbbf24; }
.list-card--orange { --card-accent: #fb923c; }
.list-card--red    { --card-accent: #f87171; }

.list-card[class*='list-card--'] {
  border-top: 2px solid var(--card-accent);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--card-accent) 6%, rgba(8, 17, 15, 0.9)),
    rgba(8, 17, 15, 0.48)
  );
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.list-card[class*='list-card--']:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    0 0 28px color-mix(in srgb, var(--card-accent) 18%, transparent);
}

.list-card-icon {
  color: var(--card-accent);
  margin-bottom: 0.9rem;
  line-height: 0;
}

.list-label {
  margin: 0 0 0.5rem;
  color: var(--card-accent, rgba(222, 255, 243, 0.66));
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
}

.list-card p,
.rule-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

/* ── Why It Matters card colour variants ────────────────────────────── */
.rule-card--violet { --card-accent: #a78bfa; }
.rule-card--red    { --card-accent: #f87171; }
.rule-card--green  { --card-accent: #22d3a0; }
.rule-card--sky    { --card-accent: #38bdf8; }

.rule-card[class*='rule-card--'] {
  border-top: 2px solid var(--card-accent);
  background: linear-gradient(
    160deg,
    color-mix(in srgb, var(--card-accent) 6%, rgba(8, 17, 15, 0.9)),
    rgba(8, 17, 15, 0.48)
  );
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rule-card[class*='rule-card--']:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.28),
    0 0 28px color-mix(in srgb, var(--card-accent) 18%, transparent);
}

.rule-card-icon {
  color: var(--card-accent);
  margin-bottom: 0.9rem;
  line-height: 0;
}

.rule-card h3 {
  color: var(--card-accent);
}

.submit-heading-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.submit-speaker {
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0, 210, 190, 0.35));
}

.submit-section {
  padding-bottom: 4rem;
}

.submission-form {
  padding: 1.35rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-block {
  display: grid;
  gap: 0.45rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-block span {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(244, 255, 251, 0.92);
}

.field-block small {
  color: rgba(228, 238, 233, 0.62);
}

.field-block input,
.field-block textarea {
  width: 100%;
  border: 1px solid rgba(214, 255, 239, 0.12);
  border-radius: 1rem;
  background: rgba(5, 12, 11, 0.76);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  resize: vertical;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field-block input:focus,
.field-block textarea:focus {
  border-color: rgba(167, 255, 211, 0.42);
  box-shadow: 0 0 0 3px rgba(167, 255, 211, 0.08);
  background: rgba(7, 15, 13, 0.9);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 0.2rem;
}

.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-inline input {
  accent-color: var(--accent);
  width: 1rem;
  height: 1rem;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.35rem;
  margin: 0.9rem 0 0;
  color: rgba(234, 243, 239, 0.86);
}

.form-status.error {
  color: var(--danger);
}

.form-status.success {
  color: var(--accent);
}

@media (max-width: 980px) {
  .hero {
    align-items: start;
  }

  .hero-vignette {
    background:
      linear-gradient(180deg, rgba(3, 10, 9, 0.74) 0%, rgba(3, 10, 9, 0.28) 28%, rgba(3, 10, 9, 0.46) 62%, rgba(3, 10, 9, 0.78) 100%),
      linear-gradient(90deg, rgba(3, 10, 9, 0.7) 0%, rgba(3, 10, 9, 0.12) 54%, rgba(3, 10, 9, 0.34) 100%);
  }

  .hero-copy {
    width: auto;
    margin-right: 1rem;
  }

  .manifesto {
    margin-top: 0;
  }

  .split-heading,
  .form-footer,
  .rules-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }

  .rules-grid .rule-card,
  .rules-grid .rule-card:nth-child(4),
  .list-grid .rule-card,
  .list-grid .list-card:nth-child(4),
  .list-grid .list-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .split-heading,
  .form-footer {
    display: grid;
  }

  .section-caption {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-copy {
    margin: 1rem;
    margin-top: 1rem;
    padding: 0;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero-text {
    line-height: 1.55;
    max-width: 24rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions {
    flex-direction: column;
  }

  .project-link,
  .power-line,
  .primary-link,
  .secondary-link,
  .submit-button {
    justify-content: center;
  }

  .section-block {
    width: min(100% - 1rem, 76rem);
  }

  .submission-form,
  .manifesto-card,
  .list-card,
  .rule-card {
    border-radius: 1.2rem;
  }

  .list-grid {
    grid-template-columns: 1fr;
  }

  .list-grid .list-card,
  .list-grid .list-card:nth-child(4),
  .list-grid .list-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── God rays overlay on hero ───────────────────────────────────────────── */
.godrays-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  will-change: transform;
  z-index: 1;
  /* fade out toward bottom so hero content below isn't obscured */
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

@media (max-width: 380px) {
  .godrays-canvas { display: none; }
}

/* ── iPhone safe-area (notch / Dynamic Island) ── */
@supports (padding: env(safe-area-inset-top)) {
  .hero-copy {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .section-block {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .site-footer,
  .submission-form {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

/* ── iPhone 14 Plus / 15 / 15 Plus / Pro Max  (430 px) ── */
@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: clamp(1.0rem, 5.5vw, 1.3rem);
  }

  .hero-text {
    font-size: 0.97rem;
    max-width: 100%;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .primary-link,
  .secondary-link {
    padding: 0.8rem 1.4rem;
    font-size: 0.88rem;
  }

  .section-block {
    width: min(100% - 0.75rem, 76rem);
  }
}

/* ── iPhone 14 Pro / 15 Pro / 16 Pro  (393 px) ── */
@media (max-width: 393px) {
  .hero-copy h1 {
    font-size: clamp(0.9rem, 5.2vw, 1.15rem);
    line-height: 1.75;
  }

  .power-line {
    font-size: 0.8rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }
}

/* ── iPhone 12 / 13 / 14  (390 px) ── */
@media (max-width: 390px) {
  .hero-copy {
    margin: 0.75rem;
    margin-top: 0.75rem;
  }

  .hero-meta {
    gap: 0.6rem;
  }
}

/* ── iPhone SE / mini  (375 px) ── */
@media (max-width: 375px) {
  .hero-copy h1 {
    font-size: clamp(0.84rem, 4.8vw, 1.05rem);
    line-height: 1.8;
  }

  .hero-text {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .primary-link,
  .secondary-link {
    padding: 0.72rem 1.1rem;
    font-size: 0.84rem;
  }

  .submission-form {
    padding: 1.25rem;
  }

  .list-card,
  .rule-card {
    padding: 1rem;
  }
}

/* ── Site footer ─────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 11, 10, 0.98);
  padding: 4rem 0 0;
}

.footer-inner {
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  flex: 1 1 220px;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  margin: 0 0 0.6rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(228, 238, 233, 0.45);
  max-width: 22ch;
}

.footer-powered {
  margin: 0 0 0.4rem;
  font-size: 0.75rem;
  color: rgba(228, 238, 233, 0.28);
}
.footer-powered a {
  color: rgba(228, 238, 233, 0.45);
  text-decoration: none;
  transition: color 150ms;
}
.footer-powered a:hover { color: var(--accent); }

.footer-orcid {
  margin: 0;
  font-size: 0.75rem;
}
.footer-orcid a {
  color: rgba(228, 238, 233, 0.28);
  text-decoration: none;
  transition: color 150ms;
  display: inline-flex;
  align-items: center;
}
.footer-orcid a:hover { color: #A6CE39; }

.footer-nav {
  flex: 2 1 480px;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-nav-col h4 {
  margin: 0 0 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(228, 238, 233, 0.38);
}

.footer-nav-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-col ul li,
.footer-nav-col ul a {
  font-size: 0.88rem;
  color: rgba(228, 238, 233, 0.6);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-nav-col ul a:hover {
  color: var(--accent);
}

/* Disclaimer */
.footer-disclaimer {
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.72;
  color: rgba(228, 238, 233, 0.38);
}

.footer-disclaimer strong {
  color: rgba(228, 238, 233, 0.58);
  font-weight: 600;
}

/* Legal bar */
.footer-legal {
  width: min(100% - 2rem, 76rem);
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(228, 238, 233, 0.28);
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* ── Mini-footer (sub-pages) ──────────────────────────────────────────── */
.site-mini-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  padding: 2.5rem clamp(1rem, 4vw, 2rem) 1.5rem;
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}
.mini-footer-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.mini-footer-col h4 {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(228,238,233,0.35);
}
.mini-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mini-footer-col ul a {
  font-size: 0.85rem;
  color: rgba(228,238,233,0.5);
  text-decoration: none;
  transition: color 150ms;
}
.mini-footer-col ul a:hover { color: var(--accent); }
.mini-footer-legal {
  font-size: 0.73rem;
  color: rgba(228,238,233,0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
@media (max-width: 540px) {
  .mini-footer-nav { gap: 1.5rem; }
}