/* =========================================================
   Geeksofforex — light theme (warm off-white / black / orange)
   ========================================================= */
:root {
  --accent: #1E3A8A;
  --accent-2: #3B6FE0;
  --accent-soft: #E7ECFA;
  --bg: #EDF1F8;          /* warm light gray page */
  --bg-soft: #F5F8FC;
  --card: #FFFFFF;
  --ink: #0C1220;         /* near-black text */
  --ink-2: #29324A;
  --muted: #6A7387;
  --line: rgba(12, 18, 32, 0.10);
  --line-soft: rgba(12, 18, 32, 0.06);
  --dark: #0C1220;        /* dark buttons */
  --green: #1EA765;
  --red: #E0503C;
  --radius: 22px;
  --radius-sm: 14px;
  --maxw: 1200px;
  --shadow: 0 20px 50px rgba(12, 18, 32, 0.10);
  --shadow-lg: 0 30px 70px rgba(12, 18, 32, 0.16);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .brand__name { font-family: var(--font-display); letter-spacing: -0.03em; line-height: 1.05; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.accent { color: var(--accent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* subtle pixel-grid texture behind hero */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 18, 32,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 18, 32,0.022) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(120% 80% at 60% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(120% 80% at 60% 0%, #000 30%, transparent 75%);
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 1.5px solid transparent; transition: .2s;
}
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 10px 26px rgba(30, 58, 138,.32); }
.btn--accent:hover { transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

/* ===== Header (pill nav, centered) ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; padding: 1rem clamp(1rem, 4vw, 2.4rem);
  transition: .3s;
}
.site-header.scrolled { background: rgba(237,235,231,.82); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line-soft); }
.brand { display: flex; align-items: center; gap: .55rem; justify-self: start; }
.brand__logo { width: 40px; height: 40px; object-fit: contain; }
.brand__name { font-family: "Montserrat", var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }

.nav-pill {
  justify-self: center;
  display: flex; align-items: center; gap: .2rem;
  background: var(--card); border: 1px solid var(--line);
  padding: .35rem; border-radius: 999px; box-shadow: var(--shadow);
}
.nav-pill a {
  color: var(--ink-2); font-weight: 500; font-size: .92rem;
  padding: .55rem 1.05rem; border-radius: 999px; transition: .2s; white-space: nowrap;
}
.nav-pill a:hover { color: var(--accent); background: var(--accent-soft); }
.nav-pill a.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.nav-pill a.active:hover { color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }

.header-cta { justify-self: end; display: flex; align-items: center; gap: .6rem; }
.header-cta .btn { padding: .7rem 1.4rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: 74px; left: 1rem; right: 1rem; z-index: 99;
  flex-direction: column; padding: .8rem; gap: .2rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg);
}
.mobile-menu a { padding: .8rem 1rem; border-radius: 12px; color: var(--ink-2); font-weight: 500; }
.mobile-menu a:hover { background: var(--accent-soft); color: var(--accent); }
.mobile-menu a.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.mobile-menu a.mm-join { margin-top: .4rem; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; text-align: center; box-shadow: 0 10px 24px rgba(30, 58, 138,.28); }
.mobile-menu a.mm-join:hover { color: #fff; filter: brightness(1.05); }
.mobile-menu.open { display: flex; }

/* research credential badge */
.research-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; color: var(--ink-2); background: var(--card); border: 1px solid var(--line); padding: .5rem 1.05rem; border-radius: 999px; box-shadow: var(--shadow); font-weight: 500; }
.research-badge b { color: var(--accent); font-weight: 700; }

/* ===== Hero ===== */
.hero { padding: 9rem 0 4rem; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 2.5rem; align-items: center; }
.hero .pill-badge { margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.5rem); font-weight: 800; color: var(--ink); }
.hero__sub { color: var(--muted); font-size: 1.12rem; margin: 1.4rem 0 2rem; max-width: 480px; }
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__stat { margin-top: 3.2rem; display: flex; align-items: center; gap: 1rem; }
.hero__stat .num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.2rem); font-weight: 800; color: var(--ink); }
.hero__stat .ico { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,var(--accent),var(--accent-2)); color:#fff; display:grid; place-items:center; font-size:1.3rem; box-shadow: 0 8px 20px rgba(30, 58, 138,.35); }
.hero__stat p { color: var(--muted); font-size: .9rem; max-width: 200px; }
.hero__social { display: flex; gap: .5rem; margin-top: 2rem; }
.hero__social a { width: 42px; height: 42px; border-radius: 12px; background: var(--dark); color: #fff; display: grid; place-items: center; transition: .2s; }
.hero__social a:hover { background: var(--accent); transform: translateY(-2px); }

/* hero visual — floating cards */
.hero__visual { position: relative; min-height: 460px; }
.hero__visual::before { content: ""; position: absolute; inset: -8% -4%; z-index: -1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(30, 58, 138,.22), transparent 72%); filter: blur(10px); }
.fcard { position: absolute; background: var(--card); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); }
.fcard--main {
  right: 0; top: 40px; width: 74%; padding: 1.6rem;
  background: linear-gradient(150deg, var(--accent), #E85410); color: #fff; border: 0;
}
.fcard--main .tag { font-size: .85rem; opacity: .85; }
.fcard--main h3 { font-size: 1.55rem; margin-top: .5rem; max-width: 90%; }
.fcard--main .arrow { position: absolute; right: 1.4rem; bottom: 1.4rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--accent); display: grid; place-items: center; }
.fcard--balance { right: 8%; top: -6px; padding: .9rem 1.1rem; display: flex; flex-direction: column; gap: .1rem; animation: float 6s ease-in-out infinite; }
.fcard--balance .lbl { font-size: .78rem; color: var(--muted); }
.fcard--balance .val { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; gap: .5rem; }
.chip-green { font-size: .72rem; background: rgba(30,167,101,.14); color: var(--green); padding: .1rem .45rem; border-radius: 999px; }
.fcard--net { left: 0; top: 150px; width: 58%; padding: 1.2rem; animation: float 7s ease-in-out infinite; }
.fcard--net .lbl { font-size: .78rem; color: var(--muted); }
.fcard--net .val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.fcard--net .sub { font-size: .75rem; color: var(--muted); }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 54px; margin: .7rem 0 .5rem; }
.bars i { flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(var(--accent-2), var(--accent)); }
.legend { display: flex; gap: .7rem; font-size: .68rem; color: var(--muted); flex-wrap: wrap; }
.legend b { color: var(--ink); font-weight: 600; }
.fcard--emp { right: 2%; top: 300px; padding: 1rem 1.2rem; text-align: left; animation: float 8s ease-in-out infinite; }
.fcard--emp .ico { width: 32px; height: 32px; border-radius: 9px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: .5rem; }
.fcard--emp .val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; }
.fcard--emp .sub { font-size: .74rem; color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Intro video ===== */
.intro-video { padding-top: 2rem; }
.video-frame {
  position: relative; max-width: 980px; margin: 0 auto;
  border-radius: 26px; overflow: hidden; background: #000;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.video-frame::before {
  content: ""; position: absolute; inset: -2px; z-index: -1; border-radius: 28px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(30, 58, 138,.55), transparent 60%);
  filter: blur(24px);
}
.video-frame video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; background:#000; }
.video-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(10,10,10,.55); color: #fff; backdrop-filter: blur(6px);
  padding: .4rem .9rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
}
.video-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }

