/* ============================================================
   THE EXETER — Component Styles
   ============================================================ */

/* ===========================================
   NAVIGATION
   =========================================== */

/* ----- Scroll Progress Bar ----- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 1001;
  transform-origin: left;
  transform: scaleX(0);
  width: 100%;
  transition: none;
}

/* ----- Sticky Header ----- */
.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: transform var(--transition-base);
}

.site-header--hidden {
  transform: translateY(calc(-100% - 3px));
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.site-header__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-left: var(--space-lg);
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-left: auto;
}

.site-header__link {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.site-header__link:hover,
.site-header__link--active {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__title {
    font-size: 0.8rem;
  }
}

/* ----- Dot Navigator ----- */
.dot-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot-nav__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  padding: 0;
  position: relative;
}

.dot-nav__dot:hover {
  background: var(--grey-500);
  transform: scale(1.3);
}

.dot-nav__dot--active {
  background: var(--accent);
  transform: scale(1.3);
  animation: dotPulse 2s ease infinite;
}

.dot-nav__label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  background: var(--bg-white);
  padding: 4px 8px;
  border-radius: 3px;
  box-shadow: var(--shadow-sm);
}

.dot-nav__dot:hover .dot-nav__label {
  opacity: 1;
}

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

/* ===========================================
   HERO / COVER SLIDES
   =========================================== */

/* ----- Full-Screen Cover ----- */
.hero-cover {
  min-height: 100vh;
  background-color: var(--accent);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero-cover__content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-cover__overline {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--near-black);
  margin-bottom: var(--space-lg);
}

.hero-cover__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--near-black);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: var(--space-xl);
}

.hero-cover__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 300;
  color: var(--charcoal);
  max-width: 600px;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.hero-cover__meta {
  font-size: 0.875rem;
  color: var(--charcoal);
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-cover__accent-line {
  width: 60px;
  height: 4px;
  background: var(--near-black);
  margin-bottom: var(--space-xl);
}

/* Dark cover variant (add .hero-cover--dark to .hero-cover) */
.hero-cover--dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.hero-cover--dark .hero-cover__overline {
  color: var(--accent);
}

.hero-cover--dark .hero-cover__title {
  color: var(--text-inverse);
}

.hero-cover--dark .hero-cover__subtitle {
  color: var(--grey-400);
}

.hero-cover--dark .hero-cover__meta {
  color: var(--grey-500);
}

.hero-cover--dark .hero-cover__accent-line {
  background: var(--accent);
}

.hero-cover--dark .scroll-indicator {
  color: var(--grey-500);
}

.hero-cover--dark .scroll-indicator__arrow {
  border-color: var(--grey-500);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--charcoal);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-indicator__arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

/* ----- Chapter Opener ----- */
.chapter-opener {
  padding: var(--space-5xl) 0;
  position: relative;
}

.chapter-opener__number {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 12vw, 10rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.chapter-opener__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 600px;
}

.chapter-opener__description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-top: var(--space-md);
}

/* ===========================================
   CONTENT PANELS
   =========================================== */

/* ----- Text Block ----- */
.text-block {
  max-width: var(--max-width-text);
}

.text-block--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ----- Two-Column Text ----- */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.two-col-text__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

@media (max-width: 768px) {
  .two-col-text {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ----- Numbered List Panel ----- */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.numbered-list__item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.numbered-list__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.numbered-list__content h4 {
  margin-bottom: var(--space-xs);
}

.numbered-list__content p {
  color: var(--text-secondary);
}

/* ----- Icon + Text Feature Grid ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.feature-grid__item {
  text-align: center;
  padding: var(--space-xl);
}

.feature-grid__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
  font-size: 1.5rem;
}

.feature-grid__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-grid__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ===========================================
   DATA VISUALISATION
   =========================================== */

/* ----- Large Stat / KPI Cards ----- */
.stat-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--bg-white);
  border-radius: 4px;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-card__description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}

/* Dark variant */
.stat-card--dark {
  background: var(--bg-dark);
  border-top-color: var(--accent);
}

.stat-card--dark .stat-card__number {
  color: var(--text-inverse);
}

.stat-card--dark .stat-card__label {
  color: var(--grey-400);
}

/* ----- Stat Row ----- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.stat-row__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.stat-row__suffix {
  font-size: 0.6em;
  font-weight: 700;
  color: var(--accent);
}

.stat-row__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----- Progress Bars ----- */
.progress-bar {
  margin-bottom: var(--space-lg);
}

.progress-bar__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.progress-bar__label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
}

.progress-bar__value {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

.progress-bar__track {
  height: 8px;
  background: var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  width: 0%;
  transition: width 1.2s ease;
}

.progress-bar__fill--charcoal {
  background: var(--charcoal);
}

/* ----- Comparison Table ----- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 3px solid var(--accent);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.comparison-table tbody td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.comparison-table tbody tr:hover {
  background: var(--grey-50);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ----- Before / After Panel ----- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.before-after__panel {
  padding: var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.before-after__panel--before {
  background: var(--grey-100);
}

.before-after__panel--after {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.before-after__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.before-after__panel--after h3,
.before-after__panel--after h4 {
  color: var(--text-inverse);
}

.before-after__panel--after p {
  color: var(--grey-300);
}

@media (max-width: 768px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}

/* ----- Chart Placeholder ----- */
.chart-placeholder {
  background: var(--grey-50);
  border: 2px dashed var(--border-dark);
  border-radius: 8px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ===========================================
   QUOTES & INSIGHTS
   =========================================== */

/* ----- Pull Quote ----- */
.pull-quote {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.pull-quote__accent {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto var(--space-xl);
}

.pull-quote__text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.pull-quote__attribution {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ----- Insight Callout ----- */
.insight-callout {
  border-left: 4px solid var(--accent);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--grey-50);
  border-radius: 0 4px 4px 0;
}

.insight-callout__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.insight-callout__text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ----- Highlighted Key Finding ----- */
.key-finding {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-4xl) var(--space-xl);
  text-align: center;
}

.key-finding__number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.key-finding__text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  color: var(--grey-300);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ===========================================
   MEDIA
   =========================================== */

/* ----- Full-Bleed Image with Overlay ----- */
.image-banner {
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 27, 0.7);
}

.image-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-inverse);
  padding: var(--space-xl);
  max-width: var(--max-width-narrow);
}

