/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: var(--gradient-hero);
  color: var(--text-white);
  padding-top: var(--space-20);
  padding-bottom: var(--space-24);
  overflow: hidden;
}

.hero-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(159, 195, 33, 0.22) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: var(--radius-full);
  pointer-events: none;
  filter: blur(40px);
}

.hero-glow-2 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(80, 191, 226, 0.18) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  border-radius: var(--radius-full);
  pointer-events: none;
  filter: blur(50px);
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 992px) {
  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero-title .highlight {
  color: var(--accent-green-bright);
  display: inline-block;
  position: relative;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-8);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero-card-preview {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  color: var(--text-main);
  position: relative;
}

.hero-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Impact Statistics Ribbon
   ========================================================================== */
.stats-ribbon {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: var(--space-10) 0;
  position: relative;
  z-index: 20;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

@media (min-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4);
}

.stat-number {
  font-family: var(--font-family-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-number.text-green {
  color: var(--accent-green-dark);
}

.stat-number.text-cyan {
  color: var(--accent-blue-dark);
}

.stat-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--slate-dark);
  margin-bottom: var(--space-1);
}

.stat-desc {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  max-width: 180px;
}

/* ==========================================================================
   Interactive Locator Component
   ========================================================================== */
.locator-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.locator-search-bar {
  background: var(--gradient-purple);
  padding: var(--space-8);
  color: var(--text-white);
}

.locator-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: flex-end;
}

@media (min-width: 768px) {
  .locator-form {
    grid-template-columns: 2fr 1fr 1fr auto;
  }
}

.locator-field label {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
  color: rgba(255, 255, 255, 0.9);
}

.locator-field input,
.locator-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #ffffff;
  color: var(--text-main);
  font-size: var(--font-size-sm);
  font-family: inherit;
  outline: none;
}

.locator-tabs {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background-color: var(--slate-subtle);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.locator-tab-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.locator-tab-btn.active,
.locator-tab-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.locator-content {
  display: grid;
  grid-template-columns: 1fr;
  height: 600px;
}

@media (min-width: 992px) {
  .locator-content {
    grid-template-columns: 1fr 1.2fr;
  }
}

.locator-list {
  overflow-y: auto;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background-color: var(--bg-main);
  border-right: 1px solid var(--border);
}

.location-item-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.location-item-card:hover,
.location-item-card.selected {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.location-item-card .loc-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--slate-dark);
  margin-bottom: var(--space-1);
}

.location-item-card .loc-address {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.locator-map {
  background-color: #e5e7eb;
  position: relative;
  min-height: 350px;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Accepted Materials Matrix
   ========================================================================== */
.matrix-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .matrix-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.matrix-card {
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 2px solid;
}

.matrix-card.accepted {
  background-color: var(--accent-green-subtle);
  border-color: var(--accent-green);
}

.matrix-card.not-accepted {
  background-color: #fdf2f4;
  border-color: #f43f5e;
}

.matrix-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.matrix-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.matrix-card.accepted .matrix-icon-badge {
  background-color: var(--accent-green);
  color: var(--slate-darker);
}

.matrix-card.not-accepted .matrix-icon-badge {
  background-color: #f43f5e;
  color: #ffffff;
}

.matrix-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--slate-dark);
  font-weight: var(--font-weight-medium);
}

.matrix-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   Circular Recycling Step Cards
   ========================================================================== */
.step-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #ffffff;
  font-weight: var(--font-weight-extrabold);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-4);
  box-shadow: 0 4px 10px var(--primary-glow);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #0c1c2a 0%, #182e44 100%);
  color: var(--text-white);
  padding: var(--space-16) 0;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(178, 220, 30, 0.3) 0%, transparent 70%);
  border-radius: var(--radius-full);
  filter: blur(40px);
  pointer-events: none;
}

/* ==========================================================================
   Our Team Page Styles
   ========================================================================== */
.team-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 992px) {
  .team-spotlight-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.team-spotlight-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
}

.team-spotlight-img img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}


.team-hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-12) var(--space-8);
  background-color: #0c1430;
}

@media (min-width: 992px) {
  .team-hero-content-col {
    padding: var(--space-16) var(--space-12);
  }
}

.team-hero-title {
  color: #50bfe2;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.team-hero-lead {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

/* Team Grid Section */
.team-grid-section {
  background-color: #4bbbe1;
  padding: var(--space-16) var(--space-4) var(--space-20);
}

.team-members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12) var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .team-members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team-members-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-14) var(--space-8);
  }
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: var(--space-5);
  box-shadow: 0 8px 24px rgba(12, 28, 56, 0.16);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  background-color: #ffffff;
}

.team-member-card:hover .team-member-avatar {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 16px 32px rgba(12, 28, 56, 0.22);
}

.team-member-name {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: var(--space-2);
  letter-spacing: -0.01em;
}

.team-member-role {
  color: #0c1c38;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.45;
  max-width: 280px;
  margin: 0 auto;
}

.team-member-divider {
  width: 32px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.75);
  margin: var(--space-3) auto;
  border-radius: 2px;
}

.team-member-email {
  color: #17274e;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-member-email:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Team Jobs Section */
.team-jobs-section {
  background-color: #eaf1f6;
  padding: var(--space-16) var(--space-4);
  text-align: center;
}

.team-jobs-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--space-6);
}

.team-jobs-title a {
  color: #4b3d75;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-jobs-title a:hover {
  color: #312652;
  text-decoration: underline;
}

.team-jobs-action {
  margin-bottom: var(--space-4);
}

.team-jobs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: #4bbbe1;
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(75, 187, 225, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.team-jobs-btn:hover {
  background-color: #38a5c9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75, 187, 225, 0.45);
}

.team-jobs-sub {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}

.team-jobs-sub a {
  color: #1c4565;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-jobs-sub a:hover {
  color: #0c1c2a;
  text-decoration: underline;
}

/* ==========================================================================
   Article Detail Page Typography & Layout
   ========================================================================== */
.article-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.article-breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.article-breadcrumbs a:hover {
  color: var(--accent-green-bright);
}

.article-breadcrumbs .breadcrumb-sep {
  opacity: 0.5;
}

.article-meta-bar {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.85);
  margin-top: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.article-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.article-featured-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin-bottom: var(--space-10);
  background-color: var(--slate-subtle);
}

.article-featured-media img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--slate-dark);
}

.article-content p {
  margin-bottom: var(--space-5);
}

.article-content p.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--slate-darker);
  font-weight: 500;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  color: var(--slate-darker);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.article-content a:hover {
  color: var(--primary-darker);
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--slate-subtle);
  padding: var(--space-5) var(--space-6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--space-6) 0;
  font-style: italic;
  color: var(--slate-dark);
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--space-4) 0;
}

.article-content ul,
.article-content ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
}

.article-content li {
  margin-bottom: var(--space-2);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--slate-subtle);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: var(--space-10);
  margin-bottom: var(--space-8);
}

.article-author-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--primary-glow);
}


