:root {
  --bg: #080b13;
  --bg-soft: #0d1220;
  --surface: #111827;
  --surface-2: #151d30;
  --surface-light: #f4f6fb;
  --ink: #0d1321;
  --text: #f7f8fb;
  --muted: #a9b0c0;
  --muted-dark: #5f6879;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(11, 17, 30, 0.12);
  --accent: #ff4f74;
  --accent-2: #8e62ff;
  --accent-3: #4bd6c4;
  --warning: #ffbe5c;
  --success: #56d69b;
  --danger: #ff7591;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 22px 55px rgba(13, 19, 33, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 8px;
  right: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(8, 11, 19, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 11, 19, 0.9);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
  flex: 0 0 auto;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 79, 116, 0.18), rgba(142, 98, 255, 0.12));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .brand-mark-line {
  stroke: #fff;
  stroke-width: 1.8;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.04em;
  font-size: 17px;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy span {
  color: var(--accent);
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-inline: auto;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: #c8ceda;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  width: 100%;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible,
.menu-button:focus-visible,
.password-toggle:focus-visible,
.checksum-box button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 79, 116, 0.38);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #ff7b5f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 79, 116, 0.27);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(255, 79, 116, 0.38);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 14px;
}

.button-ghost {
  color: #d7dbe5;
  background: transparent;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 11, 19, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  padding-top: calc(var(--header-height) + 72px);
  background:
    radial-gradient(circle at 77% 24%, rgba(142, 98, 255, 0.15), transparent 28%),
    radial-gradient(circle at 25% 25%, rgba(255, 79, 116, 0.11), transparent 24%),
    linear-gradient(180deg, #080b13 0%, #0a0f1c 70%, #0e1422 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
}

.hero-glow-one {
  width: 380px;
  height: 380px;
  right: -160px;
  top: 190px;
  background: var(--accent);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: 8%;
  top: 80px;
  background: var(--accent-2);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 50px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-bottom: 80px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 79, 116, 0.12);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 79, 116, 0.35);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  margin: 24px 0 22px;
  max-width: 640px;
  font-size: clamp(48px, 5.3vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hero h1 span {
  background: linear-gradient(90deg, #fff 0%, #ff99ad 48%, #b69bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: #b9c0ce;
  font-size: 19px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: #9da6b6;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-meta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--accent-3);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  direction: ltr;
  perspective: 1200px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 570px;
  height: 570px;
  top: 5px;
  left: 30px;
}

.orbit-two {
  width: 420px;
  height: 420px;
  top: 80px;
  left: 105px;
  border-color: rgba(255, 79, 116, 0.09);
}

.operator-window {
  position: absolute;
  top: 92px;
  left: 0;
  z-index: 4;
  width: min(100%, 600px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #111725;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-5deg) rotateX(2deg);
}

.window-bar {
  height: 46px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #171e2e;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #414b5f;
}

.window-dots i:first-child { background: #ff697e; }
.window-dots i:nth-child(2) { background: #f8bd5c; }
.window-dots i:nth-child(3) { background: #51cf91; }

.window-title {
  color: #8893a8;
  font-size: 10px;
  font-weight: 700;
}

.live-badge {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ff8099;
  font-size: 9px;
  font-weight: 900;
}

.live-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.operator-body {
  height: 350px;
  display: grid;
  grid-template-columns: 160px 1fr;
}

.show-list {
  padding: 17px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: #0e1421;
}

.show-list-title {
  margin: 0 7px 12px;
  color: #68738a;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.song-item {
  height: 47px;
  display: grid;
  grid-template-columns: 25px 1fr 16px;
  align-items: center;
  gap: 4px;
  margin-bottom: 7px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #7e899e;
  font-size: 9px;
}

.song-item span {
  color: #4f5a70;
  font-size: 8px;
}

.song-item b {
  overflow: hidden;
  color: #b1b9c8;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.song-item i {
  color: var(--accent-3);
  font-style: normal;
}

.song-item.active {
  border-color: rgba(255, 79, 116, 0.34);
  background: linear-gradient(90deg, rgba(255, 79, 116, 0.15), rgba(255, 79, 116, 0.04));
}

.song-item.active b,
.song-item.active i {
  color: #fff;
}

.song-item.complete {
  opacity: 0.64;
}

.operator-main {
  position: relative;
  padding: 22px 22px 15px;
}

.operator-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.operator-status span,
.operator-status em {
  color: #6f7b91;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.operator-status b {
  color: #fff;
  font-size: 13px;
}

.operator-status em {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(142, 98, 255, 0.14);
  color: #bba5ff;
}

.lyrics-stack {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  text-align: center;
  direction: rtl;
}

.lyrics-stack p {
  margin: 0;
  color: #626e84;
  font-size: 14px;
  font-weight: 700;
}

.lyrics-stack .current-line {
  padding: 13px 10px;
  border: 1px solid rgba(255, 79, 116, 0.25);
  border-radius: 10px;
  background: rgba(255, 79, 116, 0.08);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 0 30px rgba(255, 79, 116, 0.08);
}

.operator-controls {
  position: absolute;
  right: 22px;
  bottom: 16px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.operator-controls button {
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  padding: 0 9px;
  background: #1a2234;
  color: #8792a6;
  font-size: 7px;
  font-weight: 900;
  pointer-events: none;
}

.operator-controls .take {
  border-color: rgba(255, 79, 116, 0.3);
  background: rgba(255, 79, 116, 0.14);
  color: #ff9cb0;
}

.operator-controls .progress {
  position: relative;
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: #242d40;
}

.operator-controls .progress span {
  display: block;
  width: 64%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.stage-display {
  position: absolute;
  z-index: 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #050608;
  box-shadow: 0 27px 55px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.08);
  direction: rtl;
}

.stage-display-one {
  right: -20px;
  bottom: 46px;
  width: 285px;
  height: 172px;
  border-radius: 17px;
  transform: rotateY(6deg) rotateZ(-1deg);
}

.stage-display-two {
  left: 30px;
  top: 18px;
  width: 190px;
  height: 112px;
  border-radius: 12px;
  opacity: 0.75;
  transform: rotateZ(2deg);
}

.display-label {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #4a5060;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.stage-display p {
  position: absolute;
  inset: 50% 14px auto;
  margin: 0;
  color: #79808d;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  transform: translateY(-45%);
}

.stage-display p strong {
  color: #fff;
  font-size: 23px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.18);
}

.stage-display-two p {
  font-size: 9px;
}

.stage-display-two p strong {
  font-size: 14px;
}

.display-progress {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: #1f2229;
}

.display-progress i {
  display: block;
  width: 64%;
  height: 100%;
  background: var(--accent);
}

.signal-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 116, 0.65), transparent);
  transform-origin: left;
}

.signal-one {
  width: 230px;
  right: 180px;
  bottom: 154px;
  transform: rotate(10deg);
}

.signal-two {
  width: 180px;
  left: 160px;
  top: 116px;
  transform: rotate(27deg);
  opacity: 0.5;
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.hero-strip-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #798397;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-strip-inner i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  position: relative;
  padding: 120px 0;
}

.intro-section {
  background: var(--surface-light);
  color: var(--ink);
}

.intro-section h2,
.section-heading h2,
.workflow-copy h2,
.stage-copy h2,
.requirements-section h2,
.faq-heading h2 {
  margin: 14px 0 20px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.intro-section p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 20px;
  line-height: 1.9;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 52px;
}

.section-heading p {
  margin: 0 0 8px;
  color: #8993a6;
  font-size: 16px;
  line-height: 1.8;
}

.features-section {
  overflow: hidden;
  background: #0d1320;
}

.features-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: 10%;
  left: -300px;
  border-radius: 50%;
  background: rgba(142, 98, 255, 0.08);
  filter: blur(80px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 79, 116, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 79, 116, 0.025));
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr 210px;
  align-items: center;
  gap: 24px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(255, 79, 116, 0.18);
  border-radius: 15px;
  background: rgba(255, 79, 116, 0.08);
  color: var(--accent);
}

.feature-card-wide .feature-icon {
  margin: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-number {
  position: absolute;
  top: 28px;
  left: 28px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 900;
}

.feature-card-wide .feature-number {
  top: 25px;
}

.feature-card h3 {
  margin: 0 0 13px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: #939cad;
  font-size: 14px;
  line-height: 1.8;
}

.mini-stage-map {
  position: relative;
  width: 200px;
  height: 130px;
  direction: ltr;
}

.map-operator,
.map-screen {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #090c13;
  color: #677186;
  font-size: 8px;
  font-weight: 900;
}

.map-operator {
  left: 0;
  top: 44px;
  width: 72px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
}

.map-screen {
  right: 0;
  top: 12px;
  width: 82px;
  height: 52px;
  border-radius: 8px;
}

.map-screen.small {
  right: 12px;
  top: 76px;
  width: 63px;
  height: 40px;
  opacity: 0.7;
}

.mini-stage-map span {
  position: absolute;
  top: 65px;
  left: 69px;
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.workflow-section {
  background: var(--surface-light);
  color: var(--ink);
}

.workflow-grid,
.stage-grid,
.download-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 85px;
}

.workflow-copy > p,
.stage-copy > p,
.faq-heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.85;
}

.workflow-list {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
}

.workflow-list li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 79, 116, 0.2);
  border-radius: 13px;
  background: rgba(255, 79, 116, 0.07);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.workflow-list h3 {
  margin: 1px 0 4px;
  font-size: 17px;
}

