:root {
  --teal-deep: #0E4D54;
  --teal-mid: #1B6B70;
  --teal-soft: #5C8C8A;
  --teal-pale: #C8DAD8;
  --coral: #E76F51;
  --coral-soft: #F2A48F;
  --amber: #F4A261;
  --amber-soft: #FAD0A0;
  --cream: #F5EFE7;
  --paper: #FAF6EE;
  --paper-warm: #F8F1E4;
  --ink: #0F1F22;
  --ink-soft: #3D4F4D;
  --ink-mute: #6B7C7A;
  --line: #D4C9B6;
  --line-soft: #E8DFCE;
  --white: #FFFEF9;
  --shadow-sm: 0 1px 2px rgba(15,31,34,.06);
  --shadow-md: 0 4px 16px rgba(15,31,34,.08);
  --shadow-lg: 0 12px 40px rgba(15,31,34,.12);
  --shadow-xl: 0 24px 60px rgba(15,31,34,.16);
  --serif: 'Manrope', -apple-system, sans-serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==== TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, .display {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

.eyebrow-teal { color: var(--teal-deep); }
.eyebrow-amber { color: #B97824; }

.numeral {
  font-family: var(--serif);
  font-feature-settings: "lnum", "tnum";
  font-weight: 300;
}

.mono { font-family: var(--mono); }

/* ==== LAYOUT UTILITIES ==== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container, .container-narrow, .container-wide { padding: 0 20px; }
}

/* ==== HEADER ==== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .site-header { padding: 12px 0; }
}

.site-header.scrolled {
  border-bottom-color: var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .header-inner { padding: 0 16px; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--coral);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .logo-mark { width: 32px; height: 32px; }
}

.logo-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

@media (max-width: 600px) {
  .logo-text { font-size: 0.85rem; }
}

.logo-text small {
  display: block;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

@media (max-width: 600px) {
  .header-nav { gap: 12px; }
}

.header-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--teal-deep); }

.search-trigger {
  background: none;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.search-trigger:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.kbd {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--ink-mute);
}

@media (max-width: 920px) {
  .header-nav a:not(.btn-mini) { display: none; }
}

.btn-mini {
  background: var(--coral);
  color: var(--white) !important;
  padding: 11px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(231,111,81,0.25);
}

.btn-mini:hover {
  background: var(--ink);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,31,34,0.2);
}

@media (max-width: 600px) {
  .btn-mini {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}

/* ==== HERO ==== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--paper);
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero { padding: 110px 0 56px; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(231,111,81,.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(14,77,84,.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(244,162,97,.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,31,34,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,31,34,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-divider {
  height: 1px;
  flex: 1;
  background: var(--line);
  min-width: 40px;
}

.hero-meta-text {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.4rem, 7.5vw, 6.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .hero-title { line-height: 1.05; }
}

.hero-title em {
  font-style: italic;
  color: var(--coral);
  font-weight: 300;
}

.hero-title .num {
  font-style: normal;
  color: var(--teal-deep);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.55;
  margin-bottom: 48px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .hero-sub { font-size: 1.08rem; margin-bottom: 36px; }
}

.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

@media (max-width: 600px) {
  .hero-cta { gap: 10px; margin-bottom: 48px; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary {
    flex: 1;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.92rem;
    min-width: 140px;
  }
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}

.btn-primary:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--sans);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.arrow {
  display: inline-block;
  transition: transform 0.25s;
}

.btn-primary:hover .arrow,
.btn-secondary:hover .arrow {
  transform: translateX(4px);
}

/* Hero stats grid */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; padding-top: 32px; }
}

.hero-stat {
  border-right: 1px solid var(--line-soft);
  padding-right: 32px;
  position: relative;
}

.hero-stat:last-child { border-right: none; padding-right: 0; }

@media (max-width: 768px) {
  .hero-stat:nth-child(2n) { border-right: none; padding-right: 0; }
  .hero-stat { padding-right: 16px; }
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--teal-deep);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-stat-value sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--coral);
  margin-left: 4px;
  font-weight: 500;
}

.hero-stat-label {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .hero-stat-label { font-size: 0.95rem; }
}

.hero-stat-source {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Floating ornaments */
.hero-ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.4;
}