/* ===== Ticker ===== */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 2.4rem; padding: .8rem 0; animation: scroll 34s linear infinite; }
.ticker__item { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--muted); }
.ticker__item b { color: var(--ink); font-family: var(--font-display); }
.ticker__item .up { color: var(--green); } .ticker__item .down { color: var(--red); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 5.5rem 0; }
.section__head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: .7rem; }
.section__head h2, .section__head h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; }
.section__head p { color: var(--muted); margin-top: .8rem; font-size: 1.05rem; }

/* ===== Market Pulse ===== */
.pulse-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1rem; }
.pulse-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.3rem; box-shadow: var(--shadow); transition: .2s; }
.pulse-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pulse-card .name { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.pulse-card .price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; margin: .35rem 0 .2rem; }
.pulse-card .chg { font-size: .88rem; font-weight: 600; }
.pulse-card .chg.up { color: var(--green); } .pulse-card .chg.down { color: var(--red); }
.pulse-card.up { background: linear-gradient(160deg, rgba(30,167,101,.13), rgba(30,167,101,.03)); border-color: rgba(30,167,101,.35); }
.pulse-card.down { background: linear-gradient(160deg, rgba(224,80,60,.13), rgba(224,80,60,.03)); border-color: rgba(224,80,60,.35); }
.pulse-gift { grid-column: span 2; grid-row: span 2; background: linear-gradient(150deg, var(--dark), #2a2723) !important; color: #fff; border: 0 !important; display: flex; flex-direction: column; justify-content: center; padding: 2rem; box-shadow: 0 22px 60px rgba(30, 58, 138,.22), var(--shadow-lg); }
.pulse-gift .name { color: rgba(255,255,255,.6); }
.pulse-gift .price { color: #fff; font-size: clamp(2.4rem, 5vw, 3.4rem); }
.pulse-gift .chg { font-size: 1rem; }
.pulse-gift__link { display: inline-block; color: var(--accent-2); font-size: .9rem; font-weight: 600; margin-top: 1rem; }
.pulse-gift:hover .pulse-gift__link { text-decoration: underline; }
.pulse-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 2rem; border: 1px dashed var(--line); border-radius: var(--radius); }

/* ===== Feature/teaser cards ===== */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feat--2 { grid-template-columns: repeat(2, 1fr); }
.tile { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: 0 16px 40px rgba(12, 18, 32,.13); transition: .2s; }
.tile:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(12, 18, 32,.18); }

/* orange glow for the important PMS sections */
.pms-slider .sc-main,
.pms-stats,
.pms-slide { box-shadow: 0 22px 60px rgba(30, 58, 138,.24), 0 10px 30px rgba(12, 18, 32,.10) !important; }
.tile__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; background: var(--accent-soft); color: var(--accent); margin-bottom: 1.1rem; }
.tile h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.tile p { color: var(--muted); }
.tile a.more { display: inline-block; margin-top: 1rem; color: var(--accent); font-weight: 600; font-size: .92rem; }

