:root {
  --main-bg: #101012;
  --glass: rgba(38, 39, 47, 0.15);
  --glass-border: 1.2px solid #20202834;
  --accent: #226bdf;
  --accent-strong: #1650af;
  --radius: 14px;
  --font-main: "Inter", Arial, sans-serif;
  --footer-bg: #0f1013;
  --footer-text: #eceef5;
  --muted: #bdbdbd;
  --card-bg: linear-gradient(180deg, #17171b, #1d1d22);
  --glass-soft: rgba(255, 255, 255, 0.02);
  --x-color: #000000;
  --gh-color: #181717;
  --ig-color: #e1306c;
  --mail-color: #c71610;
  --steam-color: #171a21;
}
/* Base + layout */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--main-bg);
  color: var(--footer-text);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1 0 auto;
}
a {
  text-decoration: none;
}

/* Utility */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
.navbar-pro.glassy-navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(98vw, 1040px);
  margin-top: 18px;
  z-index: 2100;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.3rem;
  border-radius: 16px;
  background: var(--glass);
  border: var(--glass-border);
  box-shadow: 0 4px 18px #14162a48;
  backdrop-filter: blur(14px) saturate(1.09);
}
.nav-logo-area {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-logo-img {
  width: 44px;
}
.nav-title {
  font-weight: 900;
  font-size: 1rem;
}
.navbar-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-link {
  color: #e2e2e7;
  font-weight: 700;
  padding: 9px 3px;
  position: relative;
  border-radius: 6px;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 4.5px;
  height: 1.5px;
  background: #fff;
  opacity: 0.18;
  transform: scaleX(0);
  transition:
    transform 0.18s,
    opacity 0.15s;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 0.75;
}

/* MOBILE NAV attached to top on small screens */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: #eaeaf0;
  cursor: pointer;
}
@media (max-width: 900px) {
  .navbar-pro.glassy-navbar {
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding-left: 14px;
    padding-right: 14px;
    height: 56px;
  }
  .navbar-links {
    display: none;
  }
  .nav-burger {
    display: block;
  }
}

/* HERO */
.hero-section {
  min-height: 100vh;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.53);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(12, 13, 16, 0.22) 45%,
    rgba(8, 8, 10, 0.98) 99%
  );
}
.hero-content {
  position: absolute;
  bottom: 23vh;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  max-width: 720px;
  margin: auto;
  padding: 0 3vw;
}
.hero-title {
  font-size: clamp(2.2rem, 8vw, 4.22rem);
  margin: 0 0 8px;
  color: #fff;
}
.hero-lead {
  color: var(--muted);
  margin: 0;
}

