/* ===========================================================
   PLANTON × EURECICLO · FABER-CASTELL HOTSITE
   Direção: editorial, climática, autoral, premium.
   =========================================================== */

:root {
  /* Paleta primária Planton */
  --deep-green:   #145559;
  --dark-green:   #0A2D30;
  --accent-green: #ADCF78;
  --cream:        #FFFFFF;
  --warm-white:   #FFFFFF;
  --near-black:   #000C0D;

  /* Tons auxiliares */
  --muted:        #4A7378;
  --line-on-dark: rgba(255, 255, 255, 0.10);
  --line-on-light: rgba(10, 45, 48, 0.10);
  --text-cream-strong: rgba(255, 255, 255, 0.92);
  --text-cream-soft:   rgba(255, 255, 255, 0.62);
  --text-cream-mute:   rgba(255, 255, 255, 0.40);
  --text-dark-strong:  rgba(10, 45, 48, 0.92);
  --text-dark-soft:    rgba(10, 45, 48, 0.62);

  /* Categorias do Sankey */
  --c-plastico:  #D95B4A;
  --c-papel:     #4E8FD7;
  --c-vidro:     #8FBC6F;
  --c-metal:     #E4C35A;

  /* Tipografia */
  --f-sans:    'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-serif:   'Instrument Serif', 'Times New Roman', Georgia, serif;
  --f-mono:    'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --section-pad-y: clamp(80px, 12vh, 160px);
  --max-w: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-cream-strong);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent-green); color: var(--near-black); }

/* ============== NAVBAR / CO-BRANDING ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  mix-blend-mode: difference;
  color: #FFF;
  pointer-events: none;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.4s ease;
}
.navbar > * { pointer-events: auto; }
.brand-pair {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-pair .brand {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}
.brand-pair .brand-logo {
  width: 130px;
  height: 19px;
  flex: 0 0 auto;
}
.brand-pair .brand-logo--eureciclo {
  width: 109px;
  height: auto;
  flex: 0 0 auto;
}
.brand-pair .x {
  opacity: 0.55;
  font-family: var(--f-mono);
  font-size: 11px;
}
.unit-abbr,
.unit--abbr {
  text-transform: none;
}
.nav-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-right .nav-link { opacity: 0.7; transition: opacity 0.2s; }
.nav-right .nav-link:hover { opacity: 1; }

/* ============== SHARED TYPOGRAPHY ============== */
.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.02;
}
.display {
  font-size: clamp(48px, 8vw, 132px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}
.display em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
}
.section-title {
  font-size: clamp(34px, 5.4vw, 76px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  max-width: 22ch;
}
.section-title em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--accent-green);
}
.lede {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
  max-width: 56ch;
  color: var(--text-cream-soft);
}
.section--light .lede { color: var(--text-dark-soft); }
.section--light .section-title { color: var(--dark-green); }
.section--light .kicker { color: var(--deep-green); }

/* ============== SECTION SCAFFOLD ============== */
section {
  position: relative;
  padding: var(--section-pad-y) var(--gutter);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.section--dark { background: #000C0D; color: var(--cream); }
.section--light { background: transparent; color: var(--dark-green); }

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 96px 0 60px;
}
.hero-aside span,
.hero-conclusion span {
  font-size: 0.42em;
  font-family: var(--f-sans);
  font-style: normal;
  letter-spacing: -0.02em;
  opacity: 0.55;
  display: inline-block;
}
.hero-conclusion {
  margin-top: -0.28em;
}
.hero h1 {
  color: var(--dark-green);
  max-width: 100%;
  text-align: left;
  margin: 0;
}
.hero h1 em {
  color: var(--accent-green);
  font-size: 1.06em;
}
.hero .display {
  font-size: clamp(52px, 7.2vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.04em;
}
.hero-conclusion span {
  color: var(--dark-green);
  opacity: 0.7;
  letter-spacing: -0.03em;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
}
.hero h1 .line {
  display: block;
  overflow: visible;
}
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  transition: transform 1.4s cubic-bezier(0.16, 0.84, 0.21, 1), opacity 1.4s ease, filter 1.4s ease;
}
.hero.is-loaded h1 .line > span { transform: translateY(0); opacity: 1; filter: blur(0); }
.hero h1 .line:nth-child(1) > span { transition-delay: 0.15s; }
.hero h1 .line:nth-child(2) > span { transition-delay: 0.30s; }

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vh, 44px);
  margin-top: clamp(40px, 6vh, 72px);
  align-items: flex-start;
  padding-bottom: 0;
}
.hero-grid .support {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--dark-green);
  max-width: 62ch;
  text-align: left;
  opacity: 1;
  transform: none;
  transition: opacity 1s ease 0.55s, transform 1s ease 0.55s;
}
.hero.is-loaded .hero-grid .support { opacity: 1; transform: none; }

