:root {
  color-scheme: dark;
  --bg: #000000;
  --ink: #ffffff;
  --muted: #666666;
  --faint: #262626;
  --line: #1a1a1a;
  --header: 64px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: grainDrift 18s linear infinite;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Icons */
.lucide, [data-lucide], svg.icon-flat {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2.25;
  stroke: currentColor;
  fill: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  flex-shrink: 0;
}

.button i, .header-action i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 850;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-header a {
  transition: none;
}

.brand img {
  width: 24px;
  height: 24px;
  filter: grayscale(1) invert(1);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.header-action {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0 1.25rem;
  height: 36px;
  border: 1.5px solid var(--ink);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-action:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Layout: Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 4rem;
  padding: var(--header) clamp(1rem, 5vw, 6rem) 5rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.motion-field {
  position: absolute;
  inset: var(--header) clamp(1rem, 5vw, 6rem) 5rem;
  z-index: 0;
  pointer-events: none;
}

.motion-field span {
  position: absolute;
  color: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: fieldDrift 12s linear infinite;
}

.motion-field span:nth-child(1) { left: 4%; top: 18%; animation-duration: 13s; }
.motion-field span:nth-child(2) { left: 48%; top: 11%; animation-duration: 15s; animation-delay: -4s; }
.motion-field span:nth-child(3) { left: 18%; bottom: 19%; animation-duration: 14s; animation-delay: -7s; }
.motion-field span:nth-child(4) { right: 12%; bottom: 12%; animation-duration: 17s; animation-delay: -2s; }
.motion-field span:nth-child(5) { right: 2%; top: 35%; animation-duration: 16s; animation-delay: -9s; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 44rem;
}

.kicker, .section-index {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 850;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-kicker-text {
  position: relative;
  display: inline-block;
}

.hero-kicker-text::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(100deg, transparent 0 43%, rgba(255, 255, 255, 0.22) 50%, transparent 57% 100%);
  background-size: 320% 100%;
  background-position: 135% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: kickerSheen 1s ease-in-out infinite;
}

h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.88;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.hero-title {
  position: relative;
  max-width: 46rem;
}

.title-line {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  transform-origin: left center;
  will-change: transform, filter;
  animation: titleDrift 8.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.title-line:nth-child(2) {
  animation-delay: -1.4s;
}

.title-line:nth-child(3) {
  animation-delay: -2.8s;
}

.title-line::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58% 100%);
  background-size: 310% 100%;
  background-position: 135% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: titleSheen 5.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.title-line:nth-child(2)::after {
  animation-delay: 0.55s;
}

.title-line:nth-child(3)::after {
  animation-delay: 1.1s;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
}

.button {
  height: 48px;
  padding: 0 1.75rem;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.button.primary {
  background:
    linear-gradient(105deg, transparent 0 30%, rgba(0, 0, 0, 0.06) 40%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.06) 60%, transparent 70% 100%) 150% 0 / 270% 100% no-repeat,
    var(--ink);
  color: var(--bg);
  overflow: hidden;
}

.button.primary:hover {
  transform: translateY(-2px);
  animation: buttonSheen 3.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.button.primary:hover i,
.button.primary:hover .icon-flat {
  animation: buttonIconHop 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.button.text {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.hero-stage {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.hero-logo-mark {
  width: min(34vw, 24rem);
  min-width: 14rem;
  opacity: 0.94;
  filter: saturate(1.18) contrast(1.06);
}

.hero-foot {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1rem, 5vw, 6rem);
  display: flex;
  gap: 2.5rem;
}

.hero-foot span {
  position: relative;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
}

.hero-foot-text {
  position: relative;
  overflow: visible;
}

.hero-foot-text::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: transparent;
  background: linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.72) 50%, transparent 66% 100%);
  background-size: 260% 100%;
  background-position: 130% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  animation: footSheen 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-foot span:nth-child(2) .hero-foot-text::after {
  animation-delay: 0.45s;
}

.hero-foot span:nth-child(3) .hero-foot-text::after {
  animation-delay: 0.9s;
}

.auto-ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #000;
}

.auto-ticker div {
  display: flex;
  width: max-content;
  animation: tickerRun 34s linear infinite;
}

.auto-ticker span {
  display: inline-flex;
  align-items: center;
  height: 32px;
  min-width: 12rem;
  justify-content: center;
  padding: 0 1.6rem;
  color: var(--faint);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

/* Sections */
.manifest, .core, .capture, .extend, .final-cta {
  padding: 10rem clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.manifest-copy, .core-content, .capture-copy, .final-cta > div {
  max-width: 38rem;
  margin-inline: auto;
}

.manifest {
  display: grid;
  grid-template-columns: 12rem 1fr 1.6fr;
  gap: 4rem;
}

.manifest-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.manifest-list article {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

h3 {
  font-size: 0.875rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.core {
  display: grid;
  grid-template-columns: 12rem 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.core-word {
  position: absolute;
  right: -5%;
  bottom: -10%;
  font-size: 20rem;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.core-word::after {
  content: "NSFX";
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.24) 48%, transparent 58% 100%);
  background-size: 230% 100%;
  background-position: 115% 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.55;
  animation: nsfxSheen 4.2s ease-in-out infinite;
}

.core-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.core-stack div {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  animation: stackSignal 7s ease-in-out infinite;
  animation-delay: calc(var(--stack-i, 0) * -1s);
}

.core-stack div:nth-child(1) { --stack-i: 1; }
.core-stack div:nth-child(2) { --stack-i: 2; }
.core-stack div:nth-child(3) { --stack-i: 3; }
.core-stack div:nth-child(4) { --stack-i: 4; }

.capture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.capture-media {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.browser-line {
  background: var(--bg);
  padding: 1.5rem 2rem;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: linePulse 6s ease-in-out infinite;
}

.browser-line:nth-child(2) {
  animation-delay: -2s;
}

.browser-line:nth-child(3) {
  animation-delay: -4s;
}

.extend {
  padding: 6rem clamp(1rem, 5vw, 6rem);
  border-bottom: 1px solid var(--line);
}

.extend-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  align-items: start;
}

.extend-head {
  position: sticky;
  top: 8rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento-item {
  background: var(--bg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 180px;
  transition: 
    background 0.4s ease,
    opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0s, calc(var(--i) * 0.05s), calc(var(--i) * 0.05s);
  position: relative;
  overflow: hidden;
  animation:
    bentoBorderPulse 4s ease-in-out infinite alternate,
    bentoIdleWave 9s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

@keyframes bentoBorderPulse {
  0% { border-color: var(--line); }
  100% { border-color: rgba(255, 255, 255, 0.1); }
}

[data-reveal] .bento-item {
  opacity: 0;
  transform: translateY(10px);
}

[data-reveal].is-visible .bento-item {
  opacity: 1;
  transform: translateY(0);
}

.bento-item:hover {
  background: #080808;
  transition-delay: 0s !important;
}

.bento-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item i {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--muted);
  transition: all 0.3s ease;
  z-index: 1;
  animation: bentoIconFloat 3s ease-in-out infinite alternate;
  animation-delay: calc(var(--i) * -0.7s);
}

@keyframes bentoIconFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

.bento-item:hover i {
  stroke: var(--ink);
  animation-play-state: paused;
}

.bento-text {
  z-index: 1;
}

.bento-text h3 {
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-text p {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1280px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

/* Secondary Icon Colors */
.browser-line .lucide, .bento-item .lucide, .manifest-list .lucide, .core-stack .lucide, .hero-foot .lucide {
  stroke: var(--muted);
}

.final-cta {
  text-align: center;
  padding: 12rem 2rem;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 5rem clamp(1rem, 5vw, 6rem);
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--faint);
}

.site-footer nav {
  display: flex;
  gap: 2.5rem;
}

/* Notice / Legal pages */
.notice-page,
.legal-page {
  min-height: 100svh;
  padding: calc(var(--header) + 7rem) clamp(1rem, 5vw, 6rem) 8rem;
  border-bottom: 1px solid var(--line);
}

.notice-page {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.notice-hero {
  position: sticky;
  top: calc(var(--header) + 3rem);
}

.notice-hero h1,
.legal-page h1 {
  max-width: 7ch;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}

.notice-board {
  min-width: 0;
  border: 1px solid var(--line);
  background: #000;
}

.notice-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.notice-status,
.notice-endpoint {
  min-width: 0;
}

.notice-endpoint {
  color: var(--faint);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.notice-item {
  position: relative;
  display: grid;
  gap: 1.1rem;
  min-height: 12rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--bg);
  overflow: hidden;
}

.notice-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-100%);
  animation: noticeTrace 6.5s linear infinite;
}

.notice-item-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.notice-pin {
  color: var(--ink);
}

.notice-item h2 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.notice-item p {
  max-width: 56rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.notice-detail h2 {
  max-width: 24ch;
}

.notice-detail p {
  font-size: 1rem;
  line-height: 1.72;
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.notice-link {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.notice-level-warning,
.notice-level-critical {
  background: #030303;
}

.legal-page {
  max-width: 980px;
}

.legal-body {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.legal-body section {
  padding: 2rem;
  background: var(--bg);
}

.legal-body h2 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.legal-body p {
  color: var(--muted);
}

/* Animations */
@keyframes heroFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes grainDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 34px 34px, -34px 34px; }
}

@keyframes fieldDrift {
  0% { transform: translate3d(0, 0, 0); opacity: 0.02; }
  45% { opacity: 0.08; }
  100% { transform: translate3d(2.4rem, -1.4rem, 0); opacity: 0.02; }
}

@keyframes footSheen {
  0%,
  12% {
    opacity: 0;
    background-position: 135% 0;
  }

  24%,
  74% {
    opacity: 0.72;
  }

  88%,
  100% {
    opacity: 0;
    background-position: -135% 0;
  }
}

@keyframes kickerSheen {
  0% {
    opacity: 0;
    background-position: 135% 0;
  }

  18%,
  78% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    background-position: -135% 0;
  }
}

@keyframes titleDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    filter: none;
  }

  45% {
    transform: translate3d(0.08em, -0.025em, 0);
    filter: brightness(1.08);
  }
}

@keyframes titleSheen {
  0%,
  16% {
    opacity: 0;
    background-position: 135% 0;
  }

  34%,
  64% {
    opacity: 0.34;
  }

  82%,
  100% {
    opacity: 0;
    background-position: -135% 0;
  }
}

@keyframes tickerRun {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes nsfxSheen {
  0%,
  10% {
    background-position: 115% 0;
    opacity: 0.18;
  }

  24%,
  72% {
    opacity: 0.7;
  }

  90%,
  100% {
    background-position: -115% 0;
    opacity: 0.18;
  }
}

@keyframes buttonSheen {
  0% {
    background-position: 150% 0, 0 0;
  }

  100% {
    background-position: -150% 0, 0 0;
  }
}

@keyframes buttonIconHop {
  0%,
  100% {
    transform: translateY(0);
  }

  42% {
    transform: translateY(-2px);
  }
}

@keyframes stackSignal {
  0%, 100% { background: var(--bg); }
  50% { background: #070707; }
}

@keyframes linePulse {
  0%, 100% { color: var(--ink); }
  50% { color: var(--muted); }
}

@keyframes bentoIdleWave {
  0%, 100% { background: var(--bg); }
  48% { background: #060606; }
}

@keyframes noticeTrace {
  0%, 20% { transform: translateX(-100%); opacity: 0; }
  35% { opacity: 0.5; }
  72% { opacity: 0.2; }
  100% { transform: translateX(100%); opacity: 0; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero, .manifest, .core, .capture, .extend {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .notice-page {
    grid-template-columns: 1fr;
  }
  .notice-hero {
    position: static;
  }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  h1 { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; }
  .manifest-list, .core-stack { grid-template-columns: 1fr; }
  .hero-foot { position: static; margin-top: 3rem; flex-direction: column; gap: 1rem; }
  .motion-field { display: none; }
  .auto-ticker { height: 28px; }
  .auto-ticker span { height: 28px; padding: 0 1.2rem; }
  .notice-page,
  .legal-page {
    padding-inline: 1rem;
  }
  .notice-toolbar {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 1rem;
  }
  .notice-item h2,
  .notice-hero h1,
  .legal-page h1 {
    font-size: 3rem;
  }
  .notice-link {
    width: 100%;
    justify-content: center;
  }
}

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