/* =============================================
   VERIXA — Design System & Responsive CSS
   Mobile-first. Tested 320px → 1440px.
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────── */
:root {
  --bg-base:       #050816;
  --bg-primary:    #0B1220;
  --bg-card:       #0D1829;
  --bg-card-hover: #111f35;
  --green:         #00D084;
  --green-dim:     rgba(0,208,132,0.12);
  --green-glow:    rgba(0,208,132,0.25);
  --blue:          #3B82F6;
  --blue-dim:      rgba(59,130,246,0.12);
  --blue-glow:     rgba(59,130,246,0.25);
  --text:          #FFFFFF;
  --text-muted:    #B8C0CC;
  --text-subtle:   #6B7A8F;
  --border:        rgba(255,255,255,0.06);
  --border-active: rgba(0,208,132,0.3);
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --ease:  cubic-bezier(0.4,0,0.2,1);
  --font:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ─── RESET ──────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family:var(--font);
  background:var(--bg-base);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100vw;
}
img,svg { max-width:100%; display:block; }
a { text-decoration:none; }
button { cursor:pointer; }

/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:var(--bg-base); }
::-webkit-scrollbar-thumb { background:#1e2d45; border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background:var(--green); }

/* ─── TYPOGRAPHY ─────────────────────────────── */
h1,h2,h3,h4,h5 { line-height:1.2; font-weight:700; letter-spacing:-0.02em; }

/* Mobile-first sizes, scale up at ≥768px */
.display-xl {
  font-size: clamp(1.9rem, 8vw, 4.8rem);
  font-weight:800; line-height:1.08; letter-spacing:-0.03em;
}
.display-lg {
  font-size: clamp(1.65rem, 6vw, 3.6rem);
  font-weight:700; letter-spacing:-0.02em;
}
.display-md {
  font-size: clamp(1.3rem, 4.5vw, 2.4rem);
  font-weight:700; letter-spacing:-0.02em;
}
.display-sm {
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight:600; letter-spacing:-0.01em;
}
.body-lg  { font-size:clamp(0.95rem,2.5vw,1.125rem); line-height:1.75; }
.body-md  { font-size:1rem; line-height:1.7; }
.body-sm  { font-size:0.875rem; line-height:1.65; }
.label    { font-size:0.75rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; }

.text-green  { color:var(--green); }
.text-blue   { color:var(--blue); }
.text-muted  { color:var(--text-muted); }
.text-subtle { color:var(--text-subtle); }
.text-center { text-align:center; }

.gradient-text {
  background:linear-gradient(135deg,#fff 20%,var(--green) 80%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.gradient-text-blue {
  background:linear-gradient(135deg,#fff 20%,var(--blue) 80%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}

/* ─── LAYOUT ─────────────────────────────────── */
.container {
  width:100%; max-width:1280px; margin:0 auto;
  padding:0 1.25rem;
}
.section    { padding:clamp(3rem,7vw,7rem) 0; position:relative; }
.section-sm { padding:clamp(2rem,4vw,4rem) 0; }

.section-header {
  text-align:center; max-width:700px; margin:0 auto;
  margin-bottom:clamp(2rem,4vw,3.5rem);
}
.section-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--green); margin-bottom:1rem;
}
.section-eyebrow::before {
  content:''; display:block; width:20px; height:2px;
  background:var(--green); border-radius:2px;
}

/* ─── TWO-COLUMN LAYOUTS ─────────────────────── */
/* All two-col grids are single column on mobile by default */
.two-col-grid,
.profile-grid,
.contact-grid,
.mini-card-grid,
.expertise-grid,
.faq-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
}

/* On desktop, restore multi-column */
@media (min-width:900px) {
  .two-col-grid  { grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
  .profile-grid  { grid-template-columns:1fr 2fr; gap:4rem; align-items:start; }
  .contact-grid  { grid-template-columns:5fr 7fr; gap:3.5rem; align-items:start; }
  .mini-card-grid{ grid-template-columns:1fr 1fr; gap:1rem; }
  .expertise-grid{ grid-template-columns:1fr 1fr; gap:0.75rem; }
  .faq-grid      { grid-template-columns:1fr 1fr; gap:1.25rem; }
}

/* Indicator features 2-col */
.features-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:1.25rem;
  max-width:960px; margin:0 auto;
}
@media (min-width:768px) {
  .features-grid { grid-template-columns:1fr 1fr; gap:1.5rem; }
}

/* Centered align variant */
@media (min-width:900px) {
  .two-col-grid.align-center { align-items:center; }
}

/* ─── STANDARD GRIDS ─────────────────────────── */
.grid-2 { display:grid; grid-template-columns:1fr; gap:1rem; }
.grid-3 { display:grid; grid-template-columns:1fr; gap:1rem; }
.grid-4 { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }

@media (min-width:600px) {
  .grid-2 { grid-template-columns:repeat(2,1fr); }
}
@media (min-width:768px) {
  .grid-3 { grid-template-columns:repeat(2,1fr); gap:1.25rem; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media (min-width:1024px) {
  .grid-3 { grid-template-columns:repeat(3,1fr); gap:1.5rem; }
  .grid-4 { grid-template-columns:repeat(4,1fr); gap:1.25rem; }
}

/* ─── STATS GRID ─────────────────────────────── */
.stats-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.25rem;
  text-align:center;
}
@media (min-width:640px) {
  .stats-grid { grid-template-columns:repeat(4,1fr); gap:1.5rem; }
}

/* ─── FLEX UTILITIES ─────────────────────────── */
.flex          { display:flex; }
.flex-col      { flex-direction:column; }
.flex-wrap     { flex-wrap:wrap; }
.items-center  { align-items:center; }
.items-start   { align-items:flex-start; }
.justify-center{ justify-content:center; }
.justify-between{ justify-content:space-between; }
.gap-1 { gap:0.5rem; }
.gap-2 { gap:1rem; }
.gap-3 { gap:1.5rem; }
.gap-4 { gap:2rem; }
.flex-shrink-0 { flex-shrink:0; }

/* Hero CTA button group */
.hero-cta {
  display:flex; flex-wrap:wrap; gap:0.75rem;
  justify-content:center; align-items:center;
}
@media (max-width:400px) {
  .hero-cta { flex-direction:column; align-items:stretch; }
  .hero-cta .btn { justify-content:center; }
}

/* Trust badges row */
.trust-row {
  display:flex; flex-wrap:wrap; gap:1rem;
  justify-content:center; align-items:center;
}

/* ─── SPACING UTILITIES ──────────────────────── */
.mt-1  { margin-top:0.5rem; }
.mt-2  { margin-top:1rem; }
.mt-3  { margin-top:1.5rem; }
.mt-4  { margin-top:2rem; }
.mt-6  { margin-top:3rem; }
.mb-2  { margin-bottom:1rem; }
.mb-3  { margin-bottom:1.5rem; }
.mx-auto { margin-left:auto; margin-right:auto; }
.w-full  { width:100%; }
.max-w-2xl { max-width:680px; }
.max-w-3xl { max-width:860px; }
.relative  { position:relative; }
.overflow-hidden { overflow:hidden; }
.hidden    { display:none; }

/* ─── NAVBAR ─────────────────────────────────── */
#navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:0 1.25rem;
  transition:all 0.25s var(--ease);
}
#navbar.scrolled {
  background:rgba(5,8,22,0.9);
  backdrop-filter:blur(20px) saturate(180%);
  -webkit-backdrop-filter:blur(20px) saturate(180%);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:60px;
}
.nav-logo {
  font-size:1.3rem; font-weight:800; letter-spacing:-0.03em;
  color:var(--text); display:flex; align-items:center; gap:4px;
  flex-shrink:0;
}
.nav-logo .logo-dot { color:var(--green); }
.nav-links {
  display:none; /* hidden on mobile */
  align-items:center; gap:4px; list-style:none;
}
.nav-links a {
  color:var(--text-muted); font-size:0.875rem; font-weight:500;
  padding:7px 12px; border-radius:var(--r-sm);
  transition:all 0.2s var(--ease);
}
.nav-links a:hover,.nav-links a.active {
  color:var(--text); background:rgba(255,255,255,0.07);
}
.nav-cta {
  display:none; /* hidden on mobile */
  align-items:center; gap:10px;
}
.nav-hamburger {
  display:flex; flex-direction:column; gap:5px;
  padding:8px; background:none; border:none;
  cursor:pointer; -webkit-tap-highlight-color:transparent;
}
.nav-hamburger span {
  width:22px; height:2px; background:var(--text-muted);
  border-radius:2px; transition:all 0.25s var(--ease); display:block;
}
.nav-hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity:0; }
.nav-hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Show desktop nav from 900px */
@media (min-width:900px) {
  #navbar { padding:0 clamp(1.5rem,4vw,4rem); }
  .nav-inner { height:68px; }
  .nav-logo { font-size:1.375rem; }
  .nav-links { display:flex; }
  .nav-cta   { display:flex; }
  .nav-hamburger { display:none; }
}

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; top:60px; left:0; right:0;
  background:rgba(5,8,22,0.98); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border); padding:1.25rem; z-index:999;
  max-height:calc(100vh - 60px); overflow-y:auto;
}
.mobile-menu.open { display:block; }
.mobile-menu ul   { list-style:none; display:flex; flex-direction:column; gap:4px; }
.mobile-menu a {
  display:block; padding:11px 14px; color:var(--text-muted);
  font-weight:500; border-radius:var(--r-sm);
  transition:all 0.2s var(--ease);
}
.mobile-menu a:hover { color:var(--text); background:rgba(255,255,255,0.07); }
.mobile-menu .mobile-cta {
  margin-top:1rem; display:flex; flex-direction:column; gap:8px;
}
.mobile-menu .mobile-cta .btn { justify-content:center; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 22px; border-radius:var(--r-md);
  font-family:var(--font); font-size:0.9rem; font-weight:600;
  border:none; cursor:pointer;
  transition:all 0.22s var(--ease);
  white-space:nowrap; -webkit-tap-highlight-color:transparent;
  text-decoration:none; line-height:1;
}
.btn-primary { background:var(--green); color:#031a0d; }
.btn-primary:hover {
  background:#00e891;
  box-shadow:0 0 24px var(--green-glow),0 4px 16px rgba(0,208,132,0.3);
  transform:translateY(-1px);
}
.btn-outline {
  background:transparent; color:var(--text); border:1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.06);
  transform:translateY(-1px);
}
.btn-sm  { padding:9px 18px; font-size:0.85rem; }
.btn-lg  { padding:13px 28px; font-size:0.95rem; }