.hero-grid .scroll-cue {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  max-width: 100%;
  padding: 18px 24px;
  border: 1px solid currentColor;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-green);
  opacity: 1;
  transform: none;
  transition: opacity 1s ease 0.85s, transform 1s ease 0.85s, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  align-self: flex-start;
}
.hero.is-loaded .hero-grid .scroll-cue { opacity: 1; transform: none; }
.hero-grid .scroll-cue:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
  color: var(--cream);
}
.scroll-cue .arrow {
  display: inline-block;
  width: 30px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s ease;
}
.scroll-cue .arrow::after {
  content: "";
  position: absolute;
  right: -4px; top: 50%;
  width: 6px; height: 6px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(0, -25%) rotate(45deg);
}
.hero-grid .scroll-cue:hover .arrow { width: 42px; }
@keyframes softReveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(110%); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal,
.reveal-blur {
  animation: softReveal 1s cubic-bezier(0.16, 0.84, 0.21, 1) both;
}
.hero h1 .line > span {
  animation: lineReveal 1.35s cubic-bezier(0.16, 0.84, 0.21, 1) both;
  will-change: transform, opacity;
}
.hero h1 .line:nth-child(1) > span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(2) > span { animation-delay: 0.24s; }
.hero h1 .line:nth-child(3) > span { animation-delay: 0.36s; }
/* ============== SANKEY SECTION ============== */
.sankey-section {
  padding-top: clamp(32px, 5vh, 64px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.sankey-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: clamp(36px, 4.5vw, 72px);
  align-items: start;
  min-height: calc(100vh - clamp(64px, 9vh, 112px));
}

.sankey-chart-wrap {
  position: sticky;
  top: clamp(72px, 8vh, 96px);
  height: calc(100vh - clamp(112px, 14vh, 156px));
  min-height: 560px;
  display: flex;
  align-items: center;
}
.sankey-svg {
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: visible;
  font-family: var(--f-mono);
}
.sankey-flows path {
  transition: opacity 0.4s ease, filter 0.4s ease;
}
.sankey-node rect {
  transition: opacity 0.3s ease;
}
.sankey-svg text {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  fill: var(--text-cream-soft);
  text-transform: uppercase;
}
.sankey-svg .node-label {
  font-size: 13px;
  fill: var(--cream);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.sankey-svg .node-amount {
  font-size: 10px;
  fill: var(--text-cream-mute);
  letter-spacing: 0.08em;
  text-transform: none;
}
.sankey-svg .node-label--inside {
  fill: var(--near-black);
  font-size: 14px;
}
.sankey-svg .node-amount--inside {
  fill: rgba(0, 12, 13, 0.68);
  font-size: 11px;
}
.sankey-svg .axis-cap {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--text-cream-mute);
}
.sankey-aside-content {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 6vh, 72px);
  padding-top: clamp(4px, 1vh, 12px);
  padding-bottom: clamp(20px, 8vh, 80px);
}
.sankey-slide {
  min-height: min(48vh, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: center;
  opacity: 0.22;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sankey-slide.is-active {
  opacity: 1;
  transform: none;
}
.sankey-slide .kicker { margin-bottom: 28px; }
.sankey-slide .section-title {
  font-size: clamp(34px, 3.9vw, 68px);
  max-width: 12ch;
}
.sankey-slide .head-aside {
  margin: 28px 0 0;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.46;
  color: var(--text-cream-soft);
  max-width: 34ch;
}
.sankey-slide .slide-copy {
  margin: 0;
  color: var(--text-cream-soft);
  font-size: clamp(16px, 1.04vw, 19px);
  line-height: 1.5;
  max-width: 34ch;
}
.sankey-slide .slide-copy + .cat-summary {
  margin-top: 34px;
}
.bignumber {
  font-family: var(--f-sans);
  font-size: clamp(72px, 9vw, 140px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.bignumber .unit {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  font-weight: 400;
}
.bignumber .unit--abbr {
  text-transform: none;
}
.bignumber-sub {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream-mute);
}
.cat-summary {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-on-dark);
}
.cat-summary li {
  display: grid;
  grid-template-columns: 12px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
}
.cat-summary .swatch {
  width: 10px; height: 10px;
  border-radius: 2px;
}
.cat-summary .name {
  font-family: var(--f-sans);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--cream);
}
.cat-summary .pct {
  color: var(--text-cream-mute);
}
.cat-summary .amt {
  color: var(--accent-green);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Tooltip */
.tooltip {
  position: fixed;
  z-index: 80;
  pointer-events: none;
  background: var(--cream);
  color: var(--dark-green);
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-14px);
  transition: opacity 0.15s ease;
  min-width: 200px;
  max-width: 280px;
  text-transform: uppercase;
}
.tooltip.is-visible { opacity: 1; }
.tooltip .tt-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--deep-green);
  opacity: 0.7;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tooltip .tt-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.tooltip .tt-mat {
  font-family: var(--f-sans);
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-transform: none;
}
.tooltip .tt-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 4px 0;
  letter-spacing: 0.04em;
}
.tooltip .tt-row .val {
  font-weight: 500;
  text-transform: none;
}