.ornament-1 {
  top: 25%;
  right: 8%;
  width: 220px;
  height: 220px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  animation: floatSlow 18s infinite ease-in-out;
}

.ornament-2 {
  top: 35%;
  right: 12%;
  width: 140px;
  height: 140px;
  border: 1px dashed var(--teal-deep);
  border-radius: 50%;
  animation: floatSlow 15s infinite ease-in-out reverse;
}

.ornament-3 {
  bottom: 25%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: var(--amber);
  border-radius: 50%;
  opacity: 0.15;
  animation: floatSlow 12s infinite ease-in-out;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(20px, -30px) rotate(180deg); }
}

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

/* ==== SECTION FRAMEWORK ==== */
.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
}

.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-warm { background: var(--paper-warm); }
.section-deep {
  background: var(--ink);
  color: var(--white);
}

.section-deep .section-eyebrow { color: var(--amber); }
.section-deep .section-title { color: var(--white); }

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .section-eyebrow { font-size: 0.82rem; }
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--coral);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--ink);
  max-width: 920px;
}

.section-title em {
  font-style: normal;
  color: var(--coral);
  font-weight: 700;
}

.section-lede {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 56px;
}

@media (max-width: 600px) {
  .section-lede { font-size: 1.08rem; line-height: 1.6; margin-bottom: 36px; }
}

/* ==== CONTEXT / INTRO ==== */
.intro-section {
  padding: 96px 0 64px;
  background: var(--paper);
  position: relative;
}

@media (max-width: 768px) {
  .intro-section { padding: 56px 0 40px; }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 920px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

.intro-text {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 600px) {
  .intro-text { font-size: 1.08rem; }
}

.intro-text p { margin-bottom: 1.4em; }

.intro-text p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  float: left;
  line-height: 0.85;
  margin: 0.08em 0.12em 0 -0.05em;
  color: var(--coral);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.intro-text strong {
  color: var(--ink);
  font-weight: 600;
}

.intro-card {
  background: var(--ink);
  color: var(--white);
  padding: 40px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .intro-card { padding: 28px 24px; }
}

.intro-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.3;
}

.intro-card-eyebrow {
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
}

.intro-card-title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
}

.intro-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.icard-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.icard-stat-label {
  font-size: 1rem;
  color: rgba(255,254,249,0.82);
  line-height: 1.45;
  font-weight: 500;
}

.intro-card-source {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,249,0.55);
  border-top: 1px solid rgba(255,254,249,0.12);
  padding-top: 20px;
  position: relative;
}

/* ==== SEARCH BAR (sticky) ==== */
.topic-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
  transition: all 0.3s;
}

.topic-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .topic-bar { padding: 10px 0; top: 60px; }
  .topic-bar-inner { padding: 0 16px; }
}

.chip {
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.chip:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

/* ==== TRENDS GRID NAVIGATOR ==== */
.trends-nav-section {
  padding: 80px 0;
  background: var(--cream);
}

@media (max-width: 768px) {
  .trends-nav-section { padding: 56px 0; }
}

.trends-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
}

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

.trend-nav-card {
  background: var(--paper);
  padding: 32px 32px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .trend-nav-card {
    padding: 24px 22px 20px;
    min-height: 0;
  }
}

.trend-nav-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-mid) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.trend-nav-card > * { position: relative; z-index: 2; }

.trend-nav-card:hover { color: var(--white); }
.trend-nav-card:hover::before { opacity: 1; }
.trend-nav-card:hover .trend-nav-num { color: var(--amber); }
.trend-nav-card:hover .trend-nav-arrow { transform: translate(4px, -4px); color: var(--amber); }

.trend-nav-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

@media (max-width: 600px) {
  .trend-nav-num { font-size: 2rem; }
}

.trend-nav-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .trend-nav-title { font-size: 1.18rem; margin-top: 10px; margin-bottom: 12px; }
}

.trend-nav-subs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.trend-nav-subs-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: auto;
  padding-top: 12px;
  margin-bottom: 8px;
  border-top: 1px dashed var(--line);
}

.trend-nav-card:hover .trend-nav-subs-label { color: var(--amber); }

.trend-nav-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.2s;
}

.trend-nav-card:hover .trend-nav-sub {
  background: rgba(255,255,255,0.12);
  color: rgba(255,254,249,0.85);
}