@media (min-width:768px) {
  .btn    { padding:12px 26px; font-size:0.9375rem; }
  .btn-lg { padding:15px 34px; font-size:1rem; }
}

/* No hover transforms on touch devices */
@media (hover:none) {
  .btn-primary:hover,
  .btn-outline:hover { transform:none; box-shadow:none; }
}

/* ─── HERO SECTION ───────────────────────────── */
.hero-section {
  position:relative; min-height:100vh; display:flex; align-items:center;
  overflow:hidden; padding-top:60px;
}
@media (min-width:900px) {
  .hero-section { padding-top:68px; }
}
.hero-canvas {
  position:absolute; inset:0; width:100%; height:100%; z-index:0;
}
.hero-fade {
  position:absolute; bottom:0; left:0; right:0; height:160px;
  background:linear-gradient(to top,#050816,transparent); z-index:1;
}
.hero-content {
  position:relative; z-index:2;
  width:100%; padding-top:2.5rem; padding-bottom:3.5rem;
}
.hero-inner {
  max-width:820px; margin:0 auto; text-align:center;
}

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  padding:clamp(90px,15vw,140px) 0 clamp(40px,6vw,80px);
  text-align:center; position:relative;
}

/* ─── CARDS ──────────────────────────────────── */
.card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:1.35rem;
  transition:all 0.25s var(--ease); position:relative; overflow:hidden;
}
@media (min-width:768px) { .card { padding:2rem; } }
.card:hover {
  border-color:rgba(0,208,132,0.2); background:var(--bg-card-hover);
  transform:translateY(-3px); box-shadow:0 20px 50px rgba(0,0,0,0.35);
}
@media (hover:none) { .card:hover { transform:none; box-shadow:none; } }
.card-icon {
  width:44px; height:44px; border-radius:var(--r-sm);
  background:var(--green-dim); display:flex; align-items:center; justify-content:center;
  margin-bottom:1rem; font-size:1.125rem; flex-shrink:0;
}
.card-icon.blue { background:var(--blue-dim); }
.card-title { font-size:1rem; font-weight:600; margin-bottom:0.5rem; }
.card-body  { color:var(--text-muted); font-size:0.875rem; line-height:1.65; }

