﻿/* ===== Forecast Frontier — Shared Site Styles ===== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #1a1a2e;
  background-color: #f8f9fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d4ed8;
}

/* ===== Navigation ===== */
.preview-nav {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.35);
  overflow: visible;
  isolation: isolate;
}

.preview-nav::before {
  content: '';
  position: absolute;
  top: -80%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.preview-nav::after {
  content: '';
  position: absolute;
  bottom: -90%;
  left: 5%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.preview-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
  position: relative;
  z-index: 2;
  overflow: visible;
}

.preview-nav__logo {
  font-weight: 700;
  font-size: 1.125rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-decoration: none;
}

.preview-nav__logo:hover {
  color: #ffffff;
}

.preview-nav__logo span {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preview-nav__links {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.preview-nav__links li {
  display: flex;
  align-items: center;
}

.preview-nav__links > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    border-radius 0.25s ease,
    color 0.25s ease;
  box-shadow: none;
}

.preview-nav__links > li > a:hover,
.preview-nav__links > li > a.active:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(-4px);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 2px 6px rgba(37, 99, 235, 0.25);
}

.preview-nav__links > li > a:active,
.preview-nav__links > li > a.active:active {
  transform: translateY(-1px);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.preview-nav__links > li > a.active {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* ===== Nav Dropdown (About Us) ===== */
.preview-nav__dropdown {
  position: relative;
  z-index: 50;
}

.preview-nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  box-shadow: none;
  transform: none;
  transition: color 0.2s ease;
}

.preview-nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.preview-nav__dropdown.is-open .preview-nav__dropdown-toggle svg,
.preview-nav__dropdown:hover .preview-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.preview-nav__dropdown-toggle:hover,
.preview-nav__dropdown-toggle.active,
.preview-nav__dropdown-toggle.active:hover,
.preview-nav__dropdown.is-open .preview-nav__dropdown-toggle {
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.preview-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 50%;
  right: auto;
  min-width: 0;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0.375rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 4px 16px rgba(15, 23, 42, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 9999;
  pointer-events: none;
}

.preview-nav__dropdown.is-open .preview-nav__dropdown-menu,
.preview-nav__dropdown:hover .preview-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Invisible hover bridge — prevents gap between button and menu */
.preview-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.625rem;
  left: 0;
  right: 0;
  height: 0.625rem;
}

.preview-nav__dropdown-menu li {
  display: block;
  width: 100%;
}

.preview-nav__dropdown-divider {
  height: 1px;
  margin: 0.125rem 0.875rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.15) 15%,
    rgba(156, 163, 175, 0.55) 50%,
    rgba(156, 163, 175, 0.15) 85%,
    transparent 100%
  );
  pointer-events: none;
}

.preview-nav__dropdown-menu a {
  display: block;
  width: 100%;
  padding: 0.5rem 1.125rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  background: transparent;
  border: none;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    color 0.2s ease;
}

.preview-nav__dropdown-menu a:hover {
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 0;
  transform: translateY(-3px);
  box-shadow: none;
}

.preview-nav__dropdown-menu a.active {
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 0;
  font-weight: 600;
}

.preview-nav__dropdown-menu a.active:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

@media (max-width: 768px) {
  .preview-nav__dropdown {
    width: 100%;
  }

  .preview-nav__dropdown-toggle {
    width: 100%;
  }

  .preview-nav__dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: none;
    box-shadow: none;
    transform: none;
    transition: max-height 0.25s ease, padding 0.25s ease, visibility 0.25s ease;
  }

  .preview-nav__dropdown.is-open .preview-nav__dropdown-menu {
    visibility: visible;
    max-height: 200px;
    padding: 0.375rem 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transform: none;
    width: 100%;
  }

  .preview-nav__dropdown:hover .preview-nav__dropdown-menu {
    visibility: hidden;
    max-height: 0;
    padding: 0;
    border: none;
  }

  .preview-nav__dropdown.is-open:hover .preview-nav__dropdown-menu {
    visibility: visible;
    max-height: 200px;
    padding: 0.375rem 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ===== SPA Page Views ===== */
#app {
  position: relative;
  z-index: 1;
}

.page-view {
  display: none;
}

.page-view.is-active {
  display: block;
}

.wp-entry-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #eef0f4;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.site-footer a {
  color: #6b7280;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #6b7280;
}

.breadcrumb a:hover {
  color: #2563eb;
}

.breadcrumb__sep {
  color: #d1d5db;
}

/* ===== Page Header (Archive pages) ===== */
.page-header {
  margin-bottom: 3rem;
}

