:root {
  --bg: #080b10;
  --bg-soft: #0e141c;
  --paper: #e0ddd5;
  --muted: #89919b;
  --line: rgba(224, 221, 213, 0.12);
  --line-strong: rgba(224, 221, 213, 0.25);
  --cold: #a7c4df;
  --cold-bright: #d2e9ff;
  --warm: #c7b38f;
  --free: #a7d5c1;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", "Noto Serif SC", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 70% 8%, rgba(63, 89, 119, .13), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(64, 105, 91, .07), transparent 30%),
    var(--bg);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { color: #fff; background: rgba(120, 160, 194, 0.38); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

#field {
  position: fixed;
  inset: 0;
  z-index: -5;
  width: 100%;
  height: 100%;
  opacity: .78;
}

.aurora {
  position: fixed;
  z-index: -4;
  inset: -25%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(91, 132, 169, .08), transparent 34%),
    radial-gradient(ellipse at 33% 66%, rgba(94, 154, 126, .055), transparent 30%);
  filter: blur(45px);
  animation: auroraDrift 22s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  to { transform: translate3d(-3%, 4%, 0) rotate(4deg) scale(1.08); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(122, 163, 199, .095), rgba(122, 163, 199, .025) 38%, transparent 70%);
  transition: opacity .5s ease;
  mix-blend-mode: screen;
}
body.pointer-active .cursor-light { opacity: 1; }

.scroll-progress {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,.035);
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cold), var(--free));
  box-shadow: 0 0 14px rgba(167, 196, 223, .65);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
}
.site-header.scrolled {
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(8, 11, 16, 0.78);
  backdrop-filter: blur(20px) saturate(130%);
  border-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cold);
  box-shadow: inset 0 0 18px rgba(167,196,223,.06);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), border-color .3s ease;
}
.brand:hover .brand-mark { transform: rotate(180deg); border-color: var(--cold); }

nav { display: flex; gap: clamp(18px, 3vw, 42px); }
nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  transition: color .2s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--cold);
  transition: right .35s cubic-bezier(.2,.8,.2,1);
}
nav a:hover { color: var(--paper); }
nav a:hover::after { right: 0; }

.section-shell {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 118px;
  padding-bottom: 92px;
}
.coordinate-label {
  position: absolute;
  top: 21%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(137,145,155,.62);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
}
.coordinate-label b { color: rgba(167,196,223,.8); font-weight: 400; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--cold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
}
.hero-kicker {
  opacity: 0;
  transform: translateY(12px);
  animation: introFade .9s .12s forwards;
}
.hero h1 {
  max-width: 990px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6.8vw, 91px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero-line { display: block; overflow: hidden; padding-bottom: .05em; }
.hero-line > span {
  display: block;
  transform: translateY(115%);
  opacity: .1;
  animation: lineRise 1.18s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-line:nth-child(1) > span { animation-delay: .18s; }
.hero-line:nth-child(2) > span { animation-delay: .31s; }
.hero-line:nth-child(3) > span { animation-delay: .44s; }
@keyframes lineRise { to { transform: translateY(0); opacity: 1; } }
@keyframes introFade { to { transform: translateY(0); opacity: 1; } }

.hero-subtitle {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 21px);
  opacity: 0;
  animation: introFade .9s .72s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  opacity: 0;
  animation: introFade .9s .85s forwards;
}
.enter-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}
.enter-link:hover { color: var(--cold); border-color: var(--cold); }
.enter-link span { transition: transform .2s ease; }
.enter-link:hover span { transform: translate(3px, 3px); }
.quiet-link {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  border-bottom: 1px dotted rgba(137,145,155,.45);
  transition: color .25s ease;
}
.quiet-link:hover { color: var(--free); }

.hero-orbit {
  position: absolute;
  right: -115px;
  bottom: 8%;
  width: min(35vw, 455px);
  aspect-ratio: 1;
  opacity: .42;
  transform: translateZ(0);
}
.orbit {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transform: rotate(-23deg) scaleY(.45);
  animation: orbitBreathe 12s ease-in-out infinite alternate;
}
.orbit-b { inset: 22%; transform: rotate(38deg) scaleY(.55); animation-delay: -3s; }
.orbit-c { inset: 3%; transform: rotate(81deg) scaleY(.28); animation-delay: -6s; opacity: .6; }
@keyframes orbitBreathe {
  to { border-color: rgba(167,196,223,.42); filter: drop-shadow(0 0 10px rgba(167,196,223,.08)); }
}
.orbit-point {
  position: absolute;
  top: 34%;
  left: 13%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cold-bright);
  box-shadow: 0 0 22px var(--cold);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.7); } }

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(137,145,155,.55);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 48px;
  overflow: hidden;
  background: rgba(224,221,213,.12);
}
.scroll-cue i::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--cold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { from { transform: translateY(-24px); } to { transform: translateY(54px); } }

