/* ==========================================================================
   SHOTTRACKER DESIGN SYSTEM — shottracker.css
   Brand: ShotTracker (shottracker.com)
   Colors: Navy #0F2030 | Green #00D578 | Blue #00A3FF | White #FFFFFF
   Fonts: Antonio (display) + Inter (body)
   ========================================================================== */

/* ── DESIGN TOKENS ──────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --st-navy: #0F2030;
  --st-navy-alt: #0E2F48;
  --st-navy-light: #162a3e;
  --st-green: #00D578;
  --st-blue: #00A3FF;
  --st-white: #FFFFFF;
  --st-gray: #959AA2;
  --st-light-gray: #E5E5E6;
  --st-off-white: #FAF9F5;
  --st-black: #000000;

  /* Overlays */
  --st-overlay-63: rgba(15, 32, 48, 0.63);
  --st-overlay-99: rgba(15, 32, 48, 0.99);
  --st-overlay-dark: rgba(0, 0, 0, 0.5);

  /* Typography */
  --st-display: "Antonio", "Inter", sans-serif;
  --st-body: "Inter", sans-serif;

  /* Spacing */
  --st-nav-h: 80px;
  --st-max-w: 1200px;
  --st-max-w-wide: 1440px;

  /* Radius */
  --st-radius-btn: 2px;
  --st-radius-card: 12px;
  --st-radius-pill: 999px;

  /* Shadows */
  --st-shadow-btn: 2px 4px 10px 0px rgba(0, 0, 0, 0.5);
  --st-shadow-nav: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);

  /* Motion */
  --st-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --st-fast: 150ms;
  --st-normal: 200ms;
  --st-slow: 300ms;
}

/* ── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; }
body {
  background: var(--st-navy);
  color: var(--st-white);
  font-family: var(--st-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--st-navy); }
::-webkit-scrollbar-thumb { background: var(--st-navy-alt); border-radius: 3px; }
::selection { background: rgba(0, 213, 120, 0.2); color: var(--st-green); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
.st-h1 {
  font-family: var(--st-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--st-green);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.st-h2 {
  font-family: var(--st-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  line-height: 1.1;
}
.st-h2--green { color: var(--st-green); }
.st-h2--navy { color: var(--st-navy); }
.st-h3 {
  font-family: var(--st-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  line-height: 1.15;
}
.st-h3--navy { color: var(--st-navy); }
.st-h4 {
  font-family: var(--st-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  line-height: 1.2;
}
.st-eyebrow {
  font-family: var(--st-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.st-body { font-size: 18px; color: var(--st-white); line-height: 1.6; }
.st-body--navy { color: var(--st-navy); }
.st-body-sm { font-size: 16px; color: var(--st-gray); line-height: 1.5; }
.st-meta {
  font-family: var(--st-body);
  font-size: 16px;
  color: var(--st-gray);
  line-height: 1.4;
}

/* ── LAYOUT ─────────────────────────────────────────────────────────────── */
.st-container {
  max-width: var(--st-max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.st-container--wide {
  max-width: var(--st-max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .st-container, .st-container--wide { padding: 0 48px; }
}

/* ── NAVIGATION ─────────────────────────────────────────────────────────── */
.st-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--st-nav-h);
  background: var(--st-navy);
  box-shadow: var(--st-shadow-nav);
  transition: background var(--st-slow) var(--st-ease);
}
.st-nav--transparent { background: transparent; box-shadow: none; }
.st-nav--scrolled { background: var(--st-navy); box-shadow: var(--st-shadow-nav); }
.st-nav__inner {
  max-width: var(--st-max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) { .st-nav__inner { padding: 0 48px; } }

/* Logo */
.st-nav__logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.st-nav__logo svg { height: 32px; width: auto; }

/* Desktop Links */
.st-nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}
.st-nav__link {
  font-family: var(--st-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--st-white);
  text-transform: capitalize;
  transition: color var(--st-fast);
  white-space: nowrap;
}
.st-nav__link:hover,
.st-nav__link--active { color: var(--st-blue); }
@media (min-width: 900px) { .st-nav__links { display: flex; } }

/* Dropdown Menu */
.st-nav__dropdown {
  position: relative;
}
.st-nav__dropdown-trigger {
  font-family: var(--st-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--st-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--st-fast);
  background: none;
  border: none;
  padding: 0;
}
.st-nav__dropdown-trigger:hover,
.st-nav__dropdown-trigger--active { color: var(--st-blue); }
.st-nav__dropdown-trigger::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--st-fast);
}
.st-nav__dropdown.open .st-nav__dropdown-trigger::after { transform: rotate(180deg); }
.st-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--st-navy-alt);
  border: 1px solid rgba(0,213,120,0.12);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--st-fast), visibility var(--st-fast), transform var(--st-fast);
  z-index: 200;
}
.st-nav__dropdown.open .st-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.st-nav__dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--st-gray);
  transition: background var(--st-fast), color var(--st-fast);
  white-space: nowrap;
}
.st-nav__dropdown-menu a:hover {
  background: rgba(0,213,120,0.06);
  color: var(--st-green);
}
.st-nav__dropdown-menu .st-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 0;
}