.workflow-list p {
  margin: 0;
  color: #727c8d;
  font-size: 14px;
}

.workflow-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: 52px 52px 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 79, 116, 0.17), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(142, 98, 255, 0.18), transparent 37%),
    #0b101b;
  color: #fff;
  box-shadow: var(--shadow);
}

.panel-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.rehearsal-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #a1a9b8;
  font-size: 11px;
  font-weight: 900;
}

.rehearsal-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 16px rgba(255, 190, 92, 0.8);
}

.workflow-song-title {
  position: relative;
  margin-top: 28px;
  font-size: 27px;
  font-weight: 900;
}

.section-pill {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(142, 98, 255, 0.14);
  color: #c2afff;
  font-size: 10px;
  font-weight: 900;
}

.workflow-lyrics {
  position: relative;
  display: grid;
  gap: 23px;
  margin-top: 70px;
  text-align: center;
}

.workflow-lyrics p {
  margin: 0;
  color: #596477;
  font-size: 22px;
  font-weight: 800;
}

.workflow-lyrics .active {
  color: #fff;
  font-size: 35px;
  text-shadow: 0 0 35px rgba(255, 255, 255, 0.12);
}

.timeline {
  position: relative;
  height: 5px;
  margin-top: 62px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.timeline span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.timeline i {
  position: absolute;
  top: 50%;
  right: 68%;
  width: 13px;
  height: 13px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 79, 116, 0.7);
  transform: translate(50%, -50%);
}

