/* ===================================================================
   Monex — Forex Company Website
   Modern RTL design system
   =================================================================== */

/* ---------- Monex brand display font ---------- */
@font-face {
  font-family: 'INGAME';
  src: url('../fonts/INGAME.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — Monex brand (from S&D brochure) */
  --bg:            #0d080e;
  --bg-soft:       #140b14;
  --surface:       #1b1019;
  --surface-2:     #251426;
  --line:          rgba(255, 255, 255, 0.08);
  --line-strong:   rgba(255, 255, 255, 0.16);

  --text:          #f5eef1;
  --text-soft:     #c7aebb;
  --text-dim:      #8a6f7c;

  --gold:          #f5c451;
  --gold-deep:     #d99a2b;
  --brand:         #6b0a49;   /* rich magenta — actual logo color */
  --brand-2:       #b23e7d;   /* lighter magenta for contrast/accents */
  --navy:          #121B4C;   /* deep navy — secondary (PDF title) */
  --navy-2:        #28306b;
  --green:         #34d399;
  --red:           #f87171;

  --grad-brand:    linear-gradient(135deg, #57063e 0%, #97306a 100%);
  --grad-gold:     linear-gradient(135deg, #f5c451 0%, #d99a2b 100%);
  --grad-hero:     radial-gradient(1200px 600px at 80% -10%, rgba(107,10,73,.40), transparent 60%),
                   radial-gradient(900px 500px at 10% 10%, rgba(18,27,76,.32), transparent 55%);

  --shadow:        0 16px 40px rgba(0, 0, 0, .38);
  --nav-bg:        rgba(14, 10, 13, .8);
  --menu-bg:       rgba(21, 13, 18, .98);
  --radius:        14px;
  --radius-sm:     10px;
  --maxw:          1200px;
  --font:          'Vazirmatn', system-ui, -apple-system, sans-serif;
}

/* ---------- Light mode (day) ---------- */
[data-theme="light"] {
  --bg:            #f7f3f5;
  --bg-soft:       #efe7ec;
  --surface:       #ffffff;
  --surface-2:     #f4edf1;
  --line:          rgba(28, 18, 24, 0.10);
  --line-strong:   rgba(28, 18, 24, 0.20);

  --text:          #1c1018;
  --text-soft:     #5c4654;
  --text-dim:      #8a7480;

  --brand-2:       #8a1259;   /* deeper magenta for contrast on light */

  --grad-hero:     radial-gradient(1200px 600px at 80% -10%, rgba(107,10,73,.16), transparent 60%),
                   radial-gradient(900px 500px at 10% 10%, rgba(18,27,76,.12), transparent 55%);
  --shadow:        0 20px 50px rgba(107, 10, 73, .14);
  --nav-bg:        rgba(255, 255, 255, .82);
  --menu-bg:       rgba(255, 255, 255, .98);
}
[data-theme="light"] body { background: var(--bg); }

/* VIP teaser card — readable light variant */
[data-theme="light"] .vip-box {
  background: linear-gradient(135deg, #fdf7ea, #f6e7cb);
  border-color: rgba(217,154,43,.5);
  color: #2c1d06;
}
[data-theme="light"] .vip-box::before { background: radial-gradient(circle, rgba(217,154,43,.22), transparent 65%); }
[data-theme="light"] .vip-box h2 .grad { background: linear-gradient(135deg, #bf8a18, #946310); -webkit-background-clip: text; background-clip: text; color: transparent; }
[data-theme="light"] .vip-box p { color: #6e5a33; }
[data-theme="light"] .vip-perks li { color: #2c1d06; }
[data-theme="light"] .vip-perks .ck { background: rgba(217,154,43,.18); color: #946310; }

/* smooth theme transition */
body, .nav, .card, .quote, .faq-item, .footer, .ticker, .plan, .vsvc, .compare { transition: background-color .35s ease, border-color .35s ease, color .35s ease; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .2px;
  font-family: var(--font);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(107, 10, 73, .28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(107, 10, 73, .4); }
.btn-gold {
  background: var(--grad-gold);
  color: #2a1a02;
  box-shadow: 0 6px 20px rgba(245, 196, 81, .22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(245, 196, 81, .34); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.04); border-color: var(--brand-2); }
.btn-lg { padding: 15px 32px; font-size: 15.5px; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
  padding: 16px 0;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .3px;
}
.brand .logo {
  display: inline-flex; align-items: center;
  flex: none;
}
.brand .logo img { height: 58px; width: auto; object-fit: contain; display: block; }
/* Monex brand wordmark in body/headings */
.mx { font-family: 'INGAME', var(--font); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- MONEXRADAR — economic calendar ---------- */
.imp-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; flex: none; display: inline-block; }
.imp-dot::before { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1px solid currentColor; opacity: .5; animation: radpulse 2s infinite; }
@keyframes radpulse { 0% { transform: scale(.55); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.imp-high   { background: var(--gold);     color: var(--gold); }
.imp-medium { background: var(--brand-2);  color: var(--brand-2); }
.imp-low    { background: var(--text-dim); color: var(--text-dim); }
.imp-low::before { display: none; }
.cur { font-weight: 800; font-size: .76rem; padding: 3px 9px; border-radius: 7px; background: var(--surface-2); border: 1px solid var(--line); letter-spacing: .5px; flex: none; }

/* next-important card */
.rad-next { position: relative; overflow: hidden; background: var(--grad-brand); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 22px; box-shadow: var(--shadow); }
.rad-next::before { content: ''; position: absolute; width: 320px; height: 320px; top: -170px; inset-inline-end: -110px; border-radius: 50%; background: conic-gradient(from 0deg, rgba(245,196,81,.20), transparent 32%); animation: radsweep 7s linear infinite; }
@keyframes radsweep { to { transform: rotate(360deg); } }
.rad-next > * { position: relative; z-index: 1; }
.rn-tag { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 10px; }
.rn-main { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.rn-time { color: rgba(255,255,255,.85); font-size: .9rem; }
.rad-next .cur { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25); color: #fff; }

/* filters */
.rad-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.rad-chip { padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--text-soft); font-family: var(--font); font-weight: 700; font-size: .85rem; cursor: pointer; transition: .15s; }
.rad-chip:hover { color: var(--text); border-color: var(--brand-2); }
.rad-chip.active { background: var(--grad-gold); color: #2a1a02; border-color: transparent; }
.rad-tzwrap { display: inline-flex; align-items: center; gap: 8px; color: var(--text-soft); font-size: .85rem; font-weight: 600; }
.rad-tzwrap select { padding: 7px 12px; border-radius: 999px; border: 1px solid var(--line-strong); background: var(--surface); color: var(--text); font-family: var(--font); font-size: .85rem; font-weight: 700; cursor: pointer; }
.rad-tzwrap select:focus { outline: none; border-color: var(--brand-2); }
.rad-src { margin-inline-start: auto; color: var(--text-dim); font-size: .78rem; }
@media (max-width: 620px) { .rad-src { margin-inline-start: 0; flex-basis: 100%; } }

/* day groups + event rows */
.rad-day { margin-bottom: 20px; }
.rad-day-head { font-size: .85rem; color: var(--gold); font-weight: 800; padding: 8px 4px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.rev { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 8px; transition: border-color .18s, transform .18s; }
.rev:hover { border-color: var(--line-strong); transform: translateX(-2px); }
[dir="ltr"] .rev:hover { transform: translateX(2px); }
.rev.imp-high   { border-inline-start: 3px solid var(--gold); }
.rev.imp-medium { border-inline-start: 3px solid var(--brand-2); }
.rev-time { font-weight: 700; font-size: .9rem; min-width: 46px; color: var(--text-soft); }
.rev-title { flex: 1; min-width: 0; font-size: .92rem; }
.rv-row { display: flex; gap: 16px; flex-wrap: wrap; flex: none; }
.rv { font-size: .82rem; color: var(--text); white-space: nowrap; }
.rv i { font-style: normal; color: var(--text-dim); margin-inline-end: 4px; }
.rv.muted { color: var(--text-dim); }
.rv-up { color: var(--green); } .rv-down { color: var(--red); }

/* teaser cards on home */
.rad-card-top { display: flex; align-items: center; gap: 8px; }
.rad-card.imp-high   { border-top: 2px solid var(--gold); }
.rad-card.imp-medium { border-top: 2px solid var(--brand-2); }
.rad-when { margin-inline-start: auto; color: var(--text-dim); font-size: .8rem; }

@media (max-width: 620px) {
  .rev { flex-wrap: wrap; }
  .rev-title { flex-basis: 100%; order: 3; }
  .rv-row { order: 4; flex-basis: 100%; }
}
/* logo swaps with theme */
.brand .logo .logo-light { display: none; }
[data-theme="light"] .brand .logo .logo-dark { display: none; }
[data-theme="light"] .brand .logo .logo-light { display: block; }
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name span:first-child { font-size: 22px; }
.brand .name small { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--text-dim); text-transform: uppercase; }
.brand b { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 22px; flex-wrap: nowrap; }
.nav-links a {
  font-size: 14.5px; color: var(--text-soft); font-weight: 500;
  position: relative; transition: color .2s; white-space: nowrap;
}
.nav-links .drop > .drop-toggle { white-space: nowrap; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; right: 0;
  width: 0; height: 2px; background: var(--grad-brand); transition: width .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* ---------- Nav dropdowns ---------- */
.nav-links .drop { position: relative; }
.nav-links .drop > .drop-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 5px; }
.nav-links .drop > .drop-toggle::after { content: ''; position: static; inset: auto; background: none; width: 7px; height: 7px; border-inline-end: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; opacity: .7; }
.nav-links .drop:hover > .drop-toggle::after { width: 7px; transform: rotate(225deg) translateY(2px); }
.nav-links .drop::after { content: ''; position: absolute; top: 100%; inset-inline-start: -20px; width: calc(100% + 40px); height: 18px; }
.nav-links .drop-panel {
  position: absolute; top: calc(100% + 14px); inset-inline-start: 50%; transform: translateX(50%) translateY(8px);
  min-width: 220px; background: var(--menu-bg); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s; z-index: 60;
}
[dir="ltr"] .nav-links .drop-panel { transform: translateX(-50%) translateY(8px); }
.nav-links .drop:hover .drop-panel { opacity: 1; visibility: visible; transform: translateX(50%) translateY(0); }
[dir="ltr"] .nav-links .drop:hover .drop-panel { transform: translateX(-50%) translateY(0); }
.nav-links .drop-panel a { padding: 10px 13px; border-radius: 8px; font-size: 14px; color: var(--text-soft); white-space: nowrap; font-weight: 500; }
.nav-links .drop-panel a::after { display: none; }
.nav-links .drop-panel a:hover { background: var(--surface); color: var(--text); }
.mobile-menu .mm-group { font-size: 12px; color: var(--text-dim); padding: 14px 6px 4px; letter-spacing: 1px; text-transform: uppercase; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 42px; height: 42px; flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-strong);
  color: var(--text);
  cursor: pointer; font-size: 18px;
  display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: var(--brand-2); background: rgba(107,10,73,.12); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  color: var(--text); font-size: 26px; padding: 4px;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 22px 22px;
  background: var(--menu-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 6px; border-bottom: 1px solid var(--line); color: var(--text-soft); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 124px 0 44px;
  background: var(--grad-hero);
  /* افقی را می‌بُریم تا گویچه‌ها اسکرول‌بارِ افقی نسازند، ولی عمودی «visible»
     می‌ماند تا گویچه‌ی نوریِ بلور (navy) در لبه‌ی پایین هارد-کلیپ نشود و
     خطِ افقیِ تیز نسازد — به‌جایش نرم محو می‌شود. */
  overflow-x: clip;
  overflow-y: visible;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 70% 20%, #000, transparent 70%);
          mask-image: radial-gradient(circle at 70% 20%, #000, transparent 70%);
  opacity: .5;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(52, 211, 153, .12);
  border: 1px solid rgba(52, 211, 153, .3);
  color: var(--green); font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,211,153,.2); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } }

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: 'INGAME', var(--font); text-transform: uppercase; letter-spacing: 2px; }
.hero p.lead {
  font-size: 18px; color: var(--text-soft);
  max-width: 540px; margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 36px; display: flex; gap: 28px; flex-wrap: wrap; color: var(--text-dim); font-size: 14px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust b { color: var(--text); font-weight: 700; }
.hero-trust svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Hero visual — trading card */
.hero-visual { position: relative; }
@keyframes float { 50% { transform: translateY(-14px); } }

/* ===== Hero: گوی جهانی چرخان + کمان‌های معاملاتی + قیمت زنده ===== */
.globe-wrap { position: relative; width: 100%; max-width: 424px; margin-inline: auto; aspect-ratio: 1 / 1; }

/* هاله‌ی گرم پشت کره (مجنتا + طلایی، نرم و بدون لبه) */
.globe-glow {
  position: absolute; inset: -4%; border-radius: 50%; z-index: 0;
  background:
    radial-gradient(circle at 44% 40%, rgba(245,196,110,.20), transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(178,62,125,.40), rgba(107,10,73,.14) 52%, transparent 72%);
  filter: blur(16px); animation: globePulse 6s ease-in-out infinite;
}
@keyframes globePulse { 50% { opacity: .68; transform: scale(1.04); } }
[data-theme="light"] .globe-glow {
  background:
    radial-gradient(circle at 44% 40%, rgba(232,150,64,.16), transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(138,18,89,.18), rgba(138,18,89,.06) 52%, transparent 74%);
}

/* زمینه‌ی ستاره‌ای (فقط دارک‌مود) */
.globe-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.gstar { position: absolute; border-radius: 50%; background: #d7e7ff; box-shadow: 0 0 3px rgba(180,215,255,.8); opacity: .55; animation: twk 3s ease-in-out infinite; }
@keyframes twk { 0%, 100% { opacity: .6; } 50% { opacity: .12; } }
[data-theme="light"] .globe-stars { display: none; }

/* کره (canvas تمام‌اندازه؛ R در JS محاسبه می‌شود) */
.globe-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

/* ساعت زنده + انتخاب منطقه‌ی زمانی (هماهنگ با MONEXRADAR از کلید monex-tz) */
.globe-clock { position: absolute; z-index: 4; top: 0; inset-inline-start: 0; display: inline-flex; align-items: center; gap: 8px; background: rgba(28,7,19,.66); border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 8px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.gc-time { font: 800 14px var(--font); color: var(--gold); font-variant-numeric: tabular-nums; letter-spacing: .5px; padding-inline-start: 4px; }
.gc-tz { appearance: none; -webkit-appearance: none; border: 1px solid var(--line-strong); background: rgba(255,255,255,.05); color: var(--text); font-family: var(--font); font-weight: 700; font-size: 12px; border-radius: 999px; padding: 4px 11px; cursor: pointer; }
.gc-tz:focus { outline: none; border-color: var(--brand-2); }
/* گزینه‌های منو با رنگ‌بندی Monex (در دارک‌مود ناپیدا بودند) */
.gc-tz option { background: var(--surface); color: var(--text); }
.gc-tz option:checked { background: var(--brand); color: #fff; }
/* لایت‌مود: شیشه‌های روشن و خوانا + هاله‌ی برند */
[data-theme="light"] .globe-clock, [data-theme="light"] .sess { background: rgba(255,255,255,.82); }
[data-theme="light"] .gc-time { color: var(--gold-deep); }
[data-theme="light"] .gc-tz { background: rgba(0,0,0,.04); }
[data-theme="light"] .sess.open { color: var(--brand-2); }
[data-theme="light"] .globe-tip { background: rgba(255,255,255,.96); color: var(--text); }
[data-theme="light"] .globe-glow { background: radial-gradient(circle at 50% 42%, rgba(138,18,89,.20), rgba(138,18,89,.07) 46%, transparent 72%); }

/* نشانگرهای سشن معاملاتی (ساعت بازار جهانی) */
.sess { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-strong); background: rgba(28,7,19,.66); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: var(--text-soft); font: 700 12px var(--font); cursor: default; transition: color .25s, border-color .25s, box-shadow .25s; }
.sess-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-dim); flex: none; transition: background .25s; }
.sess.open { color: #fff; border-color: rgba(245,196,81,.6); box-shadow: 0 0 20px rgba(245,196,81,.22); }
.sess.open .sess-dot { background: var(--gold); animation: tickerPulse 1.6s infinite; }
.sess-london  { top: 0; left: 50%; transform: translateX(-50%); }
.sess-sydney  { bottom: 0; left: 50%; transform: translateX(-50%); }
.sess-newyork { top: 50%; left: 0; transform: translateY(-50%); }
.sess-tokyo   { top: 50%; right: 0; transform: translateY(-50%); }

/* تول‌تیپ سشن (نام + شمارش معکوس زنده) */
.globe-tip { position: absolute; z-index: 6; transform: translate(-50%, -120%); background: rgba(18,4,11,.96); border: 1px solid var(--line-strong); border-radius: 10px; padding: 8px 12px; font: 600 12px var(--font); color: var(--text); white-space: nowrap; box-shadow: 0 12px 32px rgba(0,0,0,.55); pointer-events: none; }
.globe-tip b { color: var(--gold); font-variant-numeric: tabular-nums; }
.globe-tip[hidden] { display: none; }

/* چیپ قیمت زنده (شیشه‌ای) */
.hero-quote {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px;
  background: rgba(28,7,19,.74); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line-strong); border-radius: 16px; padding: 11px 15px;
  box-shadow: 0 18px 42px rgba(0,0,0,.5); min-width: 200px;
  transition: opacity .3s ease, transform .3s ease;
}
.hero-quote[hidden] { display: none; }
.hero-quote.swap { opacity: 0; transform: translateY(8px); }
.hero-quote { top: 15%; right: 0; animation: float 7s ease-in-out infinite; min-width: 180px; }
.hero-quote-2 { bottom: 15%; left: 0; top: auto; animation: float 8s ease-in-out infinite .6s; min-width: 180px; }
.hq-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: none; animation: tickerPulse 1.6s infinite; }
.hq-main { display: flex; flex-direction: column; line-height: 1.25; }
.hq-sym { font-size: 12px; color: var(--text-soft); font-weight: 700; letter-spacing: .3px; }
.hq-price { font-size: 20px; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.hq-chg { font-size: 12.5px; font-weight: 700; padding: 2px 8px; border-radius: 6px; white-space: nowrap; }
.hq-spark { width: 56px; height: 26px; display: block; }

/* ---------- Marquee / logos ---------- */
.ticker { position: relative; border-block: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; align-items: center; width: max-content; will-change: transform; }
.ticker-item { display: inline-flex; align-items: center; gap: 9px; color: var(--text-soft); font-weight: 600; white-space: nowrap; padding: 0 24px; border-inline-end: 1px solid var(--line); }
.ti-sym { color: var(--text); font-weight: 700; letter-spacing: .3px; }
.ti-price { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.ticker-spark { display: block; opacity: .92; }
.ticker-item .chg { display: inline-flex; align-items: center; gap: 4px; font-size: 12.5px; font-weight: 700; padding: 2px 8px; border-radius: 6px; font-variant-numeric: tabular-nums; }
.ti-arr { font-size: 9px; line-height: 1; }
.up { color: var(--green); background: rgba(52,211,153,.1); }
.down { color: var(--red); background: rgba(248,113,113,.1); }
.ticker-cat { display: inline-flex; align-items: center; white-space: nowrap; margin: 0 20px 0 6px; padding: 4px 14px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .5px; color: var(--gold); background: linear-gradient(135deg, rgba(107,10,73,.55), rgba(178,62,125,.28)); border: 1px solid var(--line-strong); }
[data-theme="light"] .ticker-cat { color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); border-color: transparent; box-shadow: 0 2px 8px rgba(107,10,73,.2); }
/* نشان «زنده» ثابت در ابتدای نوار */
.ticker-live { position: absolute; inset-inline-start: 0; top: 0; bottom: 0; z-index: 2; display: inline-flex; align-items: center; gap: 7px; padding: 0 16px; font-size: 12px; font-weight: 800; letter-spacing: .5px; color: #fff; background: var(--brand); }
.ticker-live::after { content: ''; position: absolute; inset-inline-end: -28px; top: 0; bottom: 0; width: 28px; background: linear-gradient(to right, var(--brand), transparent); }
[dir="rtl"] .ticker-live::after { background: linear-gradient(to left, var(--brand), transparent); }
.ticker-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: tickerPulse 1.6s infinite; }
@keyframes tickerPulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); } 70% { box-shadow: 0 0 0 7px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
/* تب‌های فیلتر دسته‌بندی — دسترسی سریع به هر بازار */
.ticker-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 16px 16px 0; }
.ticker-tab { padding: 6px 16px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--text-soft); font-family: var(--font); font-weight: 700; font-size: .82rem; cursor: pointer; transition: color .15s, background .15s, border-color .15s; }
.ticker-tab:hover { color: var(--text); border-color: var(--brand-2); }
.ticker-tab.active { color: #fff; background: var(--brand); border-color: var(--brand); box-shadow: 0 4px 14px rgba(107,10,73,.35); }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--brand-2); font-weight: 700; font-size: 12.5px;
  letter-spacing: 2.5px; margin-bottom: 16px; text-transform: uppercase;
}
.section-tag::before {
  content: ''; width: 30px; height: 1px; flex: none;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.section-head .section-tag { gap: 0; }
.section-head .section-tag::before { display: none; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.3; margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 17px; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, rgba(107,10,73,.20), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .ic-box {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px;
  background: rgba(107,10,73,.12); border: 1px solid rgba(107,10,73,.26);
  color: var(--brand-2);
}
.ic-box svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 15px; }
.card .more { margin-top: 18px; color: var(--brand-2); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; }

/* ---------- Products ---------- */
.product { display: flex; flex-direction: column; }
.product-top { position: relative; height: 130px; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; display: grid; place-items: center; }
.product-top.p1 { background: linear-gradient(135deg,#121B4C,#28306b); }
.product-top.p2 { background: linear-gradient(135deg,#7a4a0d,#f5c451); }
.product-top.p3 { background: var(--grad-brand); }
.product-top .badge-img { font-size: 46px; color: rgba(255,255,255,.92); }
.product-top .badge-img svg { width: 44px; height: 44px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.product .tag-row { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.tag { font-size: 12px; padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--line); color: var(--text-soft); }
.product .price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; }
.product .price b { font-size: 24px; }
.product .price s { color: var(--text-dim); font-size: 15px; }
.rating { color: var(--gold); font-size: 14px; margin-bottom: 6px; }

/* ---------- Stats band ---------- */
.stats {
  background: linear-gradient(120deg, rgba(107,10,73,.14), rgba(18,27,76,.07));
  border-block: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat b { display: block; font-size: clamp(30px,4vw,46px); font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--text-soft); font-size: 15px; }

/* ---------- VIP teaser ---------- */
.vip-teaser { position: relative; overflow: hidden; }
.vip-box {
  position: relative;
  background: linear-gradient(135deg, #1a1407, #241a08);
  border: 1px solid rgba(245,196,81,.3);
  border-radius: 26px;
  padding: 56px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: center;
  overflow: hidden;
}
.vip-box::before {
  content:''; position:absolute; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(245,196,81,.28), transparent 65%);
  top:-120px; left:-80px;
}
.vip-box .crown { font-size: 40px; margin-bottom: 14px; }
.crown svg, .crown-big svg { width: 1em; height: 1em; display: block; stroke: var(--gold); fill: none; stroke-width: 1.3; stroke-linejoin: round; }
.access-info .crown svg { width: 1em; height: 1em; }
.vip-box h2 { font-size: clamp(26px,3.5vw,38px); margin-bottom: 14px; }
.vip-box h2 .grad { background: var(--grad-gold); -webkit-background-clip:text; background-clip:text; color: transparent; }
.vip-box p { color: var(--text-soft); margin-bottom: 26px; font-size: 16px; }
.vip-perks { display: grid; gap: 12px; }
.vip-perks li { display: flex; align-items: center; gap: 11px; font-size: 15px; }
.vip-perks .ck { width: 24px; height: 24px; border-radius: 7px; background: rgba(245,196,81,.15); color: var(--gold); display: grid; place-items: center; flex: none; font-weight: 900; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .num {
  width: 50px; height: 50px; border-radius: 14px; background: var(--surface-2);
  border: 1px solid var(--line-strong); display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: var(--brand-2); margin-bottom: 18px;
}
.step h4 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: 14px; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.quote .stars { color: var(--gold); margin-bottom: 12px; }
.quote p { color: var(--text-soft); font-size: 15px; margin-bottom: 18px; }
.quote-user { display: flex; align-items: center; gap: 12px; }
.quote-user .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); display: grid; place-items: center; font-weight: 800; color: #fff; }
.quote-user b { display: block; font-size: 15px; }
.quote-user small { color: var(--text-dim); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: var(--surface); }
.faq-q { padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; gap: 14px; }
.faq-q .pm { font-size: 22px; color: var(--brand-2); transition: transform .3s; flex: none; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 22px; color: var(--text-soft); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 22px; }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-inner {
  background: var(--grad-brand);
  border-radius: 26px; padding: 60px 40px; color: #fff;
  position: relative; overflow: hidden;
}
.cta-inner h2 { font-size: clamp(26px,3.5vw,40px); margin-bottom: 14px; font-weight: 800; }
.cta-inner p { font-size: 17px; margin-bottom: 28px; opacity: .85; }
.cta-inner .btn-gold { color: #2a1a02; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer .brand { margin-bottom: 16px; }
.footer p.about { color: var(--text-soft); font-size: 14px; max-width: 320px; }
.footer h5 { font-size: 15px; margin-bottom: 18px; color: var(--text); }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: var(--text-soft); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--brand-2); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-soft); transition: .2s; }
.socials a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.socials a:hover { border-color: var(--brand-2); color: var(--text); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--text-dim); font-size: 13px; }

/* ---------- Disclaimer ---------- */
.risk { background: rgba(248,113,113,.06); border-block: 1px solid rgba(248,113,113,.2); padding: 18px 0; }
.risk p { color: var(--text-dim); font-size: 13px; text-align: center; max-width: 900px; margin: 0 auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show { opacity: 1; transform: none; }

/* ===================================================================
   VIP PAGE
   =================================================================== */
.vip-hero {
  padding: 160px 0 80px;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(245,196,81,.18), transparent 60%),
    radial-gradient(700px 400px at 10% 10%, rgba(217,154,43,.1), transparent 55%);
  text-align: center;
  position: relative; overflow: hidden;
}
.vip-hero .crown-big { font-size: 56px; margin-bottom: 18px; }
.vip-hero h1 { font-size: clamp(34px,5vw,58px); font-weight: 800; margin-bottom: 18px; }
.vip-hero h1 .grad { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.vip-hero p { color: var(--text-soft); font-size: 18px; max-width: 600px; margin: 0 auto 30px; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.plan {
  background: linear-gradient(180deg, var(--surface), var(--bg-soft));
  border: 1px solid var(--line); border-radius: 22px; padding: 34px 30px;
  display: flex; flex-direction: column; position: relative; transition: transform .3s, border-color .3s;
}
.plan:hover { transform: translateY(-8px); }
.plan.featured { border-color: rgba(245,196,81,.5); box-shadow: 0 24px 60px rgba(245,196,81,.12); }
.plan.featured::after {
  content: 'محبوبترین'; position: absolute; top: 18px; left: 18px;
  background: var(--grad-gold); color: #2a1a02; font-size: 12px; font-weight: 800;
  padding: 5px 13px; border-radius: 999px;
}
/* نسخه‌ی انگلیسی (LTR): متنِ بَج به‌جای فارسی */
[dir="ltr"] .plan.featured::after { content: 'Most popular'; }
.plan .plan-name { font-size: 14px; font-weight: 700; letter-spacing: 1px; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; }
.plan .plan-ic { font-size: 34px; margin-bottom: 14px; }
.plan .plan-ic svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.plan .plan-price { font-size: 40px; font-weight: 800; margin-bottom: 4px; }
.plan .plan-price small { font-size: 15px; color: var(--text-dim); font-weight: 500; }
.plan .plan-desc { color: var(--text-soft); font-size: 14px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.plan ul { display: grid; gap: 13px; margin-bottom: 28px; flex: 1; }
.plan ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-soft); }
.plan ul li .ck { color: var(--green); font-weight: 900; flex: none; }
.plan ul li.off { color: var(--text-dim); text-decoration: line-through; }
.plan ul li.off .ck { color: var(--text-dim); }
.plan .btn { justify-content: center; width: 100%; }

/* VIP services */
.vip-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.vsvc {
  display: flex; gap: 18px; padding: 26px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .3s, transform .3s;
}
.vsvc:hover { border-color: rgba(245,196,81,.4); transform: translateY(-3px); }
.vsvc .ic-box { width: 54px; height: 54px; flex: none; border-radius: 13px; background: rgba(245,196,81,.12); border: 1px solid rgba(245,196,81,.25); display: grid; place-items: center; font-size: 26px; color: var(--gold); }
.vsvc h3 { font-size: 18px; margin-bottom: 7px; }
.vsvc p { color: var(--text-soft); font-size: 14px; }

/* VIP login panel */
.access {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line-strong); border-radius: 24px; overflow: hidden;
}
.access-info { padding: 50px; position: relative; }
.access-info .crown { font-size: 38px; margin-bottom: 16px; }
.access-info h2 { font-size: 30px; margin-bottom: 14px; }
.access-info p { color: var(--text-soft); margin-bottom: 26px; }
.access-info .perk { display: flex; gap: 11px; margin-bottom: 14px; align-items: center; font-size: 15px; }
.access-info .perk .ck { color: var(--gold); font-weight: 900; }
.access-form {
  padding: 50px; background: rgba(0,0,0,.25);
  display: flex; flex-direction: column; justify-content: center;
}
.tabs { display: flex; gap: 8px; background: var(--bg); border-radius: 12px; padding: 5px; margin-bottom: 26px; }
.tabs button {
  flex: 1; padding: 11px; border: 0; border-radius: 9px; cursor: pointer;
  background: transparent; color: var(--text-soft); font-family: var(--font); font-weight: 700; font-size: 14px; transition: .2s;
}
.tabs button.active { background: var(--grad-gold); color: #2a1a02; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; color: var(--text-soft); margin-bottom: 8px; }
.field input {
  width: 100%; padding: 13px 16px; border-radius: 11px; font-family: var(--font); font-size: 15px;
  background: var(--bg); border: 1px solid var(--line-strong); color: var(--text); transition: border-color .2s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.form-note { text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 16px; }
.form-note a { color: var(--brand-2); }
.form-msg { text-align: center; font-size: 14px; margin-top: 14px; color: var(--green); min-height: 20px; }

/* compare table */
.compare { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare table { width: 100%; border-collapse: collapse; min-width: 600px; }
.compare th, .compare td { padding: 16px 20px; text-align: right; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare th { color: var(--text); font-weight: 800; background: var(--surface); }
.compare thead th:not(:first-child) { color: var(--gold); }
.compare td:first-child { color: var(--text-soft); }
.compare .yes { color: var(--green); font-weight: 800; }
.compare .no { color: var(--text-dim); }
.compare tbody tr:hover { background: rgba(255,255,255,.02); }

/* ===================================================================
   Intro / welcome splash (home page)
   =================================================================== */
#intro {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: radial-gradient(62% 62% at 50% 42%, #2a0f25 0%, #160a17 46%, #0d080e 100%);
  animation: introOut .85s ease 2.7s forwards;   /* auto-dismiss fallback (works without JS) */
}
#intro::before {                                  /* faint grid texture */
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000, transparent 68%);
          mask-image: radial-gradient(circle at 50% 42%, #000, transparent 68%);
}
.intro-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.intro-logo { position: relative; width: clamp(96px, 22vw, 132px); height: clamp(96px, 22vw, 132px); display: grid; place-items: center; }
.intro-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 12px 34px rgba(178,62,125,.55));
  opacity: 0; transform: translateY(-28px) scale(.55);
  animation: introLogo .95s cubic-bezier(.18,.85,.25,1.05) .15s forwards;
}
.intro-glow {
  position: absolute; width: 150%; height: 150%; border-radius: 50%;
  background: radial-gradient(circle, rgba(178,62,125,.45), transparent 62%);
  opacity: 0; transform: scale(.5);
  animation: introGlow 1.6s ease .2s forwards;
}
.intro-ring, .intro-ring2 {
  position: absolute; border-radius: 50%; opacity: 0;
  border: 2px solid rgba(178,62,125,.6); inset: 0; transform: scale(.45);
}
.intro-ring  { animation: introRing 1.35s ease .3s forwards; }
.intro-ring2 { inset: -16px; border-color: rgba(178,62,125,.28); animation: introRing 1.55s ease .42s forwards; }
.intro-name { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.intro-title {
  font-size: clamp(30px, 8vw, 44px); font-weight: 800; letter-spacing: 1px; color: var(--text);
  opacity: 0; transform: translateY(22px);
  animation: introName .7s cubic-bezier(.2,.8,.25,1) 1s forwards;
}
.intro-title b { background: linear-gradient(135deg, #b23e7d, #e981b4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intro-line {
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, #b23e7d, transparent);
  animation: introLine .7s ease 1.25s forwards;
}
.intro-sub {
  font-size: clamp(10px, 2.6vw, 12px); letter-spacing: 6px; text-transform: uppercase; color: var(--text-dim);
  opacity: 0; transform: translateY(14px);
  animation: introName .7s cubic-bezier(.2,.8,.25,1) 1.35s forwards;
}
.intro-skip { animation: none !important; opacity: 0 !important; visibility: hidden; pointer-events: none; transition: opacity .35s ease, visibility .35s ease; }
html.intro-playing { overflow: hidden; }

@keyframes introLogo { 0% { opacity: 0; transform: translateY(-28px) scale(.55); } 55% { opacity: 1; } 100% { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introGlow { 0% { opacity: 0; transform: scale(.5); } 45% { opacity: 1; } 100% { opacity: .55; transform: scale(1); } }
@keyframes introRing { 0% { opacity: 0; transform: scale(.45); } 35% { opacity: .9; } 100% { opacity: 0; transform: scale(1.3); } }
@keyframes introName { to { opacity: 1; transform: none; } }
@keyframes introLine { to { width: clamp(120px, 40vw, 200px); } }
@keyframes introOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

[data-intro="seen"] #intro { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  #intro { display: none !important; }
  html.intro-playing { overflow: auto; }
}

/* ---------- LTR (English version) overrides ---------- */
[dir="ltr"] .nav-links a::after { right: auto; left: 0; }
[dir="ltr"] .compare th, [dir="ltr"] .compare td { text-align: left; }
[dir="ltr"] .pill, [dir="ltr"] .hero-trust span, [dir="ltr"] .vip-perks li,
[dir="ltr"] .access-info .perk, [dir="ltr"] .ticker-item { letter-spacing: 0; }
[dir="ltr"] .brand .name small { letter-spacing: 2px; }

/* ---------- Responsive ---------- */
/* نوبار زودتر به منوی همبرگری می‌رود تا کلمات نشکنند */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-cta .btn:not(.btn-gold) { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .cards, .quotes, .vip-services, .plans { grid-template-columns: 1fr; }
  .steps, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .vip-box, .access { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vip-box { padding: 36px 26px; }
  .access-info, .access-form { padding: 34px; }
}
@media (max-width: 560px) {
  .stats-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta-inner { padding: 44px 24px; }
}