/* ============== DASHBOARD SECTION ============== */
.emissions-section {
  padding-top: clamp(88px, 10vh, 128px);
  padding-bottom: clamp(96px, 12vh, 160px);
}
.dashboard-head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  padding-bottom: clamp(36px, 5vh, 64px);
  border-bottom: 1px solid var(--line-on-dark);
}
.dashboard-head .kicker { margin-bottom: 26px; }
.dashboard-head .section-title {
  max-width: 22ch;
  font-size: clamp(34px, 3.9vw, 68px);
}
.dashboard-head .metric-label { margin-bottom: 22px; }
.em-bignumber {
  font-size: clamp(94px, 10vw, 172px);
  letter-spacing: -0.055em;
  line-height: 0.82;
  color: var(--cream);
  font-weight: 400;
}
.em-bignumber .unit {
  display: inline-block;
  margin-left: 18px;
  font-family: var(--f-mono);
  font-size: clamp(15px, 1.05vw, 20px);
  letter-spacing: 0.08em;
  color: var(--accent-green);
  vertical-align: baseline;
}
.em-bignumber .unit--abbr { text-transform: none; }
.em-sub {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream-mute);
}
.dashboard-body {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 0;
  align-items: start;
  padding-top: 0;
  margin-top: clamp(28px, 4vh, 48px);
}
.metric-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  padding: 0 0 clamp(20px, 2.8vh, 34px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-cream-mute);
}
.panel-title h3 {
  margin: 0;
  max-width: 22ch;
  font-family: var(--f-sans);
  font-size: clamp(24px, 1.85vw, 34px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}
.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(18px, 2.6vh, 30px);
}
.panel-chart-title {
  margin: 0;
  max-width: none;
  font-family: var(--f-sans);
  font-size: clamp(24px, 1.85vw, 34px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--cream);
}
.panel-meta {
  margin: calc(-1 * clamp(16px, 2.4vh, 28px)) 0 clamp(18px, 2.6vh, 30px);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-cream-mute);
  text-align: right;
}
.dashboard-main {
  padding-top: 0;
  padding-right: 0;
}
.dashboard-chart {
  border-bottom: none;
  padding: 0 0 clamp(36px, 5vh, 70px);
  margin: 0;
}
.chart-stage {
  position: relative;
  clear: both;
  margin: 0;
  width: 100%;
  aspect-ratio: 1200 / 540;
  height: auto;
  min-height: 0;
  isolation: isolate;
}
.emissions-svg {
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
}
.compare-control {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  margin-right: clamp(0px, 2vw, 32px);
  align-self: flex-start;
  padding: 13px 16px;
  border: 1px solid var(--line-on-dark);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.compare-control:hover,
.compare-control:has(input:checked) {
  border-color: rgba(173, 207, 120, 0.65);
  background: rgba(173, 207, 120, 0.09);
  color: var(--accent-green);
}
.compare-control input {
  appearance: none;
  width: 34px;
  height: 18px;
  border: 1px solid rgba(173, 207, 120, 0.5);
  border-radius: 999px;
  position: relative;
  background: rgba(173, 207, 120, 0.12);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.compare-control input:checked {
  background: rgba(173, 207, 120, 0.55);
  border-color: var(--accent-green);
}
.compare-control input::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-green);
  transition: transform 0.25s ease;
}
.compare-control input:checked::after { transform: translateX(16px); }
.em-legend {
  display: none;
  grid-template-columns: repeat(5, auto);
  justify-content: start;
  align-items: center;
  gap: 0 20px;
  margin-top: 26px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-cream-soft);
}
.em-legend .item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.em-legend .swatch {
  width: 22px;
  flex-shrink: 0;
}
.em-legend .swatch.bar {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.emissions-section.is-comparing .em-legend { display: grid; }
.emissions-section .benchmark-layer {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.emissions-section.is-comparing .benchmark-layer { opacity: 1; }
.dashboard-position {
  padding-top: clamp(26px, 4vh, 54px);
  margin: 0;
}
.dashboard-position .panel-title {
  padding-top: 0;
}
.methodology-panel {
  border-left: 1px solid var(--line-on-dark);
  margin-left: 0;
  padding: 0 0 clamp(24px, 4vh, 48px) clamp(36px, 4vw, 72px);
  position: sticky;
  top: clamp(72px, 8vh, 96px);
  align-self: start;
}
.methodology-panel .lede {
  margin: 24px 0 34px;
  color: var(--text-cream-soft);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  max-width: 38ch;
}
.methodology-faq {
  border-top: 1px solid var(--line-on-dark);
  margin-bottom: 34px;
}
.methodology-faq details {
  border-bottom: 1px solid var(--line-on-dark);
  padding: 18px 0;
}
.methodology-faq summary {
  cursor: pointer;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.methodology-faq p {
  margin: 14px 0 0;
  color: var(--text-cream-soft);
  line-height: 1.55;
}
.methodology-panel .cta {
  margin-top: 8px;
  max-width: 100%;
  width: 100%;
  justify-content: space-between;
}

/* ============== LEGACY CHART STYLES ============== */
.em-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(60px, 8vh, 100px);
}
.em-head .kicker { margin-bottom: 32px; }
.em-head .aside-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.em-head .aside-block .em-bignumber {
  font-size: clamp(64px, 7.5vw, 120px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 8px;
}
.em-head .aside-block .em-bignumber .unit {
  font-family: var(--f-mono);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-green);
  padding-left: 14px;
  font-weight: 400;
}
.em-head .aside-block .em-bignumber .unit--abbr {
  text-transform: none;
}
.em-head .aside-block .em-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-cream-mute);
  max-width: 30ch;
}

