/* ── Variables ── */
:root {
  --bg:         #060608;
  --bg-alt:     #0a0a0e;
  --surface:    #0f0f14;
  --surface-2:  #14141c;
  --border:     rgba(255, 255, 255, 0.07);
  --border-h:   rgba(255, 45, 45, 0.25);
  --text:       #eeeef2;
  --muted:      #7a7a88;
  --accent:     #c41e1e;
  --accent-2:   #ff2d2d;
  --green:      #22c55e;
  --radius:     14px;
  --header-h:   68px;
  --topbar-h:   34px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.text-green { color: var(--green); }

/* Background glow */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  --gx: 80%;
  --gy: 10%;
  background:
    radial-gradient(ellipse 50% 40% at var(--gx) var(--gy), rgba(196, 30, 30, 0.12), transparent),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(255, 45, 45, 0.05), transparent);
  animation: bgShift 12s ease-in-out infinite alternate;
  transition: background 0.6s ease;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.spark-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

@keyframes bgShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 400;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 10px rgba(255, 45, 45, 0.6);
  transition: width 0.1s linear;
}

/* Top announcement bar */
.topbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 210;
  height: var(--topbar-h);
  background: linear-gradient(90deg, rgba(196, 30, 30, 0.15), rgba(255, 45, 45, 0.08), rgba(196, 30, 30, 0.15));
  border-bottom: 1px solid rgba(255, 45, 45, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: 100%;
  font-size: 0.72rem;
}