.workflow-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.workflow-stats div {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.workflow-stats small {
  color: #697488;
  font-size: 9px;
  font-weight: 800;
}

.workflow-stats b {
  font-size: 12px;
}

.stage-section {
  overflow: hidden;
  background: #0b101b;
}

.stage-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -260px;
  bottom: -250px;
  border-radius: 50%;
  background: rgba(255, 79, 116, 0.11);
  filter: blur(85px);
}

.stage-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-right: 29px;
  color: #b9c0cd;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(75, 214, 196, 0.12);
  color: var(--accent-3);
  font-size: 11px;
}

.stage-demo {
  position: relative;
  min-height: 460px;
  perspective: 1100px;
}

.stage-demo-screen {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  padding: 40px;
  border: 8px solid #171c26;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.035), transparent 35%),
    #020304;
  box-shadow: 0 40px 75px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(4deg) rotateX(1deg);
}

.stage-demo-label {
  color: #292e38;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.stage-demo-lines {
  display: grid;
  gap: 25px;
  margin-top: 74px;
  text-align: center;
}

.stage-demo-lines p {
  margin: 0;
  color: #555b66;
  font-size: 20px;
  font-weight: 800;
}

.stage-demo-lines .focus {
  color: #fff;
  font-size: 34px;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.stage-demo-next {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  color: #333943;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.stage-demo-stand {
  position: absolute;
  right: 50%;
  bottom: 5px;
  width: 160px;
  height: 38px;
  border-radius: 50%;
  background: #121721;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.45);
  transform: translateX(50%);
}

.stage-demo-stand::before {
  content: "";
  position: absolute;
  bottom: 17px;
  left: 50%;
  width: 20px;
  height: 70px;
  border-radius: 7px;
  background: linear-gradient(90deg, #131824, #242b38, #131824);
  transform: translateX(-50%);
}

.download-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(142, 98, 255, 0.17), transparent 30%),
    linear-gradient(135deg, #17112a 0%, #101524 48%, #0a0e18 100%);
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.download-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -260px;
  bottom: -260px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(90px);
  opacity: 0.12;
}

.download-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr 0.82fr;
}

