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

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

:root {
  --ink: #18202e;
  --ink-soft: #3a4453;
  --navy: #1f3a5f;
  --navy-deep: #16304f;
  --navy-soft: rgba(31,58,95,.06);
  --gold: #b08d57;
  --gold-soft: rgba(176,141,87,.12);
  --paper: #ffffff;
  --mist: #f7f9fc;
  --mist-2: #f0f4f9;
  --line: #e9edf3;
  --line-soft: #f0f3f7;
  --text: #46505f;
  --muted: #7a8593;
  --muted-light: #a7afbb;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-xs: 0 2px 8px rgba(24,32,46,.04);
  --shadow-sm: 0 6px 22px rgba(24,32,46,.05);
  --shadow: 0 18px 44px rgba(24,32,46,.08);
  --shadow-lg: 0 30px 70px rgba(24,32,46,.12);
  --tricolor: linear-gradient(180deg, #ff9933 0%, #ff9933 33.33%, #ffffff 33.33%, #ffffff 66.66%, #138808 66.66%, #138808 100%);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--paper); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; top: 0 !important; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 26px; }
section { padding: 100px 0; }

.gold-rule { display: block; width: 46px; height: 1px; background: var(--gold); margin: 0 auto 18px; }

/* ===== Loader : news desk, press, publishers ===== */
#page-loader { position: fixed; inset: 0; z-index: 9999; background: var(--paper); display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
#page-loader.loader-out { opacity: 0; visibility: hidden; }
.loader-box { text-align: center; }
.loader-icons { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 34px; }
.loader-icons .li { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 21px; color: var(--muted-light); background: var(--paper); border: 1px solid var(--line); position: relative; opacity: .5; transform: scale(.92); animation: loaderGlow 2.1s ease-in-out infinite; animation-delay: calc(var(--i) * .28s); }
.loader-icons .li::after { content: attr(data-label); position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%); font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-light); white-space: nowrap; }
@keyframes loaderGlow {
  0%, 65%, 100% { opacity: .5; transform: scale(.92); color: var(--muted-light); border-color: var(--line); box-shadow: none; }
  20%, 40% { opacity: 1; transform: scale(1); color: #fff; background: var(--navy); border-color: var(--navy); box-shadow: 0 14px 30px rgba(31,58,95,.28); }
}
.loader-title { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: .3px; color: var(--ink); margin-top: 14px; }
.loader-title span { color: var(--navy); }
.loader-sub { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--muted-light); margin-top: 8px; }
.loader-bar { width: 150px; height: 2px; background: var(--line); border-radius: 2px; margin: 26px auto 0; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 35%; background: var(--gold); border-radius: 2px; animation: loaderBar 1.4s ease-in-out infinite; }
@keyframes loaderBar { 0% { transform: translateX(-130%); } 100% { transform: translateX(420%); } }

#go-top { position: fixed; bottom: 30px; right: 30px; width: 46px; height: 46px; background: var(--navy); color: #fff; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; box-shadow: var(--shadow); opacity: 0; transition: opacity .3s, background .2s, transform .2s; z-index: 999; }
#go-top.visible { opacity: 1; }
#go-top:hover { background: var(--navy-deep); transform: translateY(-3px); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 30px; border-radius: 999px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; letter-spacing: .3px; cursor: pointer; border: 1px solid transparent; transition: transform .25s, box-shadow .25s, background .25s, color .25s, border-color .25s; white-space: nowrap; line-height: 1; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 12px 26px rgba(31,58,95,.22); }
.btn-primary:hover { background: var(--navy-deep); border-color: var(--navy-deep); box-shadow: 0 18px 34px rgba(31,58,95,.30); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline-dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* ===== Nav ===== */
nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .3s, background .3s; }
nav.nav-scrolled { background: rgba(255,255,255,.95); box-shadow: 0 8px 30px rgba(24,32,46,.06); }
nav::before { content: ''; display: block; height: 3px; background: var(--tricolor); opacity: .9; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.logo-wrap { display: flex; align-items: center; }
.logo-wrap img { height: 48px; width: auto; object-fit: contain; transition: transform .3s; }
.logo-wrap:hover img { transform: scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); padding: 10px 15px; border-radius: 999px; position: relative; transition: color .25s, background .25s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--navy-soft); }
.nav-cta { padding: 11px 24px; font-size: 13px; }

