/* ============================================
   AJ SMITH — Personal Brand Website
   Premium Dark Finance / CRE Aesthetic
   ============================================ */

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

/* ── Design Tokens ── */
:root {
  --bg-primary:    #0B0F14;
  --bg-secondary:  #111827;
  --card-bg:       #171F2A;
  --gold:          #C9A227;
  --gold-dim:      rgba(201,162,39,0.15);
  --gold-glow:     rgba(201,162,39,0.25);
  --blue:          #2563EB;
  --blue-dim:      rgba(37,99,235,0.12);
  --green:         #3FA37D;
  --green-dim:     rgba(63,163,125,0.12);
  --text-primary:  #F8FAFC;
  --text-secondary:#CBD5E1;
  --text-muted:    #94A3B8;
  --border:        #2D3748;
  --border-gold:   rgba(201,162,39,0.3);
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover:  0 8px 40px rgba(0,0,0,0.6);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.section-subheadline {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
}

.gold-text { color: var(--gold); }
.blue-text { color: var(--blue); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: #d4aa35;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold-dim);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,162,39,0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform var(--transition); }
.btn-ghost:hover .arrow { transform: translateX(3px); }

/* ── Divider ── */
.gold-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
#navbar.scrolled {
  background: rgba(11,15,20,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.nav-logo-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta .btn { padding: 9px 20px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(11,15,20,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: var(--gold-dim); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(37,99,235,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(201,162,39,0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-headline .accent { color: var(--gold); }

.hero-subheadline {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-credibility {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-credibility .cred-dot {
  width: 4px; height: 4px;
  background: var(--border);
  border-radius: 50%;
}
.hero-credibility span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero image card */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-card {
  position: relative;
  width: 360px;
  height: 460px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(201,162,39,0.1), var(--shadow-card);
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,15,20,0.7) 100%);
  pointer-events: none;
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(23,31,42,0.95);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
}
.float-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-chip:nth-child(1) { top: 32px; right: -24px; animation-delay: 0s; }
.float-chip:nth-child(2) { bottom: 80px; right: -30px; animation-delay: 0.8s; }
.float-chip:nth-child(3) { bottom: 150px; left: -36px; animation-delay: 1.4s; }
.float-chip:nth-child(4) { top: 120px; left: -40px; animation-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

/* ── MISSION ── */
#mission {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.mission-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}
.mission-card:hover::before { transform: scaleX(1); }

.mission-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.mission-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.mission-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── PILLARS ── */
#pillars {
  padding: 100px 0;
  background: var(--bg-primary);
}

.pillars-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.pillars-header .section-tag { justify-content: center; }
.pillars-header .section-tag::before { display: none; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pillar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}
.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}
.pillar-card:hover .pillar-icon { transform: scale(1.1); }

.pillar-icon {
  font-size: 28px;
  transition: transform var(--transition);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--gold-dim);
}

.pillar-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.pillar-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.pillar-explore {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: auto;
  transition: gap var(--transition);
}
.pillar-card:hover .pillar-explore { gap: 8px; }

/* ── RESOURCES ── */
#resources {
  padding: 100px 0;
  background: var(--bg-primary);
}

.resources-header {
  max-width: 600px;
  margin-bottom: 60px;
}

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

.resource-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.resource-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.tag-finance  { background: var(--gold-dim);  color: var(--gold);  border: 1px solid rgba(201,162,39,0.2); }
.tag-cre      { background: var(--blue-dim);  color: var(--blue);  border: 1px solid rgba(37,99,235,0.2); }
.tag-career   { background: rgba(139,92,246,0.12); color: #A78BFA; border: 1px solid rgba(139,92,246,0.2); }
.tag-wealth   { background: var(--green-dim); color: var(--green); border: 1px solid rgba(63,163,125,0.2); }

.resource-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.resource-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.resource-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  width: fit-content;
  border: none;
}
.resource-btn.available {
  background: var(--gold);
  color: var(--bg-primary);
}
.resource-btn.available:hover {
  background: #d4aa35;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.resource-btn.soon {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── LEARNING ── */
#learning {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.learning-header {
  max-width: 560px;
  margin-bottom: 60px;
}

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

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-read-time {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.article-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
}
.article-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.article-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition);
}
.article-card:hover .article-read-btn { gap: 8px; }
.article-read-btn.coming-soon-label {
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  cursor: default;
}
.article-card:hover .article-read-btn.coming-soon-label { gap: 5px; }

/* ── NEWSLETTER ── */
#newsletter {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

/* ── Newsletter tier rows ── */
.newsletter-tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 28px;
  max-width: 560px;
  text-align: left;
}

.tier-row {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tier-row.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.tier-row-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: default;
}

/* Radio circle */
.tier-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
  position: relative;
  padding: 0;
}
.tier-radio::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
}
.tier-radio:hover { border-color: var(--gold); }
.tier-radio.checked {
  border-color: var(--gold);
}
.tier-radio.checked::after {
  opacity: 1;
  transform: scale(1);
}

.tier-row-name {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.tier-row.selected .tier-row-name { color: var(--gold); }

/* Chevron toggle */
.tier-chevron {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all var(--transition);
  flex-shrink: 0;
}
.tier-chevron:hover {
  color: var(--gold);
  background: var(--gold-dim);
}
.tier-chevron svg {
  transition: transform var(--transition);
}
.tier-chevron.open svg { transform: rotate(180deg); }

/* Description panel */
.tier-desc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 18px;
  border-top: 1px solid transparent;
}
.tier-desc-panel.open {
  max-height: 160px;
  padding: 14px 18px 16px;
  border-top-color: var(--border);
}
.tier-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.tier-desc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* disabled input/button state */
.newsletter-form input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.newsletter-form button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.newsletter-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.newsletter-inner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 14px;
}
.newsletter-inner p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { flex-shrink: 0; }

.newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── ABOUT ── */
#about {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #1a1f28;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  /* Blend the headshot's gray background into the dark card */
  filter: brightness(0.97) contrast(1.02);
  mix-blend-mode: luminosity;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Tinted overlay to pull the gray into our dark palette */
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,24,39,0.25) 0%,
    rgba(11,15,20,0.15) 60%,
    rgba(11,15,20,0.5)  100%
  );
  pointer-events: none;
  border-radius: 20px;
}

.about-photo-img.loaded {
  opacity: 1;
  mix-blend-mode: normal;
  filter: brightness(0.95) contrast(1.03) saturate(0.9);
}

.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--card-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.about-badge-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-badge-text { font-size: 12px; }
.about-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.about-badge-text span { color: var(--text-muted); }

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.about-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.value-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FINAL CTA ── */
#cta-final {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(201,162,39,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner { position: relative; }
.cta-final-inner h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-final-inner p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.cta-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
#footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 180px;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-muted);
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-tagline span { color: var(--gold); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image-wrap { order: -1; }
  .hero-photo-card { width: 300px; height: 380px; margin: 0 auto; }
  .hero-subheadline { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-credibility { justify-content: center; }
  .float-chip:nth-child(3),
  .float-chip:nth-child(4) { display: none; }

  .mission-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .about-badge { bottom: -12px; right: -8px; }
}

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

  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  #hero { padding: 100px 0 60px; }
  #mission, #pillars, #resources, #learning,
  #newsletter, #about, #cta-final { padding: 72px 0; }
}

@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-photo-card { width: 260px; height: 330px; }
  .float-chip:nth-child(2) { display: none; }
}