/* ─── GLASS ──────────────────────────────────── */
.glass {
  background:rgba(13,24,41,0.6);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-lg);
  padding:1.5rem;
}
@media (min-width:768px) { .glass { padding:2rem; } }

/* ─── BADGE ──────────────────────────────────── */
.badge {
  display:inline-flex; align-items:center; gap:5px;
  padding:5px 13px; border-radius:100px;
  font-size:0.75rem; font-weight:600; letter-spacing:0.04em;
}
.badge-green { background:var(--green-dim); color:var(--green); border:1px solid rgba(0,208,132,0.2); }
.badge-blue  { background:var(--blue-dim);  color:var(--blue);  border:1px solid rgba(59,130,246,0.2); }

/* ─── TECH PILLS ─────────────────────────────── */
.tech-pill {
  display:inline-flex; align-items:center; gap:7px;
  padding:9px 16px; border-radius:100px;
  background:var(--bg-card); border:1px solid var(--border);
  font-size:0.85rem; font-weight:500; color:var(--text-muted);
  transition:all 0.22s var(--ease);
}
.tech-pill:hover { border-color:rgba(59,130,246,0.35); color:var(--text); background:var(--bg-card-hover); }
.tech-pills-wrap {
  display:flex; flex-wrap:wrap; gap:0.75rem;
  justify-content:center; max-width:860px; margin:0 auto;
}

