:root {
  --canvas: #f7f2e8;
  --canvas-deep: #efe6d7;
  --paper: #fffdf9;
  --ink: #20231f;
  --muted: #696b65;
  --line: rgba(32, 35, 31, 0.14);
  --sage: #587064;
  --sage-dark: #3f574c;
  --sage-soft: #dfe8df;
  --clay: #9a5038;
  --clay-soft: #f1dacf;
  --gold-soft: #eadfbd;
  --shadow: 0 24px 70px rgba(62, 47, 31, 0.11);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(16px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(32, 35, 31, 0.12);
  background: rgba(247, 242, 232, 0.96);
  box-shadow: 0 8px 24px rgba(62, 47, 31, 0.07);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-dot {
  color: var(--clay);
}

.brand-mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-width: 2;
}

.brand-mark circle:last-child {
  fill: var(--clay);
  stroke: none;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: #50534d;
}

.top-nav a {
  position: relative;
  padding-block: 8px;
  text-decoration: none;
  transition: color 180ms ease;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.top-nav a:hover,
.top-nav a.is-active {
  color: var(--clay);
}

.top-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-block: 76px 94px;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 860;
}

h1 em {
  color: var(--sage);
  font-style: normal;
}

h2 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 830;
}

h3 {
  margin-bottom: 13px;
  font-size: 23px;
}

.hero-lead,
.section-intro > p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--sage);
  color: white;
}

.button-primary:hover {
  background: var(--sage-dark);
}

.button-secondary {
  background: transparent;
  color: var(--sage-dark);
}

.button-secondary:hover {
  background: var(--sage-soft);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% -9% -8% 12%;
  z-index: -1;
  border-radius: 52% 48% 42% 58%;
  background: radial-gradient(circle at 30% 25%, rgba(183, 107, 77, 0.3), transparent 55%), var(--sage-soft);
  filter: blur(2px);
}

.signal-card {
  overflow: hidden;
  border: 1px solid rgba(32, 35, 31, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow);
}

.signal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.signal-card-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4f866c;
  box-shadow: 0 0 0 5px #deebe2;
}

.date-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--canvas-deep);
  color: #69675f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signal-orbit {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(183, 107, 77, 0.12), transparent 56%);
}

.signal-orbit svg {
  position: relative;
  z-index: 2;
  width: 80px;
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 2;
  filter: drop-shadow(0 10px 14px rgba(49, 39, 29, 0.16));
}

.orbit-rings {
  position: absolute;
  inset: 0;
  animation: orbit-breathe 9s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, opacity;
}

@keyframes orbit-breathe {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(0.99);
  }

  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(88, 112, 100, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 176px;
  height: 176px;
}

.orbit-two {
  width: 244px;
  height: 244px;
}

.orbit-core {
  position: absolute;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--clay-soft);
}

.motion-ready [data-reveal],
.motion-ready [data-reveal-group] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal-group] > * {
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal-group] > :nth-child(2) {
  --reveal-delay: 70ms;
}

.motion-ready [data-reveal-group] > :nth-child(3) {
  --reveal-delay: 140ms;
}

.motion-ready [data-reveal-group] > :nth-child(4) {
  --reveal-delay: 210ms;
}

.motion-ready [data-reveal-group] > :nth-child(5) {
  --reveal-delay: 280ms;
}

.motion-ready [data-reveal].is-visible,
.motion-ready [data-reveal-group].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready [data-reveal-group].is-visible > .source-card:hover {
  transform: translateY(-3px);
}

.status-list {
  margin: 0;
  padding: 0 24px 24px;
}

.status-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.status-list dt {
  font-size: 14px;
  font-weight: 750;
}

.status-list dd {
  margin: 0;
}

