:root {
  --green: #1a5632;
  --green-light: #2a7a4a;
  --green-dark: #0f3a20;
  --green-deeper: #0a2816;
  --green-black: #061a0e;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #fafaf8;
  --off-white: #f2f0eb;
  --gray: #8a8a8a;
  --dark: #0c0c0b;
  --dark-soft: #141413;
  --text: #2a2a28;
  --text-muted: #6b6b68;
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========== ANIMATED GRADIENT BACKGROUND ========== */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  will-change: transform;
}

.gradient-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.4) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.gradient-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
  top: 30%;
  right: -10%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.gradient-orb-3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 122, 74, 0.3) 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation: orbFloat3 22s ease-in-out infinite;
}

.gradient-orb-4 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  top: 60%;
  right: 30%;
  animation: orbFloat4 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 60px) scale(1.1); }
  66% { transform: translate(-40px, 30px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, -80px) scale(1.05); }
  66% { transform: translate(40px, -40px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -60px) scale(0.95); }
  66% { transform: translate(-70px, 30px) scale(1.1); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -40px); }
}

/* ========== GRAIN OVERLAY ========== */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(12, 12, 11, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  transition: opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:hover {
  color: rgba(255,255,255,0.9);
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.25);
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(12, 12, 11, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-10px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 0.5rem 0;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.06);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-line {
  display: block;
}

.hero-line-accent em {
  color: var(--gold);
  font-style: italic;
  position: relative;
}

.hero-line-accent em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero staggered entrance */
.reveal-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.9s var(--ease-out) forwards;
}

.reveal-hero[style*="--delay: 0"] { animation-delay: 0.2s; }
.reveal-hero[style*="--delay: 1"] { animation-delay: 0.45s; }
.reveal-hero[style*="--delay: 2"] { animation-delay: 0.65s; }
.reveal-hero[style*="--delay: 3"] { animation-delay: 0.85s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  opacity: 0;
  animation: heroIn 0.8s var(--ease-out) 1.2s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.2);
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  margin-top: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.arrow-down {
  display: inline-block;
  animation: arrowBob 1.5s ease-in-out infinite;
}

@keyframes arrowBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ========== SECTION COMMON ========== */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 7rem 2rem;
  position: relative;
  z-index: 2;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}

/* ========== VIDEO SECTION ========== */
.video-section {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  padding-bottom: 1rem;
}

.video-section .section-container {
  padding-top: 0;
  padding-bottom: 2rem;
}

.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(26, 86, 50, 0.15), rgba(201, 168, 76, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.video-placeholder:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--gold);
  color: var(--dark);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 2;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

.video-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}

.video-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26, 86, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ========== PILLARS ========== */
.pillars {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, var(--green-black) 50%, var(--dark) 100%);
}

.pillars::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat1 20s ease-in-out infinite;
}

.pillars::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background 0.5s var(--ease);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.pillar-glow {
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.4s;
  opacity: 0;
}

.pillar-card:hover .pillar-glow {
  opacity: 1;
}

.pillar-icon-ring {
  margin-bottom: 1.5rem;
}

.pillar-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.06);
}

.pillar-card h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ========== GOALS ========== */
.goals {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.goals::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.goals-list {
  display: flex;
  flex-direction: column;
}

.goal-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s var(--ease);
  border-radius: var(--radius);
  position: relative;
}

.goal-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.goal-item:hover {
  background: rgba(255,255,255,0.02);
  padding-left: 2rem;
}

.goal-item:hover .goal-num {
  color: var(--dark);
  background: var(--gold);
}

.goal-item:hover .goal-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
}

.goal-num-wrap {
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.goal-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.06);
  transition: all 0.4s var(--ease);
}

.goal-text {
  flex: 1;
}

.goal-text h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.goal-item:hover .goal-text h3 {
  color: var(--gold-light);
}

.goal-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

.goal-arrow {
  flex-shrink: 0;
  color: rgba(255,255,255,0.2);
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease);
}

/* ========== TEAM ========== */
.team {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--dark) 0%, var(--green-black) 50%, var(--dark) 100%);
}

.team::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 50, 0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat2 22s ease-in-out infinite;
}

.team::after {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.team-group {
  margin-bottom: 3.5rem;
}

.team-group:last-child {
  margin-bottom: 0;
}

.team-group-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.team-grid {
  display: grid;
  gap: 1rem;
}

.team-grid-exec {
  grid-template-columns: repeat(2, 1fr);
}

.team-grid-senate {
  grid-template-columns: repeat(4, 1fr);
}

.team-grid-media {
  grid-template-columns: repeat(5, 1fr);
}

.team-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.08);
}

.team-card:hover::before {
  opacity: 1;
}

.team-card-exec {
  padding: 1.75rem;
  flex-direction: column;
  align-items: stretch;
}

.team-card-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  z-index: -1;
  opacity: 0.4;
  filter: blur(4px);
}

.team-avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}

.team-info-sm {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.team-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.team-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.team-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.1rem;
}

.team-meta-sm {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.team-flag {
  font-size: 0.9rem;
}

.expand-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  color: rgba(255,255,255,0.4);
}

.expand-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.expandable.expanded .expand-btn {
  transform: rotate(180deg);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
}

.team-card-bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), opacity 0.4s ease, padding 0.5s var(--ease);
  opacity: 0;
  padding: 0;
}

.expandable.expanded .team-card-bio {
  max-height: 200px;
  opacity: 1;
  padding-top: 1.25rem;
}

.team-card-bio p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

/* ========== CONTACT ========== */
.contact {
  position: relative;
  z-index: 2;
  background: var(--dark);
}

.contact-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-badge {
  display: inline-flex;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.06);
}

.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.pillar-card.reveal {
  transition-delay: calc(var(--card-delay, 0) * 0.12s);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .team-grid-exec {
    grid-template-columns: 1fr;
  }

  .team-grid-senate {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid-media {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu:not(.open) {
    display: none;
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
    min-height: 92vh;
  }

  .section-container {
    padding: 5rem 1.5rem;
  }

  .goal-item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
  }

  .goal-arrow {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .video-play-btn {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .team-grid-senate,
  .team-grid-media {
    grid-template-columns: 1fr;
  }

  .team-card {
    padding: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}