/* ===== Our Range of Services ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: 2.4rem 1.8rem; text-align: center; box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; transition: .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card--featured { border: 2px solid var(--accent); box-shadow: 0 30px 70px rgba(30, 58, 138,.18); }
.svc-card__tag { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); margin-bottom: 1.4rem; }
.svc-card__tag .hash { color: var(--accent); }
.svc-badge {
  width: 150px; height: 150px; border-radius: 50%;
  display: grid; place-items: center; font-size: 3.6rem; margin-bottom: 1.6rem;
  background: radial-gradient(circle at 30% 25%, var(--accent-soft), #fff 70%);
  border: 1px solid var(--line); position: relative;
}
.svc-badge::after {
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 2px dashed rgba(30, 58, 138,.35);
}
.svc-card--featured .svc-badge { background: radial-gradient(circle at 30% 25%, #FFD9BE, var(--accent-soft) 75%); }
.svc-card__desc { color: var(--muted); margin-bottom: 1.8rem; flex: 1; }
.svc-card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ===== Split (image + text) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.split h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 1rem; }
.split p { color: var(--muted); margin-bottom: 1rem; }
.split .points { list-style: none; display: grid; gap: .8rem; margin: 1.2rem 0; }
.split .points li { display: flex; gap: .7rem; color: var(--ink-2); }
.split .points span { color: var(--accent); font-weight: 700; }

/* ===== Channel band ===== */
.channel { background: linear-gradient(150deg, var(--accent), #E85410); border-radius: 28px; padding: 4rem 2rem; text-align: center; color: #fff; box-shadow: var(--shadow-lg); }
.channel h2 { font-size: clamp(2rem,4vw,2.8rem); }
.channel p { opacity: .92; margin: 1rem auto 2rem; max-width: 520px; }
.channel .btn--light { background: #fff; color: var(--accent); }
.channel .btn--light:hover { background: var(--ink); color: #fff; }

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; }
.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.field input, .field textarea { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: .85rem 1rem; color: var(--ink); font-family: inherit; font-size: .95rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.contact__note { color: var(--green); font-weight: 600; }
.contact__info { display: grid; gap: 1.3rem; align-content: start; }
.contact__info .row { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; box-shadow: var(--shadow); }
.contact__info .row span { color: var(--muted); font-size: .82rem; }
.contact__info .row a, .contact__info .row b { display: block; margin-top: .2rem; color: var(--ink); font-weight: 600; }

/* ===== Page hero (subpages) ===== */
.page-hero { padding: 9rem 0 2.5rem; text-align: center; }
.page-hero h1 { font-size: clamp(2.2rem,5vw,3.6rem); font-weight: 800; }
.page-hero p { color: var(--muted); margin-top: 1rem; max-width: 620px; margin-inline: auto; font-size: 1.1rem; }
.pill-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; color: var(--muted); background: var(--card); margin-bottom: 1.2rem; }
.pill-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ===== Daily Signal benefits ===== */
.ds-benefits { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }
.ds-phone { text-align: center; }
.ds-phone img { width: 100%; max-width: 320px; margin: 0 auto; filter: drop-shadow(0 24px 50px rgba(12, 18, 32,.22)); }
.ds-benefits h2 { margin-bottom: 1.4rem; }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1rem; }
.benefits--stack { grid-template-columns: 1fr; gap: .8rem; }
@media (max-width: 860px) { .ds-benefits { grid-template-columns: 1fr; gap: 2rem; } .ds-phone img { max-width: 280px; } }
.benefit { display: flex; align-items: center; gap: .85rem; background: var(--card); border: 1px solid var(--line); border-radius: 13px; padding: .8rem 1.05rem; box-shadow: 0 12px 30px rgba(12, 18, 32,.12); transition: .2s; }
.benefit:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(30, 58, 138,.20); border-color: rgba(30, 58, 138,.35); }
.benefit__ico { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; font-size: 1.2rem; background: var(--accent-soft); border-radius: 11px; }
.benefit p { color: var(--ink-2); font-size: .82rem; }
.benefit b { color: var(--ink); font-weight: 700; }

/* ===== Daily Signal carousel ===== */
.sc-main { position: relative; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.sc-stage { position: relative; display: grid; place-items: center; height: clamp(440px, 64vh, 640px); overflow: hidden; }
.sc-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: blur(34px) brightness(.42); transform: scale(1.25); }
.sc-stage img, .sc-stage video { position: relative; z-index: 1; width: auto; height: auto; max-height: clamp(400px, 60vh, 600px); max-width: min(90%, 460px); object-fit: contain; display: block; border-radius: 10px; box-shadow: 0 18px 50px rgba(0,0,0,.55); }
.sc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: var(--ink); font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow); transition: .2s; }
.sc-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.sc-prev { left: 1rem; } .sc-next { right: 1rem; }
.sc-count { position: absolute; bottom: 1rem; right: 1rem; z-index: 2; background: rgba(10,10,10,.6); color: #fff; padding: .3rem .8rem; border-radius: 999px; font-size: .8rem; font-family: var(--font-display); }
.sc-thumbs { display: flex; gap: .7rem; margin-top: 1rem; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin; }
.sc-thumb { flex: 0 0 auto; width: 92px; height: 66px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: var(--bg-soft); cursor: pointer; padding: 0; opacity: .55; transition: .2s; }
.sc-thumb img, .sc-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sc-thumb:hover { opacity: .85; }
.sc-thumb.active { border-color: var(--accent); opacity: 1; }
.sc-empty { text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); padding: 3rem 1.5rem; background: var(--card); }