.page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 1rem;
}

.page-header__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 2px;
}

.page-header__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%) 1;
}

.page-header__desc {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 640px;
  line-height: 1.65;
}

/* ===== Contact Us Page ===== */
.contact-page {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.about-page-header {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.submissions-page {
  padding-top: 2rem;
}

.submissions-page .about-panel {
  margin-top: 0;
}

.contact-page__wrap {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-page__header {
  margin-bottom: 0;
}

.contact-page__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 1.125rem;
}

.contact-page__title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 1.25rem;
}

.contact-page__lead {
  font-size: 1.0625rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.contact-page__divider {
  height: 1px;
  margin: 2.75rem auto;
  max-width: 320px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(156, 163, 175, 0.2) 20%,
    rgba(156, 163, 175, 0.45) 50%,
    rgba(156, 163, 175, 0.2) 80%,
    transparent 100%
  );
}

.contact-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  border-radius: 16px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(248, 250, 252, 0.85) 50%,
    rgba(239, 246, 255, 0.5) 100%
  );
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.03),
    0 8px 32px rgba(37, 99, 235, 0.06);
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(37, 99, 235, 0.35) 30%,
    rgba(124, 58, 237, 0.45) 50%,
    rgba(37, 99, 235, 0.35) 70%,
    transparent 100%
  );
}

.contact-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.contact-card__title {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 0.875rem;
}

.contact-card__desc {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto 1.75rem;
}

.contact-card__email {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-card__email:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.contact-card__tags {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.contact-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #d1d5db;
}

.contact-card__note {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  font-size: 0.8125rem;
  color: #9ca3af;
  letter-spacing: 0.01em;
}

/* ===== Article Grid & Cards ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.article-grid--featured-first {
  grid-template-columns: 1fr;
}

.article-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 14px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.article-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #7c3aed 55%, #06b6d4 100%);
  opacity: 0.9;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.article-card--featured {
  flex-direction: column;
  min-height: 260px;
}

.article-card__visual {
  display: none;
}

.article-card--featured .article-card__visual {
  display: none;
}

.article-card__visual::before {
  display: none;
}

.article-card__tag {
  display: none;
}

.article-card__tagline {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.article-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
}

.article-card--featured .article-card__body {
  padding: 2.5rem;
  justify-content: center;
}

.article-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.article-card--featured .article-card__title {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

.article-card__title a {
  color: inherit;
  text-decoration: none;
}

.article-card__title a:hover {
  color: #2563eb;
}

.article-card__excerpt {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.article-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  margin-top: auto;
}

.article-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.article-card:hover .article-card__link svg {
  transform: translateX(4px);
}

.article-card--soon {
  opacity: 0.85;
}

.article-card--soon .article-card__visual {
  display: none;
}

/* ===== Home Featured Insights ===== */
.featured-insights__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.featured-insights__card {
  min-height: 260px;
}

.featured-insights__card:nth-child(even) .article-card__visual {
  order: initial;
}

.featured-insights__card:nth-child(even) .article-card__body {
  order: initial;
}

.reveal-on-scroll {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
  will-change: opacity, transform;
}

.reveal-from-left {
  transform: translateX(-56px);
}

.reveal-from-right {
  transform: translateX(56px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .reveal-from-left,
  .reveal-from-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.soon-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 0.25rem 0.625rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ===== Home — Hero ===== */
.page-view[data-view="home"] .wp-entry-content {
  padding-top: 0;
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 34%),
    radial-gradient(circle at 10% 42%, rgba(124, 58, 237, 0.12) 0%, rgba(124, 58, 237, 0) 34%),
    linear-gradient(180deg, #0f172a 0%, #111827 50%, #263149 78%, #f8f9fb 100%);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  padding: clamp(4rem, 8vw, 6.5rem) max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  position: relative;
  overflow: hidden;
  margin-bottom: 4.5rem;
  min-height: 540px;
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 249, 251, 0.08) 0%, rgba(248, 249, 251, 0) 7%, rgba(248, 249, 251, 0) 93%, rgba(248, 249, 251, 0.08) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 52%, transparent 78%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 1.375rem;
}

.hero__eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.7rem, 6.2vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 1.5rem;
  max-width: 860px;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 700px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.5);
}

