/* ==========================================================================
   eMagazine Style Architecture: Financial Times x Nikkei Asia x VnExpress Premium
   Topic: Từ cây chuối quê nhà đến chuỗi giá trị xanh (HTX Hương Trà, Huế)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&subset=vietnamese&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #FAF9F6;
  --bg-card: #FFFFFF;
  --bg-kraft: #F5EFE6;
  --bg-dark: #0F2312;

  --text-main: #1C281E;
  --text-muted: #4A5D4E;
  --text-light: #b3ff00;

  --color-green-main: #2E7D32;
  --color-green-dark: #1B5E20;
  --color-green-light: #4CAF50;
  --color-olive: #556B2F;
  --color-olive-light: #8FBC8F;

  --color-gold: #C68B59;
  --color-gold-light: #E9D8A6;
  --color-banana-fiber: #D4A373;
  --color-wood: #5C3D2E;
  --color-kraft: #DDBEA9;

  --border-light: rgba(46, 125, 50, 0.12);
  --border-gold: rgba(198, 139, 89, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', 'Merriweather', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-article: 'Merriweather', Georgia, serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(46, 125, 50, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 35, 18, 0.15);

  /* Layout */
  --content-max-width: 760px;
  --wide-max-width: 1280px;
}

/* Theme Options */
[data-theme="dark"] {
  --bg-primary: #0B190D;
  --bg-card: #142817;
  --bg-kraft: #1C331E;
  --text-main: #EAEFEA;
  --text-muted: #A3B8A6;
  --text-light: #768F7A;
  --border-light: rgba(255, 255, 255, 0.1);
}

[data-theme="kraft"] {
  --bg-primary: #F4EAD4;
  --bg-card: #EFE2C6;
  --bg-kraft: #E4D3B2;
  --text-main: #2C2218;
  --text-muted: #594737;
  --border-light: rgba(92, 61, 46, 0.15);
}

/* Base Reset & Smooth Scroll */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Fixed Top Reading Progress Bar */
.progress-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-green-main), var(--color-gold));
  z-index: 10000;
  transition: width 0.1s linear;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 2rem 4rem 2rem;
  background-color: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1);
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 255, 38, 0.4) 0%,
      rgba(15, 35, 18, 0.2) 50%,
      rgba(15, 35, 18, 0.95) 100%);
  z-index: 2;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: var(--wide-max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 163, 115, 0.25);
  border: 1px solid rgba(212, 163, 115, 0.5);
  color: var(--color-gold-light);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw + 1rem, 4.2rem);
  font-weight: 800;
  line-height: 1.35;
  padding-top: 8px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(203, 246, 32, 0.269);
  background: linear-gradient(135deg, #FFFFFF 60%, var(--color-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-article);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 950px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
}

/* Info Bar Below Hero */
.hero-info-bar {
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
}

.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.info-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

/* Intro Lead Box Right Above Section 1 */
.intro-lead-section {
  padding: 4rem 0 1rem 0;
}

.intro-lead-card {
  background: var(--bg-card);
  border-left: 5px solid var(--color-green-main);
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-radius: 0 16px 16px 0;
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
}

.intro-lead-card p {
  font-family: var(--font-article);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-main);
  font-style: italic;
}

/* Article Container Layout */
.article-section {
  padding: 3rem 0;
}

.article-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wide-container {
  max-width: var(--wide-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Editorial Typography */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-green-main);
  margin-bottom: 0.5rem;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  padding-top: 4px;
  color: var(--text-main);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

p.lead-paragraph {
  font-family: var(--font-article);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 1.75rem;
}

p.lead-paragraph::first-letter {
  font-family: var(--font-serif);
  font-size: 4rem;
  float: left;
  line-height: 0.8;
  padding-top: 4px;
  padding-right: 12px;
  padding-bottom: 4px;
  color: var(--color-green-main);
  font-weight: 700;
}

.article-body p {
  font-family: var(--font-article);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-main);
  margin-bottom: 1.75rem;
}

.author-byline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green-dark);
  text-align: right;
  margin-top: 2rem;
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