/* ===== Gallery (daily signal) ===== */
.gallery { columns: 3; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--card); box-shadow: var(--shadow); cursor: pointer; transition: .2s; }
.gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery img, .gallery video { width: 100%; display: block; }
.gallery figcaption { padding: .7rem .9rem; font-size: .85rem; color: var(--muted); }
.gallery__empty { text-align: center; color: var(--muted); border: 1px dashed var(--line); border-radius: var(--radius); padding: 3rem 1.5rem; background: var(--card); }
.gallery__empty a { color: var(--accent); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12, 18, 32,.85); display: none; place-items: center; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; font-size: 2rem; color: #fff; cursor: pointer; background: none; border: 0; }

/* ===== GIFT Nifty page ===== */
.gn { padding: 8rem 0 4rem; }
.gn__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.gn__title h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; }
.gn__title p { color: var(--muted); margin-top: .3rem; }
.gn__live { display: inline-flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); border: 1px solid var(--line); padding: .4rem 1rem; border-radius: 999px; background: var(--card); }
.gn-share { position: relative; flex-shrink: 0; }
.gn-share__btn { white-space: nowrap; }
.gn-share__menu { position: absolute; right: 0; top: calc(100% + .5rem); z-index: 30; min-width: 190px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: .45rem; display: grid; gap: .1rem; }
.gn-share__menu[hidden] { display: none; }
.gn-share__menu a, .gn-share__menu button { display: block; width: 100%; text-align: left; padding: .6rem .8rem; border-radius: 10px; color: var(--ink); font-size: .92rem; font-family: inherit; background: none; border: 0; cursor: pointer; }
.gn-share__menu a:hover, .gn-share__menu button:hover { background: var(--bg-soft); color: var(--accent); }
@media (max-width: 620px) { .gn-share__menu { right: auto; left: 0; } }
.gn__live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.gn-card { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 1.8rem; box-shadow: var(--shadow-lg); }
.gn-price { display: flex; align-items: flex-end; gap: 1.2rem; flex-wrap: wrap; }
.gn-price__val { font-family: var(--font-display); font-size: clamp(2.6rem,7vw,4rem); font-weight: 800; line-height: 1; }
.gn-price__val small { font-size: .42em; color: var(--muted); font-weight: 600; }
.gn-chg { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; padding: .35rem .8rem; border-radius: 10px; }
.gn-chg.up { color: var(--green); background: rgba(30,167,101,.12); }
.gn-chg.down { color: var(--red); background: rgba(224,80,60,.12); }
.gn-updated { color: var(--muted); font-size: .85rem; margin-top: .4rem; }
.gn-updated .seed { color: var(--accent); }
.gn-chart-wrap { position: relative; margin: 1.4rem 0 .4rem; }
#gn-chart { width: 100%; height: 340px; display: block; }
.gn-tip { position: absolute; pointer-events: none; transform: translate(-50%,-120%); background: var(--dark); color: #fff; border-radius: 10px; padding: .4rem .7rem; font-size: .8rem; white-space: nowrap; opacity: 0; transition: .1s; }
.gn-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.6rem; }
.gn-stat { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.1rem 1.2rem; box-shadow: var(--shadow); }
.gn-stat span { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.gn-stat b { display: block; font-family: var(--font-display); font-size: 1.4rem; margin-top: .3rem; }
.gn-info { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; margin-top: 3rem; }
.gn-info h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.gn-info p { color: var(--muted); margin-bottom: 1rem; }
.gn-info__facts { list-style: none; display: grid; gap: .8rem; }
.gn-info__facts li { display: flex; gap: .7rem; color: var(--ink-2); }
.gn-info__facts span { color: var(--accent); }
.gn-source { color: var(--muted); font-size: .82rem; margin-top: 2rem; text-align: center; }
.gn-source a { color: var(--accent); }

/* ===== PMS page hero ===== */
.pms-hero { padding: 9rem 0 3.5rem; text-align: center; }
.pms-hero__title {
  font-size: clamp(2.3rem, 6vw, 4.4rem); font-weight: 800; position: relative; display: inline-block;
}
.pms-hero__title::before, .pms-hero__title::after {
  content: ""; position: absolute; top: 55%; width: clamp(30px, 8vw, 120px); height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent)); border-radius: 2px;
}
.pms-hero__title::before { right: 100%; margin-right: 1.4rem; transform: scaleX(-1); }
.pms-hero__title::after { left: 100%; margin-left: 1.4rem; }
.pms-hero__tag {
  display: inline-block; margin-top: 1.2rem; padding-bottom: .9rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  font-size: clamp(.7rem, 1.6vw, .92rem); color: var(--ink); border-bottom: 3px solid var(--ink);
}
.pms-hero__tag span { color: var(--accent); margin: 0 .3rem; }
.pms-hero__lead { color: var(--muted); max-width: 600px; margin: 1.8rem auto 2rem; font-size: 1.12rem; }