.chart-stage {
  position: relative;
  margin: 0 0 64px;
}
.emissions-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.emissions-svg text {
  font-family: var(--f-mono);
  fill: var(--text-cream-soft);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.emissions-svg .axis-label {
  fill: var(--text-cream-mute);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.emissions-svg .unit-label,
.emissions-svg .volume-label .unit-abbr {
  text-transform: none;
}
.emissions-svg .grid line {
  stroke: var(--line-on-dark);
  stroke-width: 1;
}
.em-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  margin-top: 36px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-cream-soft);
}
.em-legend .item { display: flex; align-items: center; gap: 10px; }
.em-legend .swatch {
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--accent-green);
}
.em-legend .swatch.dashed {
  border-top: 1px dashed var(--text-cream-soft);
  background: none;
  height: 0;
  margin-top: 1px;
}
.em-legend .swatch.area {
  height: 10px;
  background: rgba(173, 207, 120, 0.16);
  border-top: 1px solid rgba(173, 207, 120, 0.4);
  border-bottom: 1px solid rgba(173, 207, 120, 0.4);
}
.em-legend .swatch.bar {
  width: 14px; height: 14px;
  background: rgba(255, 255, 255, 0.10);
}

.interpretation-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 64px;
  align-items: start;
}
.interpretation-row .interpretation {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 28ch;
}
.cta-pair {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: end;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  border: 1px solid var(--cream);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  transition: background-color 0.4s, color 0.4s, transform 0.4s;
  width: max-content;
  cursor: pointer;
}
.cta .arrow {
  display: inline-block;
  width: 30px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.4s ease;
}
.cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(0, -50%) rotate(45deg);
}
.cta:hover { background: var(--accent-green); color: var(--near-black); border-color: var(--accent-green); }
.cta:hover .arrow { width: 42px; }
.cta--primary {
  background: var(--accent-green);
  color: var(--near-black);
  border-color: var(--accent-green);
}
.cta--primary:hover { background: var(--cream); border-color: var(--cream); }

