/* ============================================================
   BTCID Agency v3 -- style.css
   Art direction: Flat creative / bold color blocks / editorial
   Palette: pink #F2527A, blue #4DBDE8, yellow #F5C800, teal #3FAF8C, red #E8403A
   Fonts: Clash Display (display) + Satoshi (body)
   No em dashes anywhere.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

:root {
  --bg:    #0b0b14;
  --bg1:   #0f0f1c;
  --bg2:   #141424;
  --bg3:   #1a1a30;

  --text:  #e8e8f4;
  --muted: #6666a0;
  --faint: #666680;

  --bdr:   rgba(255,255,255,0.06);
  --bdr2:  rgba(255,255,255,0.11);

  --pink:   #F2527A;
  --blue:   #4DBDE8;
  --yellow: #F5C800;
  --teal:   #3FAF8C;
  --red:    #E8403A;

  --gold:     #F5C800;
  --gold-dim: rgba(245,200,0,0.10);
  --gold-b:   rgba(245,200,0,0.22);

  --white: #ffffff;

  --r:    10px;
  --r-lg: 18px;
  --r-xl: 28px;

  --ease:      cubic-bezier(0.16,1,0.3,1);
  --ease-back: cubic-bezier(0.34,1.56,0.64,1);

  --display: 'Clash Display', system-ui, sans-serif;
  --body:    'Satoshi', system-ui, sans-serif;
}

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

body::after {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025; pointer-events: none; z-index: 9999;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .container { padding: 0 40px; } }
section { padding: 100px 0; position: relative; }
@media (max-width: 640px) { section { padding: 64px 0; } }

.display-md {
  font-family: var(--display);
  font-size: clamp(38px, 7.5vw, 68px);
  font-weight: 700; line-height: 0.97; letter-spacing: -0.025em; color: var(--white);
}
h3 {
  font-family: var(--display); font-size: 19px; font-weight: 600;
  color: var(--white); line-height: 1.2; letter-spacing: -0.01em;
}
p { font-size: 14.5px; line-height: 1.8; }
.lead { font-size: 16px; color: var(--muted); line-height: 1.8; }

.label {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 10px;
}
.label::before { content: ''; display: inline-block; width: 22px; height: 1.5px; background: var(--yellow); flex-shrink: 0; }

.sec-head { text-align: center; margin-bottom: 72px; }
.sec-head .display-md { margin-bottom: 16px; }
.sec-head .lead { max-width: 420px; margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 13.5px; font-weight: 600; font-family: var(--body);
  border: 1.5px solid var(--bdr2); background: transparent; color: var(--text);
  cursor: pointer; white-space: nowrap;
  transition: all 0.22s var(--ease); letter-spacing: 0.01em;
}
.btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-yellow { background: var(--yellow); border-color: var(--yellow); color: #000; font-weight: 700; box-shadow: 0 6px 28px rgba(245,200,0,0.26); }
.btn-yellow:hover { background: #ffe033; border-color: #ffe033; box-shadow: 0 0 0 6px var(--gold-dim), 0 10px 36px rgba(245,200,0,0.35); transform: translateY(-3px); }
.btn-outline { border-color: var(--gold-b); color: var(--yellow); background: transparent; }
.btn-outline:hover { background: var(--gold-dim); border-color: rgba(245,200,0,0.4); }

/* ---- NAVBAR ---- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 14px 0; transition: padding 0.3s var(--ease); }
.navbar.scrolled { padding: 8px 0; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 54px;
  background: rgba(8,8,18,0.82); backdrop-filter: blur(28px) saturate(160%); -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid var(--bdr); border-radius: 16px; padding: 0 20px;
  max-width: 900px; margin: 0 auto; position: relative;
}
.navbar.scrolled .nav-inner { border-color: var(--bdr2); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--white); }
.brand-img { width: 30px; height: 30px; border-radius: 8px; overflow: hidden; border: 1px solid var(--bdr2); flex-shrink: 0; }
.brand-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); display: inline-block; margin-left: 2px; vertical-align: middle; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: none; align-items: center; gap: 2px; }
@media (min-width: 800px) { .nav-links { display: flex; } }
.nav-links a { font-size: 12.5px; font-weight: 500; color: var(--muted); padding: 6px 14px; border-radius: 999px; transition: color 0.15s, background 0.15s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-right { display: none; }
@media (min-width: 800px) { .nav-right { display: block; } }
.nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 9px;
  font-size: 12px; font-weight: 700; font-family: var(--body);
  background: transparent; border: 1.5px solid var(--gold-b); color: var(--yellow);
  cursor: pointer; letter-spacing: 0.03em; transition: all 0.18s var(--ease);
}
.nav-btn:hover { background: var(--gold-dim); border-color: rgba(245,200,0,0.4); transform: translateY(-1px); }
.hamburger {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--bdr2); background: transparent; color: var(--text); transition: background 0.15s;
}
.hamburger:hover { background: rgba(255,255,255,0.05); }
@media (min-width: 800px) { .hamburger { display: none; } }
.drawer { display: none; position: relative; z-index: 1; }
.drawer.open { display: block; }
.drawer-inner { max-width: 900px; margin: 8px auto 0; background: rgba(8,8,18,0.96); backdrop-filter: blur(24px); border: 1px solid var(--bdr); border-radius: 14px; padding: 8px 0; }
.drawer-inner a { display: block; padding: 13px 20px; font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.15s, background 0.15s; }
.drawer-inner a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.drawer-cta { margin: 8px 16px; display: flex; }

/* ---- HERO ---- */
.hero { min-height: 100svh; display: flex; flex-direction: column; padding-top: 82px; overflow: hidden; position: relative; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 35%, black 10%, transparent 100%);
}
.hero-shape { position: absolute; pointer-events: none; border-radius: 50%; }
.shape-pink  { width: 360px; height: 360px; background: var(--pink);   top: -120px; right: -80px;  opacity: 0.12; filter: blur(90px); }
.shape-blue  { width: 280px; height: 280px; background: var(--blue);   bottom: 60px; left: -80px; opacity: 0.09; filter: blur(80px); }
.shape-teal  { width: 200px; height: 200px; background: var(--teal);   top: 45%; right: 22%;        opacity: 0.07; filter: blur(70px); }
canvas.dust { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.18; z-index: 1; }