/* ===== PMS brochure deck ===== */
.pms-intro { padding: 8rem 0 1rem; text-align: center; }
.pms-intro h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; margin: .6rem 0 1.6rem; }
.pms-deck { display: grid; gap: 1.4rem; max-width: 1000px; margin: 0 auto; }
.pms-slide { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--card); cursor: zoom-in; transition: transform .2s, box-shadow .2s; line-height: 0; }
.pms-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pms-slide img, .pms-slide video { width: 100%; display: block; }

/* PMS stats band (horizontal) */
.pms-stats { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.pms-stat { text-align: center; padding: 1.9rem 1rem; border-right: 1px solid var(--line); }
.pms-stat:last-child { border-right: 0; }
.pms-stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3rem); color: var(--accent); }
.pms-stat span { color: var(--muted); font-size: .92rem; }
.pms-stats__note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: .9rem; }
@media (max-width: 560px) {
  .pms-stats { grid-template-columns: 1fr; }
  .pms-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .pms-stat:last-child { border-bottom: 0; }
}

/* PMS landscape sliders (override portrait carousel sizing) */
.pms-slider { max-width: 1000px; margin: 0 auto; }
/* fixed aspect-ratio reserves the height so swapping slides never collapses/jumps the page */
.pms-slider .sc-stage { height: auto; aspect-ratio: 16 / 9; background: var(--card); }
.pms-slider .sc-bg { display: none; }
.pms-slider .sc-stage img, .pms-slider .sc-stage video { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 0; box-shadow: none; }

/* slider caption */
.sc-caption { text-align: center; color: var(--ink-2); font-family: var(--font-display); font-weight: 600; font-size: .95rem; margin-top: .8rem; }
.sc-caption:empty { display: none; }

/* PMS one-line headings + intro lead */
.pms-head { max-width: 980px; }
.pms-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); white-space: nowrap; }
.pms-intro__lead { color: var(--muted); max-width: 620px; margin: 1.2rem auto 0; font-size: 1.08rem; }
@media (max-width: 680px) { .pms-head h2 { white-space: normal; } }

