:root {
  --black: #000000;
  --black-2: rgba(5, 5, 5, 0.62);
  --white: #f7f4ee;
  --dim: #c9c4b8;
  --gold: #e8c56a;
  --gold-2: #f6dc93;
  --line: rgba(232, 197, 106, 0.42);
  --font: "Outfit", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) #050505;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-2);
}

::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

::-webkit-scrollbar-corner {
  background: #000;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: var(--white);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.01em;
}

body {
  overflow-x: clip;
}

::selection {
  background: var(--gold);
  color: #000;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

#net {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 80;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #000;
  transition: opacity 0.9s var(--ease), visibility 0.9s var(--ease);
}

.preloader.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader .logo {
  width: 220px;
  height: auto;
  margin: 0 auto;
}

.preloader p {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.logo {
  display: block;
  width: 72px;
  height: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.brand .logo {
  width: 72px;
  height: auto;
}

main,
.nav,
.menu,
.site-foot {
  position: relative;
  z-index: 2;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  padding: 1.1rem 0;
  transition: background 0.4s var(--ease);
}

.nav.is-on {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand b {
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.links {
  display: flex;
  gap: 2.1rem;
}

.links a,
.ghost {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.links a:hover,
.ghost:hover {
  color: var(--gold-2);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: transparent;
  transition: 0.35s var(--ease);
}

.cta:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 24px rgba(232, 197, 106, 0.35);
}

.to-top {
  display: none;
  appearance: none;
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--gold);
  background: rgba(0, 0, 0, 0.86);
  color: var(--gold);
  cursor: pointer;
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), visibility 0.4s;
}

.to-top::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
  transform: translateY(3px) rotate(45deg);
  transition: border-color 0.35s var(--ease);
}

.to-top.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.to-top:hover {
  background: var(--gold);
  box-shadow: 0 0 22px rgba(232, 197, 106, 0.35);
}

.to-top:hover::before {
  border-color: #000;
}

@media (min-width: 768px) {
  .to-top {
    display: grid;
  }
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: none;
  position: relative;
}

.burger i {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--gold);
  top: 22px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), top 0.28s var(--ease);
}

.burger i:first-child {
  top: 17px;
}

.burger i:last-child {
  top: 27px;
}

.burger.is-open i:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.burger.is-open i:nth-child(2) {
  opacity: 0;
}

.burger.is-open i:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 75;
  background: #000;
  padding: 1.15rem 1.35rem 2rem;
  overflow: auto;
}

.menu.is-open {
  display: flex;
  flex-direction: column;
}

.menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3.2rem;
}

.menu-close {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: none;
  appearance: none;
  cursor: pointer;
  position: relative;
  flex: 0 0 auto;
}

.menu-close::before,
.menu-close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1.5px;
  background: var(--gold);
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.menu a {
  display: block;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7.5rem 1.25rem 0;
  z-index: 2;
}

.hero-spot {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  left: var(--x, 50%);
  top: var(--y, 42%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(232, 197, 106, 0.16), transparent 64%);
  pointer-events: none;
  transition: left 0.4s linear, top 0.4s linear;
}

.hero-box {
  padding-bottom: 6.5rem;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 1.5rem;
}

.orbit,
.vh-seal {
  display: none;
}

.kicker {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1 {
  margin: 0 auto;
  font-weight: 500;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: 22ch;
  color: #fff;
}

.lead {
  max-width: 32rem;
  margin: 1.2rem auto 2rem;
  color: #e6e1d6;
  font-size: 1.18rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  animation: hint 2.4s ease-in-out infinite;
  z-index: 3;
  cursor: pointer;
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  margin: 0.55rem auto 0;
  background: linear-gradient(var(--gold), transparent);
}

@keyframes hint {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

.section {
  padding: 7.2rem 0;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.42);
}

.section.alt {
  background: var(--black-2);
}

.center {
  text-align: center;
}

h2 {
  margin: 0 auto 1rem;
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 16ch;
  color: #fff;
}

h2.wide {
  max-width: none;
}

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 1.3rem auto 1.5rem;
  box-shadow: 0 0 12px rgba(232, 197, 106, 0.45);
}

.copy {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--dim);
  line-height: 1.8;
  font-size: 1.08rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 3.4rem;
  border: 1px solid var(--line);
}

.work {
  background: rgba(0, 0, 0, 0.88);
  padding: 2.5rem 2.1rem 2.3rem;
  min-height: 230px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.work:hover {
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px var(--gold);
}

.work span {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.work h3 {
  margin: 0 0 0.75rem;
  font-weight: 500;
  font-size: 1.28rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work p {
  margin: 0;
  color: var(--dim);
  line-height: 1.75;
  font-size: 1.02rem;
}

.faq-grid .work {
  min-height: 0;
}

.faq-grid h3 {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 1.14rem;
  line-height: 1.35;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.2rem;
  border-top: 1px solid var(--line);
}

.step {
  padding: 2rem 1.4rem 0;
  border-right: 1px solid var(--line);
  transition: background 0.35s;
}

.step:hover {
  background: rgba(232, 197, 106, 0.05);
}

.step:last-child {
  border-right: 0;
}

.step b {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.step h3 {
  margin: 0 0 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--dim);
  line-height: 1.7;
  font-size: 1rem;
}

.copy.start {
  margin: 1rem 0 1.4rem;
  text-align: left;
}

.api-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}

.panel {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.78);
  padding: 2rem 1.7rem 1.7rem;
}

.panel > span {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.panel h3 {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 1.1rem;
}

.checks {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.checks li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.25rem;
  color: var(--dim);
  line-height: 1.55;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
}

.checks code {
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--gold-2);
}

.more {
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 500;
}

.more:hover {
  color: #fff;
}

.code {
  margin: 0;
  padding: 1.4rem 1.5rem;
  background: #070707;
  border: 1px solid var(--line);
  color: #e8e4da;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre;
  min-width: 0;
  max-width: 100%;
}

.pick {
  position: relative;
}

.pick-btn,
.pick-list {
  display: none;
}

.pick.is-enhanced .pick-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pick.is-enhanced .pick-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: #fff;
  padding: 0.95rem 2rem 0.95rem 0;
  font-size: 1.05rem;
  position: relative;
}