/* hero emblem */
.hero-emblem {
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  pointer-events: none;
}
.emblem-svg {
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
}
.emblem-core {
  animation: emblem-pulse 2.6s ease-in-out infinite;
}
.ring {
  stroke-dasharray: 188;
  stroke-dashoffset: 188;
  animation: ring-draw 2.8s ease forwards;
}
.ring-2 {
  animation-delay: 0.22s;
}
.spark {
  opacity: 0;
  animation: spark-fade 2.2s linear infinite;
}
@keyframes emblem-pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(0.96);
    opacity: 0.92;
  }
}
@keyframes ring-draw {
  0% {
    stroke-dashoffset: 188;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes spark-fade {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* chevron animation */
.hero-chevron {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  animation: chev-bob 1.2s infinite alternate;
}
.hero-chevron .hero-chevron-polyline {
  stroke: #eceef5;
}
@keyframes chev-bob {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(10px);
  }
}

/* SECTIONS */
.section {
  max-width: 980px;
  margin: 0 auto 60px;
  padding: 52px 20px 18px;
}
.section h2 {
  text-align: center;
  margin-bottom: 28px;
  font-weight: 900;
  color: #fff;
}

/* CARDS */
.cards-flex {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.modern-card {
  flex: 1 1 220px;
  max-width: 300px;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.modern-card .card-title-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(34, 107, 223, 0.18),
    rgba(22, 80, 175, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 6px 18px rgba(22, 30, 60, 0.45);
}
.icon-emoji {
  font-size: 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}
.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
}

/* NEW: Game cards (redesign completo) */
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-top: -6px;
  margin-bottom: 18px;
}
.game-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 10px;
}
.game-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
    box-shadow 0.3s;
}
.game-card:focus {
  outline: 3px solid rgba(34, 107, 223, 0.14);
}
.game-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.7);
}
.game-card-media {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(0.95) contrast(1.02);
  transform-origin: center;
}
.game-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.game-card-badges {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.badge {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
}
.badge.ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.game-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}
.game-card-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.game-card-features {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.game-card-features li {
  margin-bottom: 6px;
}
.game-card-stats {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 6px;
}
.game-card-stats .stat {
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.game-card-cta {
  margin-top: 6px;
}
.game-card-cta .button {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

/* subtle media hover zoom */
.game-card:hover .game-card-media {
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.2, 1);
}

@media (max-width: 1100px) {
  .game-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .game-cards-grid {
    grid-template-columns: 1fr;
  }
  .game-card-media {
    height: 180px;
  }
}
.card-slice {
  width: 6px;
  height: 1.6em;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  border-radius: 2px;
}
.card-title {
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.card-summary {
  color: var(--muted);
  margin: 0.6rem 0;
}

.card-meta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}
.card-meta li {
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

/* VISION - modernized */
.vision-modern {
  padding-top: 36px;
  padding-bottom: 36px;
}
.vision-header {
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.vision-header-ico {
  margin-bottom: 6px;
}
.vision-header h2 {
  margin: 0 0 8px 0;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  font-weight: 900;
  color: #fff;
}
.vision-lead {
  color: var(--muted);
  font-size: 1.17rem;
  line-height: 1.45;
  margin-bottom: 0;
  max-width: 650px;
}

/* modern cards grid */
.vision-modern-cards-grid {
  width: 100%;
  max-width: 950px;
  margin: 0 auto 28px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) {
  .vision-modern-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .vision-modern-cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.vision-card {
  background: rgba(255, 255, 255, 0.022);
  border-radius: 12px;
  border-left: 3px solid rgba(34, 107, 223, 0.11);
  padding: 28px 20px 22px 18px;
  box-shadow: 0 2px 13px 2px rgba(0, 0, 0, 0.12);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.vision-card-icon {
  font-size: 2.13rem;
  margin-bottom: 9px;
  filter: drop-shadow(0 2px 8px #17182744);
}
.vision-emoji {
  display: inline-block;
  font-size: 1.9rem;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
}
.vision-card h3 {
  font-size: 1.11rem;
  margin: 0 0 7px 0;
  font-weight: 800;
  color: #fff;
}
.vision-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.98rem;
}
.vision-cta {
  margin-top: 19px;
  text-align: center;
  width: 100%;
}
.vision-cta .btn-ghost {
  cursor: pointer;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.vision-cta .btn-ghost:hover,
.vision-cta .btn-ghost:focus {
  border-color: var(--footer-text);
  color: var(--footer-text);
}

/* NEWS */
.news-cards {
  width: min(1100px, 100%);
  margin: 0 auto;
}
.news-carousel {
  --gap: 18px;
  position: relative;
  width: 100%;
  padding: 8px 58px 44px;
  outline: none;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
}
.carousel-track {
  display: flex;
  column-gap: var(--gap);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
  padding: 2px;
}
.carousel-item {
  flex: 0 0 calc((100% - (2 * var(--gap))) / 3);
  scroll-snap-align: start;
}
.carousel-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%) scale(1);
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 40;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
  font-size: 1.45rem;
}
.carousel-btn:hover {
  background: rgba(22, 80, 175, 0.78);
  transform: translateY(-50%) scale(1.04);
}
.carousel-btn:focus {
  outline: 3px solid rgba(34, 107, 223, 0.22);
}
.carousel-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.98);
}
.carousel-btn.prev {
  left: 0;
}
.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.carousel-dot.active {
  width: 24px;
  background: var(--accent);
}

.news-card {
  background: linear-gradient(180deg, #1f1f22, #222227);
  border-radius: 14px;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
}

.news-media {
  width: 100%;
  aspect-ratio: 16/9;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75) saturate(1.05);
}

.news-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.32;
}

.news-card p {
  margin: 0;
  color: #d8d8df;
  line-height: 1.45;
}

.news-date {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-empty {
  width: min(620px, 100%);
  margin: 2px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 22px 20px;
  text-align: center;
}

.news-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.news-empty h3 {
  margin: 0 0 8px;
}

.news-empty p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1099px) {
  .carousel-item {
    flex: 0 0 calc((100% - var(--gap)) / 2);
  }
}

@media (max-width: 759px) {
  .news-carousel {
    padding: 6px 0 40px;
  }
  .carousel-item {
    flex: 0 0 100%;
  }
  .carousel-btn {
    display: none;
  }
}

/* DOWNLOAD */
.download-minimal-final {
  display: flex;
  justify-content: center;
  padding: 42px 18px;
}
.download-minimal-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(820px, 96%);
  justify-content: space-between;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
}
.download-left {
  max-width: 66%;
}
.download-badge-label {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.download-badge-platform {
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* RESTORED fancy button styling (keeps original markup behavior) */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  /* background-color: var(--clr); */
  background-color: var(--footer-text);
  color: var(--footer-bg);
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: var(--footer-bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: var(--footer-bg);
  /* background-color: #003489; */
  color: var(--footer-text);
}

.button:hover .button__icon-wrapper {
  color: var(--footer-bg);
  /* color: #003489; */
  background-color: var(--footer-text);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.button .sparkle {
  width: 1.75rem;
  z-index: 2;
}
.button .text_button {
  position: relative;
  z-index: 2;
  background-image: linear-gradient(90deg, #fff, #e6e6e6);
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* MOBILE MENU + overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
  z-index: 2200;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -120%);
  top: 56px;
  width: min(98vw, 1040px);
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.26s,
    opacity 0.22s;
  z-index: 2300;
  opacity: 0;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}
.mobile-menu.open {
  transform: translate(-50%, 0%);
  opacity: 1;
}
.mobile-menu-inner {
  background: linear-gradient(180deg, #0f1013, #151518);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 56px - 24px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.03);
}
.mobile-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* SOCIAL ICONS */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.78;
  transition: all 0.14s;
}
.social-link.x:hover {
  opacity: 1;
}
.social-link.github:hover {
  opacity: 1;
}
.social-link.instagram:hover {
  color: var(--ig-color);
  opacity: 1;
}
.social-link.mail:hover {
  color: var(--mail-color);
  opacity: 1;
}

/* FOOTER */
.footer-clean {
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  margin-top: 64px;
  font-family: var(--font-main);
  flex-shrink: 0;
}
.footer-clean-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.footer-links {
  text-decoration: none;
  font: bold 0.95rem var(--font-main);
}
.footer-links a {
  color: var(--footer-text);
  margin-right: 18px;
  opacity: 0.78;
  transition: all 0.15s;
}
.footer-links a:hover {
  opacity: 1;
}
.footer-clean-bottom {
  max-width: 1200px;
  margin: 12px auto 18px auto;
  padding-top: 12px;
  text-align: center;
  font-size: 0.94rem;
  color: #cfcfd6;
  opacity: 0.78;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}
.brand-name {
  font-weight: 750;
  font-size: 1.1rem;
  color: #fff;
}
.brand-sub {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Responsive tweaks */
@media (max-width: 880px) {
  .vision-grid {
    grid-template-columns: 1fr;
  }
  .footer-clean-inner {
    padding: 18px;
    gap: 12px;
  }
  .footer-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .footer-contact {
    order: 2;
    width: 100%;
    text-align: center;
  }
  .brand-inline {
    order: 1;
    width: 100%;
    justify-content: center;
  }
}