.threshold {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14,20,28,.32);
}
.threshold-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 13px 0;
  color: rgba(167,196,223,.68);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .23em;
  animation: ticker 32s linear infinite;
}
.threshold-track i { color: rgba(167,213,193,.5); font-style: normal; font-size: 7px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.content-section {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  padding: 150px 0;
  border-top: 1px solid var(--line);
}
.section-index {
  padding-top: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}
.section-heading { grid-column: 2; }
.section-heading h2 {
  max-width: 830px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.note-list {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 66px;
  perspective: 1200px;
}
.note-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18,24,32,.64), rgba(10,14,20,.34));
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.note-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.028), transparent 72%);
  transform: translateX(-110%);
  transition: transform .9s cubic-bezier(.2,.8,.2,1);
}
.note-card:hover::before { transform: translateX(110%); }
.note-card.featured { grid-column: 1 / -1; min-height: 390px; }
.note-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(20,28,38,.74), rgba(10,14,20,.54));
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.freedom-note { border-color: rgba(167,213,193,.18); }
.freedom-note .note-meta, .freedom-note .text-button:hover { color: var(--free); }
.card-glow {
  position: absolute;
  z-index: -1;
  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(134,174,207,.13), transparent 68%);
  transition: opacity .25s ease;
}
.tilt-card:hover .card-glow { opacity: 1; }
.note-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  transform: translateZ(20px);
}
.note-card h3 {
  max-width: 780px;
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  transform: translateZ(28px);
}
.note-card:not(.featured) h3 { font-size: clamp(26px, 2.6vw, 38px); }
.note-card p { max-width: 700px; margin: 0 0 24px; color: var(--muted); transform: translateZ(16px); }
.text-button {
  width: fit-content;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  cursor: pointer;
  transform: translateZ(24px);
}
.text-button:hover { color: var(--cold); border-color: currentColor; }

.freedom-heading h2 { max-width: 950px; }
.freedom-stage {
  position: relative;
  grid-column: 2;
  min-height: 610px;
  margin-top: 70px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(224,221,213,.06) 50%, transparent 50.1%),
    linear-gradient(rgba(14,20,28,.74), rgba(8,12,17,.88));
  isolation: isolate;
}
#freedom-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.freedom-stage::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background: radial-gradient(circle at 77% 34%, rgba(167,213,193,.13), transparent 28%), radial-gradient(circle at 30% 72%, rgba(167,196,223,.1), transparent 30%);
}
.freedom-boundary {
  position: absolute;
  left: 41%;
  top: -8%;
  width: 1px;
  height: 116%;
  background: linear-gradient(transparent, rgba(224,221,213,.28) 15%, rgba(224,221,213,.1) 76%, transparent);
  transform: rotate(11deg);
  transform-origin: center;
}
.freedom-boundary::after {
  content: "BOUNDARY / NOT ABSOLUTE";
  position: absolute;
  top: 11%;
  left: 10px;
  width: max-content;
  color: rgba(137,145,155,.45);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
}
.freedom-axis {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(137,145,155,.42);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
}
.freedom-copy {
  position: relative;
  z-index: 3;
  width: min(72%, 720px);
  margin-left: auto;
  padding: clamp(78px, 9vw, 118px) clamp(34px, 7vw, 88px) 90px;
}
.freedom-count {
  margin: 0 0 44px;
  color: var(--free);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
}
.freedom-count span { display: inline-block; min-width: 2ch; color: var(--paper); font-size: 16px; }
.freedom-copy blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 57px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.025em;
  transition: opacity .28s ease, transform .28s ease;
}
.freedom-copy > p:not(.freedom-count) {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 22px);
  transition: opacity .28s ease, transform .28s ease;
}
.freedom-copy.changing blockquote,
.freedom-copy.changing > p:not(.freedom-count) { opacity: 0; transform: translateY(8px); }
.release-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(167,213,193,.45);
  color: var(--paper);
  background: transparent;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}
.release-button:hover { color: var(--free); border-color: var(--free); }
.release-symbol { font-size: 18px; font-weight: 200; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.release-button:hover .release-symbol { transform: rotate(135deg); }
.free-words span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  color: rgba(167,196,223,.23);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: wordFloat 8s var(--d) ease-in-out infinite alternate;
}
@keyframes wordFloat { to { transform: translate3d(8px,-14px,0); color: rgba(167,213,193,.33); } }

