:root {
  --bg0: #050203;
  --red: #e53935;
  --red-dim: #b71c1c;
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(255, 255, 255, 0.04);
  --ok: #3dd68c;
  --warn: #ffb020;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", Consolas, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 15% 0%, rgba(229, 57, 53, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(80, 0, 0, 0.45), transparent 50%),
    var(--bg0);
  color: var(--text);
  font-family: var(--font);
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.brand,
.brand:hover,
.brand:focus,
.brand:active {
  text-decoration: none !important;
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

header, .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0 2rem;
  border-bottom: none;
  margin-bottom: 2rem;
  background: transparent;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
}
.brand span { color: var(--red); }

nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
  font-size: 0.92rem;
}
.btn:hover { border-color: rgba(229, 57, 53, 0.6); text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, var(--red), var(--red-dim));
  border-color: transparent;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.hero p {
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 2rem 0;
}

.card, .panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.panel { margin-bottom: 1.25rem; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0.75rem 0;
}
.price small { color: var(--faint); font-size: 0.85rem; font-weight: 500; }

label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.4rem;
}
label.check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

input, select, textarea {
  width: 100%;
  background: rgba(8, 4, 6, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font: inherit;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
input:hover, select:hover, textarea:hover {
  border-color: rgba(229, 57, 53, 0.35);
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(229, 57, 53, 0.75);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.18);
  background: #0a0506;
}
input.mono, .mono { font-family: var(--mono); letter-spacing: 0.06em; }

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  background-color: #0a0506;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(135deg, var(--red) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.12rem),
    calc(100% - 0.85rem) calc(50% - 0.12rem),
    100% 0;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem, 2.5rem 100%;
  background-repeat: no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
select:hover {
  background-color: #12080a;
}
select:focus {
  background-color: #12080a;
}
select option,
select optgroup {
  background-color: #12080a;
  color: #f5f5f5;
  padding: 0.65rem 0.75rem;
}
select option:checked,
select option:hover,
select option:focus {
  background: linear-gradient(#b71c1c, #b71c1c);
  background-color: #b71c1c;
  color: #fff;
}

.currency-wrap select {
  min-width: 10.5rem;
  padding: 0.5rem 2.2rem 0.5rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 10px;
  background-position:
    calc(100% - 0.95rem) calc(50% - 0.1rem),
    calc(100% - 0.7rem) calc(50% - 0.1rem),
    100% 0;
  background-size: 0.3rem 0.3rem, 0.3rem 0.3rem, 2.1rem 100%;
}

.row select {
  margin-bottom: 0;
}

.row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

.nav-drop {
  position: relative;
  display: inline-flex;
}
.nav-drop-btn .nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 0.28rem solid transparent;
  border-right: 0.28rem solid transparent;
  border-top: 0.32rem solid currentColor;
  vertical-align: middle;
  opacity: 0.75;
}
.nav-drop.open .nav-drop-btn,
.nav-drop:hover .nav-drop-btn {
  border-color: rgba(229, 57, 53, 0.55);
}
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 13.5rem;
  padding: 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0608;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(229, 57, 53, 0.12);
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
}
.nav-drop.open .nav-drop-menu,
.nav-drop:hover .nav-drop-menu {
  display: flex;
  animation: drop-in 0.16s ease;
}
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
.nav-drop-menu button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 0.65rem 0.75rem;
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}
.nav-drop-menu button span {
  color: var(--faint);
  font-size: 0.8rem;
}
.nav-drop-menu button[data-region]::before {
  content: "";
  width: 1.15rem;
  height: 0.75rem;
  margin-right: 0.55rem;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.nav-drop-menu button[data-region="iceland"]::before { background-image: url('/flags/is.svg'); }
.nav-drop-menu button[data-region="russia"]::before { background-image: url('/flags/ru.svg'); }
.nav-drop-menu button[data-region="romania"]::before { background-image: url('/flags/ro.svg'); }
.nav-drop-menu button[data-region] {
  justify-content: flex-start;
}
.nav-drop-menu button[data-region] span {
  margin-left: auto;
}

.alert {
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  border: 1px solid var(--line);
  background: rgba(229, 57, 53, 0.12);
  color: #ffc9c9;
  line-height: 1.45;
}
.alert.ok { background: rgba(61, 214, 140, 0.1); color: #b8f5d4; }
.alert.warn { background: rgba(255, 176, 32, 0.12); color: #ffe0a3; }

.server {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.server:last-child { border-bottom: 0; }
.server:hover { background: rgba(255,255,255,0.02); }

.badge {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(61, 214, 140, 0.15);
  color: var(--ok);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.84);
}
.feature-list li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  opacity: 1;
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "▸ ";
  color: var(--red);
}

.hidden { display: none !important; }
.muted { color: var(--muted); }
.faint { color: var(--faint); font-size: 0.85rem; }

.secret-box {
  background: #000;
  border: 1px dashed rgba(229, 57, 53, 0.5);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--mono);
  word-break: break-all;
  font-size: 1.05rem;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.85rem;
  line-height: 1.5;
}

.metric {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
}
.metric b { display: block; font-size: 1.2rem; margin-top: 0.25rem; }

/* —— Currency / locations —— */
.currency-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
}
.currency-wrap select {
  width: auto;
  min-width: 10.5rem;
  margin: 0;
}
.lang-chip {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted, #9aa3ad);
  border: 1px solid rgba(229, 57, 53, 0.35);
  background: rgba(229, 57, 53, 0.12);
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}
body.lang-flash .lang-chip {
  animation: lang-pop 0.45s ease;
}
@keyframes lang-pop {
  0% { transform: scale(1); opacity: 0.5; }
  40% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

body.rtl {
  direction: rtl;
}
body.rtl .site-header nav,
body.rtl .row,
body.rtl .status-rail,
body.rtl .stat-row,
body.rtl footer .row {
  flex-direction: row-reverse;
}
body.rtl .hero-split {
  direction: rtl;
}
body.rtl .nav-drop-menu {
  right: auto;
  left: 0;
}
.legal-body p {
  margin: 0.75rem 0 0;
  line-height: 1.55;
}
.console-sim-banner {
  margin: 0.75rem 1.25rem 0;
}

/* —— Wanted / abuse board —— */
.wanted-hero {
  margin: 0.5rem 0 1.5rem;
}
.wanted-hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0.25rem 0 0.75rem;
}
.wanted-board {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.wanted-empty {
  grid-column: 1 / -1;
  padding: 2rem 0;
}
.wanted-card {
  position: relative;
  border: 1px solid rgba(229, 57, 53, 0.35);
  background:
    linear-gradient(160deg, rgba(229, 57, 53, 0.16), rgba(0, 0, 0, 0.55)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 8px,
      rgba(255, 255, 255, 0.015) 8px,
      rgba(255, 255, 255, 0.015) 9px
    );
  border-radius: 4px;
  padding: 1.1rem 1.1rem 1.2rem;
  overflow: hidden;
  min-height: 16rem;
}
.wanted-card.critical {
  border-color: rgba(229, 57, 53, 0.75);
  box-shadow: inset 0 0 0 1px rgba(229, 57, 53, 0.2);
}
.wanted-stamp {
  position: absolute;
  top: 0.85rem;
  right: -0.2rem;
  transform: rotate(12deg);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #e53935;
  border: 2px solid rgba(229, 57, 53, 0.85);
  padding: 0.2rem 0.55rem;
  background: rgba(0, 0, 0, 0.55);
}
.wanted-mark {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(229, 57, 53, 0.35);
  margin-bottom: 0.35rem;
}
.wanted-id {
  font-size: 0.72rem;
  color: var(--muted, #9aa3ad);
  margin: 0 0 0.35rem;
}
.wanted-body h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.wanted-offense {
  margin: 0.35rem 0 0.65rem;
  color: #e53935;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wanted-summary {
  margin: 0;
  color: #c8cdd3;
  line-height: 1.45;
  font-size: 0.92rem;
}
.wanted-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted, #9aa3ad);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.wanted-action {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: #f0a8a6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.65rem;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}
@media (max-width: 720px) {
  .locations { grid-template-columns: 1fr; }
}
.loc-chip {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(229,57,53,0.12), rgba(0,0,0,0.35));
  border-radius: 14px;
  padding: 0.9rem 1rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}
.loc-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(229,57,53,0.55);
  box-shadow: 0 12px 40px rgba(229,57,53,0.15);
  text-decoration: none;
  color: inherit;
}
.loc-chip strong { display: block; margin-bottom: 0.25rem; }
.loc-chip span { color: var(--muted); font-size: 0.85rem; line-height: 1.35; display: block; }
.loc-more {
  display: inline-block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* —— Location detail pages —— */
.loc-page .wrap { padding-top: 1rem; }
.loc-article {
  max-width: 720px;
  margin: 0 auto 2rem;
}
.loc-hero-title {
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.loc-lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}
.loc-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .loc-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.loc-stat {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: rgba(0,0,0,0.28);
}
.loc-stat span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.35rem;
}
.loc-stat strong {
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
}
.loc-block {
  margin-bottom: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.loc-block h2 {
  font-size: 1.25rem;
  margin: 1.25rem 0 0.75rem;
}
.loc-block p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}
.loc-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.loc-list li {
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid rgba(229,57,53,0.55);
}
.loc-list strong { color: var(--text); }
.loc-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.loc-page nav .btn { text-decoration: none; }