.hero-body { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 0 56px; position: relative; z-index: 2; }

.hero-strips { display: flex; gap: 5px; margin-bottom: 30px; }
.strip { height: 5px; border-radius: 999px; }
.strip-pink   { width: 44px; background: var(--pink); }
.strip-blue   { width: 26px; background: var(--blue); }
.strip-yellow { width: 34px; background: var(--yellow); }
.strip-teal   { width: 18px; background: var(--teal); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 10px; border-radius: 999px;
  border: 1px solid var(--gold-b); background: var(--gold-dim);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 28px; align-self: flex-start;
}
.badge-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; position: relative; }
.badge-pulse::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; border: 1.5px solid var(--yellow); opacity: 0; animation: bpulse 2s ease-out infinite; }
@keyframes bpulse { 0% { transform: scale(0.8); opacity: 0.6; } 100% { transform: scale(2.1); opacity: 0; } }

.hero-headline {
  font-family: var(--display);
  font-size: clamp(62px, 15.5vw, 144px);
  font-weight: 700; line-height: 0.92; letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 40px;
}
.hl-pink   { color: var(--pink); }
.hl-blue   { color: var(--blue); }
.hl-yellow { color: var(--yellow); }
.hl-teal   { color: var(--teal); }
.hl-outline { -webkit-text-stroke: 2px rgba(255,255,255,0.22); color: transparent; }
@media (max-width: 480px) { .hl-outline { -webkit-text-stroke-width: 1.5px; } }

.hero-bottom { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 700px) { .hero-bottom { grid-template-columns: 1fr auto; align-items: end; } }

.hero-sub { font-size: 15px; font-weight: 400; color: var(--muted); line-height: 1.85; max-width: 400px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px; border: 1px solid var(--bdr2); background: rgba(255,255,255,0.022); font-size: 11px; font-weight: 500; color: var(--muted); }
.chip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