/* Mobile nav pillar section */
.st-mob-nav__section {
  font-family: var(--st-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--st-green);
  padding: 16px 32px 4px;
  display: block;
}
.st-mob-nav__link--sub {
  padding-left: 48px;
  font-size: 15px;
  opacity: 0.8;
}

/* Hamburger */
.st-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  z-index: 200;
}
.st-hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--st-white);
  transition: all 0.25s var(--st-ease);
  transform-origin: center;
}
.st-hamburger.open .st-hamburger__line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.st-hamburger.open .st-hamburger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.st-hamburger.open .st-hamburger__line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 900px) { .st-hamburger { display: none; } }

/* Mobile Nav */
.st-mob-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--st-navy);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--st-slow) var(--st-ease);
}
.st-mob-nav.open { transform: translateX(0); }
.st-mob-nav__link {
  font-family: var(--st-display);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  transition: color var(--st-fast);
}
.st-mob-nav__link:hover { color: var(--st-green); }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--st-display);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--st-normal) var(--st-ease);
  white-space: nowrap;
}
.st-btn--primary {
  font-size: 1.65rem;
  color: var(--st-white);
  background: var(--st-blue);
  border: 2px solid var(--st-blue);
  border-radius: var(--st-radius-btn);
  padding: 10px 28px;
  box-shadow: var(--st-shadow-btn);
  letter-spacing: 0.03em;
}
.st-btn--primary:hover {
  background: transparent;
  color: var(--st-blue);
}
.st-btn--xl {
  font-size: 2rem;
  padding: 14px 48px;
}
.st-btn--ghost {
  font-size: 1.4rem;
  color: var(--st-blue);
  background: transparent;
  border: 2px solid var(--st-blue);
  border-radius: var(--st-radius-btn);
  padding: 8px 24px;
  letter-spacing: 0.03em;
}
.st-btn--ghost:hover {
  background: var(--st-blue);
  color: var(--st-white);
}
.st-btn--green {
  font-size: 1.4rem;
  color: var(--st-navy);
  background: var(--st-green);
  border: 2px solid var(--st-green);
  border-radius: var(--st-radius-btn);
  padding: 8px 24px;
}
.st-btn--green:hover {
  background: transparent;
  color: var(--st-green);
}

/* Read More Link */
.st-read-more {
  font-family: var(--st-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--st-blue);
  text-decoration: none;
  transition: color var(--st-fast);
}
.st-read-more:hover { color: var(--st-green); }
.st-read-more::after { content: ' →'; }

/* ── BADGES ─────────────────────────────────────────────────────────────── */
.st-badge {
  display: inline-block;
  font-family: var(--st-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-navy);
  background: var(--st-green);
  border-radius: var(--st-radius-pill);
  padding: 6px 14px;
  letter-spacing: 0.02em;
}