/* Full-Width Centered Infographic Wrapper Extension */
.infographic-wrapper-wide {
  width: 100vw;
  max-width: min(var(--wide-max-width), 94vw);
  margin: 4.5rem auto;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  box-sizing: border-box;
}

.infographic-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.infographic-badge {
  display: inline-block;
  background: var(--bg-kraft);
  color: var(--color-wood);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.infographic-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  padding-top: 4px;
  color: var(--color-green-dark);
}

[data-theme="dark"] .infographic-title {
  color: var(--color-gold-light);
}

/* Image Showcase & Parallax */
.article-image-figure {
  margin: 3rem 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-image-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-image-figure:hover img {
  transform: scale(1.03);
}

figcaption {
  padding: 1rem 1.5rem;
  background: var(--bg-card);
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

figcaption svg {
  color: var(--color-green-main);
  flex-shrink: 0;
}

/* INFOGRAPHIC 1: Horizontal Flow Diagram */
.flow-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  padding: 1rem 0;
  width: 100%;
}

.flow-step {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: 18px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  flex: 1 1 140px;
  max-width: 170px;
  min-width: 135px;
  transition: all 0.3s ease;
  position: relative;
}

.flow-step:hover {
  transform: translateY(-6px);
  border-color: var(--color-green-main);
  box-shadow: var(--shadow-md);
}

.flow-icon {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.flow-label {
  font-size: 1.125rem;
  /* Min 18px */
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-main);
  animation: arrowPulse 2s infinite ease-in-out;
}

.flow-arrow svg {
  width: 32px;
  height: 32px;
}

@keyframes arrowPulse {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

/* INFOGRAPHIC 2: KPI Executive Dashboard */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.kpi-card {
  background: linear-gradient(145deg, var(--bg-primary), var(--bg-card));
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-green-main), var(--color-gold));
}

.kpi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.kpi-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  /* 56px */
  font-weight: 800;
  color: var(--color-green-main);
  line-height: 1;
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .kpi-number {
  color: var(--color-gold-light);
}

.kpi-label {
  font-size: 1.2rem;
  /* >= 18px */
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.kpi-subtext {
  font-size: 1rem;
  color: var(--text-muted);
}

.kpi-icons-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px dashed var(--border-light);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.kpi-subicon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  /* 18px */
  font-weight: 600;
  color: var(--text-muted);
}

.kpi-subicon-item svg {
  width: 36px;
  height: 36px;
  color: var(--color-green-main);
}

/* INFOGRAPHIC 3: Circular Economy "ZERO WASTE" */
.circular-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 1.5rem 0;
  width: 100%;
}

.circle-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
}

.circle-center-node {
  background: linear-gradient(135deg, var(--color-green-main), var(--color-green-dark));
  color: #fff;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(46, 125, 50, 0.35);
  margin: 0.5rem 0;
  z-index: 2;
  border: 4px solid var(--color-gold-light);
  animation: pulseCenter 3s infinite ease-in-out;
}

@keyframes pulseCenter {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(46, 125, 50, 0.3);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 45px rgba(46, 125, 50, 0.6);
    transform: scale(1.03);
  }
}

.circle-center-node .icon {
  font-size: 3rem;
}

.circle-center-node .title {
  font-size: 1.2rem;
  /* 19px */
  font-weight: 800;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .circle-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .circle-center-node {
    width: 135px;
    height: 135px;
    margin: 0.5rem 0;
  }
}

.branch-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-left: 6px solid var(--color-green-main);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.branch-card:nth-child(2) {
  border-left-color: var(--color-gold);
}

.branch-card:nth-child(3) {
  border-left-color: var(--color-olive);
}

.branch-card:nth-child(4) {
  border-left-color: var(--color-wood);
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.branch-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.branch-icon {
  font-size: 2rem;
}

.branch-title {
  font-size: 1.25rem;
  /* > 18px */
  font-weight: 700;
  color: var(--text-main);
}

.branch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.branch-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 1.125rem;
  /* 18px */
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
}

/* INFOGRAPHIC 4: Pyramid Value-Add */
.pyramid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 0;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.pyramid-tier {
  width: 100%;
  padding: 1.1rem 1.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1.18rem;
  /* >= 18px */
  font-weight: 700;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
}