/* PMS closing card */
.pms-close { position: relative; overflow: hidden; background: linear-gradient(160deg, #26221d, var(--dark) 60%); color: #fff; border-radius: 28px; box-shadow: var(--shadow-lg); padding: 3.4rem 2rem; text-align: center; max-width: 780px; margin: 0 auto; }
.pms-close::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 520px; height: 320px; background: radial-gradient(circle, rgba(30, 58, 138,.35), transparent 62%); filter: blur(20px); pointer-events: none; }
.pms-close > * { position: relative; z-index: 1; }
.pms-close__eyebrow { display: inline-block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-2); font-weight: 700; margin-bottom: .7rem; }
.pms-close h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.pms-close > p { color: rgba(255,255,255,.75); margin: 1rem auto 1.6rem; max-width: 520px; }
.pms-close__cta { margin-bottom: 2rem; box-shadow: 0 12px 30px rgba(30, 58, 138,.45); }
.pms-close__rows { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: .8rem; max-width: 640px; margin: 0 auto; text-align: left; }
.pms-close__row { min-width: 0; }
.pms-close__row > div { min-width: 0; overflow: hidden; }
.pms-close__row .cic__ico { width: 38px; height: 38px; font-size: 1.05rem; }
.pms-close__row b { font-size: .78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pms-close__row .lbl { font-size: .68rem; }
@media (max-width: 520px) { .pms-close__rows { grid-template-columns: 1fr; } }
.pms-close__row { display: flex; align-items: center; gap: .9rem; padding: .85rem 1rem; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #fff; transition: .2s; }
.pms-close__row:hover { background: rgba(30, 58, 138,.15); border-color: rgba(30, 58, 138,.45); transform: translateY(-2px); }
.pms-close__row .lbl { font-size: .76rem; color: rgba(255,255,255,.55); display: block; }
.pms-close__row b { font-family: var(--font-display); font-weight: 600; }
.pms-close__disc { opacity: .75; font-size: .8rem; margin-top: 1.4rem; }

/* ===== coming soon ===== */
.soon { text-align: center; padding: 8rem 0; }
.soon__badge { display: inline-block; padding: .5rem 1.2rem; border: 1px solid var(--line); border-radius: 999px; color: var(--accent); font-size: .85rem; margin-bottom: 1.5rem; background: var(--card); }
.soon h1 { font-size: clamp(2.2rem,5vw,3.4rem); }
.soon p { color: var(--muted); max-width: 520px; margin: 1rem auto 2rem; }

/* ===== Channel page ===== */
.channel-wrap { padding: 8rem 0 4rem; }
.channel-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: start; }
.tg-embed { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.tg-feed__head { display: flex; align-items: center; gap: .8rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.tg-feed__logo { width: 44px; height: 44px; border-radius: 50%; }
.tg-feed__head b { display: block; font-family: var(--font-display); }
.tg-feed__head span { color: var(--muted); font-size: .82rem; }
.tg-feed__head .btn { margin-left: auto; padding: .5rem 1.1rem; }
.tg-feed { max-height: 620px; overflow-y: auto; padding: 1rem; display: grid; gap: .9rem; }
.tg-post { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; }
.tg-post__img { width: 100%; border-radius: 10px; margin-bottom: .7rem; }
.tg-post__text { color: var(--ink-2); font-size: .95rem; white-space: pre-wrap; word-break: break-word; }
.tg-post__meta { display: flex; gap: 1rem; color: var(--muted); font-size: .78rem; margin-top: .6rem; }
.tg-fallback { padding: 2rem; text-align: center; color: var(--muted); }
.channel-side .pill-badge { margin-bottom: 1.2rem; }
.channel-side h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; }
.channel-side p { color: var(--muted); margin: 1rem 0 1.6rem; }
.channel-side .stat-row { display: flex; gap: 2rem; margin: 1.6rem 0; flex-wrap: wrap; }
.channel-side .stat-row div strong { font-family: var(--font-display); font-size: 1.8rem; color: var(--accent); display: block; }
.channel-side .stat-row div span { color: var(--muted); font-size: .85rem; }
.channel-perks { list-style: none; display: grid; gap: .8rem; margin: 1.4rem 0; }
.channel-perks li { display: flex; gap: .7rem; color: var(--ink-2); }
.channel-perks span { color: var(--accent); font-weight: 700; }
@media (max-width: 900px) { .channel-grid { grid-template-columns: 1fr; } }

/* ===== Contact page ===== */
.contact-page { padding: 8rem 0 4rem; }
.contact-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.contact-info-card {
  background: linear-gradient(165deg, #26221d, var(--dark) 60%); color: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
  padding: 1.3rem 1.3rem 1.6rem; display: flex; flex-direction: column;
}
.cic__img { width: 100%; border-radius: 16px; display: block; margin-bottom: 1.5rem; }
.cic__head { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin: 0 .3rem 1.2rem; }
.cic__rows { display: grid; gap: .8rem; margin-top: auto; }
.cic__row { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); color: #fff; transition: .2s; }
a.cic__row:hover { background: rgba(30, 58, 138,.16); border-color: rgba(30, 58, 138,.5); transform: translateY(-2px); }
.cic__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(150deg, rgba(30, 58, 138,.9), rgba(30, 58, 138,.6)); color: #fff; box-shadow: 0 6px 16px rgba(30, 58, 138,.35); }
.cic__ico svg { width: 22px; height: 22px; }
.cic__txt { min-width: 0; flex: 1; }
.cic__row .lbl { font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-bottom: .15rem; }
.cic__row b { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; }
.cic__go { color: rgba(255,255,255,.35); font-size: 1.1rem; transition: .2s; }
a.cic__row:hover .cic__go { color: var(--accent-2); transform: translate(2px,-2px); }
.cic__row--static { opacity: .92; }
@media (max-width: 900px) { .contact-page__grid { grid-template-columns: 1fr; } }

/* ===== Market Pulse / News page ===== */
.news-head { padding: 8rem 0 1.5rem; }
.news-head h1 { font-size: clamp(2rem,4.5vw,3rem); font-weight: 800; }
.news-head p { color: var(--muted); margin-top: .6rem; }
.mini-indices { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.6rem 0 0; }
.mini-idx { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: .7rem 1.1rem; box-shadow: var(--shadow); }
.mini-idx .n { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.mini-idx .p { font-family: var(--font-display); font-weight: 700; }
.mini-idx .c { font-size: .8rem; font-weight: 600; }
.mini-idx .c.up { color: var(--green); } .mini-idx .c.down { color: var(--red); }
.mini-idx.up { background: linear-gradient(160deg, rgba(30,167,101,.14), rgba(30,167,101,.04)); border-color: rgba(30,167,101,.35); }
.mini-idx.down { background: linear-gradient(160deg, rgba(224,80,60,.14), rgba(224,80,60,.04)); border-color: rgba(224,80,60,.35); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
.news-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); transition: .2s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card__img { height: 170px; background: var(--bg-soft) center/cover no-repeat; }
.news-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.news-card__src { font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); font-weight: 700; }
.news-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; margin: .4rem 0; line-height: 1.3; color: var(--ink); }
.news-card__sum { color: var(--muted); font-size: .88rem; flex: 1; }
.news-card__time { color: var(--muted); font-size: .78rem; margin-top: .8rem; }
.news-empty { grid-column: 1/-1; text-align: center; color: var(--muted); padding: 3rem; border: 1px dashed var(--line); border-radius: var(--radius); }
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .news-grid { grid-template-columns: 1fr; } }

/* ===== Payment page ===== */
.pay { padding: 8rem 0 4rem; }
.pay-card { max-width: 460px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow-lg); padding: 2.4rem; text-align: center; }
.pay-card h1 { font-size: 1.8rem; margin-bottom: .4rem; }
.pay-card .sub { color: var(--muted); margin-bottom: 1.6rem; }
.pay-qr { width: 240px; height: 240px; margin: 0 auto 1.2rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 12px; box-shadow: var(--shadow); }
.pay-qr img { width: 100%; height: 100%; }
.pay-upi { display: inline-flex; align-items: center; gap: .6rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1.2rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 1.4rem; }
.pay-actions { display: grid; gap: .8rem; }
.pay-actions .btn { width: 100%; justify-content: center; }
.pay-note { color: var(--muted); font-size: .82rem; margin-top: 1.4rem; }

