:root {
  --canvas: #f4f7fb;
  --canvas-strong: #ecf2fa;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-soft: #edf4fd;
  --surface-dark: #0f172b;
  --ink: #0f172a;
  --muted: #5a6881;
  --line: rgba(121, 140, 173, 0.2);
  --line-strong: rgba(110, 131, 171, 0.34);
  --brand: #2456e9;
  --brand-deep: #173ca9;
  --brand-soft: #dbe7ff;
  --sky-soft: #dff3ff;
  --success: #177b5d;
  --success-bg: #eaf9f1;
  --warning: #9a6700;
  --warning-bg: #fff3db;
  --neutral-bg: #eef2f7;
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.1);
  --shadow-md: 0 16px 44px rgba(15, 23, 42, 0.07);
  --shadow-sm: 0 10px 24px rgba(15, 23, 42, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at top center, rgba(74, 121, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 12% 18%, rgba(193, 230, 255, 0.5), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0%, var(--canvas) 40%, var(--canvas-strong) 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(95, 126, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 126, 173, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.75) 42%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.75) 42%,
    transparent 100%
  );
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(36, 86, 233, 0.14);
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.orb-one {
  top: 0;
  left: 50%;
  width: 720px;
  height: 460px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(36, 86, 233, 0.18), transparent 66%);
}

.orb-two {
  top: 26rem;
  left: -8rem;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(143, 203, 255, 0.28), transparent 70%);
}

.orb-three {
  top: 56rem;
  right: -8rem;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(189, 206, 255, 0.34), transparent 72%);
}

.grid-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

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

.section {
  position: relative;
  padding: 44px 0 104px;
}

main {
  flex: 1;
  display: flex;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--ink);
}

.hero {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 36px 0 88px;
}

.hero-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin: 26px auto 0;
  max-width: 1100px;
  font-size: clamp(3.1rem, 7vw, 5.7rem);
  line-height: 1.03;
  letter-spacing: -0.07em;
  font-weight: 700;
}

.hero-hyphenated {
  letter-spacing: -0.045em;
}

.hero-signal {
  display: inline-block;
  padding: 0 0.1em 0.06em;
  line-height: 1.06;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  background-image: linear-gradient(
    115deg,
    var(--brand-deep) 0%,
    var(--brand) 33%,
    var(--ink) 65%,
    var(--brand) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  color: transparent;
  animation:
    signal-shift 10s ease-in-out infinite,
    signal-float 6s ease-in-out infinite;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.panel-strong {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 249, 255, 0.96)),
    var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.hero-grid,
.architecture-grid,
.scope-grid,
.showcase-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-grid {
  margin-top: 60px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.hero-flow,
.registry-panel,
.badge-panel,
.browser-card,
.scope-panel,
.lens-panel {
  padding: 32px;
}

.panel-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.panel-topline.compact {
  align-items: start;
}

.panel-topline h2,
.section-head h2,
.panel h3,
.panel-strong h3,
.scope-head h3,
.badge-head h3 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.section-head {
  max-width: 820px;
}

.section-head p:not(.label) {
  margin: 20px 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--muted);
}

.label.wide {
  letter-spacing: 0.32em;
}

.micro-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(211, 223, 240, 0.92);
  background: rgba(255, 255, 255, 0.88);
  color: #4d607d;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon-brand {
  width: 30px;
  height: 30px;
  color: var(--brand);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  margin-top: 32px;
}

.dark-panel {
  height: 100%;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  background: linear-gradient(180deg, #121a2f 0%, #0d1425 100%);
  color: #f7fbff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
}

.dark-panel-head,
.code-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #97a7c2;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.step-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.step-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.step-list strong,
.feature-card h3,
.signal-card h3,
.lens-grid h4,
.badge-status strong,
.extension-title p,
.footer-title {
  font-weight: 700;
}

.step-list p,
.signal-card p,
.feature-card p,
.support-copy,
.caption,
.lens-grid p,
.scope-copy,
.principle-card p,
.mini-panel p,
.extension-list span,
.context-stack p,
.badge-status p,
.footer-copy {
  margin: 8px 0 0;
  color: var(--muted);
}

.step-list p {
  color: #c9d4e6;
  line-height: 1.7;
}

.step-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
}

.dot-sky {
  background: #8fd0ff;
}

.dot-blue {
  background: #7aa8ff;
}

.dot-green {
  background: #99efc6;
}

.flow-data,
.stacked-cards,
.scope-stack {
  display: grid;
  gap: 18px;
}

.mini-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.soft-panel {
  background: var(--surface-soft);
}

.mini-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.fact-list {
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}

.fact-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.fact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-list dt,
.fact-list dd {
  margin: 0;
  font-size: 0.96rem;
}

.fact-list dt {
  color: var(--muted);
}

.fact-list dd {
  color: #1f2937;
  text-align: right;
  font-weight: 700;
}

.status-list,
.extension-list,
.bullet-stack,
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.status-list li,
.extension-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.status-list li span:first-child,
.extension-list li span:first-child {
  font-weight: 700;
  color: #1f2937;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.status-tag.success {
  color: var(--success);
  background: var(--success-bg);
  border-color: rgba(23, 123, 93, 0.16);
}