/* Lang switcher */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn { display: flex; align-items: center; gap: 6px; background: var(--mist); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: all .2s; }
.lang-btn:hover, .lang-btn.active { border-color: var(--navy); color: var(--navy); background: var(--navy-soft); }
.lang-arrow { font-size: 10px !important; transition: transform .2s; }
.lang-btn.active .lang-arrow { transform: rotate(180deg); }
.lang-dropdown { display: none; position: absolute; top: calc(100% + 10px); right: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 162px; overflow: hidden; z-index: 999; }
.lang-dropdown.open { display: block; }
.lang-option { display: flex; width: 100%; padding: 12px 18px; background: none; border: none; border-bottom: 1px solid var(--line-soft); font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer; text-align: left; }
.lang-option:last-child { border-bottom: none; }
.lang-option:hover, .lang-option.active { color: var(--navy); font-weight: 600; background: var(--navy-soft); }
.goog-te-banner-frame, .skiptranslate, .goog-te-gadget { display: none !important; }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.mobile-drawer { display: none; flex-direction: column; background: var(--paper); padding: 18px 26px 22px; border-top: 1px solid var(--line); box-shadow: 0 10px 26px rgba(0,0,0,.06); }
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-size: 14.5px; font-weight: 500; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
.mobile-drawer a:last-of-type { border-bottom: none; margin-top: 10px; }
.mobile-drawer a:hover { color: var(--navy); }

/* ===== Section headings ===== */
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 18px; letter-spacing: -.6px; }
.section-title span { color: var(--navy); }
.section-subtitle { font-size: 15.5px; color: var(--muted); line-height: 1.8; max-width: 600px; font-weight: 300; }
.section-center { text-align: center; margin-bottom: 64px; }
.section-center .section-subtitle { margin: 0 auto; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; text-align: center; padding: 96px 0 90px; background: radial-gradient(ellipse at 50% -10%, var(--mist-2), var(--paper) 60%); }
.hero-emblem { position: absolute; top: 38%; left: 50%; height: clamp(560px, 54vw, 720px); width: auto; max-width: 112%; transform: translate(-50%, -50%); opacity: .10; pointer-events: none; user-select: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--paper); color: var(--navy); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 20px 8px 9px; border-radius: 999px; border: 1px solid var(--line); box-shadow: var(--shadow-xs); margin-bottom: 30px; }
.tricolor { width: 28px; height: 18px; border-radius: 3px; flex-shrink: 0; background: var(--tricolor); box-shadow: 0 1px 3px rgba(0,0,0,.16); position: relative; overflow: hidden; }
.tricolor::after { content: ''; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; transform: translate(-50%, -50%); border: 1px solid #0a3d91; border-radius: 50%; background: radial-gradient(circle, transparent 42%, #0a3d91 45%, transparent 52%); }
.hero h1 { font-family: var(--font-display); font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; color: var(--ink); line-height: 1.08; margin-bottom: 24px; letter-spacing: -1.6px; }
.hero h1 span { color: var(--navy); }
.hero p { font-size: 17px; color: var(--muted); line-height: 1.85; margin: 0 auto 36px; max-width: 600px; font-weight: 300; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 400; color: var(--muted); }
.hero-trust i { color: var(--gold); font-size: 14px; }

/* Hero pillars (voice / mobile / world) */
.hero-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 70px auto 0; position: relative; z-index: 1; }
.pillar { text-align: center; padding: 30px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); transition: transform .3s, box-shadow .3s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar-icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: var(--navy-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 23px; transition: background .3s, color .3s; }
.pillar:hover .pillar-icon { background: var(--navy); color: #fff; }
.pillar h6 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ===== Stats ===== */
.stats-strip { background: var(--paper); padding: 0; }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.stat-block { text-align: center; padding: 40px 18px; border-right: 1px solid var(--line); }
.stat-block:last-child { border-right: none; }
.stat-block .num { font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); font-weight: 600; color: var(--navy); line-height: 1; }
.stat-block .num span { color: var(--gold); }
.stat-block .lbl { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ===== Features ===== */
.features { background: var(--mist); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(244px, 1fr)); gap: 24px; }
.feature-card { background: var(--paper); border-radius: var(--radius-lg); padding: 38px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-xs); transition: transform .3s, box-shadow .3s; }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-num { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.feature-icon { width: 64px; height: 64px; background: var(--navy-soft); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 25px; color: var(--navy); }
.feature-card h6 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--ink); }
.feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ===== Why Join ===== */
.why { background: var(--paper); }
.why .feature-card { text-align: center; }
.why .feature-icon { margin-left: auto; margin-right: auto; }