/* ===== How it works (steps) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); transition: .2s; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step__no { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-size: 1.15rem; margin: .5rem 0 .4rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* ===== Track record band ===== */
.trackband { display: grid; grid-template-columns: repeat(4, 1fr); background: linear-gradient(150deg, var(--dark), #2a2723); border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 60px rgba(30, 58, 138,.22), var(--shadow-lg); }
.trackstat { text-align: center; padding: 2.2rem 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.trackstat:last-child { border-right: 0; }
.trackstat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3rem); color: var(--accent-2); }
.trackstat span { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ===== Testimonials ===== */
.tmony-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.tmony { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow); transition: .2s; display: flex; flex-direction: column; gap: 1rem; }
.tmony:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tmony__stars { color: var(--accent); letter-spacing: .15em; font-size: 1.05rem; }
.tmony blockquote { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; flex: 1; }
.tmony figcaption { color: var(--muted); font-size: .88rem; }
.tmony figcaption b { color: var(--ink); font-family: var(--font-display); }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: .8rem; }
.faq__item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 1.4rem; font-weight: 700; transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding: 0 1.3rem 1.2rem; color: var(--muted); margin: 0; }

@media (max-width: 880px) { .steps, .trackband { grid-template-columns: repeat(2, 1fr); } .tmony-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } .trackband { grid-template-columns: 1fr 1fr; } }

/* ===== Instagram 3x3 grid ===== */
.ig__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.ig__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.ig-cell { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); box-shadow: var(--shadow); display: block; }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.ig-cell:hover img { transform: scale(1.07); }
.ig-cell__overlay { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(12, 18, 32,.4); color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .25s; }
.ig-cell:hover .ig-cell__overlay { opacity: 1; }
.ig-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 3rem 1.5rem; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--card); display: block; }
@media (max-width: 560px) { .ig-grid { gap: .5rem; } }