.topbar__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.topbar__text {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.topbar__link {
  color: var(--accent-2);
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.topbar__link:hover { opacity: 0.8; }

main, .footer { position: relative; z-index: 1; }

/* ── Header ── */
.header {
  position: fixed;
  top: var(--topbar-h);
  inset-inline: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, top 0.35s ease;
}

.header.topbar-hidden {
  top: 0;
}

.header--scrolled {
  height: 58px;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 45, 45, 0.15);
}

.header--scrolled .logo__mark {
  width: 30px;
  height: 30px;
}

.header--scrolled .logo {
  font-size: 0.88rem;
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  transition: width 0.3s ease, height 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  flex-shrink: 0;
  transition: font-size 0.3s ease;
}

.nav {
  display: flex;
  gap: 1.75rem;
  margin-inline: auto;
  position: relative;
}

.nav__link {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav__link:hover { color: var(--text); }

.nav__link.active {
  color: var(--text);
}

.nav__link.active::after {
  width: 100%;
}

.nav__indicator {
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.5);
}

.nav__indicator.visible {
  opacity: 1;
}

.nav__link.active::after {
  display: none;
}

.header__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  align-items: center;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 4px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.header__buttons .btn {
  margin: 0;
}

.header__buttons .btn--ghost {
  border-color: transparent;
  background: transparent;
}

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

.header__buttons .auth-login-btn {
  min-width: 5.5rem;
  justify-content: center;
}

.header__buttons .auth-account__toggle {
  border-color: transparent;
  background: rgba(255, 255, 255, 0.04);
}

.header__buttons .btn--primary {
  box-shadow: none;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  opacity: 0.6;
  overflow: hidden;
}

.lang-btn__flag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.lang-btn:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--accent-2);
  background: rgba(196, 30, 30, 0.15);
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--lg { padding: 0.8rem 1.75rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(196, 30, 30, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 28px rgba(255, 45, 45, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--border-h);
  background: rgba(255, 45, 45, 0.06);
}

.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn--ghost:hover { color: var(--text); }

/* ── Eyebrow / Section headers ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section { padding-block: 6rem; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header--left { text-align: left; }

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section__desc {
  color: var(--muted);
  max-width: 540px;
  margin-inline: auto;
  font-size: 0.95rem;
}

.section__desc--left { margin-inline: 0; }

/* ── Hero ── */
.hero {
  padding-block: calc(var(--header-h) + var(--topbar-h) + 3.5rem) 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  transition: padding 0.35s ease;
}

body.topbar-collapsed .hero {
  padding-block: calc(var(--header-h) + 3rem) 5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero__visual .dashboard {
  animation: floatPanel 6s ease-in-out infinite 1s;
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: heroIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-animate--delay {
  animation-delay: 0.12s;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.scan-sweep {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 2px;
  z-index: 500;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.6);
  animation: scanSweep 0.55s ease-out forwards;
}

@keyframes scanSweep {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100vh); opacity: 0; }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal--stagger {
  transition-delay: var(--reveal-delay, 0s);
}

.reveal--stagger.visible {
  animation: staggerIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: none;
}

@keyframes staggerIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hero__title span {
  display: block;
  overflow: visible;
  padding-top: 0.06em;
}

.hero__title-accent {
  color: var(--accent-2);
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: 0 2px 28px rgba(255, 45, 45, 0.35);
}

.hero__text {
  color: var(--muted);
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero__stats li strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.hero__stats li span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Dashboard mockup ── */
.dashboard {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(196,30,30,0.08);
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}

.dashboard__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.dashboard__logo {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

.dashboard__brand strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.dashboard__brand span {
  font-size: 0.7rem;
  color: var(--muted);
}

.dashboard__badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.dashboard__tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
  overflow-x: auto;
}

.dashboard__tab {
  flex: 1;
  padding: 0.7rem 0.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.dashboard__tab:hover { color: var(--text); }

.dashboard__tab.active {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
  background: rgba(196,30,30,0.06);
}

.dashboard__panels {
  display: grid;
  grid-template: 1fr / 1fr;
  min-height: 260px;
}

.dashboard__panel {
  grid-area: 1 / 1;
  display: flex;
  padding: 1.1rem 1.25rem;
  gap: 1rem;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  pointer-events: none;
}

.dashboard__panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.dashboard__panel.leaving {
  opacity: 0;
  transform: translateX(-18px) scale(0.98);
  z-index: 0;
}

.panel-group {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.panel-group__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.panel-row:last-child { border-bottom: none; }

.panel-val {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.toggle {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #2a2a32;
  position: relative;
  flex-shrink: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle:hover { background: #35353f; }

.toggle--on {
  background: var(--accent);
}

.toggle--on:hover { background: var(--accent-2); }

.toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s, right 0.2s;
}

.toggle--on::after {
  left: auto;
  right: 2px;
}

.toggle--bounce.toggle--on::after {
  animation: toggleBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes toggleBounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.panel-slider__fill.slider-live {
  animation: sliderPulse 3s ease-in-out infinite;
}

@keyframes sliderPulse {
  0%, 100% { filter: brightness(1); opacity: 1; }
  50% { filter: brightness(1.3); opacity: 0.85; }
}

.panel-slider { padding: 0.4rem 0; }

.panel-slider__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.panel-slider__head strong { color: var(--muted); font-size: 0.75rem; }

.panel-slider__track {
  position: relative;
  height: 4px;
  background: #2a2a32;
  border-radius: 999px;
  overflow: visible;
  cursor: pointer;
  touch-action: none;
}

.panel-slider__track::before {
  content: '';
  position: absolute;
  inset: -10px 0;
}

.panel-slider__track:focus-visible {
  outline: 2px solid rgba(255, 45, 45, 0.45);
  outline-offset: 4px;
  border-radius: 999px;
}

.panel-slider__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  pointer-events: none;
}

.map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.map-tags span {
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.15);
  color: var(--accent-2);
}

.panel-farm-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  font-size: 0.78rem;
  color: var(--green);
}

.dashboard__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(0,0,0,0.3);
}

.dashboard__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

/* ── Showcase ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.showcase-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.showcase-card:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.showcase-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.showcase-card li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.4rem 0;
  color: var(--muted);
}

.showcase-card li strong {
  color: var(--text);
  font-weight: 500;
  font-size: 0.78rem;
}

/* ── Capabilities ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cap-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}

.cap-card:hover {
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.cap-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(255,45,45,0.08);
  border: 1px solid rgba(255,45,45,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.85rem;
}

.cap-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.cap-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Stats bar ── */
.stats-bar {
  padding-block: 3rem;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats-bar__item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.stats-bar__item span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding-top: 1rem;
}

.price-card {
  position: relative;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s, border-color 0.2s;
}

.price-card:hover { transform: translateY(-3px); border-color: var(--border-h); }

.price-card--popular {
  border-color: var(--accent);
  box-shadow: 0 0 50px rgba(196,30,30,0.12);
}

.price-card--popular::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 45, 45, 0.08) 45%,
    rgba(255, 45, 45, 0.15) 50%,
    rgba(255, 45, 45, 0.08) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  animation: priceShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes priceShimmer {
  0%, 70% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card__game {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  margin-bottom: 0.85rem;
}

.price-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.price-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.price-card__price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price-card__list {
  margin-bottom: 1.5rem;
}

.price-card__list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.1rem;
  position: relative;
}

.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Status (advanced) ── */
.status-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
}

.status-overview__left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-overview__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-overview__left strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.status-overview__left span {
  font-size: 0.78rem;
  color: var(--muted);
}

.status-overview__stats {
  display: flex;
  gap: 2rem;
}

.status-overview__stat {
  text-align: center;
}

.status-overview__stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}

.status-overview__stat span {
  font-size: 0.72rem;
  color: var(--muted);
}

.status-service {
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.status-service__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.status-service__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.status-service__head h3 {
  font-size: 1rem;
  font-weight: 700;
}

.status-service__head p {
  font-size: 0.78rem;
  color: var(--muted);
}

.status-service__head .pill {
  margin-left: auto;
}

.status-service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.status-maps-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.status-maps-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.status-maps-panel h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-map-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.status-map-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--text);
}

