﻿/* ===== TTG Shared Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Figtree:wght@400;500;600&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  --navy: #00004d;
  --dark-gray: #2c2c2c;
  --mid-gray: #c7c7c7;
  --light-gray: #d2d6db;
  --yellow: #f7c547;
  --green: #66fc75;
  --red: #f24;
  --max-width: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-links a.active {
  opacity: 0.5;
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--black) !important;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 0;
  text-transform: none !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Page Hero ===== */
.page-hero {
  padding: 160px 40px 80px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 77, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero .label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.page-hero h1 .serif {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
}

.page-hero .subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--mid-gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Sections ===== */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.section-title .serif {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
}

.section-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  max-width: 720px;
}

/* ===== Stats Row ===== */
.stats-row {
  display: flex;
  gap: 60px;
  margin-top: 48px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-number .plus {
  font-weight: 700;
  font-size: 40px;
  color: var(--yellow);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid-gray);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Vision / Mission Cards ===== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid #eee;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

/* ===== Where We Go (Logo Grid) ===== */
.where-we-go {
  padding: 100px 40px;
  background: var(--black);
}

.where-we-go .section-inner {
  text-align: center;
}

.where-we-go .section-label {
  color: var(--yellow);
}

.where-we-go .section-title {
  color: var(--white);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.logo-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  min-height: 100px;
}

.logo-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.logo-card span {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-align: center;
  opacity: 0.8;
}

.logo-card:hover span {
  opacity: 1;
}

/* ===== Team Page ===== */
.team-section {
  padding: 80px 40px 100px;
}

.team-section:nth-child(even) {
  background: #f8f9fa;
}

.team-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.team-section-header {
  margin-bottom: 48px;
  text-align: center;
}

.team-section-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-gray);
  letter-spacing: -0.02em;
}

.team-section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--navy);
  margin: 16px auto 0;
  border-radius: 2px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.team-card {
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), #1a1a4d);
  border: 3px solid transparent;
  transition: border-color 0.3s;
  position: relative;
}

.team-card:hover .team-card-image {
  border-color: var(--yellow);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
}

.team-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 4px;
}

.team-card .role {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-card .info {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.4;
}

.team-card .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 77, 0.08);
  margin-top: 10px;
  transition: background 0.2s;
}

.team-card .social-link:hover {
  background: var(--navy);
}

.team-card .social-link:hover svg {
  fill: var(--white);
}

.team-card .social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--navy);
  transition: fill 0.2s;
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  padding: 60px 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

.footer-email {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mid-gray);
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(199, 199, 199, 0.6);
}

/* ===== Homepage Hero ===== */
.home-hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 0, 77, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 0, 77, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.home-hero-content {
  position: relative;
  max-width: 900px;
}

.home-hero .hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(247, 197, 71, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.home-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 28px;
}

.home-hero h1 .serif {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
}

.home-hero h1 .letter {
  display: inline-block;
  opacity: 0;
  transform: rotateY(90deg);
  animation: letterReveal 0.5s forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: rotateY(0);
  }
}

.home-hero .hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* ===== Scrolling Ticker ===== */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 14px 0;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.ticker span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
  padding: 0 32px;
  opacity: 0.7;
}