.hero-stats { display: flex; flex-direction: row; gap: 28px; flex-wrap: wrap; }
@media (min-width: 700px) { .hero-stats { flex-direction: column; align-items: flex-end; gap: 20px; } }
.hstat { text-align: right; }
@media (max-width: 699px) { .hstat { text-align: left; } }
.hstat-n { font-family: var(--display); font-size: 38px; line-height: 1; color: var(--white); font-weight: 700; }
.hstat-l { font-size: 9.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

.hero-ticker { position: relative; z-index: 2; border-top: 1px solid var(--bdr); padding: 16px 0; overflow: hidden; background: rgba(0,0,0,0.25); }
.ticker-row { display: flex; gap: 0; width: max-content; animation: marquee 30s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-family: var(--display); font-size: 13px; letter-spacing: 0.14em; color: var(--muted); padding: 0 32px; display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }

/* ---- CLIENTS ---- */
.clients-section { padding: 64px 0; background: var(--bg1); border-top: 1px solid var(--bdr); border-bottom: 1px solid var(--bdr); overflow: hidden; }
.clients-label { text-align: center; margin-bottom: 40px; }
.clients-label p { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.logo-track { overflow: hidden; position: relative; }
.logo-track::before, .logo-track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.logo-track::before { left: 0; background: linear-gradient(90deg, var(--bg1), transparent); }
.logo-track::after  { right: 0; background: linear-gradient(-90deg, var(--bg1), transparent); }
.logo-row { display: flex; gap: 10px; width: max-content; animation: tickslide 55s linear infinite; }
@keyframes tickslide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.logo-tile { display: flex; align-items: center; justify-content: center; min-width: 118px; min-height: 58px; padding: 10px 20px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: 10px; transition: border-color 0.2s, background 0.2s; }
.logo-tile:hover { border-color: var(--bdr2); background: var(--bg3); }
.logo-tile img { max-height: 26px; filter: grayscale(1) brightness(0.55); opacity: 0.65; transition: opacity 0.2s, filter 0.2s; }
.logo-tile:hover img { opacity: 1; filter: grayscale(0.3) brightness(1.1); }
@media (max-width: 640px) { .logo-row { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; } .logo-row .dup { display: none; } .logo-track::before, .logo-track::after { display: none; } .logo-tile { flex: 0 1 calc(33.33% - 8px); } }

/* ---- ABOUT ---- */
.about-section { background: var(--bg); }
.about-layout { display: grid; gap: 60px; }
@media (min-width: 900px) { .about-layout { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-left .display-md { margin-bottom: 22px; }
.about-left .lead { margin-bottom: 32px; max-width: 420px; }
.about-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 480px) { .about-bullets { grid-template-columns: 1fr; } }
.about-bullet { display: flex; align-items: center; gap: 10px; padding: 12px 15px; border-radius: 10px; border: 1px solid var(--bdr); background: rgba(255,255,255,0.018); font-size: 12.5px; font-weight: 500; color: var(--text); transition: border-color 0.2s; }
.about-bullet:hover { border-color: var(--bdr2); }
.bullet-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.about-card { background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-xl); padding: 36px 32px; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: conic-gradient(from 180deg, var(--pink) 0%, var(--blue) 33%, var(--yellow) 66%, var(--teal) 100%); opacity: 0.07; border-radius: 0 var(--r-xl) 0 100%; }
.about-card-label { margin-bottom: 14px; }
.about-card h3 { font-size: 19px; margin-bottom: 12px; }
.about-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 28px; }
.astat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.astat { background: var(--bg3); border-radius: 10px; padding: 16px 10px; text-align: center; }
.astat-n { font-family: var(--display); font-size: 30px; color: var(--white); line-height: 1; font-weight: 700; }
.astat-l { font-size: 9px; font-weight: 600; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }

/* ---- PILLARS ---- */
.pillars-section { background: var(--bg1); border-top: 1px solid var(--bdr); }
.pillars-grid { display: grid; gap: 4px; }
@media (min-width: 720px) { .pillars-grid { grid-template-columns: repeat(3,1fr); } }
.pillar-card { padding: 44px 32px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-lg); transition: border-color 0.25s, transform 0.25s var(--ease); position: relative; overflow: hidden; }
.pillar-card:hover { border-color: var(--bdr2); transform: translateY(-5px); }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--r-lg) var(--r-lg) 0 0; opacity: 0; transition: opacity 0.3s; }
.pillar-card:hover::before { opacity: 1; }
.pillar-card:nth-child(1)::before { background: var(--pink); }
.pillar-card:nth-child(2)::before { background: var(--blue); }
.pillar-card:nth-child(3)::before { background: var(--teal); }
.pillar-n { font-family: var(--display); font-size: 72px; line-height: 1; margin-bottom: 16px; font-weight: 700; opacity: 0.15; color: var(--white); transition: color 0.25s, opacity 0.25s; }
.pillar-card:nth-child(1):hover .pillar-n { color: var(--pink); opacity: 0.55; }
.pillar-card:nth-child(2):hover .pillar-n { color: var(--blue); opacity: 0.55; }
.pillar-card:nth-child(3):hover .pillar-n { color: var(--teal); opacity: 0.55; }
.pillar-card h3 { font-size: 19px; margin-bottom: 12px; }
.pillar-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ---- SERVICES ---- */
.services-section { background: var(--bg); border-top: 1px solid var(--bdr); }
.services-grid { display: grid; gap: 4px; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-card { padding: 34px 30px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-lg); transition: border-color 0.2s, background 0.2s; }
.service-card:hover { border-color: var(--bdr2); background: var(--bg3); }
.service-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.service-card:nth-child(1) .service-tag { color: var(--pink);   background: rgba(242,82,122,0.10);  border: 1px solid rgba(242,82,122,0.22); }
.service-card:nth-child(2) .service-tag { color: var(--blue);   background: rgba(77,189,232,0.10);  border: 1px solid rgba(77,189,232,0.22); }
.service-card:nth-child(3) .service-tag { color: var(--yellow); background: var(--gold-dim);        border: 1px solid var(--gold-b); }
.service-card:nth-child(4) .service-tag { color: var(--teal);   background: rgba(63,175,140,0.10);  border: 1px solid rgba(63,175,140,0.22); }
.service-card:nth-child(5) .service-tag { color: var(--red);    background: rgba(232,64,58,0.10);   border: 1px solid rgba(232,64,58,0.22); }
.service-card:nth-child(6) .service-tag { color: var(--pink);   background: rgba(242,82,122,0.10);  border: 1px solid rgba(242,82,122,0.22); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---- PROCESS ---- */
.process-section { background: var(--bg1); border-top: 1px solid var(--bdr); }
.process-grid { display: grid; gap: 4px; }
@media (min-width: 720px) { .process-grid { grid-template-columns: repeat(3,1fr); } }
.process-card { padding: 44px 32px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-lg); position: relative; }
.step-num { font-family: var(--display); font-size: 56px; font-weight: 700; line-height: 1; margin-bottom: 20px; }
.process-card:nth-child(1) .step-num { color: var(--pink); }
.process-card:nth-child(2) .step-num { color: var(--blue); }
.process-card:nth-child(3) .step-num { color: var(--teal); }
.step-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: block; }
.process-card h3 { font-size: 18px; margin-bottom: 12px; }
.process-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ---- RESULTS ---- */
.results-section { background: var(--bg); border-top: 1px solid var(--bdr); }
.results-grid { display: grid; gap: 4px; }
@media (min-width: 720px) { .results-grid { grid-template-columns: repeat(3,1fr); } }
.result-card { padding: 40px 32px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-lg); transition: border-color 0.2s, transform 0.25s var(--ease); }
.result-card:hover { border-color: var(--bdr2); transform: translateY(-4px); }
.result-card:nth-child(1) { border-left: 3px solid var(--pink); }
.result-card:nth-child(2) { border-left: 3px solid var(--blue); }
.result-card:nth-child(3) { border-left: 3px solid var(--teal); }
.result-num { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; margin-bottom: 16px; display: block; }
.result-card h3 { font-size: 18px; margin-bottom: 10px; }
.result-card p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.result-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.result-card:nth-child(1) .result-badge { color: var(--pink);   background: rgba(242,82,122,0.10);  border: 1px solid rgba(242,82,122,0.22); }
.result-card:nth-child(2) .result-badge { color: var(--blue);   background: rgba(77,189,232,0.10);  border: 1px solid rgba(77,189,232,0.22); }
.result-card:nth-child(3) .result-badge { color: var(--teal);   background: rgba(63,175,140,0.10);  border: 1px solid rgba(63,175,140,0.22); }