.btn--ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== Home — Stats Strip ===== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 14px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.stat-card__number {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.stat-card__label {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* ===== Home — Section Block ===== */
.section-block {
  margin-bottom: 3.5rem;
}

.section-block__header {
  margin-bottom: 2rem;
}

.section-block__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-block__desc {
  font-size: 1rem;
  color: #6b7280;
  max-width: 560px;
}

/* ===== Home — Pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.pillar-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.625rem;
}

.pillar-card__text {
  font-size: 0.9375rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.pillar-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
}

/* ===== Home — Vision Banner ===== */
.vision-banner {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 16px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.vision-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.vision-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.vision-banner__quote {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.vision-banner__author {
  font-size: 0.9375rem;
  color: #94a3b8;
}

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.about-panel {
  background: #ffffff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.about-panel__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #2563eb, #7c3aed) 1;
}

.about-panel__desc {
  font-size: 0.9375rem;
  color: #6b7280;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.contact-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.9375rem;
  color: #374151;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
}

.contact-form .field {
  margin-bottom: 1.25rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-panel {
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 0;
}

.submit-panel__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.75rem;
}

.submit-panel__desc {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.submit-panel ul {
  list-style: none;
  margin-bottom: 1.75rem;
}

.submit-panel ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: #374151;
}

.submit-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

/* ===== Hot-spots Forecast Article Component ===== */
.hs-forecast {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef0f4;
}

.hs-forecast__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 1.25rem;
}

.hs-forecast__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 2px;
}

.hs-forecast__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #111827;
  padding-left: 1.25rem;
  border-left: 4px solid transparent;
  border-image: linear-gradient(180deg, #2563eb 0%, #7c3aed 50%, #ec4899 100%) 1;
  margin-bottom: 1.5rem;
}

.hs-forecast__subtitle {
  font-size: 1.1875rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 720px;
}

.hs-forecast__divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, #e8eaef 0%, transparent 100%);
  margin-bottom: 2.5rem;
}

.hs-forecast__body p {
  margin-bottom: 1.25rem;
  color: #374151;
}

.hs-forecast__body p:last-of-type {
  margin-bottom: 0;
}

.hs-forecast__body strong {
  font-weight: 600;
  color: #111827;
}

.hs-forecast__body ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.hs-forecast__body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  color: #374151;
}

.hs-forecast__body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.hs-forecast__highlight {
  background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.hs-forecast__highlight p {
  margin: 0;
  font-size: 0.9375rem;
  color: #1e40af;
  font-weight: 500;
  line-height: 1.6;
}

.hs-forecast__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eef0f4;
}

.hs-forecast__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #9ca3af;
}

.hs-forecast__meta-item strong {
  color: #6b7280;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .article-card--featured {
    flex-direction: column;
  }

  .article-card--featured .article-card__visual {
    flex: none;
    min-height: 200px;
  }

  .featured-insights__card:nth-child(even) .article-card__visual,
  .featured-insights__card:nth-child(even) .article-card__body {
    order: initial;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .preview-nav__inner {
    flex-direction: column;
    padding: 1rem 1.25rem;
    min-height: auto;
    gap: 0.875rem;
  }

  .preview-nav__links {
    justify-content: center;
    gap: 0.5rem;
  }

  .preview-nav__links > li > a {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.75rem;
  }

  .wp-entry-content {
    padding: 2rem 1rem 3.5rem;
  }

  .hero {
    padding: 3.25rem 1.5rem 4rem;
    border-radius: 0;
    min-height: auto;
  }

  .hero__title {
    letter-spacing: -0.04em;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .hs-forecast {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .hs-forecast__title {
    padding-left: 1rem;
    border-left-width: 3px;
  }

  .hs-forecast__subtitle {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
  }

  .hs-forecast__highlight {
    padding: 1.25rem;
  }

  .hs-forecast__meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .about-panel {
    padding: 1.75rem;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card__email {
    font-size: 0.9375rem;
    word-break: break-all;
  }

  .vision-banner {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .preview-nav__links {
    gap: 0.375rem;
  }

  .preview-nav__links > li > a {
    font-size: 0.625rem;
    letter-spacing: 0.04em;
    padding: 0.375rem 0.625rem;
  }
}
/* ===== WordPress Block Theme Hardening ===== */
.forecastfrontier-shell,
#app,
.wp-site-blocks > .forecastfrontier-shell,
.wp-entry-content,
.entry-content .wp-entry-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.entry-title,
.post-title,
.entry-header {
  display: none !important;
}

.article-card__visual.has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.article-card--loading,
.article-card--empty {
  min-height: 220px;
}

.article-card--loading .article-card__title,
.article-card--empty .article-card__title {
  color: #1f2937;
}

.wordpress-managed-content {
  display: none;
}