/* ─── ORBS ───────────────────────────────────── */
.orb {
  position:absolute; border-radius:50%;
  pointer-events:none; filter:blur(70px); opacity:0.2;
  will-change:transform;
}
.orb-green { background:radial-gradient(circle,var(--green),transparent 70%); }
.orb-blue  { background:radial-gradient(circle,var(--blue),transparent 70%); }
@media (max-width:768px) {
  .orb { opacity:0.1 !important; filter:blur(50px) !important; }
}

/* ─── STAT COUNTER ───────────────────────────── */
.stat-value {
  font-size:clamp(1.75rem,5vw,3rem);
  font-weight:800; letter-spacing:-0.04em; color:var(--text);
}
.stat-label {
  font-size:0.8rem; color:var(--text-muted); font-weight:500; margin-top:4px;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

.animate-fadeup { animation:fadeUp 0.65s var(--ease) both; }
.animate-fadein { animation:fadeIn 0.65s both; }
.delay-1 { animation-delay:0.1s; }
.delay-2 { animation-delay:0.2s; }
.delay-3 { animation-delay:0.3s; }
.delay-4 { animation-delay:0.4s; }
.delay-5 { animation-delay:0.5s; }

.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── FEATURE ITEM (About page story cards) ──── */
.feature-item { display:flex; gap:1rem; align-items:flex-start; }
.feature-check {
  width:22px; height:22px; border-radius:50%;
  background:var(--green-dim); color:var(--green);
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; flex-shrink:0; margin-top:2px;
}

/* Story card row (about page) */
.story-row {
  display:flex; gap:1.25rem; align-items:flex-start;
}
.story-icon {
  width:46px; height:46px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; flex-shrink:0;
}

/* ─── TIMELINE ───────────────────────────────── */
.timeline { position:relative; padding-left:1.75rem; }
.timeline::before {
  content:''; position:absolute; left:0; top:8px; bottom:8px;
  width:2px; background:var(--border);
}
.timeline-item { position:relative; padding-bottom:2.25rem; }
.timeline-item::before {
  content:''; position:absolute; left:-2.25rem; top:6px;
  width:11px; height:11px; border-radius:50%;
  background:var(--green); border:2px solid var(--bg-base);
  box-shadow:0 0 8px var(--green-glow);
}
.timeline-year  { color:var(--green); font-size:0.78rem; font-weight:600; letter-spacing:0.06em; margin-bottom:0.3rem; }
.timeline-title { font-size:1rem; font-weight:600; margin-bottom:0.35rem; }
.timeline-desc  { color:var(--text-muted); font-size:0.875rem; line-height:1.6; }

/* ─── PROFILE ────────────────────────────────── */
.profile-image-wrap {
  width:clamp(130px,30vw,200px);
  height:clamp(130px,30vw,200px);
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue-dim),var(--green-dim));
  border:2px solid var(--border-active);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; margin:0 auto 1.25rem;
  box-shadow:0 0 40px rgba(0,208,132,0.15);
}
.profile-initials {
  font-size:clamp(2rem,8vw,3.25rem); font-weight:800; letter-spacing:-0.04em;
  background:linear-gradient(135deg,var(--green),var(--blue));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}