.loc-iceland {
  background:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(120, 180, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(229, 57, 53, 0.22), transparent 50%),
    var(--bg0);
}
.loc-romania {
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, rgba(229, 57, 53, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(255, 193, 7, 0.12), transparent 50%),
    var(--bg0);
}
.loc-russia {
  background:
    radial-gradient(ellipse 70% 45% at 20% 0%, rgba(229, 57, 53, 0.25), transparent 55%),
    radial-gradient(ellipse 55% 45% at 80% 100%, rgba(30, 60, 120, 0.35), transparent 50%),
    var(--bg0);
}

.loc-page .loc-hero-title {
  background: linear-gradient(120deg, #fff 10%, #ffb3b3 45%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

/* —— Motion —— */
@media (prefers-reduced-motion: no-preference) {
  body::before {
    content: "";
    position: fixed;
    inset: -20%;
    background:
      radial-gradient(circle at 20% 20%, rgba(229,57,53,0.18), transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(120,0,20,0.2), transparent 45%);
    animation: aurora 18s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
  }

  @keyframes aurora {
    from { transform: translate3d(-2%, -1%, 0) scale(1); }
    to { transform: translate3d(3%, 2%, 0) scale(1.08); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(4px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.7s ease;
    transition-delay: var(--d, 0ms);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-title {
    background: linear-gradient(105deg, #fff 20%, #ff8a80 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: sheen 7s linear infinite;
  }
  @keyframes sheen {
    to { background-position: 200% center; }
  }

  .btn {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(1px) scale(0.98); }
  .btn-glow {
    box-shadow: 0 0 0 rgba(229,57,53,0);
    animation: pulse-glow 2.8s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.0); }
    50% { box-shadow: 0 0 28px 2px rgba(229,57,53,0.35); }
  }

  .plan-card {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }
  .plan-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: rgba(229,57,53,0.5);
    box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(229,57,53,0.15);
  }

  .view-panel.view-enter {
    opacity: 0;
    transform: translateY(16px);
  }
  .view-panel.view-enter-active {
    opacity: 1;
    transform: none;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .view-panel.view-leave {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.fx-flash .price {
    animation: price-pop 0.45s ease;
  }
  @keyframes price-pop {
    0% { transform: scale(1); filter: brightness(1); }
    40% { transform: scale(1.06); filter: brightness(1.35); }
    100% { transform: scale(1); filter: brightness(1); }
  }

  .panel.reveal .feature-list li {
    opacity: 0;
    transform: translateX(-10px);
  }
  .panel.reveal.in .feature-list li {
    animation: slide-in 0.45s ease forwards;
  }
  .panel.reveal.in .feature-list li:nth-child(1) { animation-delay: 0.05s; }
  .panel.reveal.in .feature-list li:nth-child(2) { animation-delay: 0.1s; }
  .panel.reveal.in .feature-list li:nth-child(3) { animation-delay: 0.15s; }
  .panel.reveal.in .feature-list li:nth-child(4) { animation-delay: 0.2s; }
  .panel.reveal.in .feature-list li:nth-child(5) { animation-delay: 0.25s; }
  .panel.reveal.in .feature-list li:nth-child(6) { animation-delay: 0.3s; }
  .panel.reveal.in .feature-list li:nth-child(7) { animation-delay: 0.35s; }
  .panel.reveal.in .feature-list li:nth-child(8) { animation-delay: 0.4s; }
  .panel.reveal.in .feature-list li:nth-child(9) { animation-delay: 0.45s; }
  .panel.reveal.in .feature-list li:nth-child(10) { animation-delay: 0.5s; }
  .panel.reveal.in .feature-list li:nth-child(11) { animation-delay: 0.55s; }
  .panel.reveal.in .feature-list li:nth-child(12) { animation-delay: 0.6s; }
  .panel.reveal.in .feature-list li:nth-child(13) { animation-delay: 0.65s; }
  @keyframes slide-in {
    to { opacity: 1; transform: none; }
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* —— Incognito-inspired layout pieces (Torrix theme) —— */
.status-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.ok-dot::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 0.4rem;
  box-shadow: 0 0 8px var(--ok);
}
.rail-coins { color: var(--muted); }

.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; }
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.stat-row div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: rgba(0,0,0,0.25);
}
.stat-row b { display: block; font-size: 0.92rem; }
.stat-row span { color: var(--faint); font-size: 0.75rem; }

.section-label {
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 2.5rem 0 0.35rem;
}
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.term-window {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(229,57,53,0.12);
}
.term-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0d0d0d;
}
.dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.term-title {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  flex: 1;
  letter-spacing: 0.04em;
}
.term-live {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--ok);
}
.term-live::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--ok);
  margin-right: 0.35rem;
  box-shadow: 0 0 8px var(--ok);
}
.term-body {
  padding: 1rem 1.1rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.term-body hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0.85rem 0;
}
.term-kv {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
}
.term-kv span:first-child { color: rgba(255,255,255,0.4); }
.term-tags {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
}
.term-footnote {
  padding: 0.55rem 1rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.c-prompt { color: var(--red); }
.c-muted { color: rgba(255,255,255,0.45); }
.c-ok { color: #3dd68c; }
.c-warn { color: var(--primary-red-light, #ff6b6b); }
.c-accent { color: var(--red); }
.cursor {
  display: inline-block;
  width: 0.55rem;
  height: 1em;
  margin-left: 0.15rem;
  background: var(--red);
  vertical-align: text-bottom;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

a.loc-chip {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.loc-more {
  display: block;
  margin-top: 0.45rem;
  color: var(--red);
  font-style: normal;
  font-size: 0.8rem;
}
.loc-chip-lg {
  min-height: 8rem;
}
.loc-chip-lg .eyebrow { margin-bottom: 0.5rem; }
.loc-chip-lg strong {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.loc-hero { margin-bottom: 1.5rem; }
.loc-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0.35rem 0 0.75rem;
}
.loc-page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
  margin: 0.75rem 0 1.5rem;
}
@media (max-width: 900px) {
  .loc-page-hero { grid-template-columns: 1fr; }
}

.flag-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(229,57,53,0.08), transparent 65%),
    rgba(0,0,0,0.28);
  overflow: hidden;
}
.flag-cloth {
  position: relative;
  z-index: 2;
  margin: 0;
}
.flag-canvas {
  display: block;
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06);
}

.loc-grid .panel h3 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.loc-grid .panel {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}

.loc-chip .flag-mini {
  width: 1.6rem;
  height: 1.05rem;
  object-fit: cover;
  border-radius: 2px;
  margin-right: 0.45rem;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
  vertical-align: -0.15rem;
}
.loc-chip strong {
  display: flex;
  align-items: center;
}
.loc-page-copy h1,
.loc-page h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  max-width: 18ch;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.loc-lead {
  max-width: 46rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .loc-grid, .stat-row { grid-template-columns: 1fr; }
}