@media (max-width: 600px) {
  .trend-nav-sub { font-size: 0.78rem; padding: 3px 8px; }
}

.trend-nav-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  transition: all 0.3s;
  color: var(--ink-mute);
}

/* ==== TREND DETAIL SECTIONS ==== */
.trend-section {
  padding: 88px 0;
  border-top: 1px solid var(--line-soft);
  position: relative;
}

@media (max-width: 768px) {
  .trend-section { padding: 56px 0; }
}

.trend-section:nth-child(odd) { background: var(--paper); }
.trend-section:nth-child(even) { background: var(--cream); }

.trend-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 768px) {
  .trend-header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
  }
}

.trend-num-big {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--coral);
  letter-spacing: -0.07em;
}

.trend-num-big sup {
  font-size: 0.35em;
  vertical-align: super;
  color: var(--ink-mute);
  font-weight: 400;
}

.trend-title-block { padding-bottom: 16px; }

.trend-eyebrow {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .trend-eyebrow { font-size: 0.82rem; }
}

.trend-title {
  font-size: clamp(1.85rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 16px;
}

.trend-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-style: normal;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: -0.01em;
}

.trend-intro {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 780px;
  margin-bottom: 48px;
}

@media (max-width: 600px) {
  .trend-intro { font-size: 1.08rem; margin-bottom: 32px; }
}

.trend-intro strong { color: var(--ink); font-weight: 600; }

/* Sub-trends as cards */
.subtrends {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

@media (max-width: 920px) {
  .subtrends { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
}

.subtrend {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 40px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .subtrend { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .subtrend { padding: 24px 20px; }
}

.subtrend:hover {
  border-color: var(--teal-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.subtrend-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(231,111,81,0.1);
  border: 1px solid rgba(231,111,81,0.25);
  border-radius: 100px;
}

@media (max-width: 600px) {
  .subtrend-tag {
    font-size: 1rem;
    padding: 7px 14px;
  }
}

.subtrend-title {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 22px;
}

@media (max-width: 600px) {
  .subtrend-title { font-size: 1.4rem; line-height: 1.3; }
}

.subtrend-desc {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

@media (max-width: 600px) {
  .subtrend-desc { font-size: 1.02rem; }
}

.subtrend-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.subtrend-stat {
  flex: 1;
  min-width: 140px;
  padding: 18px 20px;
  background: var(--paper);
  border-radius: 6px;
  border-left: 4px solid var(--coral);
}

.subtrend-stat-num {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

@media (max-width: 600px) {
  .subtrend-stat-num { font-size: 1.7rem; }
}

.subtrend-stat-label {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
  font-weight: 500;
}

.subtrend-examples {
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  margin-bottom: 20px;
}

.subtrend-example {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
}

@media (max-width: 600px) {
  .subtrend-example { font-size: 0.98rem; }
}

.subtrend-example::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 600;
}

.subtrend-example strong {
  color: var(--ink);
  font-weight: 600;
}

.subtrend-source {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-style: normal;
}

/* Provocação ao trade */
.provocation {
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-deep) 100%);
  color: var(--white);
  padding: 56px 48px;
  border-radius: 6px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .provocation { padding: 36px 28px; margin: 32px 0; }
}

.provocation::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 24px;
  font-family: var(--serif);
  font-size: 16rem;
  color: var(--coral);
  opacity: 0.15;
  font-weight: 300;
  line-height: 1;
}

.provocation-eyebrow {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  position: relative;
}

@media (max-width: 600px) {
  .provocation-eyebrow { font-size: 0.82rem; }
}

.provocation-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--white);
  position: relative;
}

.provocation-text em {
  color: var(--amber);
  font-style: normal;
  font-weight: 700;
}

/* ============ INSIGHTS DE MARKETING ============ */
.insights-marketing {
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--cream) 100%);
  border-left: 6px solid var(--coral);
  border-radius: 6px;
  padding: 48px 44px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .insights-marketing { padding: 32px 24px; margin: 32px 0; }
}

.insights-marketing-eyebrow {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.insights-marketing-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
}

.insights-marketing-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}

.insights-marketing-title em {
  font-style: normal;
  color: var(--coral);
}

.insights-marketing-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 76ch;
}