.ticker span::after {
  content: '-';
  margin-left: 32px;
  opacity: 0.3;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FAQ Accordion ===== */
.faq-section {
  padding: 100px 40px;
  background: #f8f9fa;
}

.faq-section .section-inner {
  max-width: 800px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .faq-big {
  font-family: 'Inter', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--light-gray) 0%, rgba(228, 230, 235, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: -20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question span {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: transform 0.3s;
}

.faq-question .faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-question .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.faq-email {
  text-align: center;
  margin-top: 40px;
}

.faq-email p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #666;
}

.faq-email a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}

.faq-email a:hover {
  color: var(--black);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .home-hero h1 {
    font-size: 60px;
  }

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

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .section-title {
    font-size: 40px;
  }
}

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

  .hamburger {
    display: flex;
  }

  .page-hero {
    padding: 140px 24px 60px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .home-hero {
    padding: 0 24px;
  }

  .home-hero h1 {
    font-size: 40px;
  }

  .home-hero .hero-subtitle {
    font-size: 16px;
  }

  .faq-section {
    padding: 60px 24px;
  }

  .faq-header .faq-big {
    font-size: 72px;
  }

  .page-hero .subtitle {
    font-size: 16px;
  }

  .section {
    padding: 60px 24px;
  }

  .section-title {
    font-size: 32px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 32px;
  }

  .stat-number {
    font-size: 40px;
  }

  .team-section {
    padding: 60px 24px 80px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .team-card-image {
    width: 140px;
    height: 140px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .where-we-go {
    padding: 60px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .home-hero h1 {
    font-size: 32px;
  }

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

  .faq-header .faq-big {
    font-size: 56px;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

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

  .team-card-image {
    width: 160px;
    height: 160px;
  }

  .nav-inner {
    padding: 0 20px;
  }
}

/* ===== Programs / Sponsors / Blog / Join ===== */
.program-grid,
.sponsor-tier-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.program-card,
.tier-card,
.blog-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.program-card:hover,
.tier-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  border-color: #d4d7dc;
}

.program-kicker,
.blog-tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.program-card h3,
.tier-card h3,
.blog-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.program-card p,
.tier-card p,
.blog-card p {
  font-family: 'Figtree', sans-serif;
  color: #5f5f66;
  line-height: 1.7;
}

.program-card ul,
.tier-card ul {
  margin-top: 16px;
  padding-left: 18px;
}

.program-card li,
.tier-card li {
  font-family: 'Figtree', sans-serif;
  margin-bottom: 8px;
  color: #4f4f56;
}

.timeline-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.timeline-item {
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  background: var(--white);
  padding: 18px 20px;
}

.timeline-item span {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.timeline-item p {
  font-family: 'Figtree', sans-serif;
  color: #4f4f56;
  line-height: 1.6;
}

.blog-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sample-pill {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
}

.blog-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-footer span {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  color: #7a7a81;
}

.blog-footer a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.join-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.join-step {
  background: #f8f9fa;
  border: 1px solid #e6e8ec;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.join-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.join-step p {
  font-family: 'Figtree', sans-serif;
  color: #4f4f56;
}

.join-form {
  margin-top: 32px;
  background: var(--white);
  border: 1px solid #e0e3e7;
  border-radius: 16px;
  padding: 24px;
}

.join-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.join-form label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #303038;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-form input,
.join-form textarea {
  width: 100%;
  border: 1px solid #d6d9df;
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
}

.join-form textarea {
  resize: vertical;
  margin-bottom: 18px;
}

.join-note {
  margin-top: 12px;
  font-family: 'Figtree', sans-serif;
  color: #6a6a72;
}

@media (max-width: 1024px) {
  .program-grid,
  .sponsor-tier-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 810px) {
  .program-grid,
  .sponsor-tier-grid,
  .blog-grid,
  .join-steps,
  .join-form-grid {
    grid-template-columns: 1fr;
  }

  .blog-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===== FAP Page ===== */
.fap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.fap-card {
  background: var(--white);
  border: 1px solid #e4e6ea;
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.fap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.fap-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.fap-card p {
  font-family: 'Figtree', sans-serif;
  color: #5a5a62;
  line-height: 1.7;
}

.fap-highlight {
  margin-top: 36px;
  border-radius: 14px;
  padding: 24px;
  background: var(--black);
  color: var(--white);
}

.fap-highlight .section-label {
  color: var(--yellow);
}

.fap-highlight h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.fap-highlight p {
  font-family: 'Figtree', sans-serif;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .fap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 810px) {
  .fap-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.value-item {
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.value-item p {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: #5f5f66;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== Nav Logo Image ===== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== Photo Gallery Strip ===== */
.photo-gallery {
  padding: 0;
  overflow: hidden;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.photo-grid img:hover {
  transform: scale(1.03);
}

@media (max-width: 810px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid img {
    height: 200px;
  }
}

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

/* ===== Content with Image (side-by-side) ===== */
.content-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.content-image-row img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.content-image-row .content-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 810px) {
  .content-image-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ===== Featured Image Banner ===== */
.featured-image-section {
  padding: 0 40px;
  background: var(--black);
}

.featured-image-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.featured-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  object-position: 0px -20px;
}

.featured-image-wrap .image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.featured-image-wrap .image-overlay p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 810px) {
  .featured-image-section {
    padding: 0 24px;
  }

  .featured-image-wrap img {
    height: 260px;
  }

  .featured-image-wrap .image-overlay {
    padding: 24px;
  }
}

.footer-socials {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(199, 199, 199, 0.85);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--white);
}