/* ─── INDICATOR MOCKUP SCREEN ────────────────── */
.indicator-screen {
  background:var(--bg-primary); border:1px solid var(--border);
  border-radius:var(--r-xl); overflow:hidden;
}
.screen-header {
  background:rgba(255,255,255,0.04); border-bottom:1px solid var(--border);
  padding:10px 16px; display:flex; align-items:center; gap:7px;
}
.screen-dot { width:9px; height:9px; border-radius:50%; }
.screen-body { padding:1.25rem; }

/* Chart bars */
.chart-bar {
  display:flex; align-items:flex-end; gap:5px; height:140px;
}
.c-bar { flex:1; border-radius:3px 3px 0 0; position:relative; }
.c-bar.bull { background:rgba(0,208,132,0.7); }
.c-bar.bear { background:rgba(239,68,68,0.6); }
.signal-tag {
  position:absolute; top:-28px; left:50%; transform:translateX(-50%);
  font-size:0.6rem; font-weight:700; padding:2px 6px;
  border-radius:4px; white-space:nowrap;
}
.signal-tag.buy  { background:rgba(0,208,132,0.2); color:var(--green); border:1px solid rgba(0,208,132,0.4); }
.signal-tag.sell { background:rgba(239,68,68,0.15); color:#ef4444; border:1px solid rgba(239,68,68,0.3); }

/* ─── HOW-IT-WORKS STEPS ─────────────────────── */
.step-row {
  display:flex; gap:1.25rem; align-items:flex-start;
  padding-bottom:2rem; position:relative;
}
.step-spine {
  display:flex; flex-direction:column; align-items:center; flex-shrink:0;
}
.step-num {
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:0.875rem;
}
.step-line {
  width:2px; flex:1; background:var(--border); margin-top:6px; min-height:36px;
}
.step-content { flex:1; }

/* ─── FORMS ──────────────────────────────────── */
.form-group { display:flex; flex-direction:column; gap:7px; }
.form-label { font-size:0.875rem; font-weight:500; color:var(--text-muted); }
.form-input,
.form-select,
.form-textarea {
  width:100%; padding:12px 14px;
  background:rgba(11,18,32,0.85); border:1px solid var(--border);
  border-radius:var(--r-md); color:var(--text);
  font-family:var(--font); font-size:0.9375rem;
  transition:border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); outline:none;
  -webkit-appearance:none; appearance:none;
}
.form-textarea { resize:vertical; min-height:120px; }
.form-input::placeholder,.form-textarea::placeholder { color:var(--text-subtle); }
.form-input:focus,.form-select:focus,.form-textarea:focus {
  border-color:var(--green); box-shadow:0 0 0 3px var(--green-dim);
}
.form-select option { background:var(--bg-primary); color:var(--text); }
.form-grid { display:grid; grid-template-columns:1fr; gap:1rem; }
@media (min-width:560px) {
  .form-grid { grid-template-columns:1fr 1fr; gap:1.25rem; }
}