.download-copy h2 {
  margin: 13px 0 18px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.download-copy > p {
  max-width: 610px;
  margin: 0;
  color: #b0b7c7;
  font-size: 17px;
  line-height: 1.85;
}

.section-kicker.light {
  color: #c3b0ff;
}

.release-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.release-details div {
  display: grid;
  gap: 4px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.release-details small {
  color: #747f94;
  font-size: 10px;
  font-weight: 800;
}

.release-details strong {
  font-size: 13px;
}

.checksum-box {
  margin-top: 18px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(4, 6, 11, 0.35);
}

.checksum-box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.checksum-box span {
  color: #737e91;
  font-size: 10px;
  font-weight: 900;
}

.checksum-box button {
  border: 0;
  padding: 3px 6px;
  background: transparent;
  color: #a99aff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.checksum-box code {
  display: block;
  overflow-wrap: anywhere;
  color: #aeb7c7;
  direction: ltr;
  font-family: Consolas, Monaco, monospace;
  font-size: 11px;
  line-height: 1.7;
  text-align: left;
}

.download-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.download-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #ff8c62);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 79, 116, 0.28);
}

.download-card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-card h3 {
  margin: 22px 0 8px;
  font-size: 25px;
}

.download-card > p {
  margin: 0;
  color: #aab2c1;
  font-size: 14px;
}

.download-form {
  margin-top: 28px;
}

.download-form label {
  display: block;
  margin-bottom: 8px;
  color: #cbd1dd;
  font-size: 12px;
  font-weight: 800;
}

.password-field {
  position: relative;
}

.password-field input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  padding: 0 16px 0 50px;
  background: rgba(4, 7, 13, 0.48);
  color: #fff;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.password-field input::placeholder {
  color: #667085;
}

.password-field input:focus {
  border-color: rgba(255, 79, 116, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 79, 116, 0.08);
}

.password-toggle {
  position: absolute;
  top: 50%;
  left: 9px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #747f92;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-toggle .eye-closed {
  display: none;
}

.password-toggle.is-visible .eye-open {
  display: none;
}

.password-toggle.is-visible .eye-closed {
  display: block;
}

.button-download {
  width: 100%;
  min-height: 55px;
  margin-top: 12px;
  background: #fff;
  color: #101522;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.button-download:hover {
  background: #f6f3ff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.button-download:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.button-loading {
  display: none;
  align-items: center;
  gap: 9px;
}

.button-loading i {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(13, 19, 33, 0.25);
  border-top-color: #0d1321;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.button-download.is-loading .button-label {
  display: none;
}

.button-download.is-loading .button-loading {
  display: inline-flex;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7e899b;
  font-size: 11px;
}

.privacy-note svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirements-section {
  background: var(--surface-light);
  color: var(--ink);
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.requirement {
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 19, 33, 0.05);
}

.requirement svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.requirement h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.requirement p {
  margin: 0;
  color: #697386;
  font-size: 14px;
  line-height: 1.75;
}

.smartscreen-note {
  margin: 24px 0 0;
  padding: 17px 20px;
  border-right: 3px solid var(--warning);
  border-radius: 10px;
  background: rgba(255, 190, 92, 0.09);
  color: #616b7a;
  font-size: 13px;
}

.smartscreen-note strong {
  color: #303745;
}

.faq-section {
  background: #0c111d;
}

.faq-grid {
  grid-template-columns: 0.6fr 1fr;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 0 24px;
  cursor: pointer;
  color: #eef1f6;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: #fff;
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: #919aab;
  font-size: 14px;
  line-height: 1.8;
}

