/* ── Design tokens — dark forest green / emerald theme ───────── */
:root {
  /* Brand colors */
  --green:       #eab308;
  --green-dk:    #a16207;
  --green-lt:    #fde047;
  --emerald:     #f59e0b;
  --emerald-dk:  #b45309;
  --emerald-lt:  #fcd34d;

  /* Backgrounds */
  --bg:         #0c0800;
  --bg-2:       #120c00;
  --bg-card:    #1c1400;
  --bg-card-2:  #251a00;
  --bg-input:   #120c00;

  /* Text */
  --text:       rgba(255,255,255,.90);
  --muted:      rgba(255,255,255,.50);
  --dim:        rgba(255,255,255,.28);

  /* Borders */
  --line:       rgba(234,179,8,.14);
  --line-2:     rgba(245,158,11,.20);

  /* Gradients */
  --grad:       linear-gradient(135deg, #92400e 0%, #d97706 100%);
  --grad-text:  linear-gradient(135deg, #fde047 0%, #eab308 55%, #fbbf24 100%);
  --grad-cta:   linear-gradient(135deg, #1f1500 0%, #4d3800 45%, #140e00 100%);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,.4);
  --shadow-md:   0 4px 32px rgba(0,0,0,.5);
  --shadow-lg:   0 24px 80px rgba(0,0,0,.6);
  --shadow-glow: 0 0 40px rgba(161,98,7,.18), 0 4px 24px rgba(0,0,0,.4);
  --shadow-green:0 0 40px rgba(234,179,8,.12);

  /* Other */
  --accent:     #fbbf24;
  --success:    #eab308;
  --danger:     #ef4444;
  --radius:     14px;
  --radius-sm:  8px;
  --radius-xl:  22px;
}

/* ── Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { color: #fff; }
p { color: var(--muted); }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: rgba(161,98,7,.4); border-radius:10px; }

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(12,8,0,.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
  padding-top: .85rem;
  padding-bottom: .85rem;
  transition: background .3s;
}
.navbar.scrolled {
  background: rgba(12,8,0,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius:10px;
  background: var(--grad);
  color: #fff;
  font-weight: 900;
  font-size: .82rem;
  flex-shrink: 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  gap: .6rem;
}
.brand-icon {
  height: 36px; width: auto; max-width: 44px;
  object-fit: contain;
  border-radius:10px;
  flex-shrink: 0;
}
.brand-name { font-weight: 800; font-size: 1.05rem; color: #fff; }
.footer-logo-img {
  height: 44px; width: auto; max-width: 200px;
  object-fit: contain; border-radius:10px; display: block;
  filter: brightness(0) invert(1); opacity: .85;
}
.nav-link {
  color: rgba(255,255,255,.62);
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem .85rem !important;
  border-radius:10px;
  border: 1px solid transparent;
  transition: color .2s, background .2s, border-color .2s, box-shadow .2s;
  position: relative;
}
.nav-link:hover {
  color: #fff;
  background: rgba(234,179,8,.08);
  border-color: rgba(234,179,8,.22);
}
.nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(180,83,9,.5), rgba(234,179,8,.4));
  border-color: rgba(234,179,8,.35);
  box-shadow: 0 2px 16px rgba(161,98,7,.2), inset 0 1px 0 rgba(255,255,255,.08);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn { font-weight: 700; border-radius: var(--radius-sm); transition: all .22s; }
.btn-brand {
  background: var(--grad);
  border: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(161,98,7,.3);
}
.btn-brand:hover {
  background: linear-gradient(135deg, #92400e 0%, #a16207 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(161,98,7,.45);
}
.btn-soft {
  background: rgba(234,179,8,.08);
  border: 1px solid rgba(234,179,8,.28);
  color: var(--emerald-lt);
}
.btn-soft:hover {
  background: rgba(234,179,8,.15);
  border-color: rgba(234,179,8,.5);
  color: var(--emerald-lt);
}
.btn-white {
  background: #fff;
  border-color: #fff;
  color: var(--emerald-dk);
  font-weight: 700;
}
.btn-white:hover {
  background: #fef3c7;
  border-color: #fef3c7;
  color: var(--emerald-dk);
}
.btn-outline-white {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}
.btn-outline-green {
  border: 1.5px solid rgba(234,179,8,.5);
  color: var(--emerald-lt);
  background: transparent;
}
.btn-outline-green:hover {
  background: rgba(234,179,8,.1);
  border-color: var(--green);
  color: var(--green-lt);
}

/* ── Hero Carousel ───────────────────────────────────────────── */
.hero-carousel-wrap {
  position: relative;
  overflow: hidden;
}
#heroCarousel {
  margin-top: 68px; /* clear fixed navbar */
}
.carousel-item {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.carousel-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.carousel-slide-bg-1 {
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(180,83,9,.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(161,98,7,.14) 0%, transparent 55%),
    linear-gradient(160deg, #0c0800 0%, #1a1200 50%, #0c0800 100%);
}
.carousel-slide-bg-2 {
  background:
    radial-gradient(ellipse 70% 55% at 80% 20%, rgba(245,158,11,.2) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 5% 85%, rgba(234,179,8,.12) 0%, transparent 55%),
    linear-gradient(150deg, #0c0800 0%, #171000 50%, #0c0800 100%);
}
.carousel-slide-bg-3 {
  background:
    radial-gradient(ellipse 65% 60% at 75% 35%, rgba(161,98,7,.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 15% 70%, rgba(180,83,9,.15) 0%, transparent 55%),
    linear-gradient(145deg, #0c0800 0%, #1c1400 50%, #0c0800 100%);
}
.carousel-slide-orb {
  position: absolute;
  border-radius:10px;
  filter: blur(90px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.carousel-slide-orb-a {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(161,98,7,.18) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.carousel-slide-orb-b {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.14) 0%, transparent 70%);
  bottom: -150px; left: -80px;
  animation-delay: -4s;
}
.carousel-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 80px;
}
.carousel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  border: 1px solid rgba(234,179,8,.35);
  border-radius:10px;
  background: rgba(234,179,8,.08);
  color: var(--emerald-lt);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 1.5rem;
}
.carousel-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius:10px;
  background: var(--green);
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
.carousel-slide-inner h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.045em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.carousel-slide-inner .hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.carousel-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.carousel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234,179,8,.15);
  border: 1px solid rgba(234,179,8,.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 440px;
}
.carousel-stat {
  background: rgba(234,179,8,.06);
  padding: 1rem 1.25rem;
}
.carousel-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.carousel-stat span { font-size: .72rem; color: rgba(255,255,255,.42); font-weight: 500; }

/* Carousel visual panel (right column) */
.carousel-visual-panel {
  background: rgba(28,20,0,.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(234,179,8,.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 0 60px rgba(161,98,7,.1), 0 4px 32px rgba(0,0,0,.5);
}
.panel-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}
.panel-tag-green {
  font-size: .75rem; font-weight: 700;
  color: var(--emerald-lt);
  background: rgba(245,158,11,.1);
  border: 1px solid rgba(245,158,11,.2);
  border-radius:10px;
  padding: .2rem .7rem;
}
.panel-asset-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(234,179,8,.07);
}
.panel-asset-row:last-child { border-bottom: none; }
.panel-asset-icon {
  width: 36px; height: 36px; border-radius:10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}
.panel-asset-name { font-size: .88rem; font-weight: 700; color: #fff; }
.panel-asset-sub { font-size: .72rem; color: var(--muted); }
.panel-asset-change { margin-left: auto; font-size: .82rem; font-weight: 700; }
.panel-asset-change.up { color: #fcd34d; }
.panel-asset-change.down { color: #f87171; }

/* Slide 2 visual */
.slide2-visual {
  display: grid; gap: 1rem;
}
.plan-preview-card {
  background: rgba(28,20,0,.8);
  border: 1px solid rgba(234,179,8,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color .2s, background .2s;
}
.plan-preview-card:hover { border-color: rgba(234,179,8,.4); background: rgba(28,20,0,.95); }
.plan-preview-icon {
  width: 46px; height: 46px; border-radius:10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .9rem;
}
.plan-preview-name { font-size: .95rem; font-weight: 800; color: #fff; }
.plan-preview-range { font-size: .75rem; color: var(--muted); }
.plan-preview-badge { margin-left: auto; }

/* Slide 3 visual */
.slide3-trust-grid { display: grid; gap: .85rem; }
.trust-item-card {
  background: rgba(28,20,0,.8);
  border: 1px solid rgba(234,179,8,.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .85rem;
}
.trust-item-icon {
  width: 38px; height: 38px; border-radius:10px; flex-shrink: 0;
  background: rgba(234,179,8,.1); border: 1px solid rgba(234,179,8,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-lt);
}
.trust-item-text strong { font-size: .88rem; font-weight: 700; color: #fff; display: block; }
.trust-item-text span { font-size: .75rem; color: var(--muted); }

/* Bootstrap Carousel overrides */
.carousel-indicators {
  bottom: 24px;
}
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px; border-radius:10px;
  background: rgba(255,255,255,.3);
  border: none; margin: 0 3px; transition: all .3s;
}
.carousel-indicators .active {
  background: var(--green);
  width: 52px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 52px; height: 52px;
  top: 50%; transform: translateY(-50%);
  bottom: auto; margin: 0 12px;
  background: rgba(28,20,0,.75);
  border: 1px solid rgba(234,179,8,.25);
  border-radius:10px;
  opacity: 1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .2s, border-color .2s, transform .2s;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(161,98,7,.25);
  border-color: rgba(234,179,8,.55);
  transform: translateY(-50%) scale(1.08);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
}

/* ── Homepage hero (old static — kept for compatibility) ─────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  overflow: hidden;
  background: var(--bg);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(12,8,0,.98) 0%,
    rgba(120,53,15,.45) 50%,
    rgba(12,8,0,.95) 100%
  );
}
.hero-orb {
  position: absolute;
  border-radius:10px;
  filter: blur(100px);
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(161,98,7,.22) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(245,158,11,.16) 0%, transparent 70%);
  bottom: -150px; left: -50px;
  animation-delay: -4s;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-30px); }
}
.hero > .container { position: relative; z-index: 2; }

/* ── Eyebrow badge ───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  border: 1px solid rgba(234,179,8,.35);
  border-radius:10px;
  background: rgba(234,179,8,.08);
  color: var(--emerald-lt);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius:10px;
  background: var(--green);
  flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .35; transform: scale(.6); }
}

/* ── Hero typography ─────────────────────────────────────────── */
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.045em;
  color: #fff;
  margin-bottom: 1.5rem;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.62);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(234,179,8,.15);
  border: 1px solid rgba(234,179,8,.15);
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-width: 440px;
}
.hero-stat { background: rgba(234,179,8,.06); padding: 1rem 1.25rem; }
.hero-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .2rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.42); font-weight: 500; }

/* ── Hero panel (glassmorphism) ──────────────────────────────── */
.hero-panel {
  background: rgba(28,20,0,.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(234,179,8,.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-glow);
}
.panel-label {
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: .2rem;
}
.panel-title { color: #fff; font-weight: 700; font-size: 1.05rem; }
.panel-stat {
  background: rgba(234,179,8,.07);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}
.panel-stat-label { font-size: .7rem; color: rgba(255,255,255,.38); margin-bottom: .3rem; font-weight: 500; }
.panel-stat-value {
  font-size: 1.8rem; font-weight: 900; color: #fff;
  letter-spacing: -.04em; line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.panel-stat-text { color: rgba(255,255,255,.72); font-weight: 600; font-size: .92rem; }
.panel-meta { display: flex; justify-content: space-between; align-items: center; }
.panel-meta-label { font-size: .68rem; color: rgba(255,255,255,.35); letter-spacing: .06em; text-transform: uppercase; font-weight: 700; }
.panel-meta-value { font-size: .88rem; color: #fff; font-weight: 700; }
.panel-disclaimer { font-size: .69rem; color: rgba(255,255,255,.28); line-height: 1.65; margin-top: 1.25rem; margin-bottom: 0; }

/* ── Inner page hero ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 72px;
  overflow: hidden;
  background: var(--bg);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat; opacity: .1;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,8,0,.98) 35%, rgba(31,21,0,.7));
}
.page-hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius:10px;
  background: radial-gradient(circle, rgba(161,98,7,.18) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px; right: -100px;
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.045em;
  color: #fff;
  line-height: 1.05;
  max-width: 680px;
  margin-bottom: .75rem;
}
.page-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.56);
  max-width: 540px;
  line-height: 1.78;
  margin-bottom: 0;
}

/* ── Section utilities ───────────────────────────────────────── */
.section-pad  { padding: 100px 0; }
.section-soft { background: var(--bg-2); }
.section-brand { background: var(--grad-cta); }
.section-dark  { background: #0a0600; }

/* ── Marquee trusted strip ───────────────────────────────────── */
.marquee-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center; gap: .55rem;
  padding: .38rem 1rem;
  border: 1px solid rgba(234,179,8,.15);
  border-radius:10px;
  background: rgba(234,179,8,.04);
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-dot { width: 8px; height: 8px; border-radius:10px; flex-shrink: 0; }

/* ── Labels & headings ───────────────────────────────────────── */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--emerald-lt);
  margin-bottom: .75rem;
}
.label-light { color: rgba(252,211,77,.65); }
.muted { color: var(--muted); }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -.045em; line-height: 1.06;
  color: #fff; margin-bottom: .75rem;
}
.section-head p { color: var(--muted); line-height: 1.78; font-size: 1.03rem; margin-bottom: 0; }

.display-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; letter-spacing: -.045em; line-height: 1.06; color: #fff;
}
.display-lead {
  font-size: 1.05rem; line-height: 1.78;
  color: rgba(255,255,255,.62); max-width: 520px;
}

/* ── Divider ─────────────────────────────────────────────────── */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(161,98,7,.4), rgba(234,179,8,.4), transparent);
  border: none; margin: 0;
}

/* ── Cards ───────────────────────────────────────────────────── */
.card-base {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.card-base:hover {
  border-color: rgba(234,179,8,.35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

/* ── Icon box ────────────────────────────────────────────────── */
.icon-box {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(234,179,8,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-lt);
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(234,179,8,.2);
}
.icon-box.gold { background: rgba(251,191,36,.1); color: #fde68a; border-color: rgba(251,191,36,.2); }
.icon-box.ink  { background: rgba(255,255,255,.05); color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.08); }
.icon-box.teal { background: rgba(245,158,11,.1); color: var(--emerald-lt); border-color: rgba(245,158,11,.2); }

/* ── Step cards ──────────────────────────────────────────────── */
.step-card { position: relative; padding: 2rem 2rem 2rem 1.5rem; }
.step-number {
  font-size: 5.5rem; font-weight: 900; letter-spacing: -.07em;
  line-height: 1; color: rgba(234,179,8,.1);
  position: absolute; top: .5rem; right: 1.25rem; user-select: none;
}

/* ── Stats grid ──────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.stat-cell { background: var(--bg-card); padding: 2.25rem 1.75rem; }
.stat-cell strong {
  display: block; font-size: 2.5rem; font-weight: 900;
  letter-spacing: -.05em; line-height: 1; margin-bottom: .4rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-cell span { font-size: .85rem; color: var(--muted); }

/* ── Testimonials ────────────────────────────────────────────── */
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem; height: 100%;
  display: flex; flex-direction: column;
  transition: border-color .22s, box-shadow .22s;
}
.testi-card:hover {
  border-color: rgba(234,179,8,.28);
  box-shadow: var(--shadow-green);
}
.testi-stars { color: var(--accent); font-size: .85rem; margin-bottom: .85rem; letter-spacing: .1em; }
.testi-quote { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 1.5rem; flex: 1; }
.testi-author { font-weight: 700; font-size: .9rem; color: #fff; }
.testi-role { font-size: .78rem; color: var(--muted); }
.avatar {
  width: 42px; height: 42px; border-radius:10px;
  background: var(--grad);
  display: inline-grid; place-items: center;
  color: #fff; font-weight: 800; font-size: .82rem; flex-shrink: 0;
}

/* ── Plan cards ──────────────────────────────────────────────── */
.plan-card {
  background: var(--bg-card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column;
  height: 100%;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.plan-card:hover {
  border-color: rgba(234,179,8,.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.plan-card.featured {
  background: linear-gradient(180deg, rgba(161,98,7,.1) 0%, var(--bg-card) 50%);
  border-color: rgba(234,179,8,.45);
  box-shadow: 0 0 50px rgba(234,179,8,.1);
}
.plan-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .28rem .75rem;
  border-radius:10px;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: 1.25rem;
}
.plan-badge.starter { background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.1); }
.plan-badge.popular { background: rgba(234,179,8,.12); color: var(--emerald-lt); border: 1px solid rgba(234,179,8,.28); }
.plan-badge.advanced { background: rgba(245,158,11,.1); color: var(--emerald-lt); border: 1px solid rgba(245,158,11,.22); }
.plan-name { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .4rem; color: #fff; }
.plan-price {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.055em; line-height: 1; margin-bottom: .2rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.plan-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: top; margin-top: .45rem; }
.plan-note { font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--line); margin: 1.25rem 0; }
.plan-features {
  list-style: none; padding: 0; margin: 0 0 2rem; flex: 1;
  display: grid; gap: .75rem;
}
.plan-features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .92rem; color: rgba(255,255,255,.65);
}
.plan-features li::before {
  content: "✓"; flex-shrink: 0;
  width: 19px; height: 19px; border-radius:10px;
  background: rgba(234,179,8,.13); color: var(--emerald-lt);
  font-size: .6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem; border: 1px solid rgba(234,179,8,.22);
}

/* ── Check list ──────────────────────────────────────────────── */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .95rem; color: rgba(255,255,255,.72);
}
.check-list li::before { content: "✓"; flex-shrink: 0; color: var(--emerald-lt); font-weight: 900; font-size: .92rem; margin-top: .05rem; }
.check-list.light li { color: rgba(255,255,255,.75); }
.check-list.light li::before { color: var(--green-lt); }

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.25rem 0; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .84rem; font-weight: 600; color: rgba(255,255,255,.42); white-space: nowrap; }
.trust-dot { width: 7px; height: 7px; border-radius:10px; background: var(--emerald-lt); flex-shrink: 0; }

/* ── Image panels ────────────────────────────────────────────── */
.img-panel {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--bg-card);
  border: 1px solid var(--line);
}
.img-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-tall { min-height: 480px; }
.img-med  { min-height: 360px; }

/* ── Value cards ─────────────────────────────────────────────── */
.value-card {
  padding: 2rem; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--line);
  height: 100%; transition: border-color .22s, transform .22s;
}
.value-card:hover { border-color: rgba(234,179,8,.35); transform: translateY(-3px); }

/* ── About stat bar ──────────────────────────────────────────── */
.about-stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: 3rem;
}
.about-stat { background: var(--bg-card); padding: 1.75rem 1.5rem; text-align: center; }
.about-stat strong {
  display: block; font-size: 2rem; font-weight: 900;
  letter-spacing: -.05em; line-height: 1; margin-bottom: .3rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-stat span { font-size: .8rem; color: var(--muted); }

/* ── FAQ accordion ───────────────────────────────────────────── */
.faq-accordion .accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem; overflow: hidden;
  background: var(--bg-card);
}
.faq-accordion .accordion-button {
  font-weight: 700; font-size: .97rem;
  color: rgba(255,255,255,.88); background: var(--bg-card);
  box-shadow: none; border-radius:10px;
  padding: 1.1rem 1.25rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--emerald-lt); background: rgba(234,179,8,.07); }
.faq-accordion .accordion-button::after { filter: invert(1) brightness(.6); }
.faq-accordion .accordion-button:not(.collapsed)::after { filter: none; color: var(--emerald-lt); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
  background: var(--bg-card); color: rgba(255,255,255,.55);
  line-height: 1.78; font-size: .94rem; padding: 1rem 1.25rem 1.25rem;
}
.faq-accordion .accordion-body a { color: var(--emerald-lt); font-weight: 600; }

/* ── FAQ topic cards ─────────────────────────────────────────── */
.faq-topic-name { font-weight: 700; font-size: .9rem; color: #fff; margin-bottom: .2rem; }
.faq-topic-desc { font-size: .82rem; margin-bottom: 0; color: var(--muted); }

/* ── Contact page ────────────────────────────────────────────── */
.contact-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }
.support-channel {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--line); margin-bottom: .75rem;
  transition: background .18s, border-color .18s;
  background: rgba(255,255,255,.02);
}
.support-channel:last-child { margin-bottom: 0; }
.support-channel:hover { background: rgba(234,179,8,.06); border-color: rgba(234,179,8,.3); }
.support-channel-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: inline-grid; place-items: center;
  flex-shrink: 0; font-size: .82rem; font-weight: 900;
}
.support-channel-icon.brand { background: rgba(234,179,8,.12); color: var(--emerald-lt); }
.support-channel-icon.gold  { background: rgba(251,191,36,.1); color: #fde68a; }
.support-channel-icon.ink   { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.channel-title { font-weight: 700; font-size: .92rem; color: #fff; margin-bottom: .15rem; }
.channel-desc { font-size: .82rem; color: var(--muted); margin: 0; }

/* ── Forms ───────────────────────────────────────────────────── */
.form-label { font-weight: 600; font-size: .87rem; color: rgba(255,255,255,.72); margin-bottom: .4rem; }
.form-control, .form-select {
  min-height: 48px; border-radius: var(--radius-sm);
  background: var(--bg-2); border: 1px solid rgba(234,179,8,.2);
  color: #fff; font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  background: var(--bg-2); border-color: var(--emerald);
  color: #fff; box-shadow: 0 0 0 3px rgba(245,158,11,.14); outline: none;
}
.form-control::placeholder { color: rgba(255,255,255,.25); }
.form-select option { background: var(--bg-card); color: #fff; }
textarea.form-control { min-height: auto; }
.form-check-label { color: rgba(255,255,255,.65); font-size: .9rem; }
.form-check-input { background-color: var(--bg-2); border-color: rgba(234,179,8,.35); }
.form-check-input:checked { background-color: var(--emerald-dk); border-color: var(--emerald-dk); }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(245,158,11,.15); border-color: var(--emerald); }

/* ── Auth layout ─────────────────────────────────────────────── */
.auth-wrap {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg);
  padding: 130px 0 60px;
  position: relative; overflow: hidden;
}
.auth-wrap::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px; border-radius:10px;
  background: radial-gradient(circle, rgba(161,98,7,.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px; right: -100px; pointer-events: none;
}
.auth-wrap::after {
  content: "";
  position: absolute;
  width: 400px; height: 400px; border-radius:10px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  filter: blur(60px);
  bottom: -100px; left: -100px; pointer-events: none;
}
.auth-shell {
  max-width: 920px; width: 100%; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
  position: relative; z-index: 1;
}
.auth-sidebar {
  background: linear-gradient(160deg, #1f1500 0%, #4d3800 50%, #140e00 100%);
  padding: 2.75rem; color: #fff;
  display: flex; flex-direction: column;
  min-height: 540px;
  border-right: 1px solid rgba(234,179,8,.2);
  position: relative; overflow: hidden;
}
.auth-sidebar::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px; border-radius:10px;
  background: radial-gradient(circle, rgba(234,179,8,.15) 0%, transparent 70%);
  top: -80px; right: -80px; pointer-events: none;
}
.auth-sidebar-title {
  font-size: 1.65rem; font-weight: 900;
  letter-spacing: -.035em; line-height: 1.2;
  margin-bottom: 1rem; color: #fff;
}
.auth-sidebar-lead { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.72; margin-bottom: 2rem; }
.auth-trust-note {
  margin-top: auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.65;
}
.auth-form-wrap { padding: 2.75rem; }
.auth-form-title { font-size: 1.5rem; font-weight: 900; letter-spacing: -.035em; margin-bottom: .4rem; color: #fff; }
.auth-form-lead { font-size: .9rem; color: var(--muted); margin-bottom: 2rem; }

/* ── Activity alerts ─────────────────────────────────────────── */
.activity-stack {
  position: fixed; left: 18px; bottom: 18px;
  z-index: 1080; display: grid; gap: .6rem;
  width: min(360px, calc(100vw - 36px)); pointer-events: none;
}
.activity-alert {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1rem;
  background: rgba(28,20,0,.96);
  border: 1px solid rgba(234,179,8,.2);
  border-left: 3px solid var(--emerald);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 20px rgba(234,179,8,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  animation: alert-slide .32s cubic-bezier(.22,.61,.36,1) both;
  pointer-events: auto;
}
.activity-alert.is-withdraw { border-left-color: var(--green); }
.activity-badge {
  width: 38px; height: 38px; border-radius:10px;
  background: var(--grad); color: #fff;
  font-weight: 900; font-size: .78rem;
  display: inline-grid; place-items: center; flex-shrink: 0;
}
.activity-badge.withdraw { background: linear-gradient(135deg, #92400e, #a16207); }
.activity-alert strong { font-size: .87rem; color: #fff; display: block; line-height: 1.35; font-weight: 700; }
.activity-alert span { font-size: .76rem; color: var(--muted); }
.activity-close {
  flex-shrink: 0; margin-left: auto;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius:10px; color: rgba(255,255,255,.4);
  font-size: .9rem; line-height: 1;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s, color .15s; padding: 0;
}
.activity-close:hover { background: rgba(239,68,68,.2); color: #f87171; border-color: rgba(239,68,68,.3); }
@keyframes alert-slide {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Risk note ───────────────────────────────────────────────── */
.risk-note {
  padding: 1rem 1.25rem;
  background: rgba(234,179,8,.06);
  border-left: 3px solid rgba(234,179,8,.5);
  border-radius: var(--radius-sm);
  color: rgba(234,179,8,.8);
  font-size: .87rem; line-height: 1.7;
}

/* ── CTA section ─────────────────────────────────────────────── */
.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -.045em; line-height: 1.06; color: #fff; margin-bottom: .75rem;
}
.cta-lead { color: rgba(255,255,255,.62); max-width: 520px; line-height: 1.78; font-size: 1.03rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #0a0600; color: rgba(255,255,255,.45);
  padding: 80px 0 36px;
  border-top: 1px solid var(--line);
}
.footer-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1rem; }
.footer-logo-name { color: #fff; font-weight: 800; font-size: 1.05rem; }
.footer-tagline { font-size: .88rem; line-height: 1.72; max-width: 270px; }
.footer-col-head {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.28); margin-bottom: 1.25rem;
}
.footer-link { display: block; font-size: .88rem; color: rgba(255,255,255,.52); margin-bottom: .65rem; transition: color .18s; }
.footer-link:hover { color: var(--green-lt); }
.footer-divider { border-color: rgba(255,255,255,.06); margin: 3rem 0 1.5rem; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.28); }
.footer-risk-text { font-size: .86rem; line-height: 1.72; margin: 0; color: rgba(255,255,255,.42); }
.footer-address { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.75; margin: .6rem 0 .5rem; }
.footer-email { display: inline-block; font-size: .84rem; color: var(--emerald-lt); margin-bottom: .35rem; transition: color .18s; }
.footer-email:hover { color: var(--green-lt); }

/* ── Hero crypto image ───────────────────────────────────────── */
.hero-crypto-img {
  width: 100%; max-width: 500px; margin-left: auto; display: block;
  filter: drop-shadow(0 24px 60px rgba(161,98,7,.2)) drop-shadow(0 0 40px rgba(234,179,8,.12));
  animation: coin-float 6s ease-in-out infinite;
}
@keyframes coin-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── Floating contact buttons ────────────────────────────────── */
.float-contact {
  position: fixed; right: 20px; bottom: 100px;
  z-index: 1070; display: flex; flex-direction: column; gap: .6rem;
}
.float-btn {
  width: 52px; height: 52px; border-radius:10px;
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: transform .22s, box-shadow .22s;
  box-shadow: 0 4px 18px rgba(0,0,0,.35); position: relative;
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); color: #fff; }
.float-btn::before {
  content: attr(data-label); position: absolute;
  right: 62px; top: 50%; transform: translateY(-50%);
  background: rgba(12,8,0,.95); color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: .3rem .75rem; border-radius:10px;
  border: 1px solid rgba(234,179,8,.22); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .18s;
}
.float-btn:hover::before { opacity: 1; }
.float-tg  { background: #2aabee; box-shadow: 0 4px 16px rgba(42,171,238,.35); }
.float-tg:hover { box-shadow: 0 8px 28px rgba(42,171,238,.5); }
.float-wa  { background: #25d366; box-shadow: 0 4px 16px rgba(37,211,102,.35); }
.float-wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.float-email { background: #b45309; box-shadow: 0 4px 16px rgba(180,83,9,.4); border: 2px solid rgba(255,255,255,.55); }
.float-email:hover { box-shadow: 0 8px 28px rgba(180,83,9,.55); border-color: #fff; }

/* ── Footer social list ──────────────────────────────────────── */
.footer-social-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .25rem; }
.footer-social-link { display: inline-flex; align-items: center; }

/* ── Trusted-by strip ────────────────────────────────────────── */
.trusted-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.trusted-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--dim); text-align: center; margin-bottom: 1.25rem;
}
.trusted-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .5rem 2rem; }
.trusted-logo-item {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 1rem;
  border: 1px solid var(--line); border-radius:10px;
  background: rgba(255,255,255,.03); color: var(--muted);
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.trusted-logo-item:hover { border-color: rgba(234,179,8,.35); color: rgba(255,255,255,.8); }
.trusted-logo-dot { width: 8px; height: 8px; border-radius:10px; flex-shrink: 0; }

/* ── Portfolio preview card ──────────────────────────────────── */
.portfolio-preview {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 1.5rem;
  box-shadow: 0 0 60px rgba(234,179,8,.08);
}
.portfolio-preview-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.portfolio-up {
  font-size: .82rem; color: var(--emerald-lt); font-weight: 700;
  background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2);
  border-radius:10px; padding: .2rem .7rem;
}
.portfolio-row {
  display: flex; align-items: center; gap: .85rem;
  padding: .75rem 0; border-bottom: 1px solid rgba(234,179,8,.07);
}
.portfolio-row:last-child { border-bottom: none; }
.portfolio-coin-icon {
  width: 36px; height: 36px; border-radius:10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800;
}
.portfolio-coin-name { font-size: .88rem; font-weight: 700; color: #fff; }
.portfolio-coin-pair { font-size: .72rem; color: var(--muted); }
.portfolio-coin-change { margin-left: auto; font-size: .82rem; font-weight: 700; }
.portfolio-coin-change.up   { color: #fcd34d; }
.portfolio-coin-change.down { color: #f87171; }

/* ── Stats strip ─────────────────────────────────────────────── */
.stats-strip-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.stats-strip-card { text-align: center; padding: 1.5rem; }
.stats-strip-value {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -.05em; line-height: 1; margin-bottom: .4rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stats-strip-label { font-size: .85rem; color: var(--muted); }
.stats-strip-divider { border-left: 1px solid var(--line); }

/* ── Feature check list ──────────────────────────────────────── */
.feature-check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.feature-check-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .94rem; color: var(--muted);
}
.feature-check-list li::before {
  content: "✓"; flex-shrink: 0;
  width: 22px; height: 22px; border-radius:10px;
  background: rgba(234,179,8,.13); color: var(--emerald-lt);
  font-size: .65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem; border: 1px solid rgba(234,179,8,.22);
}

/* ── Glow line separator ─────────────────────────────────────── */
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(161,98,7,.5) 30%, rgba(234,179,8,.5) 70%, transparent 100%);
  border: none; margin: 0;
}

/* ── Off-canvas mobile nav ───────────────────────────────────── */
.nav-hamburger {
  background: rgba(234,179,8,.07);
  border: 1px solid rgba(234,179,8,.28);
  border-radius:10px; padding: .5rem .65rem;
  cursor: pointer; display: flex; flex-direction: column; gap: 5px;
  transition: background .18s, border-color .18s;
}
.nav-hamburger:hover { background: rgba(234,179,8,.14); border-color: rgba(234,179,8,.5); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.85); border-radius:10px; }
.nav-offcanvas {
  background: #0a0700 !important;
  border-left: 1px solid var(--line) !important;
  width: 300px !important;
}
.nav-offcanvas .offcanvas-header { border-bottom: 1px solid var(--line); padding: 1.25rem 1.5rem; }
.nav-close {
  background: rgba(255,255,255,.06); border: 1px solid var(--line); border-radius:10px;
  color: rgba(255,255,255,.7); font-size: 1.2rem; cursor: pointer;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s; line-height: 1;
}
.nav-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-offcanvas .offcanvas-body { padding: 1.5rem; display: flex; flex-direction: column; }
.nav-offcanvas .fw-bold { color: #fff; font-size: 1.05rem; }
.nav-mobile-links { display: flex; flex-direction: column; gap: .4rem; }
.nav-mobile-link {
  display: flex; align-items: center; padding: .9rem 1rem;
  border-radius:10px; color: rgba(255,255,255,.68);
  font-weight: 600; font-size: .98rem;
  border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
}
.nav-mobile-link:hover { color: #fff; background: rgba(234,179,8,.08); border-color: rgba(234,179,8,.22); }
.nav-mobile-link.active { color: #fff; background: linear-gradient(135deg, rgba(180,83,9,.4), rgba(234,179,8,.35)); border-color: rgba(234,179,8,.35); }

/* ── TradingView ticker strip ─────────────────────────────────── */
.tv-ticker-strip {
  margin-top: 68px;
  background: rgba(12,8,0,.95);
  border-bottom: 1px solid var(--line);
  overflow: hidden; height: 46px;
}
.tv-ticker-strip .tradingview-widget-container,
.tv-ticker-strip .tradingview-widget-container__widget { height: 46px; }
.tv-h400 { height: 400px; }
.tv-h368 { height: 368px; }
.tv-chart-wrap {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--bg-card); min-height: 400px;
}
.tv-chart-wrap .tradingview-widget-container { height: 400px; }
.tv-chart-wrap .tradingview-widget-container__widget { height: 368px; }

/* ── Certificate section ─────────────────────────────────────── */
.cert-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; position: relative; }
.cert-img-wrap {
  background: linear-gradient(135deg, rgba(180,83,9,.06), rgba(234,179,8,.04));
  padding: 2.5rem; text-align: center;
  border-bottom: 1px solid var(--line);
}
.cert-img-wrap img { max-width: 100%; height: auto; margin: 0 auto; }
.cert-info { padding: 1.75rem; }
.cert-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .8rem; border-radius:10px;
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 1rem;
}
.cert-tag.verified { background: rgba(245,158,11,.12); color: #fcd34d; border: 1px solid rgba(245,158,11,.25); }
.cert-tag.verified::before { content: "✓"; font-size: .75rem; }

/* ── Plan level cards ────────────────────────────────────────── */
.plan-badge.gold   { background: rgba(234,179,8,.14); color: #fbbf24; border: 1px solid rgba(234,179,8,.28); }
.plan-badge.silver { background: rgba(148,163,184,.12); color: #94a3b8; border: 1px solid rgba(148,163,184,.25); }
.plan-level-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .25rem; }
.plan-range { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.plan-range-item { flex: 1; }
.plan-range-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .2rem; }
.plan-range-value { font-size: 1rem; font-weight: 800; color: #fff; }
.plan-card.gold { border-color: rgba(234,179,8,.35); background: linear-gradient(180deg, rgba(234,179,8,.06) 0%, var(--bg-card) 50%); }
.plan-card.gold:hover { border-color: rgba(234,179,8,.5); box-shadow: 0 0 50px rgba(234,179,8,.1); }
.btn-verify {
  background: transparent; border: 1.5px solid rgba(234,179,8,.4);
  color: var(--emerald-lt); font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all .22s; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-verify::before { content: "✓"; font-size: .85rem; }
.btn-verify:hover {
  background: var(--grad); border-color: transparent; color: #fff;
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(161,98,7,.4);
}
.plan-card.gold .btn-verify { border-color: rgba(234,179,8,.4); color: #fbbf24; }
.plan-card.gold .btn-verify:hover { background: linear-gradient(135deg, #b45309, #c2410c); border-color: transparent; color: #fff; box-shadow: 0 6px 20px rgba(234,179,8,.3); }

/* ── Services grid ───────────────────────────────────────────── */
.service-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  height: 100%; position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad); opacity: 0; transition: opacity .25s;
}
.service-card:hover {
  border-color: rgba(234,179,8,.32); box-shadow: var(--shadow-glow); transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-number {
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: var(--emerald-lt); text-transform: uppercase;
  margin-bottom: 1rem; opacity: .7;
}

/* ── Counter number animated ─────────────────────────────────── */
.counter-val {
  font-size: 3rem; font-weight: 900; letter-spacing: -.06em;
  line-height: 1; margin-bottom: .35rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.counter-label { font-size: .85rem; color: var(--muted); }

/* ── Scroll-reveal animations ────────────────────────────────── */
.anim-fade { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.anim-fade.anim-visible { opacity: 1; transform: translateY(0); }
.anim-fade:nth-child(2) { transition-delay: .1s; }
.anim-fade:nth-child(3) { transition-delay: .2s; }
.anim-fade:nth-child(4) { transition-delay: .3s; }

/* ── PWA / Offline / iOS hint ────────────────────────────────── */
.pwa-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(12,8,0,.97); border-top: 1px solid rgba(234,179,8,.3);
  padding: 14px 16px; backdrop-filter: blur(12px);
  transform: translateY(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.pwa-banner:not([hidden]) { transform: translateY(0); }
.pwa-banner-inner { max-width: 640px; margin: 0 auto; display: flex; align-items: center; gap: 12px; }
.pwa-banner-icon { flex-shrink: 0; }
.pwa-banner-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.pwa-banner-text strong { font-size: .92rem; font-weight: 700; color: #f9fafb; }
.pwa-banner-text span   { font-size: .78rem; color: rgba(255,255,255,.55); }
.pwa-banner-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pwa-dismiss { background: none; border: none; color: rgba(255,255,255,.45); font-size: 1.4rem; line-height: 1; cursor: pointer; padding: 4px 6px; border-radius:10px; }
.pwa-dismiss:hover { color: rgba(255,255,255,.85); }
.offline-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1999;
  background: #b45309; color: #fff; font-size: .82rem; font-weight: 600;
  text-align: center; padding: 8px 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transform: translateY(-100%); transition: transform .3s ease;
}
.offline-banner:not([hidden]) { transform: translateY(0); }
.pwa-ios-hint {
  position: fixed; bottom: 72px; left: 50%; transform: translateX(-50%);
  background: rgba(12,8,0,.97); border: 1px solid rgba(234,179,8,.3);
  border-radius:10px; padding: 18px 22px; max-width: 300px;
  width: calc(100vw - 32px); z-index: 2001; text-align: center;
  backdrop-filter: blur(12px); box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.pwa-ios-hint p { font-size: .85rem; color: rgba(255,255,255,.8); margin: 0; line-height: 1.5; }
.pwa-ios-hint strong { color: #f9fafb; }

/* ─── Hero Download App button ───────────────────────────────── */
.hero-install-wrap { margin-bottom: 2.5rem; }
.hero-install-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.18);
  border-radius:10px; padding: 12px 20px 12px 14px;
  cursor: pointer; transition: background .2s, border-color .2s, transform .18s;
  text-align: left; color: #fff;
}
.hero-install-btn:hover { background: rgba(234,179,8,.15); border-color: rgba(234,179,8,.5); transform: translateY(-2px); }
.hero-install-icon {
  width: 42px; height: 42px; background: var(--grad);
  border-radius:10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-install-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.hero-install-label { font-size: .92rem; font-weight: 700; color: #f9fafb; display: block; }
.hero-install-sub   { font-size: .72rem; color: rgba(255,255,255,.45); display: block; }
.hero-install-arrow { opacity: .4; flex-shrink: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
html, body { overflow-x: hidden; }

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: 100px 0 72px; }
  .section-pad { padding: 72px 0; }
  .auth-sidebar { min-height: auto; }
  .about-stat-bar { grid-template-columns: repeat(2, 1fr); }
  .tv-chart-wrap { min-height: 300px; }
  .tv-chart-wrap .tradingview-widget-container { height: 300px; }
  .tv-chart-wrap .tradingview-widget-container__widget { height: 268px; }
  .hero-crypto-img { max-width: 340px; margin: 0 auto; }
  .page-hero { min-height: auto; padding: 96px 0 56px; }
  .auth-shell .col-lg-5 { display: none !important; }
  .auth-shell .col-lg-7 { width: 100%; max-width: 100%; flex: none; }
  .carousel-item { min-height: 100vh; }
}

@media (max-width: 767.98px) {
  .hero-stats, .carousel-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .plan-range { gap: .5rem; }
  .float-contact { bottom: 80px; right: 12px; }
  .float-btn { width: 46px; height: 46px; }
  .activity-stack { width: min(300px, calc(100vw - 24px)); left: 12px; bottom: 12px; }
  .carousel-item { min-height: auto; padding: 60px 0; }
  .carousel-slide-inner { padding: 48px 0 72px; }
}

@media (max-width: 575.98px) {
  .section-pad { padding: 52px 0; }
  .auth-form-wrap { padding: 1.5rem; }
  .plan-price { font-size: 2.1rem; }
  .about-stat-bar { grid-template-columns: 1fr 1fr; }
  .hero h1, .carousel-slide-inner h1 { font-size: 2rem; letter-spacing: -.03em; }
  .hero-stats, .carousel-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-crypto-img { max-width: 260px; }
  .page-hero h1 { font-size: 1.85rem; }
  .auth-shell { border-radius: var(--radius); }
  .auth-wrap { padding: 110px 0 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-head h2 { font-size: 1.75rem; }
  .display-title { font-size: 1.75rem; }
  .cta-title { font-size: 1.75rem; }
  .plan-range-value { font-size: .9rem; }
  .cert-img-wrap { padding: 1.25rem; }
  .nav-offcanvas { width: 100% !important; }
  .tv-ticker-strip { margin-top: 60px; }
  .carousel-control-prev,
  .carousel-control-next { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO CAROUSEL — PHOTO BACKGROUND LAYER
   ═══════════════════════════════════════════════════════════════ */
.carousel-item-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: .22;
  transition: opacity .6s ease;
}
.carousel-item.active .carousel-item-photo { opacity: .22; }
.carousel-item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    140deg,
    rgba(12,8,0,.96) 0%,
    rgba(31,21,0,.80) 40%,
    rgba(12,8,0,.90) 100%
  );
}
/* Ensure orbs and content sit above overlay */
.carousel-slide-orb { z-index: 2; }
.carousel-slide-inner { z-index: 3; position: relative; }

/* ── Why-Us photo composition ──────────────────────────────── */
.why-us-composition {
  position: relative;
}
.why-us-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 500px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 60px rgba(161,98,7,.08);
}
.why-us-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.why-us-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,0,.75) 0%, transparent 55%);
}

/* ── Why-us illustrated panel (replaces the old team photo) ──── */
.why-us-illustration {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1f1500 0%, #4d3800 55%, #140e00 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.why-us-illustration-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 45% at 25% 20%, rgba(234,179,8,.22) 0%, transparent 65%);
}
.why-us-hub {
  position: relative; z-index: 2;
  width: 130px; height: 130px; border-radius: 50%;
  background: rgba(28,20,0,.85);
  border: 1px solid rgba(234,179,8,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fde047;
  box-shadow: 0 0 0 14px rgba(234,179,8,.06), 0 20px 60px rgba(0,0,0,.5);
}
.why-us-orbit-avatar {
  position: absolute; z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; color: #fff;
  border: 2px solid rgba(12,8,0,.6);
  box-shadow: 0 10px 26px rgba(0,0,0,.4);
  animation: showcase-float 8s ease-in-out infinite;
}
.why-us-orbit-1 { top: 14%; left: 18%; background: linear-gradient(135deg,#92400e,#d97706); animation-delay: 0s; }
.why-us-orbit-2 { top: 20%; right: 14%; background: linear-gradient(135deg,#a16207,#eab308); animation-delay: -2.5s; }
.why-us-orbit-3 { bottom: 16%; left: 14%; background: linear-gradient(135deg,#b45309,#f59e0b); animation-delay: -5s; }
.why-us-orbit-4 { bottom: 20%; right: 18%; background: linear-gradient(135deg,#78350f,#a16207); animation-delay: -1.5s; }
.why-us-float-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: rgba(28,20,0,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(234,179,8,.22);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 24px rgba(234,179,8,.08);
  z-index: 2;
}
.why-us-float-stat {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(234,179,8,.08);
}
.why-us-float-stat:last-child { border-bottom: none; padding-bottom: 0; }
.why-us-float-stat:first-child { padding-top: 0; }
.why-us-float-dot {
  width: 8px; height: 8px; border-radius:10px; flex-shrink: 0;
}
.why-us-float-label { font-size: .78rem; color: var(--muted); }
.why-us-float-val { font-size: .92rem; font-weight: 800; color: #fff; }

/* ── About page photo sections ─────────────────────────────── */
.about-photo-section {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.about-photo-section img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-photo-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(12,8,0,.5) 100%);
}
.about-photo-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(28,20,0,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234,179,8,.22);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  font-size: .8rem; font-weight: 700; color: var(--emerald-lt);
  display: flex; align-items: center; gap: .5rem;
}
.about-photo-tag::before {
  content: ""; width: 8px; height: 8px; border-radius:10px;
  background: var(--green); flex-shrink: 0;
  animation: dot-pulse 2s ease-in-out infinite;
}

/* ── Team section ──────────────────────────────────────────── */
.team-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 60px rgba(161,98,7,.06);
}
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.team-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,0,.6) 0%, transparent 50%);
}
.team-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem; z-index: 2;
  background: var(--grad);
  border-radius:10px;
  padding: .4rem 1rem;
  font-size: .72rem; font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: .1em;
}

/* ── Operations photo card ─────────────────────────────────── */
.ops-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 440px;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.ops-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ops-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,8,0,.45) 0%, rgba(180,83,9,.12) 100%);
}
.ops-float-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem; z-index: 2;
  background: rgba(28,20,0,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234,179,8,.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; text-align: center;
}
.ops-float-badge strong {
  display: block; font-size: 1.6rem; font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: .2rem;
}
.ops-float-badge span { font-size: .72rem; color: var(--muted); font-weight: 600; }

/* ── Responsive adjustments ────────────────────────────────── */
@media (max-width: 991.98px) {
  .why-us-photo-wrap { height: 360px; }
  .why-us-float-card { right: 0; bottom: -20px; }
  .about-photo-section,
  .ops-photo-wrap { height: 300px; }
  .team-photo-wrap { height: 340px; }
}
@media (max-width: 575.98px) {
  .why-us-float-card { position: static; margin-top: 1rem; border-radius: var(--radius); }
  .why-us-photo-wrap { height: 260px; }
  .about-photo-section,
  .ops-photo-wrap { height: 240px; }
  .team-photo-wrap { height: 280px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO V2 — single-hero layout (replaces the old photo carousel)
══════════════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 150px 0 100px;
}
.hero-v2-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 88% 8%, rgba(217,119,6,.32) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 8% 95%, rgba(234,179,8,.16) 0%, transparent 65%);
}
.hero-v2 > .container { position: relative; z-index: 2; }
.hero-v2-badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem; }
.hero-v2-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 700; color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.04); border: 1px solid rgba(234,179,8,.16);
  border-radius: 999px; padding: .35rem .85rem;
}
.hero-v2-badge svg { color: var(--green); flex-shrink: 0; }

/* ── Showcase illustration — shared brand visual (hero / why-us / auth) ── */
.showcase { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; }
.showcase-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; }
.showcase-blob-a { width: 340px; height: 340px; background: radial-gradient(circle, rgba(217,119,6,.5) 0%, transparent 70%); top: 0; right: 10%; animation: showcase-float 9s ease-in-out infinite; }
.showcase-blob-b { width: 260px; height: 260px; background: radial-gradient(circle, rgba(234,179,8,.35) 0%, transparent 70%); bottom: 5%; left: 5%; animation: showcase-float 9s ease-in-out infinite -4.5s; }
@keyframes showcase-float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-22px) scale(1.04); } }

.showcase-card {
  position: relative; z-index: 2;
  width: min(360px, 92%);
  background: rgba(28,20,0,.78);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(234,179,8,.22);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 60px rgba(161,98,7,.12);
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.showcase-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.showcase-card-head-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); }
.showcase-card-head-value { font-size: .95rem; font-weight: 800; color: #fff; margin-top: .15rem; }
.showcase-card-head-tag { font-size: .72rem; font-weight: 700; color: var(--emerald-lt); background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.2); border-radius: 999px; padding: .2rem .7rem; }

.showcase-bars { display: flex; align-items: flex-end; gap: .55rem; height: 110px; margin-bottom: 1.1rem; padding: 0 .25rem; }
.showcase-bar { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, #fde047 0%, #d97706 100%); opacity: .85; }
.showcase-bar:nth-child(1) { height: 38%; } .showcase-bar:nth-child(2) { height: 58%; } .showcase-bar:nth-child(3) { height: 44%; }
.showcase-bar:nth-child(4) { height: 74%; } .showcase-bar:nth-child(5) { height: 62%; } .showcase-bar:nth-child(6) { height: 95%; opacity: 1; }

.showcase-growth { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid rgba(234,179,8,.12); }
.showcase-growth-label { font-size: .74rem; color: var(--muted); }
.showcase-growth-value { font-size: 1.4rem; font-weight: 900; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.showcase-chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(28,20,0,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(234,179,8,.25);
  border-radius: var(--radius);
  padding: .65rem .9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  font-size: .78rem; font-weight: 700; color: #fff;
  white-space: nowrap;
}
.showcase-chip-icon { width: 26px; height: 26px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.showcase-chip-1 { top: 6%; left: -8%; animation: showcase-drift 7s ease-in-out infinite; }
.showcase-chip-2 { bottom: 10%; right: -10%; animation: showcase-drift 7s ease-in-out infinite -3.5s; }
.showcase-chip-3 { top: 50%; right: -14%; animation: showcase-drift 8s ease-in-out infinite -2s; }
@keyframes showcase-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.showcase-ring {
  position: absolute; z-index: 3; width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: conic-gradient(#eab308 var(--pct,80%), rgba(255,255,255,.1) 0);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.showcase-ring::before { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: var(--bg-card); }
.showcase-ring-value { position: relative; z-index: 1; font-size: .92rem; font-weight: 900; color: #fff; }

@media (max-width: 991.98px) {
  .showcase { min-height: 360px; }
  .showcase-card { width: min(320px, 90%); }
  .showcase-chip { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   AUTH SPLIT — full-height two-panel auth layout
══════════════════════════════════════════════════════════════ */
.auth-split { min-height: 100vh; display: flex; background: var(--bg); }
.auth-visual { flex: 0 0 44%; max-width: 44%; position: relative; overflow: hidden; display: none; }
.auth-visual-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #1f1500 0%, #4d3800 55%, #140e00 100%); }
.auth-visual-mesh { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 20% 15%, rgba(234,179,8,.18) 0%, transparent 65%); }
.auth-visual-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 6.5rem 3rem 3.5rem; }
.auth-visual-content { max-width: 380px; }
.auth-visual-showcase { margin-top: 2.5rem; transform: scale(.82); transform-origin: left center; }
.auth-brand { display: flex; align-items: center; gap: .6rem; margin-bottom: 2.5rem; }
.auth-brand img { height: 32px; width: auto; }
.auth-brand span { font-weight: 800; font-size: 1rem; color: #fff; }

.auth-form-side { flex: 1 1 auto; display: flex; align-items: center; justify-content: center; padding: 6.5rem 1.5rem 3.5rem; position: relative; }
.auth-form-card { width: 100%; max-width: 440px; }
.auth-form-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.25rem; }
.auth-form-back { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700; color: var(--muted); }
.auth-form-back:hover { color: #fff; }

@media (min-width: 992px) { .auth-visual { display: block; } }
@media (max-width: 991.98px) { .auth-form-side { padding: 6.5rem 1.25rem 3rem; } }