/* ============== POSITION SPECTRUM ============== */
.position-section {
  padding-top: clamp(120px, 16vh, 200px);
  padding-bottom: clamp(120px, 16vh, 200px);
}
.pos-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(72px, 10vh, 120px);
}
.pos-head .lede { font-size: 16px; max-width: 38ch; }

.spectrum-wrap {
  position: relative;
  padding: 60px 0 40px;
}
.spectrum-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.spectrum-svg text {
  font-family: var(--f-mono);
  fill: var(--text-cream-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spectrum-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-cream-soft);
  border-top: 1px solid var(--line-on-dark);
  padding-top: 18px;
}
.spectrum-zones .zone { padding-right: 24px; }
.spectrum-zones .zone .z-label { color: var(--cream); margin-bottom: 6px; }
.spectrum-zones .zone .z-desc { color: var(--text-cream-mute); text-transform: none; letter-spacing: 0.02em; font-family: var(--f-sans); font-size: 13px; line-height: 1.4; }

.pos-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(48px, 8vh, 80px);
  align-items: start;
}
.pos-foot .quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--cream);
  max-width: 26ch;
}
.pos-foot .body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-cream-soft);
  max-width: 50ch;
}

.dashboard-chart .chart-stage {
  margin: 0;
  width: 100%;
  aspect-ratio: 1200 / 540;
  height: auto;
  min-height: 0;
}
.dashboard-chart .emissions-svg text {
  font-size: 13px;
}
.dashboard-chart .emissions-svg .axis-label {
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.48);
}
.dashboard-chart .emissions-svg .volume-label {
  font-size: 12px;
}
.dashboard-chart .emissions-svg .grid line {
  stroke: rgba(255, 255, 255, 0.105);
}
.dashboard-chart .emissions-svg {
  width: 100%;
  height: auto;
  min-height: 0;
}
.dashboard-chart .em-legend {
  display: none;
  gap: 16px 30px;
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.075em;
}
.emissions-section.is-comparing .dashboard-chart .em-legend {
  display: flex;
}
.dashboard-chart .em-legend .item {
  gap: 12px;
  min-height: 22px;
}
.dashboard-chart .em-legend .swatch {
  width: 32px;
}
.dashboard-chart .em-legend .swatch.bar {
  width: 18px;
  height: 18px;
}
.dashboard-position .spectrum-wrap {
  padding: 0;
  width: 100%;
  aspect-ratio: 1200 / 320;
  min-height: 0;
}
.dashboard-position .spectrum-svg {
  width: 100%;
  height: auto;
}
.dashboard-position .spectrum-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
  border-top: none;
  padding-top: 0;
}
.dashboard-position .zone {
  padding: 0 18px 0 0;
  border-top: none;
}
.emissions-svg circle[data-pt] {
  transition: filter 0.22s ease, transform 0.22s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.emissions-svg circle[data-pt].is-hovered {
  transform: scale(1.35);
}
.emissions-svg .fc-area {
  opacity: 0.42;
}
.emissions-svg .em-line.median,
.emissions-svg .em-line.leader,
.emissions-svg .em-area {
  transition: opacity 0.45s ease;
}

.emissions-section .dashboard-shell,
.emissions-section .dashboard-head,
.emissions-section .dashboard-body,
.emissions-section .dashboard-main,
.emissions-section .dashboard-chart,
.emissions-section .dashboard-position,
.emissions-section .panel-title,
.emissions-section .chart-stage,
.emissions-section .spectrum-wrap {
  margin-left: 0;
  padding-left: 0;
}

.emissions-section .dashboard-chart,
.emissions-section .dashboard-position {
  width: 100%;
}

/* ============== NEXT STEPS ============== */
.next-steps-section {
  padding-top: clamp(100px, 14vh, 180px);
  padding-bottom: clamp(120px, 16vh, 200px);
}
.ns-head .section-title {
  font-size: clamp(34px, 3.9vw, 68px);
  max-width: 22ch;
}
.ns-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(64px, 9vh, 110px);
}
.ns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}
.ns-card {
  padding: 48px 36px 40px;
  border-right: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 380px;
  position: relative;
  transition: background-color 0.6s ease;
}
.ns-card:last-child { border-right: none; }
.ns-card:hover { background-color: rgba(173, 207, 120, 0.04); }
.ns-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 12px;
}
.ns-card .num::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.ns-card .glyph {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
.ns-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 18ch;
}
.ns-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-cream-soft);
  margin: 0;
  flex-grow: 1;
  max-width: 38ch;
}
.ns-card .ns-cta {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-green);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  transition: gap 0.3s ease;
}
.ns-card .ns-cta:hover { gap: 24px; }
.ns-card .ns-cta .arrow {
  display: inline-block;
  width: 26px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s ease;
}
.ns-card .ns-cta .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translate(0, -50%) rotate(45deg);
}
.ns-dots { display: none; }