.pick-btn::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
}

.pick.is-open .pick-btn {
  border-bottom-color: var(--gold);
}

.pick-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 12;
  display: none;
  background: #0a0a0a;
  border: 1px solid var(--gold);
  padding: 0.35rem 0;
}

.pick.is-open .pick-list {
  display: block;
}

.pick-list button {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: #f3efe6;
  padding: 0.78rem 1rem;
  font-size: 1rem;
}

.pick-list button:hover,
.pick-list button.is-on {
  background: rgba(232, 197, 106, 0.14);
  color: var(--gold-2);
}

.auth {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.25rem 3rem;
  position: relative;
  z-index: 2;
}

.auth-card {
  width: min(100%, 440px);
  text-align: center;
}

.auth-card .hero-logo {
  width: 148px;
  height: auto;
}

.auth-card h1 {
  margin-bottom: 0.4rem;
}

.auth-card .lead {
  margin-bottom: 1.4rem;
}

.lost-card {
  width: min(100%, 520px);
}

.lost-card h1 {
  margin: 0 auto 0.9rem;
}

.auth-card form {
  text-align: left;
}

.auth-note {
  margin-top: 1.4rem;
  color: var(--dim);
}

.auth-note a {
  color: var(--gold-2);
}

.form-wrap {
  width: 100%;
  max-width: 640px;
  margin: 2.8rem auto 0;
  min-width: 0;
}

.form-wrap form,
.form-wrap .pick {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  box-shadow: none;
  padding: 0.95rem 0;
  font-size: 1.05rem;
}

.form-control:focus,
.form-select:focus {
  border-bottom-color: var(--gold);
}

.form-select {
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 6px) 1.4rem, 100% 1.4rem;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-select option {
  background: #111;
}

.form-label {
  margin: 1.35rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  opacity: 0;
}

.note {
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 2.1rem 1.4rem 1.9rem;
  text-align: center;
}

.note .kicker {
  margin-bottom: 0.85rem;
}

.note p {
  margin: 0 auto;
  max-width: 36ch;
  color: var(--dim);
  line-height: 1.75;
  font-size: 1.05rem;
}

.err {
  color: #e3b6b6;
  text-align: center;
  margin-bottom: 1rem;
}

.site-foot {
  background: rgba(0, 0, 0, 0.78);
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 1.6rem;
}

.foot-mark {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
}

.foot-mark .logo {
  width: 88px;
  height: auto;
}

.foot-mark b {
  display: block;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.foot-mark span {
  display: block;
  margin-top: 0.25rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.foot-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.foot-line {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.25;
  max-width: 16ch;
  margin: 0 0 1.4rem;
}

.foot-links {
  display: grid;
  gap: 0.55rem;
}

.foot-links p {
  margin: 0 0 0.45rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.foot-links a {
  color: #eee;
  font-size: 1rem;
}

.foot-links a:hover {
  color: var(--gold-2);
}

.foot-cta {
  margin-top: 2.8rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.foot-cta p {
  margin: 0;
  font-size: 1.15rem;
  color: #eee;
}

.foot-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 1.4rem;
  color: var(--dim);
  font-size: 0.88rem;
}

.fade {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.95s var(--ease);
}

.fade.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 991.98px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .form-wrap {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .links,
  .nav-end .cta,
  .nav-end .ghost {
    display: none;
  }

  .nav-end .burger {
    display: block;
  }

  .split,
  .work-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0 1.6rem;
  }

  h1 {
    letter-spacing: 0.08em;
    max-width: 20ch;
  }

  h2,
  h2.wide {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0.04em;
    font-size: clamp(1.42rem, 6.4vw, 1.95rem);
  }

  .kicker {
    letter-spacing: 0.22em;
  }

  .copy,
  .copy.start {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .section .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .work,
  .panel {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .code {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    font-size: 0.72rem;
    padding: 1.15rem 1rem;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: hidden;
  }

  #api .api-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
  }

  #api .api-grid > .fade {
    text-align: left;
  }

  #api .copy.start {
    text-align: left;
  }

  #api .checks {
    text-align: left;
    width: 100%;
  }

  .hero-logo {
    width: 176px;
    height: auto;
  }

  .hero-box {
    padding-bottom: 5.5rem;
  }

  .scroll-hint {
    display: none;
  }

  .site-foot {
    padding: 3.2rem 0 1.5rem;
    text-align: center;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    justify-items: center;
  }

  .foot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .foot-mark {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
  }

  .foot-line {
    max-width: 14ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }

  .foot-nav {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .foot-links {
    padding: 1.45rem 0.75rem 1.5rem;
    gap: 0.7rem;
  }

  .foot-links:first-child {
    border-right: 1px solid var(--line);
  }

  .foot-links p {
    margin-bottom: 0.65rem;
  }

  .foot-cta {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    padding: 1.8rem 0 1.6rem;
    border-top: 0;
    gap: 1.3rem;
  }

  .foot-cta p {
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
  }

  .foot-base {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding-top: 1.2rem;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade {
    opacity: 1;
    transform: none;
  }
}