.insights-marketing-lead strong { color: var(--ink); font-weight: 700; }
.insights-marketing-lead em { font-style: normal; color: var(--coral); font-weight: 700; }

.insights-marketing-practices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.insights-marketing-practice {
  background: var(--white);
  border-left: 3px solid var(--teal-deep);
  padding: 22px 22px;
  border-radius: 0 4px 4px 0;
}

.insights-marketing-practice-tag {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 10px;
}

.insights-marketing-practice-text {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--ink);
}

.insights-marketing-practice-text strong { font-weight: 700; }
.insights-marketing-practice-text em { font-style: normal; color: var(--coral); font-weight: 700; }

.insights-marketing-source {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Brazil callout */
.brazil-cut {
  background: var(--paper-warm);
  border-left: 5px solid var(--amber);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 0 6px 6px 0;
  position: relative;
}

@media (max-width: 600px) {
  .brazil-cut { padding: 24px 22px; margin: 28px 0; }
}

.brazil-cut-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B97824;
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .brazil-cut-flag { font-size: 0.82rem; }
}

.brazil-cut-flag::before {
  content: '';
  width: 24px;
  height: 16px;
  background: linear-gradient(90deg, #009C3B 33%, #FFDF00 33%, #FFDF00 66%, #002776 66%);
  border-radius: 2px;
}

.brazil-cut p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
}

@media (max-width: 600px) {
  .brazil-cut p { font-size: 1.02rem; }
}

.brazil-cut p strong { font-weight: 600; }

/* ==== VIBE MENU INTERACTIVE ==== */
.vibe-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper-warm) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .vibe-section { padding: 56px 0; }
}

.vibe-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .vibe-layout { grid-template-columns: 1fr; gap: 48px; }
}

.vibe-wheel-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.vibe-wheel {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(15,31,34,0.12));
}

.vibe-segment {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1.4);
  transform-origin: center;
}

.vibe-segment:hover { filter: brightness(1.1); }
.vibe-segment.active {
  filter: brightness(1.05) drop-shadow(0 0 20px rgba(231,111,81,0.5));
}

.vibe-label {
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 700;
  fill: var(--white);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.vibe-center-circle {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-width: 1;
}

.vibe-center-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  fill: var(--ink);
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: -0.01em;
}

.vibe-center-sub {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  fill: var(--ink-mute);
  text-anchor: middle;
  pointer-events: none;
  text-transform: uppercase;
}

.vibe-info {
  background: var(--white);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.vibe-info-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.vibe-info-eyebrow::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vibe-color, var(--coral));
}

.vibe-info-title {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}

.vibe-info-translation {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 500;
  color: var(--teal-deep);
  margin-bottom: 28px;
}

.vibe-info-data {
  background: var(--paper);
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 24px;
  border-left: 3px solid var(--coral);
}

.vibe-info-data-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.vibe-info-data-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.vibe-info-example {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.vibe-info-example strong { color: var(--ink); font-weight: 600; }

.vibe-info-source {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 16px;
}

.vibe-instructions {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 24px;
}

/* ==== MARKET COMPARISON ==== */
.markets-section {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .markets-section { padding: 56px 0; }
}

.markets-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
}

.markets-section .section-eyebrow { color: var(--amber); }
.markets-section .section-title { color: var(--white); }
.markets-section .section-lede { color: rgba(255,254,249,0.7); }

.markets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

.market-card {
  background: rgba(255,254,249,0.04);
  border: 1px solid rgba(255,254,249,0.1);
  padding: 36px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

@media (max-width: 600px) {
  .market-card { padding: 28px 24px; }
}

.market-card:hover {
  background: rgba(255,254,249,0.07);
  border-color: var(--amber);
  transform: translateY(-4px);
}

.market-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--mc-color, var(--coral));
  transition: width 0.6s ease;
  width: var(--mc-width, 0%);
}

.market-name {
  font-family: var(--mono);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 16px;
}

.market-value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.market-value sup {
  font-size: 0.5em;
  color: var(--coral);
  vertical-align: super;
  margin-left: 4px;
}

.market-desc {
  font-size: 1.05rem;
  color: rgba(255,254,249,0.82);
  line-height: 1.55;
  margin-bottom: 24px;
}

@media (max-width: 600px) {
  .market-desc { font-size: 1rem; }
}

