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

:root {
  --verde: #d8ff00;
  --verde-alt: #c8f101;
  --blue-dark: #003372;
  --blue-card: #06629a;
  --blue-border: #3175e7;
  --blue-border-light: #98baf3;
  --white: #ffffff;
  --max-width: 1240px;
}

body {
  font-family: 'Inter', sans-serif;
  background: #001a3a;
  color: var(--white);
  line-height: 1.4;
}

.newsletter {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.newsletter.bg-main { background: url('../assets/bg-full.png') center top / cover no-repeat; }
.newsletter.bg-pp1 { background: url('../assets/bg-pp1.png') center top / cover no-repeat; }
.newsletter.bg-pp2 { background: url('../assets/bg-pp2.png') center top / cover no-repeat; }
.newsletter.bg-pp3 { background: url('../assets/bg-pp3.png') center top / cover no-repeat; }
.newsletter.bg-page04 { background: url('../assets/bg-page04.png') center top / cover no-repeat; }
.newsletter.bg-page07 { background: url('../assets/bg-page07.png') center top / cover no-repeat; }

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/overlay.svg') -793px 0 / 1308px 1334px no-repeat;
  opacity: 0.21;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  padding: 48px 124px 80px;
}

.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.back-btn:hover { opacity: 1; }

.back-btn img {
  width: 14px;
  height: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 31px;
}

.header-left h1 {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -1.92px;
  line-height: 1;
  margin-bottom: 42px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.header-meta .divider {
  width: 1px;
  height: 18px;
  background: var(--verde);
}

.header-meta .edition { color: var(--verde); }

.header-right { text-align: right; }

.header-right .logo {
  width: 188px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 35px;
}

.header-right .date {
  color: var(--verde);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
}

.reading-time {
  display: inline-flex;
  align-items: center;
  height: 43px;
  padding: 0 22px;
  margin-bottom: 38px;
  background: rgba(0, 51, 114, 0.6);
  border: 1.15px solid var(--blue-border);
  border-radius: 61px;
  gap: 12px;
  font-size: 14px;
  letter-spacing: -0.28px;
}

.reading-time .reading-label {
  color: var(--white);
  font-weight: 400;
}

.reading-time .reading-value {
  color: var(--verde);
  font-weight: 400;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.76px;
  margin-bottom: 9px;
}

.section-title-sm {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -1.96px;
  margin-bottom: 40px;
}

.page-heading .title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1.52px;
  margin-bottom: 4px;
}

.page-heading .period {
  font-size: 20px;
  font-weight: 300;
  color: var(--verde-alt);
  letter-spacing: -0.8px;
  margin-bottom: 32px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.4px;
  color: var(--verde);
  margin-bottom: 24px;
}

.section-subtitle .highlight,
.market-analysis p .highlight {
  font-weight: 500;
  color: var(--verde);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 12px 18px;
  border-radius: 61px;
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: -0.29px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  color: inherit;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--blue-dark);
  border: 1.15px solid var(--blue-border);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1.15px solid var(--verde);
  color: var(--verde);
}

.btn .arrow {
  width: 12px;
  height: 19px;
  transform: rotate(90deg);
}

.market-analysis { margin-bottom: 40px; }

.market-analysis p,
.body-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.4px;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 24px;
}

.market-analysis p {
  color: var(--verde);
  max-width: 763px;
}

.body-text strong,
.body-text .semibold { font-weight: 600; }

.hero-stat {
  text-align: center;
  margin: 40px 0 30px;
}

.hero-stat .value {
  font-size: 82px;
  font-weight: 300;
  letter-spacing: -8.2px;
  line-height: 1;
}

.hero-stat .label {
  font-size: 24px;
  color: var(--verde);
  letter-spacing: -0.48px;
  margin-top: -10px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 19px 0;
  margin-bottom: 88px;
  position: relative;
}

.stats-row::before,
.stats-row::after {
  content: '';
  position: absolute;
  top: 19px;
  bottom: 19px;
  width: 1px;
  background: rgba(255,255,255,0.3);
}

.stats-row::before { left: 33.33%; }
.stats-row::after { left: 66.66%; }

.stat-item { text-align: center; padding: 10px; }

.stat-item .value {
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -4.06px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-item .value .plus { color: var(--verde); }
.stat-item .label { font-size: 16px; color: var(--verde); }

.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 66px;
  margin-bottom: 26px;
}

.card {
  background: var(--blue-card);
  border: 1.5px solid var(--blue-border-light);
  border-radius: 19px;
  padding: 23px 31px;
  height: 254px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.2s;
}

.card:hover { opacity: 0.9; }

