:root {
  color-scheme: dark;
  --ground-top: #16130f;
  --ground: #12100c;
  --ground-bottom: #0d0b08;
  --surface: #1f1b15;
  --surface-deep: #2a241c;
  --ink: #f6f1e6;
  --ink-soft: #c4bcac;
  --muted: #8c8577;
  --accent: #ff7a45;
  --accent-dark: #e0552a;
  --accent-soft: #5a3323;
  --earned: #ffc24b;
  --confirm: #4fbf8b;
  --alarm: #ff6b5e;
  --night: #0a0906;
  --page: #efe8d8;
  --dock: #2e271e;
  --line: rgb(246 241 230 / 13%);
  --line-strong: rgb(246 241 230 / 22%);
  --shadow: 0 32px 90px rgb(0 0 0 / 48%);
  --content: 78rem;
  --reading: 48rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --serif: ui-serif, "New York", Iowan Old Style, Charter, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ground-bottom);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 13% -5%, rgb(255 122 69 / 10%), transparent 26rem),
    linear-gradient(180deg, var(--ground-top), var(--ground) 32rem, var(--ground-bottom));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  background: var(--accent);
  color: var(--night);
}

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

a {
  color: var(--ink);
  text-decoration-color: rgb(255 122 69 / 60%);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--accent);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--earned);
  outline-offset: 4px;
  border-radius: 0.35rem;
}

p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.05;
}

h1,
h2 {
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.025em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--night);
  font-weight: 750;
  transform: translateY(-180%);
}

.skip-link:focus {
  color: var(--night);
  transform: translateY(0);
}

.launch-shell,
.nav-shell,
.footer-shell,
.page-shell,
.closing-card {
  width: min(calc(100% - 2.5rem), var(--content));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgb(18 16 12 / 90%);
}

.landing-header {
  position: absolute;
  inset: 0 0 auto;
  border-bottom-color: rgb(246 241 230 / 8%);
  background: linear-gradient(180deg, rgb(10 9 6 / 78%), transparent);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 560;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand strong {
  font-weight: 790;
}

.brand:hover {
  color: var(--ink);
  opacity: 0.8;
}

.brand-mark {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0.72rem;
  background: var(--night) url("/assets/app-icon.v2.png") center / cover no-repeat;
  box-shadow: 0 9px 24px rgb(0 0 0 / 28%);
  color: transparent;
  font-size: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.4em;
}

.nav-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-cta:hover {
  border-color: var(--accent);
  background: rgb(255 122 69 / 9%);
  color: var(--ink);
  transform: translateY(-1px);
}

/* Launch hero */
.landing-page {
  background: var(--ground-bottom);
}

.launch-hero {
  position: relative;
  isolation: isolate;
  min-height: 58rem;
  overflow: hidden;
  padding-top: 5.25rem;
  background:
    radial-gradient(circle at 76% 49%, rgb(255 122 69 / 12%), transparent 25rem),
    linear-gradient(180deg, var(--night), var(--ground) 58%, var(--ground-bottom));
}

.launch-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(246 241 230 / 2.8%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(246 241 230 / 2.8%) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}

.hero-sun {
  position: absolute;
  left: 73%;
  top: 54%;
  width: min(34vw, 30rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 194 75 / 55%) 0 3%, rgb(255 122 69 / 26%) 34%, transparent 70%);
  filter: blur(12px);
  opacity: 0.65;
  transform: translate(-50%, -50%);
  animation: sun-breathe 4s ease-in-out 1 both;
}

.hero-horizon {
  position: absolute;
  left: -12%;
  top: 75%;
  width: 124%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--earned) 50%, var(--confirm) 75%, transparent);
  box-shadow: 0 0 28px rgb(255 122 69 / 34%);
  opacity: 0.68;
  transform: rotate(-4deg);
  transform-origin: center;
}

.hero-horizon-one {
  opacity: 0.68;
}

.hero-horizon-two {
  top: 77%;
  opacity: 0.24;
  transform: rotate(-4deg) translateY(1.7rem);
}