.image-banner__content h2 {
  color: var(--text-inverse);
}

.image-banner__content p {
  color: var(--grey-300);
}

/* ----- Image + Text Side by Side ----- */
.image-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.image-text--reverse {
  direction: rtl;
}

.image-text--reverse > * {
  direction: ltr;
}

.image-text__image {
  border-radius: 4px;
  overflow: hidden;
}

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

@media (max-width: 768px) {
  .image-text,
  .image-text--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ----- Video Embed ----- */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--near-black);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===========================================
   TIMELINE & PROCESS
   =========================================== */

/* ----- Horizontal Process Steps ----- */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: var(--space-xl) 0;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: calc(var(--space-xl) + 14px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-200);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md);
}

.process-step__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--near-black);
  margin-bottom: var(--space-md);
  flex-shrink: 0;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.process-step__text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  max-width: 180px;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: var(--space-xl);
    align-items: flex-start;
  }
  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 14px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-md);
  }
  .process-step__text {
    max-width: none;
  }
}

/* ----- Vertical Timeline ----- */
.timeline {
  position: relative;
  padding: var(--space-xl) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--grey-200);
  transform: translateX(-50%);
}

.timeline__item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  padding-bottom: var(--space-3xl);
  position: relative;
}

.timeline__item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline__marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--grey-200);
}

.timeline__content {
  max-width: 400px;
}

.timeline__date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.timeline__content h4 {
  margin-bottom: var(--space-xs);
}

.timeline__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }
  .timeline__item,
  .timeline__item:nth-child(even) {
    padding-left: 40px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .timeline__marker {
    left: 8px;
  }
}

/* ===========================================
   FOOTER / CLOSING
   =========================================== */

/* ----- Next Steps / Contact ----- */
.next-steps {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: var(--space-5xl) 0;
}

.next-steps h2,
.next-steps h3 {
  color: var(--text-inverse);
}

.next-steps p {
  color: var(--grey-400);
}

.next-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.next-steps__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: var(--space-xl);
}

.next-steps__item-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.next-steps__item h4 {
  color: var(--text-inverse);
  margin-bottom: var(--space-xs);
}

.next-steps__item p {
  font-size: 0.9375rem;
  color: var(--grey-400);
}

/* ----- Source / Footnote Bar ----- */
.footnote-bar {
  background: var(--grey-100);
  padding: var(--space-lg) 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Thank You / Closing Slide ----- */
.closing-slide {
  min-height: 80vh;
  background: var(--bg-dark);
  color: var(--text-inverse);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-xl);
}

.closing-slide__logo {
  height: 48px;
  margin-bottom: var(--space-2xl);
  filter: brightness(0) invert(1);
}

.closing-slide__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-inverse);
  margin-bottom: var(--space-lg);
}

.closing-slide__contact {
  color: var(--grey-400);
  font-size: 1rem;
}

.closing-slide__contact a {
  color: var(--accent);
  transition: opacity var(--transition-fast);
}

.closing-slide__contact a:hover {
  opacity: 0.8;
}

/* ===========================================
   UI ELEMENTS
   =========================================== */

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--near-black);
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #e6d600;
  border-color: #e6d600;
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-dark);
}

.btn--outline:hover {
  border-color: var(--text-primary);
  background: var(--grey-50);
}

.btn--dark {
  background: var(--near-black);
  color: var(--text-inverse);
  border-color: var(--near-black);
}

.btn--dark:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline-inverse {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-inverse:hover {
  border-color: var(--text-inverse);
  background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
  font-size: 0.75rem;
  padding: 8px 20px;
}

.btn--lg {
  font-size: 0.875rem;
  padding: 16px 36px;
}

/* ----- Pills / Tags ----- */
.pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--grey-100);
  color: var(--text-secondary);
}

.pill--yellow {
  background: var(--accent);
  color: var(--near-black);
}

.pill--dark {
  background: var(--near-black);
  color: var(--text-inverse);
}

.pill--outline {
  background: transparent;
  border: 1px solid var(--border-dark);
  color: var(--text-secondary);
}

/* ----- Dividers ----- */
.divider {
  border: none;
  height: 1px;
  background: var(--border-light);
  margin: var(--space-2xl) 0;
}

.divider--accent {
  height: 3px;
  background: var(--accent);
  width: 60px;
}

.divider--short {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: var(--space-lg) 0;
}

.divider--centered {
  margin-left: auto;
  margin-right: auto;
}

/* ----- Animated Number Counter ----- */
.counter {
  font-family: var(--font-heading);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