/* ===== Footer (card + watermark) ===== */
.site-footer { position: relative; overflow: hidden; margin-top: 4rem; padding: 0 clamp(1rem,4vw,2rem) 2rem; }
.foot-card {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow-lg); padding: 2.8rem clamp(1.5rem,4vw,3rem) 2.2rem;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 2fr; gap: 3rem; }
.foot-brand__logo { display: flex; align-items: center; gap: .55rem; font-family: "Montserrat", var(--font-display); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase; }
.foot-brand__logo img { width: 34px; height: 34px; }
.foot-brand p { color: var(--muted); font-size: .93rem; max-width: 380px; margin: 1.1rem 0 1.4rem; }
.foot-social { display: flex; gap: 1.3rem; }
.foot-social a { color: var(--ink); display: grid; place-items: center; transition: .2s; }
.foot-social a:hover { color: var(--accent); transform: translateY(-2px); }
.foot-social svg { width: 20px; height: 20px; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.foot-cols h4 { font-size: .95rem; margin-bottom: 1.1rem; }
.foot-cols ul { list-style: none; display: grid; gap: .75rem; }
.foot-cols a { color: var(--muted); font-size: .9rem; transition: .2s; }
.foot-cols a:hover { color: var(--accent); }
.foot-divider { height: 1px; background: var(--line); margin: 2.2rem 0 1.4rem; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: .84rem; }
.foot-watermark {
  position: absolute; left: 50%; bottom: -3.5vw; transform: translateX(-50%); z-index: 1;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.05em;
  font-size: clamp(4rem, 19vw, 20rem); line-height: .8; white-space: nowrap;
  color: rgba(12, 18, 32,.04); pointer-events: none; user-select: none;
}
@media (max-width: 820px) {
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__grid, .split, .contact { grid-template-columns: 1fr; }
  .hero__visual { min-height: 420px; margin-top: 1rem; }
  .pulse-grid, .feat { grid-template-columns: repeat(2, 1fr); }
  .pulse-gift { grid-column: span 2; grid-row: auto; }
  .gallery { columns: 2; }
  .gn-stats { grid-template-columns: repeat(2,1fr); }
  .gn-info { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .site-header { grid-template-columns: auto auto; }
  .nav-pill { display: none; }
  .header-cta .btn:not(.burger) { display: none; }
  .burger { display: flex; }
  .brand { justify-self: start; }
  .header-cta { justify-self: end; }
}
@media (max-width: 560px) {
  .feat, .feat--2, .footer__grid { grid-template-columns: 1fr; }
  .pulse-grid { grid-template-columns: repeat(2, 1fr); }
  .pulse-gift { grid-column: span 2; grid-row: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .gn-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 340px) {
  .pulse-grid { grid-template-columns: 1fr; }
  .pulse-gift { grid-column: span 1; }
}

/* ===== Market Pulse: sessions + markets board + calendar ===== */
.sessions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.sess { display: flex; align-items: center; gap: .5rem; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: .55rem .9rem; box-shadow: var(--shadow); font-size: .86rem; }
.sess__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }
.sess.open .sess__dot { background: var(--green); box-shadow: 0 0 0 4px rgba(30,167,101,.18); }
.sess b { font-weight: 700; }
.sess__st { color: var(--muted); font-size: .78rem; }
.sess.open .sess__st { color: var(--green); font-weight: 600; }
.sess--utc { margin-left: auto; background: var(--dark); color: #fff; border-color: transparent; }
.sess--utc b { font-family: var(--font-display); }
.sess--utc .sess__st { color: rgba(255,255,255,.6); }

.mkt-group { margin-bottom: 2rem; }
.mkt-group__title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; color: var(--ink-2); }
.mkt-group__title::before { content: ''; width: 20px; height: 3px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.mkt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.mkt-card { background: var(--card); border: 1px solid var(--line); border-left: 3px solid transparent; border-radius: 14px; padding: 1rem 1.1rem; box-shadow: var(--shadow); transition: .2s; display: flex; flex-direction: column; gap: .35rem; }
.mkt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.mkt-card.up { border-left-color: var(--green); }
.mkt-card.down { border-left-color: var(--red); }
.mkt-card__name { font-size: .8rem; color: var(--muted); font-weight: 600; }
.mkt-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.mkt-card__chg { font-size: .82rem; font-weight: 600; }
.mkt-card__chg.up { color: var(--green); }
.mkt-card__chg.down { color: var(--red); }

.cal-legend { display: flex; gap: 1.4rem; margin-bottom: 1rem; font-size: .82rem; color: var(--muted); }
.cal-legend span { display: inline-flex; align-items: center; gap: .4rem; }
.imp-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.imp-high { background: var(--red); }
.imp-medium { background: #E8A33D; }
.cal-wrap { display: grid; gap: 1.2rem; }
.cal-day { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow); }
.cal-day__title { font-family: var(--font-display); font-size: 1rem; margin-bottom: .8rem; color: var(--accent); }
.cal-row { display: grid; grid-template-columns: 64px 14px 42px 1fr auto; gap: .8rem; align-items: center; padding: .55rem 0; border-top: 1px solid var(--line-soft); font-size: .88rem; }
.cal-row:first-of-type { border-top: 0; }
.cal-row.past { opacity: .5; }
.cal-row__time { color: var(--muted); font-variant-numeric: tabular-nums; }
.cal-row__imp { width: 10px; height: 10px; border-radius: 50%; }
.cal-row__imp.imp-high { background: var(--red); }
.cal-row__imp.imp-medium { background: #E8A33D; }
.cal-row__cty { font-weight: 700; font-size: .78rem; color: var(--ink-2); }
.cal-row__title { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-row__data { color: var(--muted); font-size: .8rem; text-align: right; white-space: nowrap; }

@media (max-width: 900px) { .mkt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .cal-row { grid-template-columns: 54px 12px 1fr; }
  .cal-row__cty, .cal-row__data { display: none; }
  .sess--utc { margin-left: 0; }
}
