:root {
  color-scheme: dark;
  --stage-width: 1920px;
  --stage-height: 1080px;
  --stage-scale: 1;
  --bg: #05070b;
  --bg-deep: #020409;
  --panel: rgba(8, 14, 23, 0.92);
  --panel-strong: rgba(6, 12, 20, 0.96);
  --line: rgba(95, 214, 255, 0.16);
  --line-strong: rgba(95, 214, 255, 0.42);
  --cyan: #40cfff;
  --cyan-bright: #75e8ff;
  --ice: #bceeff;
  --text: #f4f8fc;
  --muted: #8fa0b0;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --max: 1920px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 18% 12%, rgba(64, 207, 255, 0.12), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(63, 111, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #060a10 0%, #020409 100%);
}

body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  color: var(--text);
  font-family: "Bahnschrift", "Segoe UI", "Aptos", sans-serif;
  text-rendering: geometricPrecision;
  background:
    radial-gradient(circle at 78% 26%, rgba(64, 207, 255, 0.11), transparent 18%),
    radial-gradient(circle at 14% 80%, rgba(44, 121, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #070b11 0%, #04060a 100%);
  overflow: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.32;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 96%);
}

body::after {
  background:
    radial-gradient(circle at 18% 26%, rgba(64, 207, 255, 0.18), transparent 20%),
    radial-gradient(circle at 83% 28%, rgba(63, 111, 255, 0.18), transparent 24%),
    linear-gradient(120deg, transparent 57%, rgba(64, 207, 255, 0.04) 58%, transparent 61%);
  mix-blend-mode: screen;
  opacity: 0.8;
}

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

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

.page-shell {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  width: var(--stage-width);
  height: var(--stage-height);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  transform: translateX(-50%) scale(var(--stage-scale));
  transform-origin: top center;
}

.glass {
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.9), rgba(5, 10, 18, 0.95));
  border: 1px solid rgba(95, 214, 255, 0.15);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.topbar {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.72rem clamp(1rem, 1.8vw, 2rem) 0.62rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
}

.brand-mark {
  width: clamp(150px, 11vw, 212px);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.8rem, 1.35vw, 1.65rem);
  min-width: 0;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  color: rgba(244, 248, 252, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.73rem;
  padding: 0.3rem 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.site-nav a.active,
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.active::after {
  background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);
  box-shadow: 0 0 12px rgba(64, 207, 255, 0.75);
}

.topbar-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
}