/* ── SECTIONS ───────────────────────────────────────────────────────────── */
.st-section {
  padding: 80px 0;
}
.st-section--dark { background: var(--st-navy); }
.st-section--darker { background: #0a1520; }
.st-section--white { background: var(--st-white); color: var(--st-navy); }
.st-section--alt { background: var(--st-off-white); color: var(--st-navy); }
.st-section--gradient {
  background: linear-gradient(180deg, var(--st-navy-alt) 0%, var(--st-navy) 100%);
}

.st-section__header {
  text-align: center;
  margin-bottom: 48px;
}
.st-section__header .st-eyebrow { margin-bottom: 12px; }

/* Divider */
.st-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.st-divider--green {
  background: linear-gradient(90deg, transparent, var(--st-green), transparent);
}

/* ── HERO ───────────────────────────────────────────────────────────────── */
.st-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--st-nav-h) + 40px) 24px 60px;
  position: relative;
  overflow: hidden;
}
.st-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--st-navy-alt) 0%, var(--st-navy) 80%);
  z-index: 0;
}
.st-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,213,120,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,213,120,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}
.st-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.st-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--st-white);
  margin: 24px 0 36px;
  line-height: 1.6;
  opacity: 0.85;
}
.st-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ── STATS TICKER ───────────────────────────────────────────────────────── */
.st-ticker {
  background: var(--st-navy);
  box-shadow: var(--st-shadow-nav);
  overflow: hidden;
  padding: 16px 0;
  position: relative;
  z-index: 10;
}
.st-ticker__track {
  display: flex;
  white-space: nowrap;
  animation: st-scroll 30s linear infinite;
}
.st-ticker__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  flex-shrink: 0;
}
.st-ticker__label {
  font-family: var(--st-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: var(--st-green);
  letter-spacing: 0.02em;
}
.st-ticker__number {
  font-family: var(--st-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--st-white);
  letter-spacing: 0.05em;
}
@keyframes st-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ARTICLE CARDS ──────────────────────────────────────────────────────── */
.st-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .st-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .st-cards { grid-template-columns: repeat(3, 1fr); } }