.final-cta {
  padding: 90px 0;
  background: linear-gradient(130deg, #211333, #151b2d 58%, #111624);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-inner span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-cta-inner h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #070a11;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-brand .brand-mark svg {
  width: 27px;
  height: 27px;
}

.footer-inner > p {
  margin: 0;
  color: #70798a;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-inner small {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #586172;
  font-size: 11px;
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  max-width: 420px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-delay {
  transition-delay: 0.12s;
}

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

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

@media (max-width: 1100px) {
  .hero {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
  }

  .operator-window {
    width: 520px;
  }

  .stage-display-one {
    right: -10px;
    width: 240px;
  }

  .orbit-one {
    width: 500px;
    height: 500px;
  }

  .feature-card-wide {
    grid-template-columns: auto 1fr;
  }

  .mini-stage-map {
    display: none;
  }

  .workflow-grid,
  .stage-grid,
  .download-grid,
  .faq-grid {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 15px;
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-meta {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .operator-window {
    left: 50%;
    width: min(90vw, 580px);
    transform: translateX(-50%) rotateY(-3deg) rotateX(1deg);
  }

  .stage-display-one {
    right: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: span 2;
  }

  .workflow-grid,
  .stage-grid,
  .download-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .workflow-panel {
    max-width: 650px;
    width: 100%;
    margin-inline: auto;
  }

  .stage-copy {
    order: 1;
  }

  .stage-demo {
    order: 2;
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .download-card {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .faq-heading {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner > p {
    display: none;
  }
}

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

  .section {
    padding: 88px 0;
  }

  .brand-copy {
    font-size: 15px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .hero {
    padding-bottom: 95px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(43px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    justify-content: start;
    width: fit-content;
    margin-inline: auto;
    text-align: right;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 10px;
  }

  .operator-window {
    top: 62px;
    width: 540px;
    transform: translateX(-50%) scale(0.64);
    transform-origin: top center;
  }

  .stage-display-one {
    right: -10px;
    bottom: 10px;
    width: 220px;
    height: 135px;
  }

  .stage-display-one p {
    font-size: 12px;
  }

  .stage-display-one p strong {
    font-size: 18px;
  }

  .stage-display-two {
    left: -20px;
    top: 2px;
    width: 150px;
    height: 88px;
  }

  .orbit-one,
  .orbit-two,
  .signal-line {
    display: none;
  }

  .hero-strip-inner {
    min-height: 58px;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero-strip-inner span:nth-of-type(n+4),
  .hero-strip-inner i:nth-of-type(n+3) {
    display: none;
  }

  .intro-section h2,
  .section-heading h2,
  .workflow-copy h2,
  .stage-copy h2,
  .requirements-section h2,
  .faq-heading h2 {
    font-size: 38px;
  }

  .intro-section p {
    font-size: 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 34px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: span 1;
    min-height: auto;
    display: block;
    padding: 25px;
  }

  .feature-card-wide .feature-icon {
    margin-bottom: 38px;
  }

  .workflow-panel {
    min-height: 520px;
    padding: 35px 24px 30px;
  }

  .workflow-lyrics {
    margin-top: 60px;
  }

  .workflow-lyrics p {
    font-size: 17px;
  }

  .workflow-lyrics .active {
    font-size: 27px;
  }

  .workflow-stats div {
    padding: 10px;
  }

  .stage-demo {
    min-height: 345px;
  }

  .stage-demo-screen {
    min-height: 290px;
    padding: 28px 16px;
    border-width: 6px;
  }

  .stage-demo-lines {
    gap: 18px;
    margin-top: 55px;
  }

  .stage-demo-lines p {
    font-size: 15px;
  }

  .stage-demo-lines .focus {
    font-size: 24px;
  }

  .download-copy h2 {
    font-size: 42px;
  }

  .release-details {
    grid-template-columns: 1fr;
  }

  .release-details div {
    grid-template-columns: 70px 1fr;
    align-items: center;
  }

  .download-card {
    padding: 28px 22px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 66px;
    padding: 0 18px;
    font-size: 14px;
  }

  .faq-list details p {
    padding: 0 18px 20px;
  }

  .final-cta-inner {
    display: grid;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

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