.market-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,254,249,0.65);
  padding-top: 20px;
  border-top: 1px solid rgba(255,254,249,0.12);
}

.market-meta strong {
  color: var(--amber);
  font-weight: 600;
}

.markets-chart-wrap {
  background: rgba(255,254,249,0.03);
  border: 1px solid rgba(255,254,249,0.1);
  padding: 40px;
  border-radius: 4px;
  margin-top: 48px;
}

.markets-chart-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.markets-chart-sub {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,254,249,0.5);
  margin-bottom: 32px;
}

.chart-container {
  position: relative;
  height: 400px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .chart-container { height: 320px; }
}

/* ==== BRAZIL CHART ==== */
.brazil-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  padding: 88px 0;
}

@media (max-width: 768px) {
  .brazil-section { padding: 56px 0; }
}

.brazil-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1024px) {
  .brazil-layout { grid-template-columns: 1fr; gap: 48px; }
}

.brazil-chart-wrap {
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: 40px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.brazil-chart-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.brazil-chart-sub {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.bigstats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.bigstat {
  border-left: 2px solid var(--coral);
  padding: 12px 0 12px 20px;
}

.bigstat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.bigstat-label {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 600px) {
  .bigstat-label { font-size: 0.95rem; }
}

/* ==== PREDICTIONS ==== */
.predictions-section {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.predictions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(244,162,97,.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(231,111,81,.12) 0%, transparent 40%);
  pointer-events: none;
}

.predictions-section > * { position: relative; z-index: 1; }

.predictions-section .section-eyebrow { color: var(--amber); }
.predictions-section .section-title { color: var(--white); }
.predictions-section .section-title em { color: var(--coral); }
.predictions-section .section-lede { color: rgba(255,254,249,0.75); }

@media (max-width: 600px) {
  .predictions-section { padding: 64px 0; }
}


.predictions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,254,249,0.1);
}

.prediction {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,254,249,0.1);
  align-items: start;
  transition: padding 0.3s;
}

.prediction:hover { padding-left: 16px; }

@media (max-width: 768px) {
  .prediction { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
}

.prediction-num {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
}

.prediction-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.prediction-title em {
  font-style: normal;
  color: var(--coral);
  font-weight: 700;
}

.prediction-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,254,249,0.88);
  max-width: 720px;
}

@media (max-width: 600px) {
  .prediction-text { font-size: 1.04rem; }
}

.prediction-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ============ FAQ ============ */
.faq-section {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
  .faq-section { padding: 64px 0; }
}

.faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--coral);
  box-shadow: 0 4px 24px rgba(231, 111, 81, 0.08);
}

.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 28px 26px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 700; }

@media (max-width: 600px) {
  .faq-question { font-size: 1rem; padding: 18px 22px; }
  .faq-answer { padding: 0 22px 22px; font-size: 0.95rem; }
}

/* ==== SOURCES ==== */
.sources-section {
  background: var(--cream);
  padding: 88px 0;
}

@media (max-width: 768px) {
  .sources-section { padding: 56px 0; }
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 48px;
}

.source-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.source-num {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--coral);
  font-weight: 700;
}

.source-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.source-detail {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ==== AUTHOR + CAPTURE ==== */
.author-section {
  background: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .author-section { padding: 56px 0; }
}

.author-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 1024px) {
  .author-grid { grid-template-columns: 1fr; gap: 48px; }
}

.author-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px;
}

.author-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(231,111,81,0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(244,162,97,0.3) 0%, transparent 50%),
    linear-gradient(180deg, var(--teal-deep) 0%, var(--ink) 100%);
}

.author-visual::after {
  content: 'TA';
  font-family: var(--serif);
  font-size: 14rem;
  font-weight: 800;
  color: rgba(255,254,249,0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -0.06em;
  line-height: 1;
}

.author-visual.has-photo::before { display: none; }
.author-visual.has-photo::after { display: none; }

.author-visual.has-photo {
  background: var(--ink);
}

.author-visual.has-photo .author-visual-tag,
.author-visual.has-photo .author-visual-name {
  background: linear-gradient(180deg, transparent 0%, rgba(15,31,34,0.85) 100%);
  display: block;
  padding: 0;
  border-radius: 0;
}

.author-visual.has-photo .author-visual-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(231,111,81,0.95);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  z-index: 2;
}

