:root {
  --navy: #06142d;
  --navy-2: #0a2248;
  --ink: #0b1730;
  --paper: #f4f0e7;
  --white: #fffdf8;
  --gold: #f4b735;
  --gold-light: #ffd774;
  --silver: #c9d1dd;
  --muted: #677286;
  --line: rgba(11, 23, 48, .16);
  --max: 1240px;
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -4rem;
  padding: .8rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(6, 20, 45, .93);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid rgba(255, 255, 255, .82);
  box-shadow: inset 0 0 0 3px var(--navy), 0 0 0 1px var(--gold);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 900;
}
.brand-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(6, 20, 45, .88), 0 0 0 4px rgba(255, 255, 255, .45);
}
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { letter-spacing: .18em; font-size: 15px; }
.brand-copy small { color: var(--silver); letter-spacing: .32em; font-size: 8px; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 44px); }
.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta {
  padding: 12px 19px;
  color: var(--navy);
  background: var(--gold);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: max(100svh, 780px);
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero-art {
  position: absolute;
  z-index: -4;
  inset: 0;
  background: url("assets/scrypto-assemble.webp") center 42% / cover no-repeat;
  transform: scale(1.025);
  animation: hero-settle 1.6s cubic-bezier(.2, .7, .2, 1) both;
}
.hero-shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 12, 28, .98) 0%, rgba(3, 12, 28, .89) 33%, rgba(3, 12, 28, .26) 68%, rgba(3, 12, 28, .42) 100%),
    linear-gradient(0deg, rgba(3, 12, 28, .92) 0%, transparent 34%);
}
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.hero-content {
  width: min(760px, 82vw);
  margin-left: max(6vw, calc((100vw - var(--max)) / 2));
  padding-top: 70px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}
.hero h1,
.statement h2,
.network h2,
.priorities h2,
.join h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
.hero h1 { font-size: clamp(66px, 7.5vw, 116px); text-shadow: 0 10px 30px rgba(0, 0, 0, .4); }
.hero h1 span, em { color: var(--gold); font-style: italic; }
.hero-lede {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { color: var(--navy); background: var(--gold); }
.button-primary:hover, .button-primary:focus-visible { background: var(--white); }
.text-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.text-link span { display: inline-block; margin-left: 9px; color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-decoration: none;
}
.scroll-cue i {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
}
.scroll-cue i::after {
  content: "↓";
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--gold);
  font-style: normal;
}

.section-pad { padding: clamp(90px, 11vw, 150px) max(6vw, calc((100vw - var(--max)) / 2)); }
.section-tag {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 130px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-tag span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 9px;
}
.section-tag p { margin: 0; }
.statement {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(40px, 8vw, 120px);
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 183, 53, .14), transparent 25%),
    var(--paper);
}
.statement-copy { display: grid; }
.statement h2 { max-width: 920px; font-size: clamp(54px, 7vw, 96px); }
.statement-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 90px);
  margin-top: 60px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.statement-body p {
  margin: 0;
  color: #3d485c;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
}
.statement-body p:first-child { color: var(--ink); font-weight: 600; }