.topbar-cta {
  padding: 0.78rem 1.15rem;
  border-color: rgba(64, 207, 255, 0.45);
  background: linear-gradient(180deg, rgba(64, 207, 255, 0.12), rgba(64, 207, 255, 0.04));
  color: var(--cyan-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(64, 207, 255, 0.08);
}

.button {
  padding: 0.92rem 1.35rem;
  font-weight: 700;
}

.button-primary {
  color: #03101a;
  background: linear-gradient(180deg, #86ecff 0%, #40cfff 45%, #2ba9ef 100%);
  box-shadow: 0 0 25px rgba(64, 207, 255, 0.34);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.topbar-cta:hover,
.topbar-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.landing {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 clamp(1rem, 1.8vw, 2rem) 0.5rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: 0.74rem;
  min-height: 0;
  overflow: hidden;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(26rem, 0.95fr) minmax(34rem, 1.05fr);
  align-items: stretch;
  gap: 1.05rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1.25rem 2rem 0.3rem 47%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 70% 20%, rgba(64, 207, 255, 0.12), transparent 24%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
    linear-gradient(90deg, transparent, rgba(64, 207, 255, 0.06), transparent);
  filter: blur(1px);
  pointer-events: none;
}

.hero-copy {
  padding: clamp(1.2rem, 2vw, 1.75rem) 0 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.8rem;
  color: rgba(72, 214, 255, 0.84);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.hero h1 {
  margin: 0;
  max-width: 12.2ch;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(4rem, 4.8vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
  font-style: normal;
}

.hero h1 span {
  color: #f4f8fc;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.hero h1 em {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(64, 207, 255, 0.4);
}

.hero-text {
  margin: 1rem 0 0;
  max-width: 31rem;
  color: rgba(238, 244, 250, 0.92);
  font-size: clamp(0.98rem, 1vw, 1.14rem);
  line-height: 1.46;
}

.hero-actions {
  display: flex;
  gap: 0.84rem;
  margin-top: 1.12rem;
}

.hero-preview {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0 0 1rem;
}

.preview-glow {
  position: absolute;
  inset: 1rem 1.15rem 0 0.25rem;
  border-radius: 38px;
  background:
    radial-gradient(circle at 26% 16%, rgba(64, 207, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 26%, rgba(45, 137, 255, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(64, 207, 255, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%);
  filter: blur(2px);
  opacity: 0.85;
}

.preview-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.72rem 0.8rem 0.76rem;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(9, 15, 24, 0.98), rgba(5, 10, 18, 0.95)),
    linear-gradient(120deg, rgba(64, 207, 255, 0.06), transparent 30%);
  border-color: rgba(64, 207, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(64, 207, 255, 0.08) inset,
    0 28px 60px rgba(0, 0, 0, 0.5),
    0 0 44px rgba(64, 207, 255, 0.12);
  transform: perspective(1800px) rotateY(-8deg) rotateZ(-0.45deg) translateY(-0.15rem);
  transform-origin: center;
}

.preview-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(64, 207, 255, 0.12);
  box-shadow: inset 0 0 36px rgba(64, 207, 255, 0.08);
  pointer-events: none;
}

.preview-frame::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 44%;
  height: 44%;
  background:
    linear-gradient(180deg, transparent, rgba(64, 207, 255, 0.08) 20%, transparent 72%),
    linear-gradient(130deg, transparent 0 20%, rgba(64, 207, 255, 0.08) 20% 24%, transparent 24% 100%);
  opacity: 0.55;
  pointer-events: none;
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.62rem;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 0.58rem;
}

.preview-brand img {
  width: 1.6rem;
  height: 1.6rem;
  object-fit: cover;
  border-radius: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-brand span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.preview-icons {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
}

.preview-icons span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.avatar {
  width: 1.35rem !important;
  height: 1.35rem !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18) 28%, transparent 29%),
    linear-gradient(180deg, #2a3544, #101824) !important;
}

.preview-body {
  min-height: 0;
  display: grid;
  grid-template-columns: 9.8rem minmax(0, 1fr);
  gap: 0.64rem;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.33rem;
  padding: 0.12rem 0 0.12rem 0.02rem;
}

.side-item {
  padding: 0.33rem 0.56rem;
  border-radius: 10px;
  color: rgba(226, 236, 245, 0.66);
  font-size: 0.62rem;
  border: 1px solid transparent;
  background: transparent;
}

.side-item.active {
  color: var(--cyan-bright);
  border-color: rgba(64, 207, 255, 0.15);
  background: rgba(64, 207, 255, 0.06);
}

.preview-main {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 0.55rem;
}

.preview-head,
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.preview-head strong {
  font-size: 0.88rem;
}

.preview-head span,
.panel-head span {
  color: var(--muted);
  font-size: 0.63rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.48rem;
}

.metric-card,
.panel,
.module-card,
.security-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 29, 0.94);
  box-shadow: inset 0 0 0 1px rgba(64, 207, 255, 0.04);
}

.metric-card {
  padding: 0.66rem 0.7rem 0.62rem;
}

.metric-card span,
.metric-card small {
  display: block;
  color: var(--muted);
  font-size: 0.58rem;
}

.metric-card strong {
  display: block;
  margin: 0.26rem 0 0.1rem;
  font-size: clamp(1.16rem, 1.18vw, 1.62rem);
  letter-spacing: -0.06em;
}

.preview-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.93fr;
  gap: 0.52rem;
}

.panel {
  padding: 0.62rem;
  min-height: 0;
}

.panel-head {
  margin-bottom: 0.52rem;
}

.panel-head strong {
  font-size: 0.8rem;
}

.donut-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.62rem;
  align-items: center;
}

.donut {
  position: relative;
  width: clamp(7.6rem, 8.8vw, 10.2rem);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 225deg, #7feaff 0 34%, #2f8eff 34% 68%, #f3b95e 68% 76%, #182433 76% 100%);
  box-shadow: 0 0 28px rgba(64, 207, 255, 0.18);
}

.donut::before {
  content: "";
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #0a121d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.donut-center {
  position: absolute;
  display: grid;
  place-items: center;
  width: 5.6rem;
  text-align: center;
}

.donut-center strong {
  font-size: clamp(1.03rem, 1.1vw, 1.45rem);
}

.donut-center span {
  color: var(--muted);
  font-size: 0.62rem;
}

.mini-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.mini-legend li {
  display: flex;
  align-items: center;
  gap: 0.44rem;
}

.mini-legend span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(64, 207, 255, 0.45);
}

.mini-legend li:nth-child(2) span {
  background: #2f8eff;
}

.mini-legend li:nth-child(3) span {
  background: #f3b95e;
}

.feed-list,
.task-list {
  display: grid;
  gap: 0.4rem;
}

.feed-list div,
.task-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.44rem;
  align-items: center;
  padding: 0.43rem 0.48rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-list i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(64, 207, 255, 0.65);
}

.feed-list span,
.task-list b {
  font-size: 0.67rem;
}

.feed-list em,
.task-list span {
  font-style: normal;
  color: var(--muted);
  font-size: 0.59rem;
}

.panel-tasks a {
  display: inline-block;
  margin-top: 0.44rem;
  color: var(--cyan-bright);
  font-size: 0.63rem;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  padding: 0.36rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(64, 207, 255, 0.34);
  background: rgba(4, 10, 18, 0.82);
  color: var(--cyan-bright);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(64, 207, 255, 0.18);
}