.author-visual.has-photo .author-visual-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 32px 32px;
  margin: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(15,31,34,0.92) 60%);
  z-index: 2;
  color: var(--white);
}

.author-visual-tag {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
}

.author-visual-name {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 12px;
}

.author-content { padding: 8px 0; }

.author-eyebrow {
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 16px;
}

.author-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}

.author-title em { font-style: normal; color: var(--coral); font-weight: 700; }

.author-bio {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .author-bio { font-size: 1.05rem; }
}

.author-bio strong { color: var(--ink); font-weight: 600; }



/* Capture form */
.capture-card {
  background: var(--ink);
  color: var(--white);
  padding: 48px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  .capture-card { padding: 32px 24px; margin-top: 48px; }
}

.capture-card::before {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 65%);
  opacity: 0.2;
  pointer-events: none;
}

.capture-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .capture-grid { grid-template-columns: 1fr; gap: 32px; }
}

.capture-eyebrow {
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 16px;
}

.capture-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 16px;
}

.capture-title em { color: var(--coral); font-style: normal; font-weight: 700; }

.capture-text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,254,249,0.85);
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .capture-text { font-size: 1rem; }
}

.capture-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-input {
  background: rgba(255,254,249,0.08);
  border: 1px solid rgba(255,254,249,0.2);
  color: var(--white);
  padding: 16px 20px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1.02rem;
  transition: all 0.2s;
  width: 100%;
}

.form-input::placeholder { color: rgba(255,254,249,0.4); }

.form-input:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,254,249,0.1);
}

.form-submit {
  background: var(--amber);
  color: var(--ink);
  padding: 18px 28px;
  border: none;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.005em;
}

.form-submit:disabled { opacity: 0.6; cursor: wait; }

.form-submit:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-1px);
}

.form-disclaimer {
  font-size: 0.88rem;
  color: rgba(255,254,249,0.6);
  text-align: center;
  margin-top: 6px;
  line-height: 1.4;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(244,162,97,0.1);
  border: 1px solid var(--amber);
  border-radius: 4px;
}

.form-success.active { display: block; }

.form-success-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 0.95rem;
  color: rgba(255,254,249,0.8);
}

/* ==== FOOTER ==== */
.site-footer {
  background: var(--ink);
  color: rgba(255,254,249,0.6);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,254,249,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer-brand .logo-mark { background: var(--coral); }
.footer-brand .logo-mark::after { background: var(--amber); }

.footer-brand-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 20px;
  letter-spacing: -0.015em;
}

.footer-brand-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 360px;
  color: rgba(255,254,249,0.7);
}

.footer-col-title {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,254,249,0.7);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,254,249,0.1);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,254,249,0.55);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==== SEARCH OVERLAY ==== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,31,34,0.92);
  backdrop-filter: blur(20px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.active { display: flex; }

.search-overlay-inner {
  width: 100%;
  max-width: 720px;
  padding: 0 32px;
}

.search-overlay-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--amber);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  padding: 16px 0;
  outline: none;
  letter-spacing: -0.025em;
}

.search-overlay-input::placeholder { color: rgba(255,254,249,0.3); }

.search-overlay-results {
  margin-top: 32px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-overlay-result {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,254,249,0.1);
  cursor: pointer;
  transition: padding 0.2s;
}

.search-overlay-result:hover { padding-left: 12px; }

.search-overlay-result-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.search-overlay-result-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.35;
}

.search-overlay-result-snippet {
  font-size: 0.85rem;
  color: rgba(255,254,249,0.6);
  margin-top: 6px;
  line-height: 1.4;
}

.search-overlay-result mark {
  background: rgba(244,162,97,0.3);
  color: var(--amber);
  padding: 1px 4px;
  border-radius: 2px;
}

.search-overlay-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: 1px solid rgba(255,254,249,0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.search-overlay-close:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: rotate(90deg);
}