/* ============== CLOSING ============== */
.closing {
  background: #000C0D;
  padding-top: clamp(140px, 22vh, 240px);
  padding-bottom: clamp(140px, 22vh, 240px);
  text-align: center;
  position: relative;
}
.closing .closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.closing h2 {
  font-size: clamp(32px, 4.6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 36px;
}
.closing h2 em {
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--accent-green);
}
.closing .closing-lede {
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--text-cream-soft);
  max-width: 56ch;
  margin: 0 auto 56px;
  line-height: 1.55;
}
.closing .cta {
  margin: 0 auto;
}
.closing-marker {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent-green));
  opacity: 0.5;
}

/* ============== REVEAL ANIMATIONS ============== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1), transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-blur {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s ease;
}
.reveal-blur.is-visible { opacity: 1; filter: blur(0); transform: none; }
.sankey-slide.reveal,
.sankey-slide.reveal.is-visible {
  opacity: 0.22;
  transform: translateY(26px);
}
.sankey-slide.reveal.is-active,
.sankey-slide.reveal.is-visible.is-active {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ============== RESPONSIVE ============== */
@media (min-width: 1600px) {
  :root {
    --gutter: clamp(64px, 5vw, 96px);
    --section-pad-y: clamp(120px, 14vh, 220px);
    --max-w: 1680px;
  }

  .display {
    font-size: clamp(84px, 5.8vw, 112px);
    max-width: 17ch;
  }

  .section-title {
    font-size: clamp(60px, 4.5vw, 86px);
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 76px;
  }

  .hero-grid .support {
    max-width: 52ch;
    font-size: clamp(23px, 1.25vw, 27px);
  }

  .sankey-layout {
    grid-template-columns: minmax(0, 2fr) minmax(420px, 1fr);
    gap: clamp(72px, 5.5vw, 118px);
  }

  .sankey-chart-wrap {
    height: calc(100vh - clamp(112px, 14vh, 156px));
    min-height: 620px;
  }

  .bignumber {
    font-size: clamp(120px, 7.8vw, 160px);
  }

  .em-head,
  .ns-head {
    grid-template-columns: minmax(0, 1.55fr) minmax(420px, 0.85fr);
    gap: clamp(96px, 8vw, 150px);
  }
  .dashboard-body {
    grid-template-columns: minmax(0, 2fr) minmax(420px, 1fr);
  }

  .em-head .aside-block .em-bignumber {
    font-size: clamp(120px, 6.8vw, 148px);
  }

  .chart-stage {
    aspect-ratio: 1200 / 540;
    height: auto;
    min-height: 0;
  }

  .pos-head,
  .pos-foot,
  .interpretation-row {
    grid-template-columns: minmax(0, 1.45fr) minmax(420px, 0.9fr);
    gap: clamp(96px, 8vw, 150px);
  }

  .spectrum-wrap {
    padding-top: 84px;
    padding-bottom: 56px;
  }

  .ns-card {
    padding: 56px 48px 48px;
    min-height: 420px;
  }
}