/* ===== Join steps (rules section) ===== */
.join-steps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.join-step { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 150px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.join-step > span { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.join-step h6 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 1px; }
.join-step p { font-size: 11.5px; color: var(--muted); line-height: 1.45; font-weight: 300; }

/* ===== Team ===== */
.team { background: var(--paper); padding: 88px 0; }
.president-banner { display: flex; align-items: center; gap: 24px; max-width: 640px; margin: 0 auto 30px; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 28px; box-shadow: var(--shadow-xs); }
.president-photo { flex-shrink: 0; }
.president-photo img, .president-photo-ph { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; border: 3px solid var(--paper); box-shadow: var(--shadow-sm); }
.president-photo-ph { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 600; }
.president-meta .role { background: var(--navy); color: #fff; }
.president-meta h3 { font-family: var(--font-display); font-size: clamp(19px, 2.2vw, 23px); font-weight: 700; color: var(--ink); letter-spacing: -.3px; margin: 9px 0 5px; }
.president-meta p { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 980px; margin: 0 auto; }
.member-card { text-align: center; background: var(--paper); border-radius: var(--radius); padding: 20px 10px 16px; border: 1px solid var(--line); box-shadow: var(--shadow-xs); transition: box-shadow .3s, transform .3s; }
.member-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.member-avatar, .member-avatar-placeholder { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 11px; }
.member-avatar { object-fit: cover; border: 2px solid var(--mist); box-shadow: var(--shadow-xs); }
.member-avatar-placeholder { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; font-weight: 600; }
.member-card h6 { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.role, .member-card .role { font-size: 9px; color: var(--navy); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; background: var(--navy-soft); display: inline-block; padding: 4px 10px; border-radius: 999px; line-height: 1.3; }

/* ===== Compliance ===== */
.compliance { background: var(--mist); }
.compliance-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(262px, 1fr)); gap: 24px; margin-bottom: 70px; }
.compliance-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-xs); transition: box-shadow .3s, transform .3s; }
.compliance-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.compliance-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--gold-soft); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.compliance-card h6 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.compliance-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.compliance-subhead { font-family: var(--font-display); font-size: clamp(23px, 2.8vw, 30px); font-weight: 600; color: var(--ink); line-height: 1.25; letter-spacing: -.2px; margin: 0 0 30px; text-align: center; }
.compliance-subhead .gold-rule { margin-bottom: 16px; }
.tier-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 54px; }
.tier-card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px 30px; box-shadow: var(--shadow-xs); transition: box-shadow .3s, transform .3s; }
.tier-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.tier-card:not(:last-child)::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -18px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--gold); background: var(--mist); padding: 6px; z-index: 2; }
.tier-num { display: inline-block; font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.tier-card h6 { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 12px; line-height: 1.35; }
.tier-card p { font-size: 13.5px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.compliance-source { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; padding: 32px 36px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
.compliance-source-text { display: flex; align-items: center; gap: 20px; }
.compliance-source-text > i { font-size: 28px; color: var(--navy); flex-shrink: 0; }
.compliance-source-text strong { display: block; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.compliance-source-text span { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ===== SRB : Self-Regulatory Body ===== */
.srb { background: var(--paper); }
.srb-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: start; }
.srb-define { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 38px; }
.srb-define h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.srb-define p { font-size: 14.5px; color: var(--text); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.srb-define p:last-of-type { margin-bottom: 0; }
.srb-define strong { color: var(--navy); font-weight: 600; }
.srb-role { margin-top: 28px; display: grid; gap: 12px; }
.srb-role-item { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.srb-role-item i { color: var(--gold); font-size: 17px; margin-top: 3px; flex-shrink: 0; }
.srb-role-item h6 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.srb-role-item p { font-size: 12.5px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.srb-functions { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.srb-functions-head { padding: 28px 32px 22px; border-bottom: 1px solid var(--line); }
.srb-functions-head h4 { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.srb-functions-head span { font-size: 12.5px; color: var(--muted); font-weight: 300; }
.srb-func { display: flex; gap: 18px; padding: 22px 32px; border-bottom: 1px solid var(--line-soft); transition: background .25s; }
.srb-func:last-child { border-bottom: none; }
.srb-func:hover { background: var(--mist); }
.srb-func-no { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); flex-shrink: 0; width: 30px; line-height: 1.2; }
.srb-func h6 { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.srb-func p { font-size: 12.8px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.srb-steps { margin-top: 70px; }
.srb-steps-head { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 28px); font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 40px; }
.srb-steps-head .gold-rule { margin-bottom: 16px; }
.srb-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.srb-step { text-align: center; background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 22px; position: relative; transition: transform .3s, box-shadow .3s; }
.srb-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: var(--paper); }
.srb-step:not(:last-child)::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--gold); z-index: 2; }
.srb-step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 auto 18px; }
.srb-step h6 { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.srb-step p { font-size: 12.5px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.srb-note { margin-top: 40px; display: flex; align-items: center; gap: 18px; background: var(--navy); border-radius: var(--radius-lg); padding: 28px 34px; box-shadow: var(--shadow); }
.srb-note i { font-size: 24px; color: var(--gold); flex-shrink: 0; }
.srb-note p { font-size: 14px; color: #d7deea; line-height: 1.7; font-weight: 300; }
.srb-note strong { color: #fff; font-weight: 600; }

/* ===== Membership ===== */
.membership { background: var(--mist); }
.membership-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.membership-copy h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 42px); font-weight: 600; color: var(--ink); margin-bottom: 18px; letter-spacing: -.3px; }
.membership-copy p { color: var(--muted); line-height: 1.85; margin-bottom: 30px; font-size: 15px; font-weight: 300; }
.perk-list { display: flex; flex-direction: column; gap: 12px; }
.perk-item { display: flex; align-items: flex-start; gap: 14px; background: var(--paper); padding: 16px 20px; border-radius: var(--radius); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.perk-item:hover { transform: translateX(4px); box-shadow: var(--shadow-xs); }
.perk-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 16px; }
.perk-item span { font-size: 13.5px; color: var(--text); line-height: 1.55; font-weight: 300; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-card-head { display: flex; align-items: center; gap: 16px; padding: 26px 30px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); position: relative; }
.form-card-head::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--tricolor); }
.form-card-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 14px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 21px; }
.form-card-title h4 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #fff; line-height: 1.2; }
.form-card-title span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #b8c4d6; margin-top: 5px; }
.form-card-body { padding: 10px 16px 16px; }
.membership-form iframe { width: 100%; min-height: 600px; border: none; border-radius: 10px; }

/* ===== Footer ===== */
footer { background: var(--ink); color: var(--muted-light); }
.footer-support-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.07); }
.support-item { display: flex; align-items: center; gap: 16px; padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.07); }
.support-item:last-child { border-right: none; }
.support-icon { width: 48px; height: 48px; flex-shrink: 0; background: rgba(176,141,87,.14); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; }
.support-item h6 { font-size: 14px; color: #eef1f6; font-weight: 600; margin-bottom: 3px; }
.support-item span { font-size: 12px; color: #8b94a3; font-weight: 300; }
.footer-main { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr; gap: 50px; padding: 70px 0 50px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-col h5 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 22px; }
.footer-brand-text { font-size: 13px; color: #8b94a3; line-height: 1.85; margin-bottom: 22px; font-weight: 300; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li { display: flex; align-items: flex-start; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: #8b94a3; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: 13px; }
.footer-col ul li span { font-size: 13px; color: #8b94a3; line-height: 1.6; font-weight: 300; }
.social-links { display: flex; gap: 10px; margin-top: 4px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #8b94a3; font-size: 14px; transition: background .25s, color .25s, transform .25s; }
.social-links a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.newsletter-note { font-size: 12.5px; color: #8b94a3; line-height: 1.6; margin: 2px 0 14px; font-weight: 300; }
.footer-newsletter { display: flex; align-items: center; gap: 6px; margin-top: 2px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 5px 5px 5px 18px; }
.footer-newsletter input { flex: 1; min-width: 0; padding: 10px 0; border: none; background: transparent; color: #eef1f6; font-family: var(--font-body); font-size: 13px; outline: none; }
.footer-newsletter button { flex-shrink: 0; display: inline-flex; align-items: center; gap: 7px; padding: 11px 22px; background: var(--navy); color: #fff; border: none; cursor: pointer; border-radius: 999px; font-family: var(--font-body); font-size: 13px; font-weight: 500; transition: background .2s; }
.footer-newsletter button:hover { background: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 26px 0; }
.footer-copy { font-size: 12px; color: #8b94a3; font-weight: 300; }
.footer-copy a { color: var(--gold); }

/* ===== Page hero (members) ===== */
.page-hero { background: radial-gradient(ellipse at 50% -20%, var(--mist-2), var(--paper) 65%); padding: 88px 0 76px; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb i { font-size: 9px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 50px); font-weight: 600; color: var(--ink); line-height: 1.15; letter-spacing: -.3px; }
.page-hero h1 span { color: var(--navy); }
.members-section { background: var(--paper); padding: 90px 0; }
.section-head { text-align: center; }
.section-head .section-title { font-style: normal; }
.members-search-bar { display: flex; gap: 12px; margin-bottom: 30px; flex-wrap: wrap; align-items: center; }
.members-search-bar input { flex: 1; min-width: 220px; padding: 13px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; font-family: var(--font-body); outline: none; background: var(--mist); }
.members-search-bar input:focus { border-color: var(--navy); background: var(--paper); box-shadow: 0 0 0 3px var(--navy-soft); }
.members-count { font-size: 13px; color: var(--muted); }
.members-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
.members-table { width: 100%; border-collapse: collapse; }
.members-table thead { background: var(--mist); border-bottom: 1px solid var(--line); }
.members-table thead th { padding: 18px 22px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); white-space: nowrap; }
.members-table tbody tr { border-bottom: 1px solid var(--line-soft); transition: background .15s; }
.members-table tbody tr:last-child { border-bottom: none; }
.members-table tbody tr:hover { background: var(--mist); }
.members-table tbody td { padding: 16px 22px; font-size: 14px; }
.portal-title { font-weight: 600; color: var(--ink); }
.portal-link { color: var(--navy); font-size: 13px; transition: color .2s; display: inline-flex; align-items: center; gap: 5px; }
.portal-link:hover { color: var(--gold); text-decoration: underline; }

/* ===== Animations ===== */
.anim-hidden { opacity: 0; will-change: opacity, transform; }
.anim-in { transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); opacity: 1 !important; transform: none !important; }
.anim-hidden.anim-fade-up { transform: translateY(34px); }
.anim-hidden.anim-fade-down { transform: translateY(-24px); }
.anim-hidden.anim-fade-left { transform: translateX(34px); }
.anim-hidden.anim-fade-right { transform: translateX(-34px); }
.anim-in.anim-fade-up, .anim-in.anim-fade-down, .anim-in.anim-fade-left, .anim-in.anim-fade-right { transform: none; opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .srb-grid { grid-template-columns: 1fr; gap: 30px; }
  .srb-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .srb-step:nth-child(2)::after { display: none; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-support-bar { grid-template-columns: 1fr; }
  .support-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .support-item:last-child { border-bottom: none; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(1), .stat-block:nth-child(2) { border-bottom: 1px solid var(--line); }
  .hero-pillars { grid-template-columns: 1fr; max-width: 440px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); max-width: 560px; }
}
@media (max-width: 860px) { .membership-inner { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 820px) {
  .tier-flow { grid-template-columns: 1fr; gap: 18px; }
  .tier-card:not(:last-child)::after { content: '\f063'; right: 50%; top: auto; bottom: -18px; transform: translateX(50%); }
  .compliance-source { flex-direction: column; align-items: flex-start; }
  .compliance-source .btn { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .president-banner { flex-direction: column; text-align: center; gap: 16px; padding: 26px 22px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .srb-steps-grid { grid-template-columns: 1fr; }
  .srb-step::after { display: none !important; }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  .section-center { margin-bottom: 46px; }
  .hero { padding: 70px 0 64px; }
  .hero-emblem { height: clamp(430px, 118vw, 560px); max-width: 122%; opacity: .085; top: 34%; }
  .hero-pillars { margin-top: 50px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .team { padding: 64px 0; }
  .mobile-drawer a { padding: 14px 0; font-size: 15px; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-links { justify-content: center; }
  .loader-icons { gap: 14px; }
  .loader-icons .li { width: 50px; height: 50px; font-size: 18px; }
  .srb-define, .srb-functions-head, .srb-func { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: clamp(34px, 11vw, 46px); }
  .hero-trust { flex-direction: column; align-items: center; gap: 10px; }
  .stats-strip .container { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--line); }
  .stat-block:last-child { border-bottom: none; }
  .compliance-card, .tier-card { padding: 28px 24px; }
  .compliance-source { padding: 26px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .btn { padding: 13px 26px; }
}
@media (max-width: 420px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) {
  .anim-hidden { opacity: 1 !important; transform: none !important; }
  .anim-in { transition: none !important; }
  .loader-icons .li, .loader-bar span { animation: none; }
  .loader-icons .li { opacity: 1; transform: none; }
  #page-loader { display: none; }
}