.st-card {
  background: var(--st-navy-light);
  border-radius: var(--st-radius-card);
  overflow: hidden;
  transition: transform var(--st-normal) var(--st-ease), box-shadow var(--st-normal);
}
.st-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.st-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--st-navy);
}
.st-card__image svg { width: 100%; height: 100%; }
.st-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
}
.st-card__body { padding: 24px; }
.st-card__title {
  font-family: var(--st-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.st-card__excerpt {
  font-size: 15px;
  color: var(--st-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.st-card__date {
  font-size: 14px;
  color: var(--st-gray);
}

/* White card variant for article pages */
.st-card--white {
  background: var(--st-white);
}
.st-card--white .st-card__title { color: var(--st-navy); }
.st-card--white .st-card__excerpt { color: #3F3F46; }
.st-card--white .st-card__footer { border-top-color: var(--st-light-gray); }

/* ── PILLAR GRID ────────────────────────────────────────────────────────── */
.st-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .st-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .st-pillars { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.st-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--st-radius-card);
  padding: 28px;
  transition: all var(--st-normal) var(--st-ease);
}
.st-pillar:hover {
  background: rgba(0, 213, 120, 0.04);
  border-color: rgba(0, 213, 120, 0.15);
}
.st-pillar__icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.st-pillar__name {
  font-family: var(--st-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  margin-bottom: 8px;
}
.st-pillar__desc {
  font-size: 15px;
  color: var(--st-gray);
  line-height: 1.6;
}

/* ── FILTER BUTTONS ─────────────────────────────────────────────────────── */
.st-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.st-filter-btn {
  font-family: var(--st-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--st-radius-pill);
  color: var(--st-gray);
  background: transparent;
  cursor: pointer;
  transition: all var(--st-fast);
}
.st-filter-btn:hover { border-color: var(--st-green); color: var(--st-white); }
.st-filter-btn--active {
  background: var(--st-green);
  color: var(--st-navy);
  border-color: var(--st-green);
}

/* ── ARTICLE PAGE ───────────────────────────────────────────────────────── */
.st-article { padding-top: var(--st-nav-h); }
.st-article__hero {
  background: var(--st-navy);
  padding: 60px 24px 40px;
  text-align: center;
}
@media (min-width: 768px) { .st-article__hero { padding: 80px 48px 52px; } }
.st-article__hero .st-badge { margin-bottom: 20px; }
.st-article__hero .st-h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin-bottom: 16px;
}
.st-article__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  color: var(--st-gray);
  margin-top: 16px;
}
.st-article__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--st-gray); }

.st-article__cover {
  max-width: 900px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.st-article__cover svg {
  width: 100%;
  border-radius: var(--st-radius-card);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.st-article__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  background: var(--st-navy);
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) { .st-article__body { padding: 64px 48px 100px; } }

.st-article__body p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.st-article__body h2 {
  font-family: var(--st-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  margin: 48px 0 20px;
  line-height: 1.15;
}
.st-article__body h3 {
  font-family: var(--st-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  margin: 36px 0 16px;
}
.st-article__body strong { font-weight: 700; color: var(--st-white); }
.st-article__body em { font-style: italic; }
.st-article__body a { color: var(--st-blue); text-decoration: none; }
.st-article__body a:hover { text-decoration: underline; }
.st-article__body ul, .st-article__body ol {
  margin: 0 0 24px 24px;
}
.st-article__body li {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  list-style: disc;
}
.st-article__body ol li { list-style: decimal; }

/* Pull Quote */
.st-pullquote {
  border-left: 4px solid var(--st-green);
  padding: 20px 28px;
  margin: 36px 0;
  background: rgba(0, 213, 120, 0.04);
}
.st-pullquote p {
  font-family: var(--st-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  line-height: 1.3;
  margin: 0;
}

/* Stat Callout */
.st-stat-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0;
  padding: 28px;
  background: var(--st-navy);
  border-radius: var(--st-radius-card);
}
.st-stat-item { flex: 1; min-width: 120px; text-align: center; }
.st-stat-item__number {
  font-family: var(--st-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--st-green);
  line-height: 1;
}
.st-stat-item__label {
  font-size: 13px;
  color: var(--st-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

/* Author Box */
.st-author {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: #f4f4f5;
  border-radius: var(--st-radius-card);
  margin: 48px 0;
}
.st-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--st-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--st-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--st-green);
}
.st-author__name {
  font-family: var(--st-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-navy);
  margin-bottom: 4px;
}
.st-author__bio {
  font-size: 14px;
  color: #52525B;
  line-height: 1.6;
}

/* ── CTA BAND ───────────────────────────────────────────────────────────── */
.st-cta-band {
  background: linear-gradient(135deg, var(--st-navy-alt), var(--st-navy));
  padding: 64px 24px;
  text-align: center;
}
.st-cta-band .st-h3 { margin-bottom: 12px; }
.st-cta-band .st-body { margin-bottom: 28px; opacity: 0.85; }

/* ── RESUME / PORTFOLIO ─────────────────────────────────────────────────── */
.st-resume-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-resume-section:last-child { border-bottom: none; }
.st-resume-section--white {
  border-bottom-color: var(--st-light-gray);
}

.st-job {
  margin-bottom: 32px;
}
.st-job__title {
  font-family: var(--st-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  margin-bottom: 4px;
}
.st-job__company {
  font-size: 16px;
  font-weight: 600;
  color: var(--st-white);
  margin-bottom: 4px;
}
.st-job__date { font-size: 14px; color: var(--st-gray); margin-bottom: 12px; }
.st-job__list { margin-left: 20px; }
.st-job__list li {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

/* White variant for portfolio page white sections */
.st-section--white .st-job__title { color: var(--st-blue); }
.st-section--white .st-job__company { color: var(--st-navy); }
.st-section--white .st-job__date { color: var(--st-gray); }
.st-section--white .st-job__list li { color: #3F3F46; }

/* Skills Grid */
.st-skills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.st-skill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 213, 120, 0.06);
  border: 1px solid rgba(0, 213, 120, 0.12);
  border-radius: 8px;
  font-size: 14px;
  color: var(--st-white);
}
.st-skill::before {
  content: '✓';
  color: var(--st-green);
  font-weight: 700;
  flex-shrink: 0;
}
.st-section--white .st-skill {
  color: var(--st-navy);
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.1);
}
.st-section--white .st-skill::before { color: var(--st-blue); }

/* ── COVER LETTER ───────────────────────────────────────────────────────── */
.st-letter {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
@media (min-width: 768px) { .st-letter { padding: 64px 48px 100px; } }
.st-letter__header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--st-green);
}
.st-letter__name {
  font-family: var(--st-display);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
}
.st-letter__contact {
  font-size: 15px;
  color: var(--st-gray);
  margin-top: 8px;
  line-height: 1.6;
}
.st-letter__date { font-size: 15px; color: var(--st-gray); margin-bottom: 24px; }
.st-letter__to {
  font-size: 16px;
  color: var(--st-white);
  margin-bottom: 24px;
  line-height: 1.6;
}
.st-letter__re {
  font-family: var(--st-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-blue);
  margin-bottom: 24px;
}
.st-letter__salutation {
  font-size: 18px;
  color: var(--st-white);
  margin-bottom: 20px;
}
.st-letter p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.st-letter strong { color: var(--st-white); font-weight: 600; }
.st-letter__signature {
  margin-top: 36px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}
.st-letter__sig-name {
  font-family: var(--st-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--st-green);
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── FAQ ACCORDION ──────────────────────────────────────────────────────── */
.st-faq { margin: 32px 0; }
.st-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-section--white .st-faq__item { border-bottom-color: var(--st-light-gray); }
.st-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--st-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-white);
  cursor: pointer;
  text-align: left;
}
.st-section--white .st-faq__q { color: var(--st-navy); }
.st-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  margin-left: 16px;
}
.st-faq__icon::before,
.st-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--st-green);
  transition: transform var(--st-normal) var(--st-ease);
}
.st-faq__icon::before { width: 24px; height: 2px; top: 11px; left: 0; }
.st-faq__icon::after { width: 2px; height: 24px; top: 0; left: 11px; }
.st-faq__item.open .st-faq__icon::after { transform: rotate(90deg); }
.st-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--st-ease);
}
.st-faq__a-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--st-gray);
  line-height: 1.7;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────── */