.pyramid-tier:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.pyramid-tier-top {
  width: 45%;
  background: linear-gradient(135deg, var(--color-gold), #B37644);
  font-size: 1.35rem;
  font-family: var(--font-serif);
  padding: 1.35rem 1.75rem;
  border: 2px solid var(--color-gold-light);
}

.pyramid-tier-8 {
  width: 52%;
  background: #2E7D32;
}

.pyramid-tier-7 {
  width: 59%;
  background: #388E3C;
}

.pyramid-tier-6 {
  width: 66%;
  background: #43A047;
}

.pyramid-tier-5 {
  width: 73%;
  background: #4CAF50;
  color: #1C281E;
}

.pyramid-tier-4 {
  width: 80%;
  background: #66BB6A;
  color: #1C281E;
}

.pyramid-tier-3 {
  width: 87%;
  background: #81C784;
  color: #1C281E;
}

.pyramid-tier-2 {
  width: 94%;
  background: #A5D6A7;
  color: #1C281E;
}

.pyramid-tier-base {
  width: 100%;
  background: #C8E6C9;
  color: #1C281E;
}

/* INFOGRAPHIC 5: 4-House Network Graph */
.network-wrapper {
  position: relative;
  width: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-node-center {
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--color-green-main);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(46, 125, 50, 0.4);
  z-index: 3;
  border: 4px solid #fff;
}

.network-satellites {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 13rem 20rem;
  width: 100%;
  max-width: 850px;
  z-index: 2;
}

.sat-node {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 1.2rem;
  /* >= 18px */
  font-weight: 700;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.sat-node:hover {
  border-color: var(--color-green-main);
  transform: scale(1.05);
}

.sat-icon {
  font-size: 2.25rem;
}

/* INFOGRAPHIC 6: Ecosystem Radial Layout */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.eco-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: all 0.3s ease;
}

.eco-item:hover {
  background: var(--color-green-main);
  color: #fff;
  transform: translateY(-4px);
}

.eco-item:hover .eco-label {
  color: #fff;
}

.eco-item:hover .eco-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.eco-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--bg-card);
  color: var(--color-green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.eco-icon-box svg {
  width: 26px;
  height: 26px;
}

.eco-label {
  font-size: 1.15rem;
  /* 18px+ */
  font-weight: 700;
  color: var(--text-main);
}

/* ENDING QUOTE SECTION */
.ending-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 6rem 2rem;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.ending-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
  z-index: 1;
}

.ending-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 35, 18, 0.5) 0%, rgba(15, 35, 18, 0.9) 100%);
  z-index: 2;
}

.ending-content {
  position: relative;
  z-index: 3;
  max-width: 950px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-gold-light);
  opacity: 0.6;
  margin-bottom: -2rem;
}

.ending-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.3vw + 0.5rem, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: #FFFFFF;
}

.author-name {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold-light);
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
  background: #0B190D;
  color: #A3B8A6;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: var(--wide-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.footer-meta {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 600px;
}

.footer-credits {
  font-size: 0.8rem;
  color: #768F7A;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .infographic-wrapper-wide {
    width: 100%;
    max-width: 100%;
    left: 0;
    transform: none;
    border-radius: 16px;
    padding: 2rem 1.25rem;
  }

  .network-satellites {
    gap: 10rem 8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 1rem 3rem 1rem;
  }

  .hero-info-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-divider {
    display: none;
  }

  .network-satellites {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }

  .network-wrapper {
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }

  .network-node-center {
    position: relative;
  }

  .pyramid-tier-top {
    width: 90%;
  }

  .pyramid-tier-8 {
    width: 92%;
  }

  .pyramid-tier-7 {
    width: 94%;
  }

  .pyramid-tier-6 {
    width: 96%;
  }

  .pyramid-tier-5 {
    width: 98%;
  }

  .pyramid-tier-4,
  .pyramid-tier-3,
  .pyramid-tier-2,
  .pyramid-tier-base {
    width: 100%;
  }

  .flow-container {
    flex-direction: column;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
  }

  .flow-arrow svg {
    transform: rotate(90deg);
  }
}