/* ==== ANIMATIONS ==== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeUp 0.8s ease forwards; }

[data-stagger] > * { opacity: 0; }
[data-stagger].animate > *:nth-child(1) { animation: fadeUp 0.6s ease 0s forwards; }
[data-stagger].animate > *:nth-child(2) { animation: fadeUp 0.6s ease 0.1s forwards; }
[data-stagger].animate > *:nth-child(3) { animation: fadeUp 0.6s ease 0.2s forwards; }
[data-stagger].animate > *:nth-child(4) { animation: fadeUp 0.6s ease 0.3s forwards; }
[data-stagger].animate > *:nth-child(5) { animation: fadeUp 0.6s ease 0.4s forwards; }
[data-stagger].animate > *:nth-child(n+6) { animation: fadeUp 0.6s ease 0.5s forwards; }

/* Hidden during search filter */
.filtered-out { display: none !important; }

/* ==== UTILITY ==== */
.divider-line {
  height: 1px;
  background: var(--line);
  margin: 80px auto;
  max-width: 1280px;
}

[data-section-id], [id^="trend-"], [id^="sub-"], #form-download, #brasil, #mercados, #vibe-menu, #ebook, #fontes, #previsoes, #tendencias {
  scroll-margin-top: 130px;
}

@media (max-width: 768px) {
  [data-section-id], [id^="trend-"], [id^="sub-"], #form-download, #brasil, #mercados, #vibe-menu, #ebook, #fontes, #previsoes, #tendencias {
    scroll-margin-top: 110px;
  }
}


/* ==== QUICK JUMP DROPDOWN ==== */
.quick-jump {
  position: relative;
}

.quick-jump-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  background: var(--white);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

@media (max-width: 600px) {
  .quick-jump-trigger {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .quick-jump { width: 100%; }
}

.quick-jump-trigger:hover {
  border-color: var(--teal-deep);
  color: var(--teal-deep);
}

.quick-jump-trigger .chevron {
  transition: transform 0.25s;
}

.quick-jump.open .quick-jump-trigger {
  border-color: var(--teal-deep);
  background: var(--teal-deep);
  color: var(--white);
}

.quick-jump.open .quick-jump-trigger .chevron {
  transform: rotate(180deg);
}

.quick-jump-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(640px, calc(100vw - 32px));
  max-height: 70vh;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(15,31,34,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 60;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.quick-jump.open .quick-jump-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .quick-jump-panel {
    position: fixed;
    top: 130px;
    left: 16px;
    right: 16px;
    width: auto;
    max-height: calc(100vh - 150px);
    transform: translateY(-8px);
  }
  .quick-jump.open .quick-jump-panel {
    transform: translateY(0);
  }
}

.quick-jump-search {
  padding: 16px;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
}

.quick-jump-search input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
}

.quick-jump-search input:focus {
  outline: none;
  border-color: var(--teal-deep);
  background: var(--white);
}

.quick-jump-list {
  overflow-y: auto;
  padding: 8px 0;
  flex: 1;
}

.qj-macro {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 24px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border-top: 1px solid var(--line-soft);
  transition: all 0.15s;
}

.qj-macro:first-child { border-top: none; }

.qj-macro:hover {
  background: var(--paper-warm);
  color: var(--coral);
}

.qj-macro-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 28px;
}

.qj-subs {
  background: var(--paper);
  padding: 4px 0 8px 58px;
  border-top: 1px solid var(--line-soft);
}

.qj-sub {
  display: block;
  padding: 9px 24px 9px 0;
  text-decoration: none;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  transition: all 0.15s;
  border-bottom: 1px dashed transparent;
}

.qj-sub:hover {
  color: var(--coral);
  padding-left: 6px;
}

.qj-sub-num {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-weight: 600;
  margin-right: 10px;
}

.qj-empty {
  padding: 32px 20px;
  text-align: center;
  font-family: var(--sans);
  color: var(--ink-mute);
  font-size: 0.88rem;
  font-style: italic;
}



/* ==== SUBTREND STAT SOURCE (fonte por dado) ==== */
.subtrend-stat-source {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(231,111,81,0.25);
  line-height: 1.35;
}

.icard-stat-source {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 10px;
}

.bigstat-source {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 10px;
}

.market-meta strong {
  color: var(--amber);
  font-weight: 700;
}


/* Author photo */
.author-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 1;
  display: block;
}

/* Author socials */
.author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.author-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
}

.author-social:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231,111,81,0.3);
}

.author-social svg {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .author-social {
    font-size: 0.88rem;
    padding: 10px 16px;
  }
}