.st-footer {
  background: var(--st-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 30px;
}
.st-footer__inner {
  max-width: var(--st-max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .st-footer__inner { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
}
@media (min-width: 1024px) {
  .st-footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.st-footer__brand { }
.st-footer__brand svg { height: 28px; margin-bottom: 16px; }
.st-footer__desc { font-size: 15px; color: var(--st-gray); line-height: 1.6; max-width: 400px; }
.st-footer__heading {
  font-family: var(--st-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  margin-bottom: 16px;
}
.st-footer__link {
  display: block;
  font-size: 15px;
  color: var(--st-white);
  margin-bottom: 10px;
  transition: color var(--st-fast);
}
.st-footer__link:hover { color: var(--st-blue); }
.st-footer__bottom {
  text-align: center;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 14px;
  color: var(--st-gray);
}

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--st-ease), transform 0.6s var(--st-ease);
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv1 { transition-delay: 0.1s; }
.rv2 { transition-delay: 0.2s; }
.rv3 { transition-delay: 0.3s; }
.rv4 { transition-delay: 0.4s; }
.rv5 { transition-delay: 0.5s; }

/* ── ABOUT TIMELINE ─────────────────────────────────────────────────────── */
.st-timeline { position: relative; padding-left: 32px; }
.st-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--st-green), var(--st-blue), var(--st-green));
}
.st-timeline__item { position: relative; margin-bottom: 32px; }
.st-timeline__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--st-green);
  border: 2px solid var(--st-navy);
}
.st-timeline__year {
  font-family: var(--st-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--st-blue);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.st-timeline__title {
  font-family: var(--st-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--st-green);
  margin-bottom: 4px;
}
.st-timeline__desc { font-size: 15px; color: var(--st-gray); line-height: 1.6; }

/* ── RELATED ARTICLES ───────────────────────────────────────────────────── */
.st-related { padding: 64px 0; background: var(--st-navy); }
.st-related .st-eyebrow { text-align: center; margin-bottom: 8px; }
.st-related .st-h3 { text-align: center; margin-bottom: 40px; }

/* ── UTILITIES ──────────────────────────────────────────────────────────── */
.st-text-center { text-align: center; }
.st-mt-0 { margin-top: 0; }
.st-mb-16 { margin-bottom: 16px; }
.st-mb-24 { margin-bottom: 24px; }
.st-mb-32 { margin-bottom: 32px; }
.st-mb-48 { margin-bottom: 48px; }
.st-gap-16 { gap: 16px; }
.st-flex { display: flex; }
.st-flex-center { display: flex; align-items: center; justify-content: center; }
.st-grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .st-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ── MOBILE RESPONSIVE FIXES ────────────────────────────────────────────── */

/* Filter buttons: horizontal scroll on mobile */
.st-filters {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.st-filters::-webkit-scrollbar { display: none; }
@media (max-width: 767px) {
  .st-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 8px;
  }
  .st-filter-btn {
    font-size: 13px;
    padding: 8px 14px;
    flex-shrink: 0;
  }
}

/* Cards: single column on small mobile */
@media (max-width: 479px) {
  .st-cards { grid-template-columns: 1fr; gap: 16px; }
}

/* Footer: stack on mobile */
@media (max-width: 767px) {
  .st-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .st-footer__desc { max-width: 100%; }
}

/* Hero: smaller text on mobile */
@media (max-width: 479px) {
  .st-h1 { font-size: 36px; }
  .st-hero__subtitle { font-size: 15px; }
  .st-hero__actions { flex-direction: column; gap: 12px; }
  .st-hero__actions .st-btn { width: 100%; text-align: center; }
}

/* Article body: tighter padding on mobile */
@media (max-width: 479px) {
  .st-article__body { padding: 32px 16px 60px; }
  .st-article__hero { padding: 48px 16px 32px; }
  .st-stat-box { padding: 20px; gap: 16px; flex-direction: column; }
  .st-stat-item { min-width: auto; }
}

/* Author box: stack on mobile */
@media (max-width: 479px) {
  .st-author div[style*="display:flex"] {
    flex-direction: column;
    text-align: center;
  }
}

/* Pillar grid: single column on small mobile */
@media (max-width: 479px) {
  .st-pillars { grid-template-columns: 1fr; }
}

/* Product showcase: 2 columns on tablet, 1 on small mobile */
@media (max-width: 639px) {
  .st-section [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 479px) {
  .st-section [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
}

/* CTA band: full-width buttons on mobile */
@media (max-width: 479px) {
  .st-cta-band { padding: 48px 16px; }
  .st-cta-band .st-hero__actions { flex-direction: column; }
  .st-cta-band .st-btn { width: 100%; text-align: center; }
}

/* Mobile nav: ensure proper spacing */
.st-mob-nav {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Stat ticker: smaller on mobile */
@media (max-width: 479px) {
  .st-ticker__item { gap: 6px; padding: 0 16px; }
  .st-ticker__label { font-size: 11px; }
  .st-ticker__number { font-size: 14px; }
}

/* Section headers: tighter on mobile */
@media (max-width: 479px) {
  .st-section { padding: 48px 0; }
  .st-section__header { margin-bottom: 24px; }
  .st-eyebrow { font-size: 11px; }
}

/* Sitemap: responsive grid */
@media (max-width: 640px) {
  .sm-grid-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── AUTHOR BIO ────────────────────────────────────────────────────────── */
.st-author-bio { display: flex; gap: 1.25rem; align-items: flex-start; margin-top: 3rem; padding: 1.5rem; background: rgba(0,213,120,0.04); border: 1px solid rgba(0,213,120,0.12); border-radius: 10px; }
.st-author-bio__photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.st-author-bio__name { font-family: var(--st-display); font-size: 16px; font-weight: 700; color: var(--st-white); text-transform: uppercase; }
.st-author-bio__role { font-size: 12px; color: var(--st-green); margin-bottom: 0.5rem; }
.st-author-bio__text { font-size: 14px; color: var(--st-gray); line-height: 1.6; margin: 0; }
@media (max-width: 600px) {
  .st-author-bio { flex-direction: column; align-items: center; text-align: center; }
}

/* ── FAQ STYLES ────────────────────────────────────────────────────────── */
.st-article__faq { margin-top: 3rem; border-top: 1px solid rgba(149,154,162,0.15); padding-top: 2rem; }
.st-article__faq h2 { font-family: var(--st-display); font-size: 24px; font-weight: 700; text-transform: uppercase; color: var(--st-white); margin-bottom: 1.5rem; }
.st-article__faq-item { margin-bottom: 1.5rem; }
.st-article__faq-q { font-weight: 600; color: var(--st-white); font-size: 16px; margin-bottom: 0.5rem; }
.st-article__faq-a { color: var(--st-gray); font-size: 15px; line-height: 1.6; }

/* ── KEY TAKEAWAY ──────────────────────────────────────────────────────── */
.st-key-takeaway { background: rgba(0,213,120,0.06); border-left: 3px solid var(--st-green); border-radius: 0 8px 8px 0; padding: 1rem 1.25rem; margin: 1.5rem 0; font-size: 15px; line-height: 1.6; color: var(--st-white); }
.st-key-takeaway strong { color: var(--st-green); }

/* ── PRINT STYLES ───────────────────────────────────────────────────────── */
@media print {
  .st-nav, .st-mob-nav, .st-hamburger, .st-footer, .st-ticker { display: none !important; }
  body { background: white; color: black; }
  .st-hero { min-height: auto; padding-top: 20px; }
  .rv { opacity: 1 !important; transform: none !important; }
}