.status-tag {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-unclear {
  background: var(--clay-soft);
  color: #7b422e;
}

.status-confirmed {
  background: #dfeadd;
  color: #355b46;
}

.status-context {
  background: var(--gold-soft);
  color: #695c2f;
}

.section {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-tinted {
  background: var(--canvas-deep);
}

.section-intro {
  margin-bottom: 54px;
}

.section-intro.narrow {
  max-width: 900px;
}

.answer-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(88, 112, 100, 0.32);
  border-radius: var(--radius-lg);
  background: var(--sage-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.answer-panel p {
  max-width: 900px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.78);
}

.answer-panel p:last-child {
  margin-bottom: 0;
}

.answer-panel .answer-lead {
  color: white;
  font-size: clamp(21px, 2.8vw, 30px);
  font-weight: 720;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.answer-source-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.answer-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: white;
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.fact-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.fact-card,
.media-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.fact-card {
  border-top-width: 4px;
}

.fact-confirmed {
  border-top-color: var(--sage);
}

.fact-unknown {
  border-top-color: var(--clay);
}

.fact-misread {
  border-top-color: #b49a4c;
}

.fact-label,
.source-type {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.fact-card p:last-child,
.media-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.media-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.media-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
}

.media-icon {
  width: 68px;
  margin-bottom: auto;
  padding-bottom: 54px;
  fill: none;
  stroke: var(--sage-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.timeline {
  max-width: 960px;
  margin-left: auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.timeline-date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.timeline-body h3 {
  margin-bottom: 10px;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
}

.timeline-current .timeline-date {
  color: var(--clay);
}

.timeline-current .timeline-body h3::after {
  content: "Nu";
  display: inline-block;
  margin-left: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--clay-soft);
  color: #7b422e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.model-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.model-list small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.evidence-links a {
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.source-callout {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 30px;
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 10px 36px rgba(62, 47, 31, 0.06);
}

.source-callout p {
  max-width: 760px;
  margin: 0;
}

.source-callout > a {
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-size: 14px;
  font-weight: 800;
}

.remove-section {
  position: relative;
  overflow: hidden;
  background: var(--sage-dark);
  color: white;
}

.remove-section::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -8%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, 0.035), 0 0 0 144px rgba(255, 255, 255, 0.02);
}

.remove-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(50px, 9vw, 120px);
}

.remove-section .section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--clay);
  font-size: 13px;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.own-text-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(183, 107, 77, 0.28);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--paper), #f7e7dd);
  box-shadow: var(--shadow);
}

.own-text-card h2 {
  font-size: clamp(34px, 4.3vw, 54px);
}

.own-text-card > div:first-child > p {
  max-width: 650px;
  color: var(--muted);
}

.rewrite-demo {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transform: rotate(1.2deg);
}

.rewrite-demo p {
  margin: 8px 0 0;
}

.demo-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-label-good {
  color: var(--sage-dark);
}

.demo-muted {
  color: #91928d;
  text-decoration: line-through;
  text-decoration-color: rgba(183, 107, 77, 0.6);
}

.demo-arrow {
  margin-block: 20px;
  color: var(--clay);
  font-size: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 10vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 42px 26px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 780;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--clay);
  font-size: 25px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 28px;
  color: var(--muted);
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.source-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.source-card:hover {
  transform: translateY(-3px);
  border-color: var(--clay);
}

.source-card strong {
  max-width: 460px;
  margin-bottom: auto;
  font-size: 19px;
  line-height: 1.35;
}

.source-card > span:last-child {
  margin-top: 30px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding-block: 70px 28px;
  background: #20231f;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 50px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  stroke: rgba(255, 255, 255, 0.78);
}

.footer-brand .brand-dot {
  color: #d88a6c;
}

.footer-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-note p:first-child {
  margin-top: 0;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.footer-bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.privacy-notice {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 36px);
  z-index: 100;
  width: min(430px, calc(100% - 36px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(88, 112, 100, 0.24);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 20px 60px rgba(49, 39, 29, 0.17);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.privacy-notice[hidden] {
  display: none;
}

.privacy-notice.is-closing {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.privacy-notice-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-dark);
}

.privacy-notice-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-notice-copy strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 17px;
}

.privacy-notice-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.privacy-notice-dismiss {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: white;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.privacy-notice-dismiss:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .hero,
  .remove-layout,
  .own-text-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 64px;
    padding-top: 58px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .fact-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    min-height: 280px;
  }

  .media-icon {
    margin-bottom: 36px;
    padding-bottom: 0;
  }

  .faq-heading {
    position: static;
  }

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

  .footer-grid nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .top-nav {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-block: 42px 72px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .signal-card-head,
  .status-list {
    padding-inline: 18px;
  }

  .hero-visual::before {
    right: 0;
  }

  .status-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .signal-orbit {
    min-height: 250px;
  }

  .answer-panel {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .source-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .remove-layout {
    gap: 30px;
  }

  .remove-section::after {
    right: 0;
  }

  .own-text-card {
    padding: 28px 22px;
  }

  .rewrite-demo {
    transform: none;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .privacy-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px;
  }

  .privacy-notice-dismiss {
    grid-column: 1 / -1;
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .orbit-rings {
    animation: none;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal-group] > * {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .site-footer,
  .privacy-notice {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section,
  .hero {
    min-height: auto;
    padding-block: 30px;
  }
}