.hero-horizon-three {
  top: 79%;
  opacity: 0.11;
  transform: rotate(-4deg) translateY(3.3rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(27rem, 1.06fr);
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: center;
  min-height: 50rem;
  padding-block: clamp(5rem, 9vw, 8rem) 6rem;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 43rem;
}

.launch-eyebrow,
.section-index,
.card-kicker,
.story-number,
.screen-scene figcaption,
.footer-signoff {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
  color: var(--ink-soft);
  animation: intro-rise 720ms 120ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.signal-dot {
  position: relative;
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.3rem rgb(255 122 69 / 13%);
}

.signal-dot::after {
  position: absolute;
  inset: -0.35rem;
  border: 1px solid rgb(255 122 69 / 35%);
  border-radius: 50%;
  content: "";
  animation: signal-pulse 2s ease-out 2 forwards;
}

.hero-copy h1 {
  max-width: 8.5ch;
  margin-bottom: 1.55rem;
  font-family: var(--sans);
  font-size: clamp(4rem, 7.35vw, 7.4rem);
  font-weight: 760;
  line-height: 0.89;
  text-wrap: balance;
  animation: intro-rise 820ms 200ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-copy h1 em,
.section-heading h2 em,
.trust-heading h2 em,
.final-cta-copy h2 em {
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 580;
}

.hero-lede {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.75vw, 1.28rem);
  line-height: 1.55;
  animation: intro-rise 820ms 300ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  animation: intro-rise 820ms 400ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  box-shadow: 0 14px 40px rgb(255 122 69 / 22%);
  color: var(--night);
}

.button-primary:hover {
  border-color: #ff956d;
  background: #ff8b5d;
  color: var(--night);
  transform: translateY(-2px);
}

.button-quiet {
  border: 1px solid var(--line-strong);
  background: rgb(246 241 230 / 3%);
  color: var(--ink);
}

.button-quiet:hover {
  border-color: rgb(255 122 69 / 65%);
  background: rgb(255 122 69 / 8%);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.3rem;
  padding: 0;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 660;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
  animation: intro-rise 820ms 480ms both cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-facts li::before {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--earned);
  content: "";
}

.device-stage {
  position: relative;
  min-height: 43rem;
  perspective: 90rem;
  animation: intro-device 1100ms 240ms both cubic-bezier(0.16, 0.8, 0.2, 1);
}

.device-glow {
  position: absolute;
  inset: 21% 10% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 122 69 / 23%), transparent 64%);
  filter: blur(28px);
}

.device {
  position: absolute;
  top: 2rem;
  left: 50%;
  width: min(19.5rem, 48vw);
  aspect-ratio: 720 / 1565;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(246 241 230 / 18%);
  border-radius: 3rem;
  background: #080704;
  box-shadow: var(--shadow);
  transform-origin: 50% 80%;
}

.device::after,
.screen-frame::after,
.bento-phone::after,
.record-window::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(118deg, rgb(255 255 255 / 8%), transparent 18%, transparent 70%, rgb(255 122 69 / 5%));
  content: "";
  pointer-events: none;
}

.device img,
.screen-frame img,
.bento-phone img,
.record-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-front {
  z-index: 3;
  border-color: rgb(255 122 69 / 42%);
  transform: translateX(-50%) rotateY(-5deg) rotateX(1deg);
  animation: device-float 3.2s 0.6s ease-in-out 1;
}

.device-back {
  z-index: 1;
  top: 6rem;
  width: min(17rem, 42vw);
  filter: saturate(0.72) brightness(0.72);
  opacity: 0.62;
}

.device-back-left {
  left: 9%;
  transform: rotateY(11deg) rotateZ(-7deg);
}

.device-back-right {
  right: 0;
  left: auto;
  transform: rotateY(-11deg) rotateZ(7deg);
}

.stage-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgb(18 16 12 / 88%);
  box-shadow: 0 12px 40px rgb(0 0 0 / 35%);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.stage-note span {
  color: var(--accent);
}

.stage-note-page {
  top: 8%;
  left: 2%;
  animation: note-float 3s 0.7s ease-in-out 1;
}

.stage-note-recall {
  top: 36%;
  right: -1%;
  animation: note-float 3s 0.9s ease-in-out 1 reverse;
}

.stage-note-open {
  bottom: 8%;
  left: 5%;
  animation: note-float 3s 1.1s ease-in-out 1;
}

.ritual-ticker {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgb(10 9 6 / 84%);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: ticker 32s linear infinite;
}

.ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
}

.ticker-track i {
  color: var(--accent);
  font-style: normal;
}

.ticker-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 1.25rem;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ticker-control-label {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 1rem;
  min-width: 6.6rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--night);
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.ticker-play-label {
  display: none;
}