.card h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1.68px;
  margin-bottom: 22px;
}

.card .period {
  font-size: 20px;
  letter-spacing: -1.4px;
  flex: 1;
}

.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--verde);
  font-size: 14px;
  letter-spacing: -0.28px;
}

.card .card-link .arrow {
  width: 12px;
  height: 19px;
  transform: rotate(90deg);
}

.charts-section { margin-bottom: 60px; }

.charts-content {
  display: grid;
  grid-template-columns: 1fr 389px;
  gap: 40px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.charts-left .percent {
  font-size: 48px;
  color: var(--verde);
  letter-spacing: -3.36px;
  margin-bottom: 7px;
}

.charts-left p {
  font-size: 28px;
  letter-spacing: -1.96px;
  margin-bottom: 20px;
}

.charts-right img,
.chart-image img {
  width: 100%;
  height: auto;
  display: block;
}

.chart-block {
  margin-bottom: 48px;
}

.chart-block .section-title {
  margin-bottom: 4px;
}

.chart-block .period {
  font-size: 22px;
  font-weight: 300;
  color: var(--verde-alt);
  letter-spacing: -0.44px;
  margin-bottom: 24px;
}

.chart-image {
  border-radius: 12px;
  overflow: hidden;
}

.abc-section { margin-bottom: 60px; }
.abc-section .section-title { margin-bottom: 37px; }

.abc-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 21px;
  align-items: start;
  margin-bottom: 46px;
}

.abc-icon {
  width: 88px;
  height: 87px;
  background: rgba(6, 98, 154, 0.45);
  border: 1px solid var(--blue-border-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abc-icon img { width: 44px; height: 44px; object-fit: contain; }

.abc-text {
  font-size: 20px;
  letter-spacing: -0.8px;
  padding-top: 4px;
}

.abc-text strong {
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.news-box { margin-bottom: 60px; }
.news-box .section-title { margin-bottom: 6px; }

.news-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 17px;
  background: rgba(6, 98, 154, 0.85);
  border: 1px solid var(--blue-border-light);
  border-radius: 14px;
  padding: 19px 24px;
  margin-top: 6px;
}

.news-item .news-icon {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-item .news-icon img { width: 60px; height: 60px; }
.news-item p { font-size: 20px; letter-spacing: -0.4px; }

.agenda-section { margin-bottom: 60px; }
.agenda-section .section-title { margin-bottom: 6px; }
.agenda-section .section-subtitle { font-weight: 300; margin-bottom: 38px; }

.event-list { display: flex; flex-direction: column; gap: 22px; }

.event-item {
  display: grid;
  grid-template-columns: 59px 1px 1px auto 1fr;
  align-items: center;
  gap: 0 17px;
  background: rgba(6, 98, 154, 0.85);
  border: 1px solid var(--blue-border-light);
  border-radius: 14px;
  padding: 18px 26px;
}

.event-item .cal-icon { width: 59px; height: 59px; }

.event-item .vline {
  width: 1px;
  height: 73px;
  background: rgba(255,255,255,0.4);
  mix-blend-mode: soft-light;
}

.event-date { text-align: center; min-width: 50px; }

.event-date .day {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.04px;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  letter-spacing: -0.56px;
  margin-top: 4px;
}

.event-title {
  font-size: 23px;
  letter-spacing: -0.92px;
  padding-left: 20px;
}

.event-title strong { font-weight: 700; }

.about-section { margin-bottom: 60px; }
.about-section .section-title { margin-bottom: 14px; }

.about-section p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.4px;
  text-align: justify;
  line-height: 1.5;
}

.footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
}

.footer .tagline {
  font-size: 21.4px;
  font-style: italic;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 196px 1fr 207px;
  gap: 20px;
  text-align: left;
  font-size: 14px;
  letter-spacing: -0.98px;
  line-height: 1.5;
}

.footer-center { text-align: center; }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 21px;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
}

.footer-social a:hover { color: var(--verde); }

@media (max-width: 900px) {
  .content { padding: 32px 24px 60px; }
  .header { flex-direction: column; gap: 24px; }
  .header-left h1 { font-size: 56px; margin-bottom: 20px; }
  .header-right { text-align: left; }
  .cards-row { grid-template-columns: 1fr; gap: 20px; }
  .stats-row { grid-template-columns: 1fr; gap: 20px; }
  .stats-row::before, .stats-row::after { display: none; }
  .charts-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .event-item { grid-template-columns: 59px auto 1fr; gap: 12px; }
  .event-item .vline { display: none; }
  .news-item { grid-template-columns: 1fr; text-align: center; }
}