/* ---- TEAM ---- */
.team-section { background: var(--bg1); border-top: 1px solid var(--bdr); }
.team-grid { display: grid; gap: 4px; }
@media (min-width: 540px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(5,1fr); } }
.member-card { text-align: center; padding: 36px 18px 28px; background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r-xl); transition: border-color 0.2s, transform 0.25s var(--ease); overflow: hidden; }
.member-card:hover { transform: translateY(-5px); }
.member-card:nth-child(1) { border-top: 3px solid var(--pink); }
.member-card:nth-child(2) { border-top: 3px solid var(--blue); }
.member-card:nth-child(3) { border-top: 3px solid var(--yellow); }
.member-card:nth-child(4) { border-top: 3px solid var(--teal); }
.member-card:nth-child(5) { border-top: 3px solid var(--red); }
.member-avatar { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; background: var(--bg3); border: 2px solid var(--bdr2); }
.member-avatar img { width: 100%; height: 100%; object-fit: cover; }
.member-card h3 { font-size: 14px; margin-bottom: 4px; }
.member-card .role { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; }
.member-card .bio { font-size: 11px; color: var(--faint); line-height: 1.55; }

.gallery-section { margin-top: 80px; }
.gallery-label { text-align: center; margin-bottom: 32px; }
.gallery-grid { display: grid; gap: 10px; }
@media (min-width: 560px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
.gallery-shot { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--bdr); aspect-ratio: 16/9; background: var(--bg2); transition: border-color 0.2s, transform 0.25s var(--ease); }
.gallery-shot:hover { border-color: var(--bdr2); transform: translateY(-3px); }
.gallery-shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---- FAQ ---- */
.faq-section { background: var(--bg); border-top: 1px solid var(--bdr); }
.faq-grid { display: grid; gap: 8px; }
@media (min-width: 800px) { .faq-grid { grid-template-columns: repeat(2,1fr); } }
.faq-item { background: var(--bg2); border: 1px solid var(--bdr); border-radius: var(--r); overflow: hidden; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--bdr2); }
.faq-item.open { border-color: var(--gold-b); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; user-select: none; }
.faq-q h3 { font-size: 14.5px; font-weight: 500; color: var(--white); font-family: var(--body); }
.faq-toggle { width: 28px; height: 28px; border-radius: 7px; border: 1px solid var(--bdr2); background: transparent; color: var(--muted); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; line-height: 1; cursor: pointer; transition: all 0.15s; }
.faq-item.open .faq-toggle { background: var(--gold-dim); border-color: var(--gold-b); color: var(--yellow); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 13.5px; line-height: 1.75; border-top: 1px solid var(--bdr); padding-top: 16px; }

/* ---- CTA ---- */
.cta-section { background: var(--bg1); border-top: 1px solid var(--bdr); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 50%, rgba(242,82,122,0.07) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(77,189,232,0.06) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(245,200,0,0.05) 0%, transparent 60%); pointer-events: none; }
.cta-inner { max-width: 580px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-inner .display-md { margin-bottom: 18px; }
.cta-inner .lead { margin-bottom: 48px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer { background: var(--bg); border-top: 1px solid var(--bdr); padding: 32px 0; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12.5px; color: var(--muted); transition: color 0.15s; }
.footer-links a:hover { color: var(--white); }

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }

@media (max-width: 640px) { .hide-sm { display: none !important; } }
@media (prefers-reduced-motion: reduce) {
  .logo-row, .ticker-row { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .badge-pulse::after { animation: none; }
}
