/* ==========================================================================
   TechSquad — Design tokens
   ========================================================================== */
:root {
  --navy: #16202e;
  --navy-soft: #232f41;
  --blue: #2a76e2;
  --blue-dark: #1c5cbd;
  --blue-light: #eaf1fd;
  --teal: #00a5b0;
  --teal-light: #e3f7f8;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --text: #16202e;
  --text-muted: #56637a;
  --text-faint: #8b96a8;
  --border: #e4e9f1;

  --font-display: 'Space Grotesk', 'Segoe UI', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 32, 46, 0.06);
  --shadow-md: 0 8px 24px rgba(22, 32, 46, 0.08);
  --shadow-lg: 0 24px 60px rgba(22, 32, 46, 0.14);

  --container: 1180px;
  --nav-height: 76px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-navy .eyebrow { color: var(--teal); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { margin-top: 16px; font-size: 17px; color: var(--text-muted); line-height: 1.6; }
.section-navy .section-head p { color: rgba(255,255,255,0.72); }

.text-center { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(42, 118, 226, 0.28);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 14px 30px rgba(42, 118, 226, 0.36); transform: translateY(-2px); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 165, 176, 0.28);
}
.btn-teal:hover { background: #018e97; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.section-navy .btn-outline, .hero .btn-outline, .page-hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.28); }
.section-navy .btn-outline:hover, .hero .btn-outline:hover, .page-hero .btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,0.16); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.navbar.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(22,32,46,0.05);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}
.nav-links > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--bg-soft); }
.nav-link .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform 0.18s ease; }
.has-dropdown:hover .chev { transform: rotate(225deg); margin-top: 2px; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.dropdown a small { font-weight: 500; color: var(--text-faint); font-size: 12.5px; }
.dropdown a:hover { background: var(--bg-soft); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta .btn-outline.nav-secondary { display: none; }
  .nav-toggle { display: flex; }

  body.menu-open .mobile-menu { max-height: 640px; opacity: 1; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: max-height 0.3s ease, opacity 0.3s ease;
  z-index: 99;
}
.mobile-menu-inner { padding: 8px 24px 28px; display: flex; flex-direction: column; }
.mobile-menu a {
  padding: 14px 4px;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.mobile-menu .btn { margin-top: 18px; }
.mobile-group-label { padding: 14px 4px 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); }
.mobile-menu a.sub { padding-left: 16px; font-weight: 500; font-size: 15px; color: var(--text-muted); border-bottom: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  background: var(--navy);
  color: rgba(255,255,255,0.88);
}
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blobs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
}
.blob-1 { width: 460px; height: 460px; background: var(--blue); top: -180px; right: -120px; }
.blob-2 { width: 380px; height: 380px; background: var(--teal); bottom: -160px; left: -100px; opacity: 0.28; }
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(0,165,176,0.25); }
.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
}
.hero .lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  max-width: 620px;
}
.hero .btn-row { margin-top: 36px; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,0.5); }

.page-hero {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 150px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); max-width: 780px; }
.page-hero p { margin-top: 18px; font-size: 17px; color: rgba(255,255,255,0.68); max-width: 620px; line-height: 1.6; }
.page-hero .btn-row { margin-top: 30px; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card-grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(42,118,226,0.25); }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--blue-light);
  color: var(--blue);
}
.card-icon.teal { background: var(--teal-light); color: var(--teal); }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; gap: 32px; } }
.feature-row.reverse .feature-visual { order: 2; }

.feature-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, #1d2c40 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-visual .glow-blue { position: absolute; width: 220px; height: 220px; background: var(--blue); filter: blur(70px); opacity: 0.45; top: -40px; left: -40px; }
.feature-visual .glow-teal { position: absolute; width: 220px; height: 220px; background: var(--teal); filter: blur(70px); opacity: 0.4; bottom: -40px; right: -40px; }
.feature-visual .visual-icon { position: relative; z-index: 1; width: 96px; height: 96px; opacity: 0.9; }

.body-copy { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.body-copy + .body-copy { margin-top: 16px; }
.body-copy strong { color: var(--navy); }

/* ==========================================================================
   Stats
   ========================================================================== */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 640px) { .stat-strip { grid-template-columns: 1fr; gap: 32px; } }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .stat-label { margin-top: 8px; font-size: 14.5px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ==========================================================================
   List with check icons
   ========================================================================== */
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.check-list .check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list .check svg { width: 13px; height: 13px; }
.section-navy .check-list li { color: rgba(255,255,255,0.78); }
.section-navy .check-list .check { background: rgba(0,165,176,0.18); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, #1c2c42 60%, #1a3a52 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  background: var(--teal);
  filter: blur(90px);
  opacity: 0.35;
  top: -140px;
  right: -80px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); max-width: 560px; margin: 0 auto; }
.cta-band .btn-row { justify-content: center; margin-top: 30px; }
.cta-band .fine-print { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,0.55); font-style: italic; }
@media (max-width: 640px) { .cta-band { padding: 44px 24px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 48px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; max-width: 280px; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.18s ease; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13.5px;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--navy); }
.form-field .optional { font-weight: 500; color: var(--text-faint); }
.form-field input, .form-field textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(42,118,226,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
@media (max-width: 640px) { .form-card { padding: 26px; } }
.form-status { margin-top: 16px; font-size: 14.5px; font-weight: 600; display: none; }
.form-status.success { color: var(--teal); display: block; }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--white); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
}
.faq-question .plus {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; }
.faq-item.open .faq-question .plus { transform: rotate(135deg); background: var(--blue); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-answer-inner { padding: 0 24px 24px; color: var(--text-muted); font-size: 15.5px; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ==========================================================================
   Mentor / Blog cards
   ========================================================================== */
.mentor-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.mentor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mentor-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}
.mentor-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.mentor-role { font-size: 13.5px; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.mentor-bio { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.mentor-badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy), #223349); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-thumb .tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: 0.04em; }
.blog-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 12.5px; color: var(--text-faint); font-weight: 600; margin-bottom: 10px; }
.blog-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-readmore { margin-top: 16px; font-size: 13.5px; font-weight: 700; color: var(--blue); }

.placeholder-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--blue-light);
  border: 1px dashed var(--blue);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-bottom: 40px;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.6;
}
.placeholder-note strong { color: var(--blue-dark); }

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-1 { transition-delay: 0.06s; }
.reveal-2 { transition-delay: 0.14s; }
.reveal-3 { transition-delay: 0.22s; }
.reveal-4 { transition-delay: 0.3s; }

/* ==========================================================================
   Misc
   ========================================================================== */
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-badge {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.icon-diamond { width: 40px; height: 40px; }