.status-map-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--muted);
}

.pill--green {
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.25);
  color: var(--green);
}

/* ── Community ── */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.community__perks {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.community__perks li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.community__perks li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-2);
}

.discord-mock {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.discord-mock__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}

.discord-mock__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.discord-mock__head strong { display: block; font-size: 0.9rem; }
.discord-mock__head span { font-size: 0.75rem; color: var(--muted); }

.discord-mock__online {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.discord-mock__members {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.member span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.member em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.68rem;
  color: var(--muted);
  opacity: 0.7;
}

.discord-mock__feed {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feed-item {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

.feed-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.feed-item p { font-size: 0.8rem; color: var(--muted); }

.feed-item--update strong { color: var(--green); }
.feed-item--notice strong { color: #60a5fa; }
.feed-item--reminder strong { color: #f59e0b; }

/* ── CTA ── */
.cta {
  padding-block: 6rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196,30,30,0.12), transparent),
    var(--bg-alt);
  border-top: 1px solid var(--border);
}

.cta__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.cta__text {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta__actions {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding-block: 4rem 0;
  background: var(--bg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 1rem 0;
  max-width: 300px;
  line-height: 1.7;
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green);
}

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.25rem;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p,
.footer__bottom span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Auth / Login ── */
.hidden { display: none !important; }

body.auth-open { overflow: hidden; }

.auth-login-btn { flex-shrink: 0; }

.auth-account {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.auth-account__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.auth-account__toggle:hover {
  border-color: var(--border-h);
  background: rgba(255, 45, 45, 0.06);
}

.auth-account__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.auth-account__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 300;
}

.auth-account.open .auth-account__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.auth-account__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.auth-account__logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.auth-account__head strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.1rem;
}

.auth-account__head span {
  font-size: 0.72rem;
  color: var(--muted);
  word-break: break-all;
}

.auth-account__meta {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.auth-account__meta div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.auth-account__meta dt {
  color: var(--muted);
}

.auth-account__meta dd {
  font-weight: 600;
}

.auth-account__status--expired {
  color: var(--accent-2) !important;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.auth-modal.open {
  opacity: 1;
  visibility: visible;
}

.auth-modal[hidden] { display: none; }
.auth-modal.open[hidden] { display: flex; }

.auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
}

.auth-modal__dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 2rem 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  transform: scale(0.96) translateY(12px);
  transition: transform 0.25s ease;
}

.auth-modal.open .auth-modal__dialog {
  transform: scale(1) translateY(0);
}

.auth-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.auth-modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.auth-modal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.auth-modal__icon img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(255, 45, 45, 0.25);
}

.auth-tabs {
  display: flex;
  gap: 0.35rem;
  padding: 4px;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.auth-tabs__btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.auth-tabs__btn:hover {
  color: var(--text);
}

.auth-tabs__btn.active {
  background: rgba(196, 30, 30, 0.2);
  color: var(--accent-2);
  box-shadow: 0 0 16px rgba(255, 45, 45, 0.12);
}

.auth-modal__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.auth-modal__desc {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.auth-form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 0.88rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form__input--email {
  font-family: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.auth-form__input:focus {
  outline: none;
  border-color: var(--border-h);
  box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.12);
}

.auth-form__input::placeholder {
  color: rgba(122, 122, 136, 0.6);
}

.auth-form__error {
  min-height: 1.25rem;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--accent-2);
  opacity: 0;
  transition: opacity 0.2s;
}

.auth-form__error.visible { opacity: 1; }

.auth-form__submit {
  margin-top: 0.25rem;
}

.auth-form__submit.loading {
  opacity: 0.7;
  pointer-events: none;
}

.auth-modal__foot {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.auth-modal__foot a {
  color: var(--accent-2);
  font-weight: 600;
}

.auth-switch-link {
  border: none;
  background: none;
  padding: 0;
  color: var(--accent-2);
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}

.auth-switch-link:hover,
.auth-modal__foot a:hover { opacity: 0.85; }

.auth-form__confirm.hidden { display: none; }

@media (max-width: 768px) {
  .auth-account__menu {
    right: -0.5rem;
    width: min(280px, calc(100vw - 2rem));
  }
}

/* ── Premium effects ── */

.has-custom-cursor,
.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor .btn,
.has-custom-cursor .toggle,
.has-custom-cursor .lang-btn,
.has-custom-cursor .panel-slider__track,
.has-custom-cursor .auth-form__input,
.has-custom-cursor .auth-tabs__btn,
.has-custom-cursor .auth-switch-link {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10010;
  pointer-events: none;
  will-change: transform;
}

.cursor__dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255, 45, 45, 0.9);
}

.cursor__ring {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 45, 45, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor__cross {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cursor__cross::before,
.cursor__cross::after {
  content: '';
  position: absolute;
  background: rgba(255, 45, 45, 0.7);
}

.cursor__cross::before {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.cursor__cross::after {
  height: 1px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.cursor--hover .cursor__ring {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 45, 45, 0.6);
}

.cursor--hover .cursor__cross {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

.cursor--click .cursor__ring {
  width: 20px;
  height: 20px;
  border-color: var(--accent-2);
}

.hero-glitch {
  position: relative;
  animation: heroGlitch 2s ease forwards;
}

.hero-glitch--done {
  animation: none;
}

@keyframes heroGlitch {
  0%, 100% { text-shadow: 0 2px 28px rgba(255, 45, 45, 0.35); transform: none; }
  5% { transform: translate(-2px, 1px); text-shadow: -2px 0 #ff2d2d, 2px 0 #00ffff; }
  10% { transform: translate(2px, -1px); text-shadow: 2px 0 #ff2d2d, -2px 0 #00ffff; }
  15% { transform: none; text-shadow: 0 2px 28px rgba(255, 45, 45, 0.35); }
  20% { transform: translate(1px, 2px); clip-path: inset(20% 0 30% 0); }
  25% { transform: none; clip-path: none; }
  30%, 100% { transform: none; text-shadow: 0 2px 28px rgba(255, 45, 45, 0.35); }
}

.hero__visual--tilt {
  perspective: 900px;
}

.hero__visual--tilt .dashboard {
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__visual--tilt .dashboard.dashboard--tilting {
  animation: none;
  transition: transform 0.12s ease-out;
}

.hero__visual--tilt .dashboard.dashboard--resetting {
  animation: none;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.price-card.spotlight-card {
  overflow: visible;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background: radial-gradient(
    400px circle at var(--spot-x) var(--spot-y),
    rgba(255, 45, 45, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.spotlight-card:hover::before {
  opacity: 1;
}

.btn.magnetic {
  transition: transform 0.15s ease-out, box-shadow 0.2s;
}

.btn-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleOut 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleOut {
  to {
    transform: translate(-50%, -50%) scale(20);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal, .reveal--stagger, .hero-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ── Mobile ── */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .showcase-grid,
  .cap-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .community { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .status-overview__stats { gap: 1.25rem; }
}

@media (max-width: 768px) {
  .container { width: min(1180px, 94%); }

  .topbar__text { display: none; }

  .topbar__link { font-size: 0.68rem; }

  .header__inner {
    gap: 0.5rem;
  }

  .logo {
    font-size: 0;
    gap: 0;
  }

  .logo__mark {
    width: 32px;
    height: 32px;
  }

  .header__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    margin-right: 0;
    min-width: 0;
  }

  .header__actions .btn { display: none; }

  .header__buttons {
    padding: 2px;
    gap: 0.2rem;
    min-width: 0;
  }

  .header__actions .auth-login-btn,
  .header__buttons .btn--primary {
    display: inline-flex;
    padding: 0.45rem 0.55rem;
    font-size: 0.68rem;
    min-width: 0;
    white-space: nowrap;
  }

  .header__buttons .auth-login-btn {
    min-width: 0;
  }

  .header__actions .auth-account:not(.hidden) {
    display: flex;
  }

  .header__actions .btn--ghost {
    display: none;
  }

  .lang-switch {
    padding: 2px;
    gap: 2px;
    flex-shrink: 0;
  }

  .lang-btn {
    width: 28px;
    height: 22px;
  }

  .nav-toggle {
    display: flex;
    margin-left: 0;
    flex-shrink: 0;
  }

  .nav {
    display: flex;
    position: fixed;
    inset-block-start: calc(var(--header-h) + var(--topbar-h));
    inset-inline: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    margin-inline: 0;
    z-index: 190;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }

  .nav__indicator { display: none; }

  .nav__link.active::after {
    display: block;
    width: 100%;
  }

  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero {
    min-height: auto;
    padding-block: calc(var(--header-h) + var(--topbar-h) + 1.5rem) 3rem;
  }

  .hero__grid {
    gap: 1.75rem;
  }

  .hero__title {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
    margin-bottom: 1rem;
  }

  .hero__text {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    margin-bottom: 1.75rem;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 140px;
  }

  .hero__stats {
    gap: 1.25rem 1.75rem;
  }

  .hero__visual .dashboard {
    animation: none;
  }

  .dashboard__tab {
    font-size: 0.72rem;
    padding: 0.45rem 0.65rem;
  }

  .section {
    padding-block: 3.5rem;
  }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header__actions .auth-login-btn,
  .header__buttons .btn--primary {
    padding: 0.4rem 0.45rem;
    font-size: 0.62rem;
  }

  .auth-account__toggle span:not(.auth-account__dot) {
    display: none;
  }

  .auth-account__toggle {
    padding: 0.45rem 0.55rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr;
  }

  .status-overview {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-modal__dialog {
    padding: 1.25rem;
  }
}