.ticker-control:checked + .ticker-control-label .ticker-pause-label {
  display: none;
}

.ticker-control:checked + .ticker-control-label .ticker-play-label {
  display: inline;
}

.ticker-control:checked ~ .ticker-track {
  animation-play-state: paused;
}

.ticker-control:focus-visible + .ticker-control-label {
  outline: 3px solid var(--earned);
  outline-offset: 3px;
}

/* Shared launch sections */
.launch-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.section-index {
  margin-bottom: 1.35rem;
  color: var(--accent);
}

.section-heading {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.section-heading h2,
.trust-heading h2,
.final-cta-copy h2 {
  max-width: 10.5ch;
  margin-bottom: 1.4rem;
  font-family: var(--sans);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 750;
  line-height: 0.95;
  text-wrap: balance;
}

.section-heading > p:last-child,
.trust-heading > p:last-child,
.final-cta-copy > p {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

@supports (animation-timeline: view()) {
  .reveal-up {
    animation: scroll-reveal both linear;
    animation-range: entry 3% cover 34%;
    animation-timeline: view();
  }
}

/* Manifesto */
.manifesto {
  background:
    radial-gradient(circle at 85% 80%, rgb(255 194 75 / 7%), transparent 24rem),
    var(--ground-bottom);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.34fr minmax(0, 1.5fr) minmax(16rem, 0.66fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.manifesto-copy h2 {
  margin-bottom: 1.6rem;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 520;
  line-height: 1;
}

.manifesto-copy h2 span {
  color: var(--accent);
}

.manifesto-copy > p {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.manifesto-note {
  padding: 1.5rem 0 0 1.4rem;
  border-left: 1px solid var(--accent);
  color: var(--ink-soft);
}

.manifesto-note p {
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
}

.manifesto-note footer {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* Four-beat story */
.ritual-section {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49.93%, rgb(246 241 230 / 6%) 50%, transparent 50.07%),
    var(--ground);
}

.story-list {
  display: grid;
  gap: clamp(7rem, 14vw, 13rem);
}

.story-row {
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(22rem, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: 44rem;
}

.story-row-reverse .story-copy {
  order: 2;
}

.story-row-reverse .screen-scene {
  order: 1;
}

.story-copy {
  position: relative;
  z-index: 4;
}

.story-number {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.3rem;
  color: var(--accent);
}

.story-number span {
  color: var(--muted);
}

.story-copy h3 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.9rem);
  font-weight: 520;
  line-height: 1;
}

.story-copy > p:not(.story-number) {
  max-width: 35rem;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.detail-list {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.detail-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.detail-list li::before {
  width: 0.35rem;
  height: 0.35rem;
  border: 1px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.screen-scene {
  position: relative;
  display: grid;
  min-height: 43rem;
  place-items: center;
  margin: 0;
  perspective: 80rem;
}

.screen-scene::before {
  position: absolute;
  inset: 13% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 122 69 / 20%), transparent 67%);
  filter: blur(24px);
  content: "";
}

.screen-scene-reader::before {
  background: radial-gradient(circle, rgb(255 194 75 / 17%), transparent 68%);
}

.screen-scene-join::before {
  background: radial-gradient(circle, rgb(255 122 69 / 18%), transparent 68%);
}

.screen-scene-recall::before {
  background: radial-gradient(circle, rgb(255 194 75 / 14%), transparent 68%);
}

.screen-scene-release::before {
  background: radial-gradient(circle, rgb(79 191 139 / 18%), transparent 66%);
}

.story-row-release .story-number {
  color: var(--confirm);
}

.screen-frame {
  position: relative;
  z-index: 2;
  width: min(20rem, 70vw);
  aspect-ratio: 720 / 1565;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 3rem;
  background: var(--night);
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateZ(2deg);
  transition: transform 550ms cubic-bezier(0.2, 0.72, 0.2, 1), border-color 300ms ease;
}

.story-row-reverse .screen-frame {
  transform: rotateY(8deg) rotateZ(-2deg);
}

.story-row:hover .screen-frame {
  border-color: rgb(255 122 69 / 48%);
  transform: rotateY(-2deg) rotateZ(0) translateY(-0.45rem);
}

.story-row-reverse:hover .screen-frame {
  transform: rotateY(2deg) rotateZ(0) translateY(-0.45rem);
}

.screen-scene figcaption {
  position: absolute;
  z-index: 5;
  bottom: 4%;
  left: 7%;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgb(10 9 6 / 82%);
  color: var(--ink-soft);
  backdrop-filter: blur(10px);
}

.story-row-reverse .screen-scene figcaption {
  right: 7%;
  left: auto;
}

/* Challenge bento */
.challenge-section {
  background:
    radial-gradient(circle at 8% 65%, rgb(255 122 69 / 10%), transparent 25rem),
    radial-gradient(circle at 92% 20%, rgb(255 194 75 / 7%), transparent 24rem),
    var(--night);
}

.section-heading-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: end;
}

.section-heading-split > p {
  margin-bottom: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgb(31 27 21 / 95%), rgb(18 16 12 / 98%));
  box-shadow: 0 20px 70px rgb(0 0 0 / 24%);
  transition: border-color 260ms ease, transform 350ms cubic-bezier(0.2, 0.72, 0.2, 1), box-shadow 350ms ease;
}

.bento-card:hover {
  border-color: rgb(255 122 69 / 35%);
  box-shadow: 0 28px 90px rgb(0 0 0 / 36%);
  transform: translateY(-0.35rem);
}

.bento-copy {
  position: relative;
  z-index: 4;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.card-kicker {
  margin-bottom: 1rem;
  color: var(--accent);
}

.bento-copy h3 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 520;
  line-height: 1.03;
}

.bento-copy > p:last-child,
.bento-copy > p:not(.card-kicker) {
  max-width: 32rem;
  color: var(--ink-soft);
}

.bento-discover {
  min-height: 48rem;
}

.bento-discover .bento-copy {
  width: 58%;
}

.bento-phone {
  position: absolute;
  right: -3%;
  bottom: -24%;
  width: 45%;
  aspect-ratio: 720 / 1565;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2.5rem;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.bento-discover:hover .bento-phone {
  transform: rotate(2deg) translateY(-0.6rem);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.metric-row span {
  min-width: 8.5rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: rgb(246 241 230 / 3%);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 550;
  line-height: 1;
}

.bento-record {
  min-height: 48rem;
}

.record-window {
  position: absolute;
  right: 6%;
  bottom: -52%;
  left: 6%;
  overflow: hidden;
  aspect-ratio: 720 / 1565;
  border: 1px solid var(--line-strong);
  border-radius: 2.4rem;
  box-shadow: var(--shadow);
  transition: transform 500ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.bento-record:hover .record-window {
  transform: translateY(-0.7rem);
}

.bento-creators {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  min-height: 33rem;
}

.bento-creators .bento-copy {
  grid-column: 2;
  padding-left: 0;
}

.bento-creators .bento-copy h3 {
  max-width: 18ch;
}

.creator-orbit {
  position: relative;
  width: min(24rem, 78vw);
  aspect-ratio: 1;
  justify-self: center;
}

.creator-orbit::before,
.creator-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgb(255 122 69 / 28%);
  border-radius: 50%;
  content: "";
  animation: orbit-turn 4.2s ease-in-out 1 both;
}

.creator-orbit::after {
  inset: 26%;
  border-color: rgb(255 194 75 / 22%);
  animation-direction: reverse;
  animation-duration: 4.2s;
}

.creator-core,
.creator-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 14px 42px rgb(0 0 0 / 32%);
}

.creator-core {
  inset: 37%;
  border-color: rgb(255 122 69 / 55%);
  border-radius: 1.6rem;
  background: var(--accent);
  color: var(--night);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 750;
}

.creator-node {
  min-width: 5.6rem;
  min-height: 2.7rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.node-topic { top: 6%; left: 38%; }
.node-document { top: 33%; right: 0; }
.node-draft { right: 14%; bottom: 8%; }
.node-review { bottom: 12%; left: 6%; }

/* Trust */
.trust-section {
  background:
    linear-gradient(180deg, #0c1712, #0a100d 67%, var(--night));
}

.trust-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(79 191 139 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(79 191 139 / 4%) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
}

.trust-halo {
  position: absolute;
  z-index: -1;
  top: -15rem;
  left: 50%;
  width: 65rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(79 191 139 / 15%), transparent 66%);
  filter: blur(22px);
  transform: translateX(-50%);
}

.trust-heading {
  text-align: center;
}

.trust-heading .section-index,
.trust-heading > p:last-child {
  margin-inline: auto;
}

.trust-heading h2 {
  max-width: none;
  margin-inline: auto;
}

.trust-heading h2 em {
  color: var(--confirm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.trust-card {
  min-height: 24rem;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border: 1px solid rgb(79 191 139 / 20%);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgb(31 39 31 / 82%), rgb(10 16 13 / 92%));
  transition: border-color 260ms ease, transform 320ms ease;
}

.trust-card:hover {
  border-color: rgb(79 191 139 / 45%);
  transform: translateY(-0.35rem);
}

.trust-icon {
  display: grid;
  width: 4rem;
  height: 4rem;
  margin-bottom: 4rem;
  place-items: center;
  border: 1px solid rgb(79 191 139 / 28%);
  border-radius: 50%;
  background: rgb(79 191 139 / 8%);
  color: var(--confirm);
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 750;
}

.trust-icon-open {
  color: var(--accent);
}

.trust-icon-choice {
  color: var(--earned);
}

.trust-card h3 {
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 520;
  line-height: 1.06;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.trust-footnote {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgb(79 191 139 / 20%);
  border-radius: 999px;
  background: rgb(79 191 139 / 5%);
}

.trust-footnote p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.trust-footnote a {
  color: var(--confirm);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

/* Final call to action */
.final-cta {
  min-height: 48rem;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 120%, rgb(255 122 69 / 29%), transparent 42%),
    linear-gradient(180deg, var(--night), #191008);
}

.cta-sunrise {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -38%;
  left: -10%;
  height: 70%;
  border: 1px solid rgb(255 194 75 / 28%);
  border-radius: 50% 50% 0 0;
  background:
    repeating-conic-gradient(from 255deg at 50% 100%, transparent 0 6deg, rgb(255 194 75 / 7%) 6deg 7deg),
    radial-gradient(circle at 50% 100%, rgb(255 194 75 / 25%), rgb(255 122 69 / 9%) 38%, transparent 66%);
  opacity: 0.8;
  animation: sunrise-glow 4s ease-in-out 1 both;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.cta-icon {
  width: min(17rem, 52vw);
  border: 1px solid rgb(255 255 255 / 11%);
  border-radius: 25%;
  box-shadow: 0 30px 90px rgb(0 0 0 / 46%), 0 0 80px rgb(255 122 69 / 12%);
}

.final-cta-copy h2 {
  max-width: 10ch;
}

.final-cta-copy .hero-actions {
  margin-top: 2rem;
  animation: none;
}

/* Footer */
.site-footer {
  padding-block: 3rem 2rem;
  border-top: 1px solid var(--line);
  background: var(--night);
}

.landing-footer {
  padding-top: 4rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-shell p {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-brand-block .brand {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-signoff {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.6rem;
}

/* Legal, support, and error pages */
.page-shell {
  display: grid;
  grid-template-columns: 15rem minmax(0, var(--reading));
  justify-content: center;
  gap: clamp(2rem, 7vw, 5.5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-intro {
  grid-column: 1 / -1;
  max-width: var(--reading);
  margin-left: calc(15rem + clamp(2rem, 7vw, 5.5rem));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-intro h1,
.closing-card h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 540;
  line-height: 0.98;
}

.lede {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.updated,
.small-print {
  color: var(--muted);
  font-size: 0.84rem;
}

.toc {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  padding: 1.15rem 0 1.15rem 1.2rem;
  border-left: 2px solid var(--accent);
}

.toc strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc ol {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.toc li + li {
  margin-top: 0.35rem;
}

.toc a {
  color: var(--muted);
  font-size: 0.85rem;
}

.prose {
  min-width: 0;
  color: var(--ink-soft);
}

.prose h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 530;
  letter-spacing: -0.035em;
}

.prose h3 {
  font-size: 1.25rem;
}

.prose strong {
  color: var(--ink);
}

.prose section + section {
  margin-top: 3.8rem;
  padding-top: 3.8rem;
  border-top: 1px solid var(--line);
}

.prose li + li {
  margin-top: 0.55rem;
}

.prose address {
  font-style: normal;
}

.callout,
.contact-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 12px 36px rgb(0 0 0 / 14%);
}

.callout {
  padding: 1.25rem 1.4rem;
  margin-block: 1.6rem;
  border-left: 4px solid var(--accent);
}

.callout strong {
  color: var(--accent);
}

.data-table-wrap {
  overflow-x: auto;
  margin-block: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.9rem;
}

th,
td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-deep);
  color: var(--ink);
}

tr:last-child td {
  border-bottom: 0;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  margin-block: 1.5rem;
}

.contact-address {
  overflow-wrap: anywhere;
  font-size: 1.12rem;
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 1.1rem 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.closing-card {
  margin-block: clamp(5rem, 12vw, 10rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 90%, rgb(255 122 69 / 18%), transparent 24rem),
    var(--surface);
  box-shadow: var(--shadow);
}

.closing-card > p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--ink-soft);
}

/* Motion */
@keyframes intro-rise {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-device {
  from { opacity: 0; transform: translateY(3rem) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes device-float {
  0%, 100% { transform: translateX(-50%) rotateY(-5deg) rotateX(1deg) translateY(0); }
  50% { transform: translateX(-50%) rotateY(-3deg) rotateX(0) translateY(-0.6rem); }
}

@keyframes note-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.5rem); }
}

@keyframes signal-pulse {
  0% { opacity: 0.65; transform: scale(0.6); }
  75%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes sun-breathe {
  0%, 100% { opacity: 0.48; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 0.78; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

@keyframes sunrise-glow {
  0%, 100% { opacity: 0.62; transform: scaleX(0.98); }
  50% { opacity: 0.9; transform: scaleX(1.02); }
}

@keyframes scroll-reveal {
  from { opacity: 0.18; transform: translateY(3.5rem) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 68rem) {
  .landing-header {
    border-bottom-color: var(--line);
    background: rgb(10 9 6 / 94%);
  }

  .landing-header .nav-shell {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    padding-top: 0.65rem;
  }

  .landing-nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 0.55rem 0.75rem;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }

  .landing-nav-links::-webkit-scrollbar {
    display: none;
  }

  .landing-nav-links a {
    white-space: nowrap;
  }

  .launch-hero {
    padding-top: 8.8rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1.1fr);
    gap: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 8vw, 6.1rem);
  }

  .manifesto-grid {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
  }

  .manifesto-grid > .section-index {
    grid-column: 1 / -1;
  }

  .story-row {
    gap: 3rem;
  }

  .bento-discover .bento-copy {
    width: 62%;
  }

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

  .trust-card {
    display: grid;
    grid-template-columns: auto 0.7fr 1fr;
    gap: 1.5rem;
    align-items: center;
    min-height: 0;
  }

  .trust-icon,
  .trust-card h3,
  .trust-card p {
    margin: 0;
  }
}

@media (max-width: 52rem) {
  .launch-shell,
  .nav-shell,
  .footer-shell,
  .page-shell,
  .closing-card {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .site-header:not(.landing-header) .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .site-header:not(.landing-header) .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
  }

  .launch-hero {
    min-height: auto;
    padding-top: 8.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 45rem;
  }

  .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(4rem, 14vw, 6.3rem);
  }

  .device-stage {
    min-height: 43rem;
    margin-top: 1rem;
  }

  .device {
    width: min(19.5rem, 56vw);
  }

  .device-back {
    width: min(16rem, 45vw);
  }

  .stage-note-page { left: 4%; }
  .stage-note-recall { right: 3%; }
  .stage-note-open { left: 9%; }

  .hero-sun {
    top: 72%;
    left: 50%;
    width: 32rem;
  }

  .hero-horizon {
    top: 86%;
  }

  .hero-horizon-two { top: 88%; }
  .hero-horizon-three { top: 90%; }

  .manifesto-grid,
  .section-heading-split,
  .story-row,
  .bento-grid,
  .bento-creators,
  .final-cta-grid,
  .page-shell {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .manifesto-note {
    grid-column: 1;
  }

  .section-heading-split > p {
    max-width: 38rem;
  }

  .ritual-section {
    background: var(--ground);
  }

  .story-row,
  .story-row-reverse {
    gap: 2.5rem;
  }

  .story-row .story-copy,
  .story-row-reverse .story-copy {
    order: 1;
  }

  .story-row .screen-scene,
  .story-row-reverse .screen-scene {
    order: 2;
  }

  .story-copy h3 {
    max-width: 15ch;
  }

  .screen-scene {
    min-height: 40rem;
  }

  .bento-discover,
  .bento-record {
    min-height: 43rem;
  }

  .bento-discover {
    display: grid;
    grid-template-rows: auto 25rem;
    min-height: 0;
  }

  .bento-discover .bento-copy {
    width: 100%;
    padding-bottom: 1rem;
  }

  .bento-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(18rem, 64vw);
    align-self: start;
    justify-self: center;
    transform: rotate(3deg);
  }

  .bento-creators {
    padding-top: 2rem;
  }

  .bento-creators .bento-copy {
    grid-column: 1;
    padding-left: clamp(1.6rem, 4vw, 3rem);
  }

  .creator-orbit {
    grid-row: 1;
  }

  .trust-card {
    grid-template-columns: auto 1fr;
  }

  .trust-card p {
    grid-column: 2;
  }

  .trust-footnote {
    grid-template-columns: auto 1fr;
    align-items: start;
    border-radius: var(--radius-md);
  }

  .trust-footnote a {
    grid-column: 2;
  }

  .cta-icon {
    width: min(13rem, 50vw);
  }

  .page-intro {
    margin-left: 0;
  }

  .toc {
    position: static;
    padding-block: 0.4rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 36rem) {
  .landing-header .nav-shell {
    min-height: 4.6rem;
  }

  .landing-header .brand > span:last-child {
    display: none;
  }

  .nav-cta {
    min-height: 2.6rem;
    padding-inline: 0.85rem;
    font-size: 0.76rem;
  }

  .hero-grid {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.55rem, 17vw, 5.1rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .device-stage {
    min-height: 35rem;
  }

  .device {
    width: min(16rem, 68vw);
    border-radius: 2.5rem;
  }

  .device-back {
    top: 4.5rem;
    width: min(12.5rem, 48vw);
  }

  .stage-note {
    font-size: 0.53rem;
  }

  .stage-note-page { top: 6%; left: 0; }
  .stage-note-recall { top: 39%; right: 0; }
  .stage-note-open { bottom: 5%; left: 2%; }

  .launch-section {
    padding-block: 5.5rem;
  }

  .manifesto-grid {
    gap: 2rem;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .trust-heading h2,
  .final-cta-copy h2 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }

  .story-list {
    gap: 7rem;
  }

  .story-row {
    min-height: 0;
  }

  .story-copy h3 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .screen-scene {
    min-height: 34rem;
  }

  .screen-frame {
    width: min(17rem, 73vw);
    border-radius: 2.5rem;
  }

  .screen-scene figcaption {
    right: 0;
    bottom: 1%;
    left: 0;
    width: max-content;
    max-width: 92%;
    margin-inline: auto;
  }

  .story-row-reverse .screen-scene figcaption {
    right: 0;
    left: 0;
  }

  .bento-discover,
  .bento-record {
    min-height: 42rem;
  }

  .bento-discover {
    min-height: 0;
  }

  .bento-discover .bento-copy {
    width: 100%;
  }

  .bento-phone {
    right: auto;
    bottom: auto;
    width: min(16rem, 68vw);
  }

  .metric-row {
    width: 100%;
  }

  .record-window {
    bottom: -55%;
  }

  .creator-orbit {
    width: min(20rem, 90vw);
  }

  .creator-node {
    min-width: 4.7rem;
    font-size: 0.54rem;
  }

  .trust-card {
    display: block;
  }

  .trust-card .trust-icon {
    margin-bottom: 3rem;
  }

  .trust-card h3 {
    margin-bottom: 0.8rem;
  }

  .trust-footnote {
    display: block;
  }

  .trust-footnote .signal-dot {
    margin-bottom: 1rem;
  }

  .trust-footnote a {
    display: inline-block;
    margin-top: 0.8rem;
  }

  .final-cta {
    min-height: 45rem;
  }

  .footer-signoff {
    align-items: flex-start;
    flex-direction: column;
  }

  th,
  td {
    padding: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .ticker-track {
    transform: none;
  }

  .ticker-group[aria-hidden="true"],
  .ticker-control,
  .ticker-control-label {
    display: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .site-footer,
  .toc,
  .skip-link {
    display: none;
  }

  .page-shell,
  .page-intro {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .page-intro h1,
  .prose h2,
  .prose h3,
  .prose strong,
  .prose {
    color: #111;
  }

  .prose section {
    break-inside: avoid;
  }
}