.fragment-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  perspective: 1200px;
}
.fragment-grid blockquote {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transform-style: preserve-3d;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.fragment-grid blockquote:hover { background: rgba(18,24,32,.48); border-color: var(--line-strong); }
.fragment-grid p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.45;
  transform: translateZ(20px);
}
.fragment-grid footer {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
  transform: translateZ(14px);
}
.freedom-fragment p { color: #dbe5de; }
.freedom-fragment footer { color: var(--free); }

.object-list { grid-column: 2; margin-top: 66px; }
.object-row {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  transition: padding .35s cubic-bezier(.2,.8,.2,1), background .25s ease;
}
.object-row::before {
  content: "";
  position: absolute;
  inset: 0 -22px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(90deg, rgba(167,196,223,.055), transparent 75%);
  transition: opacity .25s ease;
}
.object-row:hover { padding-left: 14px; padding-right: 14px; }
.object-row:hover::before { opacity: 1; }
.object-row:last-child { border-bottom: 1px solid var(--line); }
.object-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--cold);
  font-family: var(--mono);
  font-size: 11px;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), background .25s ease;
}
.object-row:hover .object-number { transform: rotate(45deg); background: rgba(167,196,223,.06); }
.object-row h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 400;
}
.object-row p { max-width: 690px; margin: 0; color: var(--muted); }
.object-state {
  padding-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
}
.object-freedom .object-number, .object-freedom .object-state { color: var(--free); }

.about-copy {
  grid-column: 2;
  max-width: 840px;
  margin-top: 56px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.65;
}
.about-copy p { margin: 0 0 1.2em; }
.about-copy p:nth-child(3) { color: #d9e5df; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-footer div { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer p { margin: 0; color: rgba(167,213,193,.7); }

dialog {
  width: min(calc(100% - 30px), 900px);
  max-height: min(88vh, 900px);
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  background: rgba(12,16,22,.97);
  box-shadow: 0 30px 110px rgba(0,0,0,.62);
}
dialog[open] { animation: dialogIn .45s cubic-bezier(.16,1,.3,1); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.985); } }
dialog::backdrop { background: rgba(3,5,8,.84); backdrop-filter: blur(10px); }
.dialog-inner { padding: clamp(32px, 7vw, 80px); }
.dialog-close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 2;
  margin: 16px 18px 0 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(8,11,16,.82);
  cursor: pointer;
  transition: transform .35s ease, border-color .25s ease;
}
.dialog-close:hover { transform: rotate(90deg); border-color: var(--cold); }
.dialog-inner h2 {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
}
.dialog-body { color: #cac7bf; font-family: var(--serif); font-size: 19px; line-height: 1.9; }
.dialog-body p { margin: 0 0 1.4em; }

.reveal { opacity: 0; transform: translateY(36px); transition: opacity .95s ease, transform .95s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (hover: none), (pointer: coarse) {
  .cursor-light { display: none; }
  .tilt-card { transform: none !important; }
}

@media (max-width: 760px) {
  .site-header { padding: 18px 20px; }
  nav { display: none; }
  .brand { font-size: 10px; }
  .coordinate-label { display: none; }
  .hero { min-height: 94svh; }
  .hero h1 { font-size: clamp(38px, 12vw, 61px); }
  .hero-orbit { right: -150px; bottom: 7%; width: 380px; opacity: .24; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .scroll-cue { display: none; }
  .content-section { grid-template-columns: 1fr; gap: 14px; padding: 104px 0; }
  .section-index, .section-heading, .note-list, .freedom-stage, .fragment-grid, .object-list, .about-copy { grid-column: 1; }
  .section-index { padding: 0; }
  .note-list, .fragment-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .note-card.featured { grid-column: auto; min-height: 360px; }
  .fragment-grid blockquote { min-height: 220px; }
  .freedom-stage { min-height: 640px; margin-top: 44px; }
  .freedom-copy { width: 100%; padding: 88px 28px 90px; }
  .freedom-boundary { left: 26%; opacity: .68; }
  .free-words span:nth-child(2), .free-words span:nth-child(4) { display: none; }
  .object-row { grid-template-columns: 44px 1fr; gap: 18px; }
  .object-state { grid-column: 2; padding-top: 0; }
  .object-row:hover { padding-left: 0; padding-right: 0; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-kicker, .hero-subtitle, .hero-actions, .hero-line > span { opacity: 1; transform: none; }
}