.network {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  background: #06142d url("assets/scrypto-tree-v1.webp") left center / 72% auto no-repeat;
  color: var(--white);
}
.network::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(6, 20, 45, .08) 45%, rgba(6, 20, 45, .88) 69%, #06142d 82%),
    linear-gradient(0deg, #06142d 0%, transparent 17%, transparent 83%, #06142d 100%);
}
.network-visual {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle, rgba(46, 94, 157, .12), transparent 58%);
}
.network-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(135deg, transparent 49.7%, var(--silver) 50%, transparent 50.3%);
  background-size: 38px 38px;
}
.orbit {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(244, 183, 53, .42);
  border-radius: 50%;
  animation: orbit 26s linear infinite;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff2b8 0 10%, var(--gold) 22%, #8e5700 76%);
  box-shadow: 0 0 7px #fff, 0 0 25px var(--gold);
}
.orbit::before { left: 16%; top: 7%; }
.orbit::after { right: 7%; bottom: 20%; }
.orbit-one { width: 72%; aspect-ratio: 1; }
.orbit-two { width: 93%; aspect-ratio: 1; animation-direction: reverse; animation-duration: 34s; }
.orbit-two::before {
  background: radial-gradient(circle at 35% 30%, #f2ffd1 0 10%, #78a936 24%, #183f20 76%);
  box-shadow: 0 0 7px #fff, 0 0 25px #75ba53;
}
.orbit-two::after {
  background: radial-gradient(circle at 35% 30%, #fff 0 10%, #ccd6e5 24%, #596579 76%);
  box-shadow: 0 0 7px #fff, 0 0 25px #a8c5ed;
}
.network-copy {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(38px, 5vw, 80px);
  padding-right: clamp(30px, 6vw, 90px);
  background: linear-gradient(90deg, rgba(6, 20, 45, .44), rgba(6, 20, 45, .88));
  backdrop-filter: blur(2px);
}
.section-tag.light { color: rgba(255, 255, 255, .5); }
.section-tag.light span { color: var(--gold); border-color: rgba(255, 255, 255, .2); }
.network h2 { margin-top: 46px; font-size: clamp(48px, 4.5vw, 72px); }
.network-copy > p {
  max-width: 540px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.75;
}
.network-line { display: flex; align-items: center; max-width: 480px; margin-top: 48px; }
.network-line span { flex: 1; height: 1px; background: rgba(255, 255, 255, .2); }
.network-line i { width: 10px; height: 10px; border: 2px solid var(--gold); transform: rotate(45deg); }
.network-copy .network-note { margin-top: 18px; color: var(--gold-light); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }

.priorities { background: var(--white); }
.priorities-heading {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 60px;
  align-items: end;
  margin-top: 50px;
  padding-bottom: 70px;
}
.priorities h2 { font-size: clamp(56px, 6vw, 90px); }
.priorities-heading > p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.priority-list { border-top: 1px solid var(--line); }
.priority {
  display: grid;
  grid-template-columns: 70px 110px 1fr;
  align-items: center;
  min-height: 200px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s ease;
}
.priority:hover { padding: 0 24px; background: var(--paper); }
.priority-number { align-self: start; padding-top: 32px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.priority-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.priority-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.priority h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(30px, 3vw, 44px); font-weight: 400; }
.priority p { max-width: 660px; margin: 13px 0 0; color: var(--muted); line-height: 1.65; }

.manifesto {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  min-height: 650px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5,17,39,.94), rgba(8,29,61,.87)),
    url("assets/scrypto-assemble.webp") center 42% / cover fixed;
}
.manifesto-crest {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
  padding: 70px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .15);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .35));
  background: radial-gradient(circle, rgba(244, 183, 53, .13), transparent 61%);
}
.shield-piece {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(108%, 680px);
  height: auto;
  opacity: 0;
  transition:
    opacity .22s ease,
    transform 1.25s cubic-bezier(.16, .88, .18, 1.08);
  will-change: transform, opacity;
}
.shield-final {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(108%, 680px);
  height: auto;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease 1.65s;
}
.assembly-axis {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  opacity: 0;
  border-color: rgba(244, 183, 53, .68);
  border-style: dashed;
  pointer-events: none;
}
.assembly-axis-horizontal {
  width: 92%;
  height: 1px;
  border-width: 1px 0 0;
  transform: translate(-50%, -50%);
}
.assembly-axis-vertical {
  width: 1px;
  height: 92%;
  border-width: 0 0 0 1px;
  transform: translate(-50%, -50%);
}
.shield-shell-left {
  clip-path: polygon(8% 13%, 51% 13%, 51% 80%, 8% 74%);
  transform: translate(calc(-50% - 155px), -50%) rotate(-8deg);
}
.shield-shell-right {
  clip-path: polygon(49% 13%, 92% 13%, 92% 74%, 49% 80%);
  transform: translate(calc(-50% + 155px), -50%) rotate(8deg);
}
.shield-pick-left {
  clip-path: polygon(0 0, 51% 0, 51% 36%, 0 36%);
  transform: translate(calc(-50% - 190px), calc(-50% - 125px)) rotate(-24deg);
}
.shield-pick-right {
  clip-path: polygon(49% 0, 100% 0, 100% 36%, 49% 36%);
  transform: translate(calc(-50% + 190px), calc(-50% - 125px)) rotate(24deg);
}
.shield-core {
  clip-path: circle(18% at 50% 51%);
  transform: translate(-50%, -50%) scale(.08) rotate(180deg);
}
.shield-banner {
  clip-path: polygon(3% 68%, 97% 68%, 97% 100%, 3% 100%);
  transform: translate(-50%, calc(-50% + 175px)) scale(.88);
}
.shield-build.visible .shield-piece {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}
.shield-build.visible .shield-final { opacity: 1; }
.shield-build.visible .assembly-axis { animation: assembly-guide 1.75s ease both; }
.shield-build.visible .shield-shell-left { transition-delay: .05s; }
.shield-build.visible .shield-shell-right { transition-delay: .12s; }
.shield-build.visible .shield-pick-left { transition-delay: .32s; }
.shield-build.visible .shield-pick-right { transition-delay: .39s; }
.shield-build.visible .shield-core { transition-delay: .62s; }
.shield-build.visible .shield-banner { transition-delay: .78s; }
.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px);
}
.manifesto blockquote {
  max-width: 760px;
  margin: 20px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.join {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--gold);
  overflow: hidden;
}
.join-inner { position: relative; z-index: 2; max-width: 920px; }
.join .eyebrow { justify-content: center; color: var(--ink); }
.join h2 { font-size: clamp(68px, 8vw, 116px); }
.join h2 em { color: var(--white); text-shadow: 2px 3px 0 var(--ink); }
.join p:not(.eyebrow) { max-width: 660px; margin: 30px auto 0; font-size: 18px; line-height: 1.7; }
.button-dark { margin-top: 38px; color: var(--white); background: var(--navy); }
.button-dark:hover, .button-dark:focus-visible { color: var(--navy); background: var(--white); }
.join-rings { position: absolute; inset: 0; display: grid; place-items: center; opacity: .22; }
.join-rings i { position: absolute; width: 54vw; min-width: 700px; aspect-ratio: 1; border: 1px solid var(--navy); border-radius: 50%; }
.join-rings i:nth-child(2) { width: 71vw; }
.join-rings i:nth-child(3) { width: 88vw; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 48px max(6vw, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: #030b1b;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand strong { display: block; font-family: Georgia, serif; font-size: 21px; }
.footer-brand p, .footer-meta p { margin: 5px 0 0; color: rgba(255, 255, 255, .48); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.footer-meta { text-align: right; }
.footer-meta p:first-child { color: var(--gold); font-weight: 900; }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover, .footer-meta a:focus-visible { text-decoration: underline; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal { opacity: 1; transform: none; }
@keyframes hero-settle { from { opacity: .5; transform: scale(1.1); } to { opacity: 1; transform: scale(1.025); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes assembly-guide {
  0% { opacity: 0; }
  14% { opacity: .72; }
  72% { opacity: .38; }
  100% { opacity: 0; }
}

@media (max-width: 980px) {
  :root { --header-h: 74px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .3);
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .7, .2, 1);
  }
  .site-nav.open { transform: none; }
  .site-nav a { font-family: Georgia, serif; font-size: 34px; font-weight: 400; letter-spacing: 0; }
  .site-nav .nav-cta { font-family: inherit; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
  .hero { min-height: 720px; }
  .hero-art { background-position: 58% 45%; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,12,28,.96), rgba(3,12,28,.52)), linear-gradient(0deg, rgba(3,12,28,.9), transparent 42%); }
  .statement { grid-template-columns: 1fr; }
  .network { grid-template-columns: 1fr; }
  .network {
    background:
      linear-gradient(0deg, #06142d 0%, rgba(6, 20, 45, .12) 27%, rgba(6, 20, 45, .06) 72%, #06142d 100%),
      url("assets/scrypto-tree-v1.webp") center top / 100% auto no-repeat,
      #06142d;
  }
  .network::before {
    background: linear-gradient(0deg, #06142d 0%, transparent 42%, transparent 78%, rgba(6, 20, 45, .38) 100%);
  }
  .network-visual { min-height: 580px; }
  .network-copy { padding: 90px 8vw; background: rgba(6, 20, 45, .78); }
  .priorities-heading { grid-template-columns: 1fr; gap: 24px; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-crest { padding: 70px 20%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
}

@media (max-width: 650px) {
  .site-header { padding: 0 20px; }
  .brand-copy { display: none; }
  .hero { height: 100svh; min-height: 680px; align-items: flex-end; }
  .hero-art { background-position: 60% center; }
  .hero-content { width: auto; margin: 0; padding: 0 22px 110px; }
  .hero h1 { font-size: clamp(52px, 15vw, 72px); }
  .hero-lede { font-size: 16px; line-height: 1.55; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 28px; }
  .scroll-cue { display: none; }
  .section-pad { padding: 80px 22px; }
  .statement-body { grid-template-columns: 1fr; margin-top: 40px; }
  .network-visual { min-height: 440px; }
  .network-copy { padding: 80px 22px; }
  .priority { grid-template-columns: 42px 1fr; gap: 15px; padding: 32px 0; }
  .priority:hover { padding: 32px 10px; }
  .priority-number { grid-row: 1 / 3; }
  .priority-icon { width: 56px; height: 56px; }
  .priority > div:last-child { grid-column: 2; }
  .manifesto-crest { padding: 70px 12%; }
  .manifesto-copy { padding: 80px 22px; }
  .join { min-height: 620px; }
  .join-rings i { min-width: 500px; }
  footer { flex-direction: column; align-items: flex-start; padding: 42px 22px; }
  .footer-meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .manifesto { background-attachment: scroll; }
  .shield-piece { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0); }
  .shield-final { opacity: 1; }
}