.status-tag.caution {
  color: var(--warning);
  background: var(--warning-bg);
  border-color: rgba(154, 103, 0, 0.12);
}

.status-tag.neutral {
  color: #475569;
  background: var(--neutral-bg);
  border-color: rgba(100, 116, 139, 0.1);
}

.status-tag.accent {
  color: var(--brand);
  background: var(--brand-soft);
  border-color: rgba(36, 86, 233, 0.12);
}

.status-tag.dark {
  background: rgba(23, 123, 93, 0.16);
  border-color: rgba(121, 255, 188, 0.12);
  color: #b8f0d7;
}

.registry-panel .code-card {
  margin-top: 26px;
}

.code-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    linear-gradient(rgba(95, 126, 173, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 126, 173, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 20px 20px, 20px 20px, auto;
}

.code-card pre {
  margin: 16px 0 0;
  overflow-x: auto;
  color: #334155;
  font-size: 0.83rem;
  line-height: 1.8;
  white-space: pre;
}

.signal-stack {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.signal-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.signal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
}

.feature-card {
  padding: 26px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover,
.surface-card:hover,
.principle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.08);
  border-color: rgba(173, 191, 222, 0.44);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-index {
  color: #a3b0c5;
  font-size: 0.94rem;
  font-weight: 800;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four-up {
  margin-top: 46px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.architecture-grid {
  margin-top: 22px;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.architecture-grid > article {
  padding: 30px;
}

.bullet-stack {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.bullet-stack li {
  position: relative;
  padding: 14px 14px 14px 38px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: #334155;
}

.bullet-stack li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
}

.architecture-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.architecture-strip {
  position: relative;
  margin-top: 26px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
}

.architecture-beam {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(36, 86, 233, 0),
    rgba(36, 86, 233, 0.9),
    rgba(36, 86, 233, 0)
  );
  background-size: 200% 100%;
  animation: beam-slide 8s linear infinite;
}

.node-card {
  position: relative;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.lens-panel {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.lens-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-grid {
  margin-top: 46px;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.browser-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.94);
}

.browser-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.browser-dot.red {
  background: #ff5f57;
}

.browser-dot.yellow {
  background: #ffbd2e;
}

.browser-dot.green {
  background: #28c840;
}

.browser-url {
  flex: 1;
  min-width: 0;
  margin-left: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: #f8fafc;
  color: #64748b;
  font-size: 0.94rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 18px;
  padding: 20px;
}

.browser-context {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: var(--surface-soft);
}

.context-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.94);
}

.context-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.context-top h3,
.extension-panel h3,
.badge-panel h3,
.panel h4,
.panel-strong h4 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.context-top p,
.badge-status p,
.extension-title span {
  margin: 4px 0 0;
  color: var(--muted);
}

.context-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.context-stack p {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(241, 245, 249, 0.98);
  background: #f8fafc;
}

.extension-panel {
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.extension-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.extension-title p {
  margin: 0;
  color: var(--ink);
}

.extension-title span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 800;
}

.extension-body {
  margin-top: 18px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #11192d 0%, #0b1323 100%);
  color: #f8fbff;
}

.extension-status {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.extension-status strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}

.extension-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.extension-list li {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.extension-list li span:first-child {
  color: #dbe7ff;
}

.extension-foot {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #9fb2ce;
}

.badge-card {
  margin-top: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.94);
  background: linear-gradient(145deg, rgba(239, 244, 255, 0.95), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-md);
}

.badge-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.badge-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.success-icon {
  width: 20px;
  height: 20px;
  color: var(--success);
}

.fact-list.compact {
  margin-top: 18px;
}

.compact-code {
  margin-top: 18px;
}

.scope-grid {
  margin-top: 46px;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
}

.scope-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.scope-copy {
  margin: 22px 0 0;
  font-size: 1.02rem;
  line-height: 1.82;
}

.principle-card {
  padding: 24px;
}

.card-grid.narrow {
  gap: 16px;
}

.site-footer {
  padding: 0 0 40px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.footer-title {
  margin: 0;
  font-size: 1rem;
}

.footer-copy {
  margin-top: 8px;
}

.footer-email {
  color: var(--ink);
  font-family: ui-monospace, "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline dotted rgba(15, 23, 42, 0.35);
  text-underline-offset: 0.16em;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--brand-deep);
  text-decoration-color: currentColor;
}

.footer-brand-mark {
  flex-shrink: 0;
  opacity: 0.58;
}

.footer-logo {
  width: 72px;
  height: auto;
  filter: saturate(0.82);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.footer-nav-hidden {
  display: none;
}

@keyframes signal-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes signal-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes beam-slide {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: -100% 50%;
  }
}

@media (max-width: 1180px) {
  .card-grid.four-up,
  .lens-grid,
  .card-grid.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-strip {
    grid-template-columns: 1fr;
  }

  .architecture-beam {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 28px 0 82px;
  }

  .footer-shell {
    border-radius: 24px;
    flex-direction: column;
    align-items: start;
  }

  .footer-brand-mark {
    align-self: flex-end;
  }

  .footer-logo {
    width: 56px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