@media (max-width: 1024px) {
  .sankey-layout { grid-template-columns: 1fr; }
  .sankey-chart-wrap { position: relative; top: auto; transform: none; height: auto; min-height: auto; }
  .sankey-aside-content { gap: 48px; padding-top: 12px; }
  .sankey-slide,
  .sankey-slide.reveal,
  .sankey-slide.reveal.is-visible {
    min-height: auto;
    justify-content: flex-start;
    opacity: 1;
    filter: none;
    transform: none;
  }
  .sankey-slide .section-title { max-width: 16ch; }
  .em-head, .pos-head, .ns-head { grid-template-columns: 1fr; align-items: start; }
  .em-head .aside-block { justify-self: start; }
  .dashboard-head,
  .dashboard-body {
    grid-template-columns: 1fr;
  }
  .methodology-panel {
    border-left: none;
    border-top: 1px solid var(--line-on-dark);
    padding-left: 0;
    position: relative;
    top: auto;
  }
  .interpretation-row { grid-template-columns: 1fr; }
  .pos-foot { grid-template-columns: 1fr; }
  .ns-grid { grid-template-columns: 1fr; }
  .ns-card { border-right: none; border-bottom: 1px solid var(--line-on-dark); min-height: auto; }
  .ns-card:last-child { border-bottom: none; }
  .hero-grid { gap: 28px; padding-bottom: 0; }
  .hero-grid .support { max-width: 46ch; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; --section-pad-y: clamp(80px, 12vh, 120px); }
  .navbar { padding: 16px var(--gutter); }
  .nav-right .nav-link { display: none; }
  .sankey-chart-wrap { overflow-x: auto; min-height: 480px; }
  .sankey-chart-wrap .sankey-svg { min-width: 600px; }
  .em-legend { font-size: 10px; gap: 16px 24px; }
  .dashboard-head .section-title { font-size: clamp(40px, 12vw, 62px); }
  .em-bignumber { font-size: clamp(74px, 23vw, 118px); }
  .dashboard-position .spectrum-zones { grid-template-columns: 1fr; gap: 18px; }
  .dashboard-position .zone { padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--line-on-dark); }
  .dashboard-position .zone:last-child { border-bottom: none; }
  .em-head .aside-block { padding-top: 8px; }
  .pos-head .lede { font-size: 14px; }
  .spectrum-zones { grid-template-columns: 1fr; gap: 18px; }
  .spectrum-zones .zone { padding-right: 0; padding-bottom: 18px; border-bottom: 1px solid var(--line-on-dark); }
  .spectrum-zones .zone:last-child { border-bottom: none; }
  .ns-card { min-height: auto; padding: 36px 24px; }
  .closing h2 { font-size: clamp(36px, 9vw, 64px); }
}

/* ============================================================
   MOBILE OVERRIDES (≤640px)
   Dedicated block for mobile-specific tweaks. Add new sections
   below as needed.
   ============================================================ */