.chip-left {
  left: 0.7rem;
  bottom: 1.1rem;
}

.chip-right {
  right: 1.1rem;
  top: 0.8rem;
}

.modules-band {
  min-height: 0;
  padding: 0.86rem 0.95rem 0.78rem;
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(0, 2.18fr);
  gap: 0.84rem;
}

.band-intro {
  padding: 0.92rem 0.88rem 0.8rem;
}

.band-intro h2 {
  margin: 0;
  max-width: 10.6ch;
  font-family: "Bahnschrift Condensed", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(1.78rem, 2.24vw, 3.1rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.band-intro p {
  margin: 0.78rem 0 0;
  max-width: 29ch;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.compact {
  margin-top: 0.95rem;
  padding-inline: 1.02rem;
  padding-block: 0.82rem;
}

.module-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.48rem;
  min-height: 0;
}

.module-card {
  position: relative;
  padding: 0.68rem 0.68rem 0.62rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 0;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 4%, rgba(64, 207, 255, 0.08), transparent 32%);
  pointer-events: none;
}

.module-card h3 {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.38;
  min-height: 3.5em;
}

.module-card a {
  margin-top: auto;
  color: var(--cyan-bright);
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(64, 207, 255, 0.18);
  background: rgba(64, 207, 255, 0.05);
  position: relative;
  flex: 0 0 auto;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
}

.icon-qc::before {
  inset: 0.45rem 0.53rem 0.7rem;
  border: 2px solid #47f0a6;
  border-radius: 50% 50% 42% 42%;
}

.icon-survey::before {
  inset: 0.52rem;
  border: 2px solid var(--cyan);
  border-radius: 8px;
}

.icon-job::before {
  inset: 0.56rem;
  border: 2px solid #f3b95e;
  transform: rotate(45deg);
}

.icon-stock::before {
  left: 0.54rem;
  right: 0.54rem;
  top: 0.7rem;
  bottom: 0.42rem;
  border: 2px solid #8d6dff;
}

.icon-contracts::before {
  left: 0.58rem;
  top: 0.5rem;
  width: 0.95rem;
  height: 1.28rem;
  border: 2px solid #f5c75e;
  border-radius: 3px;
}

.icon-docs::before {
  left: 0.5rem;
  right: 0.5rem;
  top: 0.48rem;
  bottom: 0.44rem;
  border: 2px solid #61d5ff;
  border-radius: 6px;
}

.security-strip {
  min-height: 0;
  margin: 0 0 0.1rem;
  padding: 0.72rem 0.82rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.58rem;
}

.security-card {
  padding: 0.7rem 0.68rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.64rem;
  align-items: center;
}

.security-card strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.security-card p {
  margin: 0.16rem 0 0;
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.32;
}

.security-icon {
  width: 2.08rem;
  height: 2.08rem;
  border-radius: 0.72rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(64, 207, 255, 0.16);
  background: rgba(64, 207, 255, 0.05);
  color: var(--cyan-bright);
  box-shadow: inset 0 0 12px rgba(64, 207, 255, 0.08);
  position: relative;
}

.icon-lock::before {
  left: 0.67rem;
  right: 0.67rem;
  top: 0.9rem;
  bottom: 0.45rem;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.icon-lock::after {
  left: 0.88rem;
  right: 0.88rem;
  top: 0.42rem;
  height: 0.55rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 0.6rem 0.6rem 0 0;
}

.icon-cloud::before {
  left: 0.46rem;
  right: 0.46rem;
  bottom: 0.6rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.icon-cloud::after {
  left: 0.58rem;
  top: 0.64rem;
  width: 0.98rem;
  height: 0.58rem;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.icon-team::before {
  left: 0.4rem;
  top: 0.52rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0.52rem 0 0 currentColor,
    1.04rem 0 0 currentColor;
}

.icon-team::after {
  left: 0.33rem;
  right: 0.33rem;
  bottom: 0.45rem;
  height: 0.58rem;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.icon-chart::before {
  left: 0.45rem;
  bottom: 0.48rem;
  width: 0.24rem;
  height: 1rem;
  background: currentColor;
  box-shadow:
    0.34rem -0.2rem 0 currentColor,
    0.68rem -0.48rem 0 currentColor;
}

.icon-chart::after {
  left: 0.38rem;
  right: 0.38rem;
  top: 0.48rem;
  bottom: 0.38rem;
  border: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  transform: skewY(-18deg);
  border-radius: 2px;
}

.icon-brand {
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0.16rem clamp(1rem, 1.8vw, 2rem) 0.34rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 0.78rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.63rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-mark {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: cover;
  border-radius: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer strong {
  color: var(--text);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer p {
  margin: 0.08rem 0 0;
}

.footer-links,
.footer-note,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.footer-links {
  justify-content: center;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--text);
}

.footer-note span + span::before {
  content: "•";
  margin-right: 0.68rem;
  color: rgba(255, 255, 255, 0.16);
}

[data-nav] {
  transition: color 160ms ease, transform 160ms ease;
}
