/* ============ TOKENS ============ */
:root {
  --bg: #050708;
  --bg-2: #0a0f12;
  --panel: rgba(12, 22, 28, 0.75);
  --line: rgba(120, 220, 240, 0.18);
  --fg: #eef6f8;
  --muted: #9fb3ba;
  --cyan: #7ff2ff;
  --cyan-deep: #22b8d6;
  --green: #8bff5c;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Noto Sans", "Noto Sans Arabic", "Noto Sans Devanagari", "Noto Sans Bengali", "Noto Sans Thai", "Noto Sans KR", "Noto Sans JP", sans-serif;
  --radius: 14px;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; background: var(--bg); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPE ============ */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.accent { color: var(--cyan); text-shadow: 0 0 28px rgba(127, 242, 255, 0.35); }
.accent-green { color: var(--green); text-shadow: 0 0 28px rgba(139, 255, 92, 0.3); }

.lead { font-size: 17px; color: #d7e4e8; margin: 26px 0 30px; }
.body { font-size: 15px; color: var(--muted); max-width: 440px; margin-bottom: 30px; }
.body.large { font-size: 19px; color: #d7e4e8; }

.side-note {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  text-align: right;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--cyan);
  color: #04141a;
  box-shadow: 0 0 30px rgba(127, 242, 255, 0.4);
}
.btn-primary:hover { box-shadow: 0 0 44px rgba(127, 242, 255, 0.6); }

.btn-outline {
  border-color: rgba(127, 242, 255, 0.6);
  color: var(--fg);
  background: rgba(127, 242, 255, 0.04);
}
.btn-outline:hover { background: rgba(127, 242, 255, 0.12); }

.btn-ghost {
  border-color: var(--line);
  background: rgba(127, 242, 255, 0.05);
  color: var(--fg);
  box-shadow: inset 0 0 20px rgba(127, 242, 255, 0.04);
}
.btn-ghost:hover { border-color: rgba(127, 242, 255, 0.5); }

.btn-lg { padding: 15px 34px; font-size: 16px; }

.link-arrow {
  display: inline-flex;
  gap: 8px;
  font-weight: 600;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--cyan);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 8, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 17px;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.logo-mark img { width: 54px; height: 54px; max-width: none; object-fit: contain; }

.main-nav { display: flex; gap: 28px; font-size: 14px; color: #c9d6db; }
.main-nav a { position: relative; padding: 6px 0; }
.main-nav a.active { color: var(--fg); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--fg);
}

.nav-actions { display: flex; align-items: center; gap: 22px; font-size: 14px; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  color: #c9d6db;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.lang-btn svg { width: 16px; height: 16px; }
.lang { position: relative; }
.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  width: 420px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(8, 14, 18, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(127, 242, 255, 0.06), 0 30px 60px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
}
.lang-menu[hidden] { display: none; }
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: #c9d6db;
  cursor: pointer;
}
.lang-menu li:hover,
.lang-menu li:focus-visible { background: rgba(127, 242, 255, 0.08); color: var(--fg); outline: none; }
.lang-menu li[aria-selected="true"] { color: var(--cyan); background: rgba(127, 242, 255, 0.1); }
.lang-short {
  min-width: 30px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.lang-menu li[aria-selected="true"] .lang-short { color: var(--cyan); }
.nav-login { color: #c9d6db; }

[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .link-arrow span[aria-hidden],
[dir="rtl"] .btn span[aria-hidden] { transform: scaleX(-1); display: inline-block; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--fg); display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 16px;
}
.mobile-nav.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
  left: 22%;
  width: 78%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 1) 0%, rgba(5, 7, 8, 1) 20%, rgba(5, 7, 8, 0.75) 36%, rgba(5, 7, 8, 0.15) 58%, rgba(5, 7, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.4), rgba(5, 7, 8, 0) 30%, rgba(5, 7, 8, 0.6));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  align-items: stretch;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-copy { max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.tagline {
  margin-top: 46px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

/* ============ STATS ============ */
.stats { background: var(--bg); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  padding-top: 34px;
  padding-bottom: 34px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat strong { font-size: 19px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.stat span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.stat-note {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
}
.stat-note .rule { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan)); }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: relative; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 430px) 1fr;
  gap: 60px;
  align-items: center;
}

/* video */
.video {
  background: radial-gradient(ellipse at 50% 0%, rgba(20, 70, 90, 0.35), transparent 55%), var(--bg);
}
.video-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.video-head {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.video-head .body { max-width: 520px; margin-bottom: 0; }
.video-frame {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #030a0d;
  box-shadow:
    0 0 0 1px rgba(127, 242, 255, 0.08),
    0 0 80px rgba(34, 184, 214, 0.22),
    0 40px 80px rgba(0, 0, 0, 0.6);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
}
.video-poster:hover img { opacity: 0.7; transform: scale(1.02); }
.video-play {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: #04141a;
  box-shadow: 0 0 40px rgba(127, 242, 255, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-play svg { width: 34px; height: 34px; margin-left: 4px; }
.video-poster:hover .video-play { transform: scale(1.06); box-shadow: 0 0 60px rgba(127, 242, 255, 0.75); }
.video-poster:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.video-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-note {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* opportunity */
.opportunity { background: radial-gradient(ellipse at 70% 50%, rgba(20, 70, 90, 0.35), transparent 60%), var(--bg); }
.globe-wrap { position: relative; display: flex; justify-content: center; }
.globe {
  width: min(100%, 520px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 60px rgba(34, 184, 214, 0.35));
}
.pay-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(8, 16, 20, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(127, 242, 255, 0.15);
}
.chip-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(127, 242, 255, 0.1);
  color: var(--cyan);
}
.chip-icon svg { width: 18px; height: 18px; }
.pay-chip small { display: block; font-size: 12px; color: var(--muted); }
.pay-chip strong { font-size: 14px; }
.chip-1 { top: 6%; left: 0; }
.chip-2 { top: 6%; right: 0; }
.chip-3 { bottom: 12%; left: 4%; }
.chip-4 { bottom: 12%; right: 6%; }
.globe-note { position: absolute; right: 0; bottom: -10px; }

/* shop flow */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}
.flow-card {
  position: relative;
  padding: 26px 20px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: inset 0 0 40px rgba(127, 242, 255, 0.04);
}
.flow-card:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--cyan);
  line-height: 1;
}
.flow-card.highlight {
  border-color: rgba(139, 255, 92, 0.6);
  box-shadow: 0 0 40px rgba(139, 255, 92, 0.18), inset 0 0 40px rgba(139, 255, 92, 0.06);
}
.flow-card.highlight .flow-icon, .flow-card.highlight h3 { color: var(--green); }
.flow-icon { width: 44px; height: 44px; color: var(--cyan); }
.flow-card h3 { font-size: 16px; font-weight: 700; line-height: 1.2; }
.flow-card p { font-size: 13px; color: var(--muted); }

/* panels */
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 60px rgba(127, 242, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* chart */
.chart-panel { padding: 24px 26px 20px; }
.chart-panel-wide { width: 100%; padding: 32px 36px 28px; }
.chart-panel-wide .chart-body { grid-template-columns: 1fr 240px; gap: 36px; }
.chart-panel-wide .chart-head h3 { font-size: 18px; }
.chart-panel-wide .kpi strong { font-size: 36px; }
.chart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.chart-head h3 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; }
.chart-head span { font-size: 12px; color: var(--muted); }
.chart-body { display: grid; grid-template-columns: 1fr 170px; gap: 22px; align-items: stretch; }
.chart { margin: 0; }
.chart svg { width: 100%; height: auto; font-family: var(--font); }
.chart .grid line { stroke: rgba(255, 255, 255, 0.08); }
.chart .axis-y text { fill: var(--muted); font-size: 10.5px; text-anchor: end; }
.chart .axis-x text { fill: var(--muted); font-size: 10.5px; text-anchor: middle; }
.chart .axis-x .year { font-size: 9px; }
.chart .line { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linejoin: round; filter: drop-shadow(0 0 6px rgba(139, 255, 92, 0.7)); }
.chart .dots circle { fill: var(--green); stroke: #0b1a10; stroke-width: 1.5; }
.chart .label rect { fill: #0f1c14; stroke: var(--green); stroke-width: 1; }
.chart .label text { fill: var(--fg); font-size: 11px; font-weight: 700; text-anchor: middle; }
.kpi {
  border: 1px solid rgba(139, 255, 92, 0.45);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(139, 255, 92, 0.04);
  box-shadow: 0 0 30px rgba(139, 255, 92, 0.12);
}
.kpi strong { font-size: 30px; color: var(--green); font-weight: 800; letter-spacing: -0.02em; }
.kpi p { font-size: 13px; color: #d7e4e8; }
.kpi small { margin-top: auto; font-size: 11px; color: var(--muted); }

/* vip */
.vip-grid { align-items: center; }
.vip-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
.vip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vip-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 242, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(127, 242, 255, 0.1), 0 0 60px rgba(34, 184, 214, 0.25), 0 30px 60px rgba(0, 0, 0, 0.5);
}
.vip-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 22px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(127, 242, 255, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  overflow: hidden;
}
.price-card .vip-visual {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(139, 255, 92, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}
.crown {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(127, 242, 255, 0.1);
  border: 1px solid rgba(127, 242, 255, 0.45);
  color: var(--cyan);
  box-shadow: 0 0 40px rgba(127, 242, 255, 0.35);
}
.crown svg { width: 36px; height: 36px; }
.vip-body { display: flex; flex-direction: column; flex: 1; }
.vip-card h3 { font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.vip-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.vip-price strong { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.vip-price small { font-size: 13px; color: var(--muted); font-weight: 500; }
.vip-desc { font-size: 13px; color: var(--muted); line-height: 1.55; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--line); }
.badge-green { background: rgba(139, 255, 92, 0.1); border-color: rgba(139, 255, 92, 0.5); color: var(--green); }
.checks { display: flex; flex-direction: column; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.checks li::before {
  content: "";
  width: 20px; height: 20px;
  border-radius: 5px;
  border: 1.5px solid var(--green);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238bff5c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center / 12px no-repeat;
  flex: none;
}
.plus { align-self: center; font-size: 40px; font-weight: 300; color: var(--cyan); padding: 0 4px; text-shadow: 0 0 20px rgba(127, 242, 255, 0.6); }
.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(127, 242, 255, 0.12);
  border: 1px solid rgba(127, 242, 255, 0.5);
  color: var(--cyan);
}
.minter-img { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: screen; }
.mini-list { display: flex; flex-direction: column; gap: 10px; }
.mini-list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.mini-list svg { width: 22px; height: 22px; color: var(--cyan); flex: none; padding: 3px; border-radius: 6px; border: 1px solid var(--line); }

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 70px;
  text-align: center;
}
.features li {
  padding: 8px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.features li:first-child { border-left: 0; }
.feat-icon { width: 48px; height: 48px; color: var(--cyan); filter: drop-shadow(0 0 10px rgba(127, 242, 255, 0.5)); }
.features h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.25; }
.features p { font-size: 13px; color: var(--muted); }

.center { text-align: center; margin-top: 46px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.disclaimer { font-size: 12px; color: var(--muted); }

/* bigger picture */
.bigger { padding-bottom: 260px; overflow: hidden; }
.bigger .split { position: relative; z-index: 1; }
.opps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: 40px;
}
.opp {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(14, 26, 32, 0.9), rgba(8, 14, 18, 0.9));
  border: 1px solid rgba(127, 242, 255, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.opp:nth-child(2) { transform: translateY(24px) rotate(2deg); }
.opp:nth-child(3) { transform: translateY(40px) rotate(4deg); }
.opp:nth-child(4) { transform: translateY(56px) rotate(6deg); }
.opp:hover, .opp.active {
  border-color: rgba(127, 242, 255, 0.6);
  box-shadow: 0 0 40px rgba(127, 242, 255, 0.25);
}
.opp svg { width: 48px; height: 48px; color: var(--cyan); margin-bottom: 10px; }
.opp-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin: -14px 0 -4px;
  filter: drop-shadow(0 0 14px rgba(127, 242, 255, 0.55));
}
.opp h3 { font-size: 20px; font-weight: 700; }
.opp p { font-size: 13px; color: var(--muted); }
.opps-note { position: absolute; right: 0; bottom: -60px; }
.horizon {
  position: absolute;
  left: 0; right: 0; bottom: -40px;
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0.95;
  mask-image: linear-gradient(180deg, transparent, #000 40%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%);
  pointer-events: none;
}

/* ============ FOOTER ============ */
.site-footer { background: var(--bg); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  padding-bottom: 28px;
}
.footer-copy { font-size: 13px; color: var(--muted); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .main-nav, .nav-actions > .nav-login, .nav-actions > .btn { display: none; }
  .nav-actions { margin-left: auto; margin-right: 8px; }
  .menu-toggle { display: flex; }
  .lang-menu { width: min(420px, calc(100vw - 32px)); right: -48px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-bg { left: 0; width: 100%; object-position: 70% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 8, 0.92) 0%, rgba(5, 7, 8, 0.8) 45%, rgba(5, 7, 8, 0.45) 100%),
      linear-gradient(180deg, rgba(5, 7, 8, 0.5), rgba(5, 7, 8, 0.1) 40%, rgba(5, 7, 8, 0.75));
  }
  .lead br, .hero .body br { display: none; }
  .chart-panel-wide { padding: 24px 22px 22px; }
  .chart-panel-wide .chart-body { grid-template-columns: 1fr; gap: 24px; }
  .chart-panel-wide .kpi { max-width: 360px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
  .stat-note { grid-column: 1 / -1; justify-content: flex-start; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .flow-card:nth-child(2)::after { display: none; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .features li:nth-child(odd) { border-left: 0; }
  .vip-cards { grid-template-columns: 1fr; }
  .plus { text-align: center; }
  .opps { grid-template-columns: repeat(2, 1fr); }
  .opp:nth-child(n) { transform: none; }
  .opps-note { display: none; }
  .bigger { padding-bottom: 200px; }
}

@media (max-width: 640px) {
  .hero { min-height: 560px; }
  .hero-bg { object-position: 80% center; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 8, 0.7), rgba(5, 7, 8, 0.82) 55%, rgba(5, 7, 8, 0.95));
  }
  .chart-panel-wide { padding: 20px 16px 18px; }
  .chart-panel-wide .kpi { max-width: none; }
  .chart-head { flex-direction: column; align-items: flex-start; gap: 6px; }

  .mini-list li { text-align: left; }
  .flow { grid-template-columns: 1fr; }
  .flow-card::after { display: none !important; }
  .pay-chip { padding: 8px 12px; }
  .pay-chip strong { font-size: 13px; }
  .chip-3, .chip-4 { bottom: 4%; }
  .globe-note { display: none; }
  .features { grid-template-columns: 1fr; }
  .features li { border-left: 0; }
  .stats-row { grid-template-columns: 1fr; }
  .stat { border-left: 0; padding-left: 0; }
}