@media (max-width: 640px) {
  /* ----- HERO ----- */
  .hero { min-height: auto; }
  .hero-inner { padding: 160px 0 140px; }
  .hero .display {
    font-size: clamp(56px, 13vw, 76px);
    line-height: 0.92;
    letter-spacing: -0.035em;
  }
  .hero-aside span,
  .hero-conclusion span {
    font-size: 0.5em;
    opacity: 0.75;
  }
  .hero-conclusion { margin-top: -0.18em; }
  .hero h1 em { font-size: 1.04em; }
  .hero-grid { gap: 20px; margin-top: 24px; }
  .hero-grid .support { font-size: 15px; line-height: 1.55; }

  /* ----- SANKEY mobile: horizontal scroll + scroll hint ----- */
  .sankey-chart-wrap {
    height: auto;
    min-height: 360px;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) rgba(255,255,255,0.08);
    /* bleed to edges */
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    width: calc(100% + 2 * var(--gutter));
    position: relative;
  }
  .sankey-chart-wrap::-webkit-scrollbar {
    height: 3px;
  }
  .sankey-chart-wrap::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
  }
  .sankey-chart-wrap::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 2px;
  }
  .sankey-svg {
    min-width: 860px;
    height: auto;
    max-height: 580px;
    margin-left: var(--gutter);
    margin-right: 48px;
  }
  /* fade + arrow scroll hint */

  /* ----- SANKEY → DASHBOARD gap ----- */
  .sankey-section { padding-top: 80px; padding-bottom: 48px; }
  .emissions-section { padding-top: 48px; padding-bottom: 48px; }

  /* ----- DASHBOARD section-title fits more ----- */
  .dashboard-head .section-title {
    font-size: clamp(36px, 11vw, 56px);
    letter-spacing: -0.03em;
    max-width: none;
  }

  /* ----- CHART HEADER 50/50 title + toggle ----- */
  .chart-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 16px;
  }
  .panel-chart-title { font-size: clamp(18px, 4.4vw, 22px); line-height: 1.15; }
  .compare-control {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    font-size: 11px;
    line-height: 1.25;
  }

  /* ----- POSITION panel meta below title ----- */
  .dashboard-position .panel-meta {
    margin: 8px 0 20px;
    text-align: left;
  }

  /* ----- POSITION spectrum vertical layout ----- */
  .dashboard-position .spectrum-wrap {
    aspect-ratio: 420 / 760;
    max-width: none;
    margin: 0 auto;
  }
  .dashboard-position .spectrum-zones { display: none; }
  .dashboard-position { padding-top: 16px; }

  /* ----- METHODOLOGY tighter spacing on mobile ----- */
  .methodology-panel {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
  }
  .emissions-section .dashboard-body { margin-top: 16px; gap: 0; }

  /* ----- DASHBOARD → NEXT-STEPS gap ----- */
  .next-steps-section { padding-top: 48px; }

  /* ----- NEXT-STEPS cards as horizontal carousel ----- */
  .next-steps-section .section-inner {
    /* allow carousel to bleed to viewport edges */
    padding: 0;
  }
  .next-steps-section .ns-head { padding: 0 var(--gutter); }
  .ns-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 0 var(--gutter) 8px;
    border-top: 1px solid var(--line-on-dark);
    border-bottom: 1px solid var(--line-on-dark);
  }
  .ns-grid::-webkit-scrollbar { display: none; }
  .ns-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    border-right: 1px solid var(--line-on-dark);
    border-bottom: none;
    min-height: auto;
    padding: 32px 24px 28px;
  }
  .ns-card:last-child { border-right: none; }
  .next-steps-section .ns-head { margin-bottom: 32px; }
  .ns-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px var(--gutter) 0;
  }
  .ns-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .ns-dot.is-active {
    background: var(--accent-green);
    transform: scale(1.2);
  }

  /* ----- (adicione próximas seções mobile aqui) ----- */
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .sankey-slide,
  .sankey-slide.reveal,
  .sankey-slide.reveal.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Focus styles */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 4px;
}