/* ─── CONTACT INFO ITEMS ─────────────────────── */
.contact-info-row {
  display:flex; gap:1rem; align-items:flex-start;
}

/* ─── FOOTER ─────────────────────────────────── */
#footer { background:var(--bg-primary); border-top:1px solid var(--border); padding:2.5rem 0 1.5rem; }
.footer-grid {
  display:grid; grid-template-columns:1fr; gap:2rem;
  margin-bottom:2rem;
}
@media (min-width:560px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
}
@media (min-width:900px) {
  .footer-grid { grid-template-columns:2fr 1fr 1fr 1fr; gap:2.5rem; }
  #footer { padding:3.5rem 0 2rem; }
}
.footer-brand .tagline { color:var(--text-muted); font-size:0.875rem; margin-top:0.5rem; max-width:260px; line-height:1.6; }
.footer-col h4 {
  font-size:0.75rem; font-weight:600; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--text-subtle); margin-bottom:0.9rem;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.5rem; }
.footer-col a { color:var(--text-muted); font-size:0.875rem; transition:color 0.2s; }
.footer-col a:hover { color:var(--text); }
.footer-socials { display:flex; gap:10px; margin-top:1.1rem; flex-wrap:wrap; }
.footer-social-btn {
  width:36px; height:36px; border-radius:var(--r-sm);
  background:rgba(255,255,255,0.05); border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:1rem; transition:all 0.2s var(--ease);
  flex-shrink:0;
}
.footer-social-btn:hover { background:var(--green-dim); border-color:var(--border-active); color:var(--green); }
.footer-bottom {
  display:flex; flex-direction:column; gap:0.5rem; align-items:center; text-align:center;
  padding-top:1.25rem; border-top:1px solid var(--border);
  font-size:0.8rem; color:var(--text-subtle);
}
@media (min-width:640px) {
  .footer-bottom { flex-direction:row; justify-content:space-between; text-align:left; }
}

/* ─── SUCCESS MESSAGE ────────────────────────── */
.success-msg {
  display:none; text-align:center; padding:1.75rem;
  border-radius:var(--r-lg); background:var(--green-dim);
  border:1px solid rgba(0,208,132,0.25);
}
.success-msg.show { display:block; animation:fadeUp 0.5s ease; }
.success-icon { font-size:2.25rem; margin-bottom:0.65rem; }

/* ─── MISC UTILITIES ─────────────────────────── */
.divider { width:100%; height:1px; background:var(--border); }
.pill-icon { font-size:1rem; line-height:1; }

/* ─── DESKTOP-ONLY CONTAINER PADDING BUMP ───── */
@media (min-width:1024px) {
  .container { padding:0 2rem; }
}
@media (min-width:1280px) {
  .container { padding:0 3rem; }
}

/* ─── INDICATOR PAGE SPECIFIC ────────────────── */
@media (max-width:899px) {
  .indicator-hero-grid {
    display:flex !important; flex-direction:column !important; gap:2rem !important;
  }
}
