/* =========================================================================
   IPO HGI – Landing page (HTML + CSS thuần)
   Chuyển thể từ bản Next.js/Tailwind. Màu lấy từ hagl-invest.vn và bộ nhận
   diện IPO của OCBS/HGI.

   Mục lục
   01. Token & reset
   02. Tiện ích dùng chung (container, eyebrow, nút, reveal…)
   03. Header + điều hướng + thanh tiến trình cuộn
   04. Hero
   05. Dải KPI
   06. Câu chuyện 4 bước
   07. Thư viện ảnh chạy ngang (marquee)
   08. Sản phẩm (3 cây trồng)
   09. Lộ trình khai thác + biểu đồ cột chồng
   10. Chuỗi giá trị
   11. Thị trường + bản đồ
   12. Video
   13. Tài chính
   14. Ban lãnh đạo
   15. Lịch IPO + điều khoản + máy tính tiền cọc
   16. Cách tham gia + chuyển khoản + form đăng ký
   17. Liên hệ chuyên viên
   18. Hỏi – đáp
   19. Dải ảnh ngăn + Tài liệu
   20. Footer + thanh CTA cố định (di động)
   21. Popover nguồn số liệu + modal video
   ========================================================================= */

/* ============================ 01. Token & reset ========================= */
:root {
  /* Bảng màu thương hiệu */
  --green: #0f9b4b;
  --green-dark: #006b2a;
  --green-light: #7ed957;
  --forest: #06351f;
  --forest-2: #0b5a30;
  --gold: #d9a929;
  --gold-light: #f3d27a;
  --orange: #f5961e;
  --cream: #faf8f5;
  --mint: #f0f6f1;
  --sage: #e8ede6;
  --basalt: #c0562f;
  --ink: #0a1d13;
  --brown: #9c5221;

  /* Token giao diện */
  --bg: #ffffff;
  --fg: #0e1c24;
  --muted: #f3f6f3;
  --muted-fg: #5b6b60;
  --accent: #fdf3dc;
  --accent-fg: #7a5a0c;
  --border: #dce5df;
  --destructive: #c0392b;

  --radius: 0.75rem;
  --radius-sm: 0.45rem;
  --radius-md: 0.6rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.05rem;
  --radius-2xl: 1.35rem;

  --header-h: 88px;
  --container: 80rem;

  --font-sans: "Be Vietnam Pro", ui-sans-serif, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgb(6 53 31 / 0.06);
  --shadow-md: 0 4px 14px rgb(6 53 31 / 0.08);
  --shadow-lg: 0 12px 32px rgb(6 53 31 / 0.12);
  --shadow-xl: 0 24px 60px rgb(6 53 31 / 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

/* Thuộc tính width/height trên thẻ <img> chỉ là gợi ý tỷ lệ – không được
   biến thành chiều cao thật (nếu không ảnh poster video sẽ bị kéo dài). */
img {
  height: auto;
}

/* Trình duyệt không áp dụng [hidden] cho phần tử SVG – khai báo lại cho chắc */
[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ====================== 02. Tiện ích dùng chung ========================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 5rem;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

@media (min-width: 640px) {
  .section {
    padding-block: 7rem;
  }
}

.bg-white {
  background: #fff;
}
.bg-mint {
  background: var(--mint);
}
.bg-cream {
  background: var(--cream);
}
.bg-forest {
  background: var(--forest);
  color: #fff;
}

/* Số liệu: chữ số đều cột */
.tabular {
  font-variant-numeric: tabular-nums;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Nhãn nhỏ in hoa – chữ ký của hagl-invest.vn.
   Gạch dẫn "——" chỉ xuất hiện ở tiêu đề mục (.heading), giống bản gốc. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green);
}

.heading .eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: var(--green-light);
}


/* Tiêu đề mục */
.heading {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.heading--left {
  margin-inline: 0;
  text-align: left;
}

.heading h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.875rem, 1.2rem + 2.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--forest);
}

.heading p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--muted-fg);
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .heading p {
    font-size: 1.125rem;
  }
}

.heading--dark h2 {
  color: #fff;
}

.heading--dark p {
  color: rgb(255 255 255 / 0.75);
}

/* Viền focus cho người dùng bàn phím – ô nhập liệu có kiểu riêng bên dưới */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

.bg-forest a:focus-visible,
.cta a:focus-visible,
.site-header a:focus-visible,
.site-header button:focus-visible,
.site-footer a:focus-visible,
.sticky-cta a:focus-visible {
  outline-color: var(--gold-light);
}

/* Icon dùng chung (sprite) */
.icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  stroke: currentColor;
  fill: none;
}

.icon-sm {
  width: 0.85rem;
  height: 0.85rem;
}
.icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}
.icon-xl {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-2xl {
  width: 2rem;
  height: 2rem;
}

/* Nút */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3rem;
  padding-inline: 1.5rem;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}


.btn--ghost {
  height: 3rem;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: var(--radius-xl);
  background: rgb(255 255 255 / 0.05);
  color: #fff;
  font-weight: 500;
}

.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* Nút "shimmer" – vệt sáng chạy vòng quanh viền */
.btn-shimmer {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #0f9b4b 0%, #006b2a 100%);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.3s;
  --shimmer: #f3d27a;
}

.btn-shimmer:active {
  transform: translateY(1px);
}

.btn-shimmer--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-shimmer:disabled {
  opacity: 0.6;
  cursor: progress;
}

.btn-shimmer::before {
  /* vòng sáng quay */
  content: "";
  position: absolute;
  inset: -150%;
  z-index: -2;
  background: conic-gradient(from 225deg, transparent 0, var(--shimmer) 90deg, transparent 90deg);
  animation: spin-around 6s linear infinite;
}

.btn-shimmer::after {
  /* nền che, chừa lại viền sáng 1px */
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: inherit;
  box-shadow: inset 0 -8px 10px rgb(255 255 255 / 0.12);
}

@keyframes spin-around {
  to {
    transform: rotate(360deg);
  }
}

/* Chip / thẻ nhỏ */
.chip {
  display: inline-block;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: var(--mint);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
}


.note {
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.link-green {
  font-weight: 600;
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-green:hover {
  color: var(--green);
}

/* Hiện dần khi cuộn tới – thay cho BlurFade/TextAnimate của bản React */
.reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: var(--d, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal--left {
  transform: translateX(10px);
}

/* Thanh chạy: dùng chung cho thư viện ảnh và danh sách siêu thị */
.marquee {
  display: flex;
  gap: var(--gap, 0px);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  flex: none;
  gap: var(--gap, 0px);
  align-items: center;
  animation: marquee var(--duration, 40s) linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap, 0px)));
  }
}

.mask-x {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

/* Ảnh phủ kín khung */
.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mức mờ của ảnh nền theo từng mục */
.cover--soft {
  opacity: 0.7;
}

.cover--dim {
  opacity: 0.4;
}

/* Mục có ảnh nền: nội dung phải nằm trên lớp ảnh + lớp phủ */
.has-media {
  position: relative;
  overflow: hidden;
}

.above {
  position: relative;
}

/* Sprite icon ở đầu trang – không chiếm chỗ trong bố cục */
.sprite {
  position: absolute;
}

/* Màu chữ dùng lại trong đoạn văn */
.t-forest {
  color: var(--forest);
}

.t-white {
  color: #fff;
}

.asterisk {
  margin-right: 0.25rem;
  color: var(--green);
}

.link-gold {
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hàng chứa nút nguồn số liệu ⓘ */
.src-row {
  margin-top: 0.75rem;
}

.src-row--lg {
  margin-top: 1rem;
}

/* Số cột của hai biểu đồ */
.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ================ 03. Header, điều hướng, tiến trình cuộn =============== */
.scroll-progress {
  position: fixed;
  inset-inline: 0;
  top: var(--header-h);
  z-index: 60;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(to right, var(--gold), var(--green), var(--gold-light));
}

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  color: #fff;
}

.header-top {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(10 29 19 / 0.9);
  backdrop-filter: blur(12px);
}

.header-top__inner {
  display: flex;
  height: 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-top__brand {
  flex: none;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-top__brand span {
  font-weight: 400;
  color: rgb(255 255 255 / 0.5);
}

.header-top__note {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(255 255 255 / 0.5);
}

.header-top__note .long {
  display: none;
}

@media (min-width: 640px) {
  .header-top__brand,
  .header-top__note {
    font-size: 11px;
  }
  .header-top__brand {
    letter-spacing: 0.22em;
  }
  .header-top__note {
    letter-spacing: 0.12em;
  }
  .header-top__note .long {
    display: inline;
  }
  .header-top__note .short {
    display: none;
  }
}

.header-main {
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(6 53 31 / 0.85);
  backdrop-filter: blur(12px);
}

.header-main__inner {
  display: flex;
  height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  flex: none;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.25rem 0.375rem;
}

.brand__logo img {
  height: 1.25rem;
  width: auto;
}

.brand__text {
  min-width: 0;
  line-height: 1.25;
}

.brand__name {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 700;
}

.brand__role {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 11px;
  color: rgb(255 255 255 / 0.6);
}

@media (min-width: 640px) {
  .brand__logo {
    padding-inline: 0.5rem;
  }
  .brand__logo img {
    height: 1.5rem;
  }
}

.nav-desktop {
  display: none;
  flex: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}

@media (min-width: 1280px) {
  .nav-desktop {
    gap: 1.25rem;
  }
}

.nav-desktop a {
  position: relative;
  padding-block: 0.25rem;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  color: rgb(255 255 255 / 0.7);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--gold-light);
}

.nav-desktop a.is-active {
  color: #fff;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform 0.25s ease-out;
}

.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 0.5rem;
}

.header-phone {
  display: none;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--gold-light);
}

@media (min-width: 768px) {
  .header-phone {
    display: inline;
  }
}

.header-zalo {
  display: inline-flex;
  height: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  padding-inline: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  transition: filter 0.2s;
}

.header-zalo:hover {
  filter: brightness(1.1);
}

.header-zalo span {
  display: none;
}

@media (min-width: 640px) {
  .header-zalo {
    padding-inline: 1rem;
  }
  .header-zalo span {
    display: inline;
  }
}

.nav-toggle {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.nav-toggle:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

/* Bảng menu di động */
.nav-backdrop {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 40;
  background: rgb(0 0 0 / 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.nav-mobile {
  position: fixed;
  inset-inline: 0;
  top: var(--header-h);
  z-index: 50;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(6 53 31 / 0.97);
  backdrop-filter: blur(12px);
  padding: 0.5rem 1rem 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out, visibility 0.22s;
}

body.nav-open .nav-backdrop,
body.nav-open .nav-mobile {
  opacity: 1;
  visibility: visible;
}

body.nav-open .nav-mobile {
  transform: none;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 640px) {
  .nav-mobile {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-backdrop,
  .nav-mobile {
    display: none;
  }
}

.nav-mobile li + li {
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgb(255 255 255 / 0.85);
}

.nav-mobile a.is-active {
  color: var(--gold-light);
}

.nav-mobile a > span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-mobile .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgb(255 255 255 / 0.4);
}

.nav-mobile .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold-light);
  opacity: 0;
}

.nav-mobile a.is-active .dot {
  opacity: 1;
}

/* ================================ 04. Hero ============================== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero__slide.is-on {
  opacity: 1;
  animation: hero-zoom 7.5s linear forwards;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

/* Khung ngắm riêng cho từng ảnh nền hero */
.hero__slide img.pos-right {
  object-position: 70% center;
}

.hero__slide img.pos-low {
  object-position: center 30%;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(15 155 75 / 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgb(15 155 75 / 0.28) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(600px circle at 20% 30%, #000, transparent);
  mask-image: radial-gradient(600px circle at 20% 30%, #000, transparent);
}

.hero__wash-1 {
  background: linear-gradient(to right, var(--forest), rgb(6 53 31 / 0.85) 45%, rgb(6 53 31 / 0.2));
}

.hero__wash-2 {
  background: linear-gradient(to top, var(--forest), transparent 55%, rgb(6 53 31 / 0.4));
}

.hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 8rem 5rem;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding-block: 10rem 7rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  padding: 0.375rem 1rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgb(255 255 255 / 0.85);
}

@media (min-width: 640px) {
  .hero__badge {
    font-size: 0.75rem;
  }
}

.hero__badge::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--green-light);
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.25rem, 1.2rem + 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero h1 .line {
  display: block;
}

/* Chữ "HGI" chuyển sắc vàng – xanh */
.aurora {
  display: inline-block;
  margin-top: 0.5rem;
  background: linear-gradient(110deg, #f3d27a, #d9a929, #ffffff, #7ed957, #f3d27a);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora 8s linear infinite;
}

@keyframes aurora {
  to {
    background-position: 300% 0;
  }
}

.hero__issuer {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgb(255 255 255 / 0.85);
}

.hero__lead {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.8);
}

@media (min-width: 640px) {
  .hero__issuer,
  .hero__lead {
    font-size: 1.25rem;
  }
  .hero__lead {
    font-size: 1.125rem;
  }
}

/* Từ xoay vòng: chuối → sầu riêng → cà phê */
.word-rotate {
  display: inline-block;
  font-weight: 700;
  color: var(--green-light);
}

.word-rotate span {
  display: inline-block;
  transition: opacity 0.18s ease-out, transform 0.18s ease-out;
}

.word-rotate.is-out span {
  opacity: 0;
  transform: translateY(-10px);
}

.hero__facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

@media (min-width: 640px) {
  .hero__facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero__facts > div {
  border-left: 2px solid rgb(126 217 87 / 0.7);
  padding-left: 0.75rem;
}

.hero__facts dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(255 255 255 / 0.6);
}

.hero__facts dd {
  margin-top: 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero__facts dd {
    font-size: 1.25rem;
  }
}

.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Thẻ đếm ngược trong hero */
.deadline-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-2xl);
  background: rgb(255 255 255 / 0.06);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}

@media (min-width: 640px) {
  .deadline-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .deadline-card {
    backdrop-filter: blur(12px);
  }
}

.deadline-card__date {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.countdown__unit {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-xl);
  background: rgb(255 255 255 / 0.1);
  padding: 0.75rem 0.5rem;
  text-align: center;
}

.countdown__value {
  font-size: 1.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .countdown__value {
    font-size: 2.25rem;
  }
}

.countdown__label {
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(255 255 255 / 0.6);
}

.countdown__over {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gold-light);
}

.deadline-card__list {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.deadline-card__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.deadline-card__list span:first-child {
  color: rgb(255 255 255 / 0.75);
}

.deadline-card__list span:last-child {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.deadline-card__ocbs {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  background: rgb(255 255 255 / 0.95);
  padding: 0.75rem 1rem;
  color: var(--forest);
}

.deadline-card__ocbs p:first-child {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

.deadline-card__ocbs p:last-child {
  font-size: 0.75rem;
  color: rgb(6 53 31 / 0.7);
}

.deadline-card__ocbs img {
  height: 2rem;
  width: auto;
}

/* ============================= 05. Dải KPI ============================== */
.kpi {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  padding-bottom: 5rem;
}

@media (min-width: 640px) {
  .kpi {
    padding-bottom: 6rem;
  }
}

.kpi__grid {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 0.75rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
  .kpi__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
}

@media (min-width: 1024px) {
  .kpi__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.kpi__tile {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgb(232 237 230 / 0.8);
  border-radius: var(--radius-2xl);
  background: rgb(250 248 245 / 0.6);
  padding: 1rem;
}

@media (min-width: 640px) {
  .kpi__tile {
    padding: 1.25rem;
  }
}

.kpi__head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.kpi__icon {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: rgb(15 155 75 / 0.1);
  color: var(--green);
}

.kpi__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.kpi__value {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--forest);
}

@media (min-width: 640px) {
  .kpi__value {
    font-size: 2.25rem;
  }
}

.kpi__unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(6 53 31 / 0.7);
}

.kpi__visual {
  margin-top: 1rem;
  flex: 1;
}

.kpi__note {
  margin-top: 0.75rem;
  font-size: 11px;
  line-height: 1.375;
  color: var(--muted-fg);
}

.kpi__note--tight {
  margin-top: 0.375rem;
}

/* Dòng nguồn dưới dải KPI */
.kpi__source {
  margin-top: 1rem;
  text-align: center;
}

/* Thanh tiến trình nhỏ dùng lại nhiều nơi */
.bar {
  height: 0.5rem;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(232 237 230 / 0.7);
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  width: 0;
  transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

.bar--muted > span {
  background: rgb(6 53 31 / 0.25);
}

.bar--tall {
  height: 0.625rem;
}

.is-in .bar > span,
.bar.is-in > span {
  width: var(--w, 0%);
}

.bar-legend {
  margin-top: 0.375rem;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-fg);
}

.bar-legend strong {
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* Thang percentile của EPS */
.percentile {
  position: relative;
  height: 0.625rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--sage), rgb(15 155 75 / 0.4), var(--green));
}

.percentile span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transition: left 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s;
}

.is-in .percentile span {
  left: var(--left, 0%);
  opacity: 1;
}

/* Bảng so sánh 2 dòng */
.compare li {
  display: grid;
  grid-template-columns: 5.5rem 1fr 3rem;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
}

.compare li + li {
  margin-top: 0.5rem;
}

.compare .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--muted-fg);
}

.compare .val {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--muted-fg);
}

.compare li.is-highlight .name,
.compare li.is-highlight .val {
  font-weight: 600;
  color: var(--forest);
}

/* Cột nhỏ LNST */
.minicols {
  display: flex;
  height: 3.5rem;
  align-items: flex-end;
  gap: 0.5rem;
}

.minicols > div {
  display: flex;
  height: 100%;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.minicols i {
  display: block;
  width: 100%;
  max-width: 2rem;
  border-radius: 4px 4px 0 0;
  background: var(--green);
  height: 0;
  transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}

.minicols i.is-forecast {
  background: rgb(15 155 75 / 0.4);
}

.is-in .minicols i {
  height: var(--h, 0%);
}

.minicols-x {
  margin-top: 0.25rem;
  display: flex;
  gap: 0.5rem;
  font-size: 10px;
  color: var(--muted-fg);
}

.minicols-x span {
  flex: 1;
  text-align: center;
}

/* Ô cổ tức */
.divchips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.375rem;
}

.divchips li {
  border: 1px solid var(--sage);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 0.375rem 0.5rem;
  text-align: center;
  border-style: dashed;
}

.divchips li:first-child {
  border-style: solid;
  border-color: rgb(217 169 41 / 0.5);
  background: var(--accent);
}

.divchips p:first-child {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted-fg);
}

.divchips p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* ======================= 06. Câu chuyện 4 bước ========================== */
.story__grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .story__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

.story__media {
  display: none;
}

@media (min-width: 1024px) {
  .story__media {
    display: block;
    position: relative;
  }
}

.story__sticky {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  height: 70vh;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--forest);
  box-shadow: var(--shadow-xl);
}

.story__sticky img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.story__sticky img.is-on {
  opacity: 1;
  transform: none;
}

.story__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(6 53 31 / 0.8), transparent 60%);
}

.story__caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  color: #fff;
}

.story__caption p {
  font-size: 0.875rem;
  font-weight: 500;
}

.story__dots {
  display: flex;
  gap: 0.375rem;
}

.story__dots li {
  height: 0.375rem;
  width: 0.75rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.4);
  transition: width 0.3s, background 0.3s;
}

.story__dots li.is-on {
  width: 2rem;
  background: var(--green-light);
}

.beat {
  display: flex;
  min-height: 60vh;
  flex-direction: column;
  justify-content: center;
  padding-block: 2.5rem;
}

@media (min-width: 1024px) {
  .beat {
    min-height: 80vh;
  }
}

.beat__thumb {
  position: relative;
  margin-bottom: 1.5rem;
  height: 14rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

@media (min-width: 1024px) {
  .beat__thumb {
    display: none;
  }
}

.beat__value {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  color: var(--forest);
}

.beat__prefix {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.beat__num {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .beat__prefix {
    font-size: 1.875rem;
  }
  .beat__num {
    font-size: 3.75rem;
  }
}

.beat__suffix {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.beat h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest);
}

@media (min-width: 640px) {
  .beat h3 {
    font-size: 1.875rem;
  }
}

.beat__desc {
  margin-top: 0.75rem;
  max-width: 36rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.beat__chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ======================== 07. Thư viện ảnh ============================== */
.gallery {
  overflow: hidden;
  background: #fff;
  padding-block: 3.5rem;
  scroll-margin-top: var(--header-h);
}

.gallery .eyebrow {
  display: flex;
  justify-content: center;
}

.gallery__rows {
  position: relative;
  margin-top: 1.5rem;
}

.marquee--row2 {
  margin-top: 1rem;
}

.photo {
  position: relative;
  margin-inline: 0.5rem;
  height: 11rem;
  width: 16rem;
  flex: none;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

@media (min-width: 640px) {
  .photo {
    height: 13rem;
    width: 20rem;
  }
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.photo:hover img {
  transform: scale(1.05);
}

.photo figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.7), transparent);
  padding: 2.5rem 1rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

/* ============================ 08. Sản phẩm ============================== */
.crops {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.crops__note {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .crops {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Thẻ có quầng sáng chạy theo con trỏ (thay MagicCard) */
.magic-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.magic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgb(15 155 75 / 0.16), transparent 70%);
}

.magic-card:hover::before {
  opacity: 1;
}

.magic-card:hover {
  box-shadow: var(--shadow-md);
}

.crop__media {
  position: relative;
  height: 14rem;
}

.crop__media > img:first-child {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  object-fit: cover;
}

.crop__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.9);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
}

.crop__node {
  position: absolute;
  right: 1.5rem;
  bottom: -1.5rem;
  width: 4rem;
  height: 4rem;
  border: 4px solid #fff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.crop__body {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem 1.5rem;
}

.crop__body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.crop__ha {
  margin-top: 0.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.crop__ha strong {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.crop__ha span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.crop__desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.crop__stats {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--forest);
}

.crop__stats li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.crop__stats li + li {
  margin-top: 0.5rem;
}

.crop__stats .icon {
  margin-top: 0.15rem;
  color: var(--green);
}

/* Gạch chân vẽ tay (thay Highlighter/rough-notation) */
.underline-hand {
  position: relative;
  white-space: nowrap;
}

.underline-hand::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.15em;
  height: 0.32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 7.5C40 3.5 78 9 118 5.5 148 3 172 6 198 4' stroke='%230f9b4b' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out 0.2s;
}

.is-in .underline-hand::after {
  transform: scaleX(1);
}

/* ==================== 09. Lộ trình khai thác + biểu đồ =================== */
.dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgb(15 155 75 / 0.28) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(60% 50% at 50% 0%, #000, transparent);
  mask-image: radial-gradient(60% 50% at 50% 0%, #000, transparent);
}

.roadmap__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .roadmap__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .roadmap__chart-wrap {
    grid-column: span 2;
  }
}

.callouts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.callout {
  border: 1px solid;
  border-radius: var(--radius-2xl);
  padding: 1.25rem;
}

.callout--green {
  border-color: rgb(15 155 75 / 0.3);
  background: var(--mint);
  color: var(--green-dark);
}

.callout--gold {
  border-color: rgb(217 169 41 / 0.4);
  background: var(--accent);
  color: #8a6a10;
}

.callout--brown {
  border-color: rgb(156 82 33 / 0.3);
  background: #f6efe8;
  color: #7a3f17;
}

.callout__title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.callout__title b {
  margin-right: 0.5rem;
  opacity: 0.6;
}

.callout__value {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
}

.callout__value strong {
  font-size: 1.875rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.callout__value span {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.7;
}

.callout p:last-child {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(6 53 31 / 0.8);
}

/* Khung biểu đồ */
.chart {
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
  height: 100%;
}

.chart__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.chart__head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
}

.chart__head p {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.legend li {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.legend i {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 2px;
  background: var(--c, var(--green));
}

.plot {
  position: relative;
  margin-top: 2rem;
}

.plot--harvest {
  height: 280px;
}

.plot--fin {
  height: 240px;
}

.plot__grid {
  position: absolute;
  inset-inline: 0;
  display: flex;
  height: 0;
  align-items: center;
}

.plot__grid.is-zero {
  align-items: flex-end;
  z-index: 5;
}

.plot__grid span:first-child {
  width: 3rem;
  flex: none;
  padding-right: 0.5rem;
  text-align: right;
  font-size: 11px;
  line-height: 1;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.plot__grid span:last-child {
  height: 1px;
  flex: 1;
  background: var(--sage);
}

.plot__grid.is-zero span:last-child {
  background: rgb(6 53 31 / 0.4);
}

.plot__cols {
  position: absolute;
  inset-block: 0;
  left: 3rem;
  right: 0;
  display: grid;
}

.plot__col {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  border-radius: var(--radius);
  outline: none;
}

.plot__col::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -0.25rem;
  right: -0.25rem;
  border-radius: var(--radius);
  background: transparent;
  transition: background 0.2s;
}

.plot__col:hover::before,
.plot__col:focus-visible::before {
  background: rgb(240 246 241 / 0.75);
}

/* Cột chồng (lộ trình khai thác) */
.plot__col--stack {
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start; /* trong column-reverse: neo ở đáy trục */
  gap: 2px;
}

.seg {
  position: relative;
  width: 2.25rem;
  background: var(--c);
  height: 0;
  transition: height 0.9s ease-out;
  transition-delay: var(--d, 0s);
}

@media (min-width: 640px) {
  .seg {
    width: 2.5rem;
  }
}

.seg.is-top {
  border-radius: 4px 4px 0 0;
}

.is-in .seg {
  height: var(--h);
}

.plot__total {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transition-delay: var(--d, 0.9s);
}

.is-in .plot__total {
  opacity: 1;
  transform: translateX(-50%);
}

/* Cột đôi (doanh thu / lợi nhuận) */
.plot__pair {
  position: relative;
  display: flex;
  height: 100%;
  width: 1.25rem;
  align-items: flex-end;
}

.plot__pair i {
  display: block;
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: var(--c);
  height: 0;
  transition: height 0.9s ease-out;
  transition-delay: var(--d, 0s);
}

.is-in .plot__pair i {
  height: var(--h);
}

.plot__pair b {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(var(--h) + 4px);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity 0.4s 1s;
}

.is-in .plot__pair b {
  opacity: 1;
}

.plot__x {
  margin-left: 3rem;
  margin-top: 0.5rem;
  display: grid;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
}

/* Chú thích nổi khi rê chuột */
.tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 20;
  margin-bottom: 0.5rem;
  width: 13rem;
  transform: translateX(-50%);
  border: 1px solid var(--sage);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 0.75rem;
  font-size: 0.75rem;
  text-align: left;
  box-shadow: var(--shadow-lg);
  display: none;
}

.plot__col:hover .tip,
.plot__col:focus-visible .tip {
  display: block;
}

.tip p {
  font-weight: 700;
  color: var(--forest);
}

.tip dl {
  margin-top: 0.25rem;
}

.tip .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.tip .row + .row {
  margin-top: 0.25rem;
}

.tip .row.is-sep {
  margin-top: 0.25rem;
  border-top: 1px solid var(--sage);
  padding-top: 0.25rem;
}

.tip dt {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--muted-fg);
}

.tip dt i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 2px;
  background: var(--c);
}

.tip dd {
  font-weight: 600;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* Tỷ lệ khai thác */
.util {
  margin-top: 1.5rem;
  border-radius: var(--radius-2xl);
  background: rgb(250 248 245 / 0.7);
  padding: 1rem;
}

.util > p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
}

.util__grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  text-align: center;
}

.util__pct {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.util__pct span {
  font-weight: 400;
  color: var(--muted-fg);
}

.util__bar {
  margin: 0.25rem auto 0;
  height: 0.375rem;
  width: 100%;
  max-width: 6rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage);
}

.util__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  width: 0;
  transition: width 0.8s ease-out;
  transition-delay: var(--d, 0s);
}

.is-in .util__bar i {
  width: var(--w);
}

.util__year {
  margin-top: 0.25rem;
  font-size: 11px;
  color: var(--muted-fg);
}

/* Bảng số liệu trong <details> */
.data-table {
  margin-top: 0.5rem;
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--forest);
}

.data-table thead tr {
  color: var(--muted-fg);
}

.data-table th,
.data-table td {
  padding-block: 0.375rem;
  font-weight: 500;
}

.data-table td,
.data-table thead th:not(:first-child) {
  text-align: right;
}

.data-table tbody tr {
  border-top: 1px solid var(--sage);
}

.data-table tbody tr.is-total {
  border-top-color: rgb(6 53 31 / 0.3);
  font-weight: 600;
}

.scroll-x {
  overflow-x: auto;
}

.data-table--narrow {
  min-width: 28rem;
}

/* Ghi chú dưới biểu đồ */
.chart__note {
  margin-top: 0.75rem;
}

.chart__note--xs {
  margin-top: 0.5rem;
  font-size: 11px;
}

details.data {
  margin-top: 1rem;
  font-size: 0.875rem;
}

details.data > summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-dark);
}

/* ========================= 10. Chuỗi giá trị ============================ */
.chain {
  position: relative;
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem 1rem;
}

@media (min-width: 640px) {
  .chain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .chain {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.chain__beams {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  pointer-events: none;
}

/* Lớp phủ làm dịu ảnh lá cà phê phía sau */
.wash--chain {
  background: linear-gradient(to bottom, rgb(6 53 31 / 0.7), rgb(6 53 31 / 0.4), rgb(6 53 31 / 0.8));
}

@media (min-width: 1024px) {
  .chain__beams {
    display: block;
  }
}

.chain__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.medallion {
  position: relative;
  width: 9rem;
  height: 9rem;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.15), var(--shadow-xl);
}

@media (min-width: 640px) {
  .medallion {
    width: 10rem;
    height: 10rem;
  }
}

.medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.medallion__scrim {
  position: absolute;
  inset: 0;
  background: rgb(6 53 31 / 0.2);
}

.medallion__step {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 0.3);
}

.chain__item h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.chain__item p {
  margin-top: 0.25rem;
  max-width: 11rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.7);
}

.chain-head {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .chain-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .chain-head p {
    text-align: right;
  }
}

.chain-head p {
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.75);
}

/* ====================== 11. Thị trường + bản đồ ========================= */
.markets__grid {
  margin-top: 3.5rem;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .markets__grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.map-frame {
  position: relative;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-2xl);
  background: rgb(6 53 31 / 0.6);
  padding: 1rem;
}

@media (min-width: 640px) {
  .map-frame {
    padding: 1.5rem;
  }
}

.map {
  position: relative;
  width: 100%;
  aspect-ratio: 131.12 / 121.23;
}

.map__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map__pin {
  position: absolute;
  transform: translate(-50%, -50%);
}

.map__pin > div {
  position: relative;
  display: flex;
  align-items: center;
}

.map__ping {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2rem;
  height: 2rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgb(126 217 87 / 0.4);
  animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.map__num {
  position: relative;
  z-index: 10;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 2px var(--forest), var(--shadow-md);
}

.map__pin.is-home .map__num {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--green-light);
  color: var(--forest);
  font-size: 13px;
}

@media (min-width: 640px) {
  .map__num {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
  }
  .map__pin.is-home .map__num {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }
}

.map__label {
  position: absolute;
  display: none;
  white-space: nowrap;
  border-radius: 999px;
  background: rgb(6 53 31 / 0.85);
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 0.15);
}

@media (min-width: 768px) {
  .map__label {
    display: inline;
  }
}

.map__label.is-right {
  left: 100%;
  margin-left: 0.5rem;
}

.map__label.is-left {
  right: 100%;
  margin-right: 0.5rem;
}

.market-list li {
  display: flex;
  gap: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-2xl);
  background: rgb(6 53 31 / 0.5);
  padding: 1rem;
}

.market-list li + li {
  margin-top: 0.75rem;
}

.market-list li.is-home {
  border-color: rgb(126 217 87 / 0.5);
  background: rgb(15 155 75 / 0.25);
}

.market-list .num {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: none;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  border-radius: 999px;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.market-list li.is-home .num {
  background: var(--green-light);
  color: var(--forest);
}

.market-list p:first-child {
  font-weight: 600;
}

.market-list p:last-child {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.65);
}

.retailers {
  margin-top: 3.5rem;
}

/* Lớp phủ trên ảnh nông trường của mục Thị trường */
.wash--markets {
  background: linear-gradient(to bottom, rgb(6 53 31 / 0.85), rgb(6 53 31 / 0.7), rgb(6 53 31 / 0.9));
}

.retailers__strip {
  margin-top: 1rem;
}

.retailers > p {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgb(255 255 255 / 0.5);
}

.retailer {
  margin-inline: 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 999px;
  background: rgb(6 53 31 / 0.5);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  color: rgb(255 255 255 / 0.85);
}

/* =============================== 12. Video ============================== */
.videos {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .videos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-card {
  position: relative;
}

.video-card__frame {
  position: relative;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
}

.video-thumb img {
  width: 100%;
  transition: filter 0.2s;
}

.video-thumb:hover img {
  filter: brightness(0.8);
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.9);
  transition: transform 0.2s;
}

.video-thumb:hover .video-thumb__play {
  transform: scale(1);
}

.video-thumb__play span {
  display: flex;
  width: 7rem;
  height: 7rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(15 155 75 / 0.15);
  backdrop-filter: blur(6px);
}

.video-thumb__play i {
  display: flex;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgb(15 155 75 / 0.35), var(--green));
  box-shadow: var(--shadow-md);
}

.video-thumb__play svg {
  width: 2rem;
  height: 2rem;
  fill: #fff;
  color: #fff;
}

.video-badges {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: flex;
  gap: 0.5rem;
  pointer-events: none;
}

.video-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.55);
  padding: 0.25rem 0.625rem;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}

.video-card figcaption {
  margin-top: 1rem;
}

.video-card figcaption h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.video-card figcaption p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.video-card figcaption .credit {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: rgb(91 107 96 / 0.85);
}

/* ============================= 13. Tài chính ============================ */
.h1-banner {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--forest);
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.h1-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.h1-banner__wash {
  background: linear-gradient(to right, var(--forest), rgb(6 53 31 / 0.9) 55%, rgb(6 53 31 / 0.7));
}

.h1-banner__inner {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .h1-banner__inner {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .h1-banner__inner {
    grid-template-columns: 1fr 1.7fr;
    align-items: center;
    padding: 2.5rem;
  }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgb(255 255 255 / 0.85);
}

.live-badge i {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--green-light);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
  }
}

.h1-banner h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .h1-banner h3 {
    font-size: 1.875rem;
  }
}

.h1-banner h3 em {
  font-style: normal;
  color: var(--green-light);
}

.h1-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .h1-tiles {
    gap: 1rem;
  }
}

.h1-tile {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-2xl);
  background: rgb(255 255 255 / 0.05);
  padding: 1rem;
}

.h1-tile.is-highlight {
  border-color: rgb(126 217 87 / 0.6);
  background: rgb(15 155 75 / 0.25);
}

.h1-tile dt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(255 255 255 / 0.6);
}

.h1-tile dd {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem;
}

.h1-tile .num {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .h1-tile .num {
    font-size: 2.25rem;
  }
}

.h1-tile .unit {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.7);
}

.h1-tile__bar {
  position: relative;
  margin-top: 0.75rem;
  height: 0.375rem;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.15);
}

.h1-tile__bar > i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
  width: 0;
  transition: width 1s ease-out;
  transition-delay: var(--d, 0s);
}

.h1-tile.is-highlight .h1-tile__bar > i {
  background: var(--green-light);
}

.is-in .h1-tile__bar > i {
  width: var(--w);
}

.h1-tile__bar > b {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: rgb(255 255 255 / 0.8);
}

.h1-tile p {
  margin-top: 0.5rem;
  font-size: 11px;
  line-height: 1.375;
  color: rgb(255 255 255 / 0.65);
}

.fin__grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
}

/* Dòng chỉ số phụ dưới mục Tài chính */
.fin__note {
  margin-top: 1.25rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .fin__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fin__chart {
    grid-column: span 2;
  }
}

.cagr {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.cagr > div {
  border-radius: var(--radius-2xl);
  padding: 0.75rem 1rem;
}

.cagr > div:first-child {
  background: var(--mint);
}

.cagr > div:last-child {
  background: var(--accent);
}

.cagr p:first-child {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}

.cagr > div:last-child p:first-child {
  color: #8a6a10;
}

.cagr p:last-child {
  margin-top: 0.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
  .cagr p:last-child {
    font-size: 1.875rem;
  }
}

.cagr span {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.dividend-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--forest);
  padding: 1.5rem;
  color: #fff;
}

.dividend-card__value {
  margin-top: 0.75rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.dividend-card__value .num {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dividend-card__value span {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.7);
}

.dividend-card dl {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.dividend-card dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.dividend-card dt {
  flex: none;
  color: rgb(255 255 255 / 0.7);
}

.dividend-card dd {
  text-align: right;
  font-weight: 600;
}

.dividend-card__note {
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.6);
}

/* ============================ 14. Lãnh đạo ============================== */
.leaders {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

@media (min-width: 640px) {
  .leaders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .leaders {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.leader {
  text-align: center;
}

.leader__photo {
  position: relative;
  margin-inline: auto;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--mint);
}

@media (min-width: 640px) {
  .leader__photo {
    width: 10rem;
    height: 10rem;
  }
}

.leader__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leader figcaption {
  margin-top: 1rem;
}

.leader figcaption p:first-child {
  font-weight: 700;
  color: var(--forest);
}

.leader figcaption p:last-child {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.company__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .company__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.facts {
  display: grid;
  gap: 1rem;
  border-radius: var(--radius-2xl);
  background: var(--mint);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.facts > div {
  display: flex;
  gap: 0.75rem;
}

.facts .icon {
  margin-top: 0.15rem;
  color: var(--green);
}

.facts dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
}

.facts dd {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

.shareholders {
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
}

.shareholders h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-fg);
}

.shareholders ul {
  margin-top: 1rem;
}

.shareholders__note {
  margin-top: 1rem;
}

.shareholders li + li {
  margin-top: 0.75rem;
}

.shareholders .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.shareholders .row span:first-child {
  font-weight: 500;
  color: var(--forest);
}

.shareholders .row span:last-child {
  font-weight: 600;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.shareholders .track {
  margin-top: 0.25rem;
  height: 0.375rem;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage);
}

.shareholders .track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
}

/* ===================== 15. Lịch IPO + máy tính cọc ====================== */
.offer__grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .offer__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }
}

.terms {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: var(--sage);
}

@media (min-width: 640px) {
  .terms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.terms > div {
  background: var(--cream);
  padding: 1.25rem;
}

.terms__label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-fg);
}

.terms__value {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem;
}

.terms__value strong {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.terms__value span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(6 53 31 / 0.7);
}

.terms__note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.375;
  color: var(--muted-fg);
}

/* Máy tính tiền cọc */
.calc {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .calc {
    padding: 1.75rem;
  }
}

.calc h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.calc h3 span {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: rgb(15 155 75 / 0.1);
  color: var(--green);
}

.calc__row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.calc__row label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-fg);
}

.calc__qty {
  margin-top: 0.25rem;
  display: block;
  width: 11rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  background: var(--cream);
  padding: 0.5rem 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
  outline: none;
}

.calc__qty:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(15 155 75 / 0.25);
}

.calc__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.calc__presets button {
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: var(--cream);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.calc__presets button:hover {
  border-color: var(--green);
}

.calc__presets button.is-on {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.calc__slider {
  margin-top: 1rem;
  width: 100%;
  height: 0.375rem;
  cursor: pointer;
  appearance: none;
  border-radius: 999px;
  background: var(--sage);
  accent-color: var(--green);
}

.calc__slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.calc__slider::-moz-range-thumb {
  width: 1.15rem;
  height: 1.15rem;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
}

.calc__scale {
  margin-top: 0.375rem;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.calc__split {
  margin-top: 1.5rem;
  display: flex;
  height: 0.75rem;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage);
}

.calc__split i:first-child {
  width: 10%;
  background: var(--green);
}

.calc__split i:last-child {
  flex: 1;
  background: rgb(15 155 75 / 0.25);
}

.calc dl {
  margin-top: 1rem;
}

.calc dl > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 1rem;
}

.calc dl > div + div {
  margin-top: 0.75rem;
}

.calc dl > div:first-child {
  border-bottom: 1px solid var(--sage);
  padding-bottom: 0.75rem;
}

.calc dt {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.calc dt strong {
  color: var(--forest);
}

.calc dt small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.calc dt small.is-green {
  color: var(--green-dark);
}

.calc dd {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.calc dd.is-deposit {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
}

.calc__warn {
  margin-top: 1rem;
  display: none;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid rgb(192 86 47 / 0.4);
  border-radius: var(--radius-xl);
  background: rgb(192 86 47 / 0.05);
  padding: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--basalt);
}

.calc.is-over .calc__warn {
  display: flex;
}

.calc.is-over .calc__hint {
  display: none;
}

.calc__hint {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

/* Lộ trình đợt chào bán */
.timeline {
  margin-top: 3.5rem;
}

.timeline > h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.timeline__row {
  position: relative;
  margin-top: 2rem;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .timeline__row {
    display: grid;
  }
}

.timeline__track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
}

.timeline__track i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--green);
  transition: width 1s ease-out;
}

.timeline__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 0.5rem;
  text-align: center;
}

.marker {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sage);
  border-radius: 999px;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-fg);
}

.marker .icon {
  display: none;
}

.is-done .marker {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.is-done .marker .num,
.is-active .marker .num {
  display: none;
}

.is-done .marker .icon-check {
  display: block;
}

.is-active .marker {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 6px rgb(15 155 75 / 0.18);
}

.is-active .marker .icon-clock {
  display: block;
}

.timeline__step .range {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}

.timeline__step h4 {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

.timeline__step .detail {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.375;
  color: var(--muted-fg);
  text-wrap: pretty;
}

.status-tag {
  display: none;
  margin-top: 0.375rem;
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.is-active .status-tag--active,
.is-done .status-tag--done {
  display: inline-block;
}

.status-tag--active {
  background: var(--green);
  color: #fff;
}

.status-tag--done {
  background: var(--mint);
  color: var(--green-dark);
}

.timeline__list {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .timeline__list {
    display: none;
  }
}

.timeline__list li {
  display: flex;
  gap: 1rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1rem;
}

.timeline__list li + li {
  margin-top: 0.75rem;
}

.timeline__list li.is-active {
  border-color: rgb(15 155 75 / 0.5);
  background: var(--mint);
}

.timeline__list .head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.timeline__list h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

.timeline__list .range {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}

.timeline__list .detail {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

/* Mục đích sử dụng vốn */
.capital {
  margin-top: 3.5rem;
}

.capital__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}

.capital__head h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.capital__grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .capital__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.capital__card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
}

.capital__card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Thẻ không có ảnh – căn giữa nội dung trên nền kem */
.capital__card--plain {
  justify-content: center;
  background: var(--cream);
}

.capital__card figcaption,
.capital__card .body {
  padding: 1.25rem;
}

.capital__card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

.capital__card p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.debt-rows {
  margin-top: 1.25rem;
}

.debt-rows > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.debt-rows > div + div {
  margin-top: 0.5rem;
}

.debt-rows .y {
  width: 2.5rem;
  flex: none;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.debt-rows .track {
  height: 0.625rem;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage);
}

.debt-rows .track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--green);
}

.debt-rows .track i.is-muted {
  background: rgb(15 155 75 / 0.45);
}

.debt-rows .v {
  width: 3.5rem;
  flex: none;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* ======================= 16. Cách tham gia ============================== */
.steps {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.step {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
}

.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step__icon {
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-2xl);
  background: rgb(15 155 75 / 0.1);
  color: var(--green);
}

.step__n {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--sage);
}

.step h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--forest);
}

.step p {
  margin-top: 0.5rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.step .time {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}

.steps-note {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgb(6 53 31 / 0.75);
}

/* Thẻ chuyển khoản */
.transfer {
  margin-top: 2.5rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: var(--sage);
}

@media (min-width: 1024px) {
  .transfer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.transfer > div {
  background: #fff;
  padding: 1.5rem;
}

.transfer h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

.transfer h3 .icon {
  color: var(--green);
}

.transfer dl {
  margin-top: 1rem;
  font-size: 0.875rem;
}

.transfer dl > div + div {
  margin-top: 0.75rem;
}

.transfer dt {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.transfer dd {
  color: var(--forest);
}

.transfer dd.is-strong {
  font-weight: 600;
}

.acct {
  margin-top: 0.125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.acct strong {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 11px;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: border-color 0.2s;
}

.copy-btn:hover {
  border-color: var(--green);
}

.copy-btn .icon-check {
  display: none;
}

.copy-btn.is-copied .icon-check {
  display: block;
}

.copy-btn.is-copied .icon-copy {
  display: none;
}

.warn-note {
  margin-top: 1rem;
  border-left: 3px solid var(--basalt);
  background: rgb(192 86 47 / 0.05);
  padding: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgb(6 53 31 / 0.8);
}

.transfer__note {
  margin-top: 0.75rem;
}

.syntax {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
}

.syntax span {
  border-radius: var(--radius-md);
  padding: 0.25rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tok-fixed {
  background: var(--forest);
  color: #fff;
}
.tok-name {
  background: rgb(15 155 75 / 0.15);
  color: var(--green-dark);
}
.tok-id {
  background: rgb(217 169 41 / 0.25);
  color: var(--forest);
}
.tok-qty {
  background: rgb(192 86 47 / 0.15);
  color: var(--basalt);
}

.syntax-legend {
  margin-top: 0.75rem;
  font-size: 11px;
  color: var(--muted-fg);
}

.syntax-legend strong {
  color: var(--forest);
}

.example {
  margin-top: 1rem;
  border: 1px dashed rgb(15 155 75 / 0.5);
  border-radius: var(--radius-xl);
  background: var(--mint);
  padding: 0.75rem;
}

.example p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}

.example div {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.example code {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--forest);
}

/* Form đăng ký */
.form-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .form-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .form-grid > .lead-wrap {
    grid-column: span 2;
  }
}

.lead-form {
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
  height: 100%;
}

@media (min-width: 640px) {
  .lead-form {
    padding: 2rem;
  }
}

.lead-form h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.lead-form__advisor {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.lead-form__fields {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lead-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .field--wide {
    grid-column: span 2;
  }
}

.field {
  display: grid;
  gap: 0.375rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 0.5rem 0.625rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input,
.field select {
  height: 2.5rem;
}

.field textarea {
  min-height: 4rem;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(15 155 75 / 0.2);
}

.field .hint {
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.field .hint.is-error {
  color: var(--destructive);
}

.honeypot {
  display: none;
}

.consent {
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  cursor: pointer;
}

.consent input {
  margin-top: 0.2rem;
  width: 1rem;
  height: 1rem;
  flex: none;
  accent-color: var(--green);
}

.form-error {
  margin-top: 1rem;
  border: 1px solid rgb(192 57 43 / 0.3);
  border-radius: var(--radius-xl);
  background: rgb(192 57 43 / 0.05);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--destructive);
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-actions p {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.lead-done {
  display: none;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(15 155 75 / 0.3);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.lead-done__icon {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(15 155 75 / 0.1);
  color: var(--green);
}

.lead-done h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.lead-done p {
  margin-top: 0.5rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.lead-done a {
  margin-top: 1.5rem;
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  border-radius: 999px;
  background: var(--green);
  padding-inline: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

.lead-done a:hover {
  background: var(--green-dark);
}

.lead-wrap.is-done .lead-form {
  display: none;
}

.lead-wrap.is-done .lead-done {
  display: flex;
}

.side-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.side-figure {
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
}

.side-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.side-figure figcaption {
  padding: 1rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.brokers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.brokers a {
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.brokers a:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.brokers .name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--forest);
}

.brokers .role {
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

.brokers .go {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
}

.brokers a:hover .go {
  text-decoration: underline;
}

.buy-note {
  margin-top: 2rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: var(--mint);
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(6 53 31 / 0.8);
}

/* ====================== 17. Liên hệ chuyên viên ========================= */
.cta {
  border-block: 1px solid rgb(255 255 255 / 0.1);
  background: var(--ink);
  color: #fff;
  scroll-margin-top: var(--header-h);
}

.cta__strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  padding-block: 0.75rem;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.cta__strip .brand {
  font-weight: 700;
  letter-spacing: 0.22em;
}

.cta__strip .brand span {
  font-weight: 400;
  color: rgb(255 255 255 / 0.55);
}

.cta__strip .right {
  letter-spacing: 0.14em;
  color: rgb(255 255 255 / 0.55);
}

.cta__inner {
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 640px) {
  .cta__inner {
    padding-block: 5rem;
  }
}

@media (min-width: 1024px) {
  .cta__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.cta__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
}

.cta h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 640px) {
  .cta h2 {
    font-size: 2.25rem;
  }
}

.cta__who {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 1rem;
}

.cta__who strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.cta__who span {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.65);
}

.cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__action {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-xl);
  background: rgb(255 255 255 / 0.04);
  padding: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

@media (min-width: 640px) {
  .cta__action {
    padding: 1.25rem;
  }
}

.cta__action:hover {
  border-color: rgb(255 255 255 / 0.3);
  background: rgb(255 255 255 / 0.07);
}

.cta__action.is-primary {
  border-color: rgb(217 169 41 / 0.6);
  background: rgb(217 169 41 / 0.1);
}

.cta__action.is-primary:hover {
  border-color: var(--gold);
  background: rgb(217 169 41 / 0.15);
}

.cta__action .ico {
  margin-top: 0.125rem;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 0.1);
  color: var(--gold-light);
}

.cta__action.is-primary .ico {
  background: var(--gold);
  color: var(--ink);
}

.cta__action .body {
  min-width: 0;
  flex: 1;
}

.cta__action .line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.125rem 0.75rem;
}

.cta__action .label {
  font-size: 1rem;
  font-weight: 600;
}

.cta__action .sub {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.cta__action .arrow {
  margin-left: auto;
  color: rgb(255 255 255 / 0.35);
  transition: color 0.2s;
}

.cta__action:hover .arrow {
  color: var(--gold-light);
}

.cta__action .desc {
  margin-top: 0.375rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.65);
}

.cta__warn {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  border-left: 3px solid var(--basalt);
  background: rgb(255 255 255 / 0.03);
  padding: 1rem;
}

.cta__warn .icon {
  margin-top: 0.15rem;
  color: var(--basalt);
}

.cta__warn p {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.7);
}

.cta__warn strong {
  color: #fff;
}

.cta__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta__deadline {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-2xl);
  background: rgb(255 255 255 / 0.05);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .cta__deadline {
    padding: 1.75rem;
  }
}

.cta__deadline > p:first-child {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.cta__deadline .date {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.cta__deadline .foot {
  margin-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.65);
}

.cta__figure {
  position: relative;
  min-height: 15rem;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-2xl);
}

.cta__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__figure figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--ink), rgb(10 29 19 / 0.7), transparent);
  padding: 1.25rem;
}

.cta__figure p {
  font-size: 0.875rem;
  font-weight: 600;
}

.cta__figure a {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--gold-light);
}

.cta__figure a:hover {
  text-decoration: underline;
}

/* ============================= 18. Hỏi – đáp ============================ */
.faq__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .faq__grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
  .faq__side {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    align-self: start;
  }
}

.faq__tabs {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq__tabs button {
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.faq__tabs button:hover {
  border-color: var(--green);
}

.faq__tabs button[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.faq__tabs .count {
  margin-left: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.faq__tabs button[aria-pressed="true"] .count {
  color: rgb(255 255 255 / 0.7);
}

.faq__figure {
  display: none;
  margin-top: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
}

@media (min-width: 1024px) {
  .faq__figure {
    display: block;
  }
}

.faq__figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.faq__figure figcaption {
  background: #fff;
  padding: 1rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.faq__ask {
  margin-top: 1.5rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: var(--mint);
  padding: 1rem;
  font-size: 0.875rem;
  color: rgb(6 53 31 / 0.8);
}

.faq__ask a {
  font-weight: 600;
  text-decoration: underline;
}

.accordion {
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding-inline: 1.25rem;
}

@media (min-width: 640px) {
  .accordion {
    padding-inline: 1.75rem;
  }
}

.accordion[hidden] {
  display: none;
}

.accordion__item + .accordion__item {
  border-top: 1px solid var(--sage);
}

.accordion__trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
}

@media (min-width: 640px) {
  .accordion__trigger {
    font-size: 17px;
  }
}

.accordion__trigger .icon {
  margin-top: 0.25rem;
  flex: none;
  color: var(--muted-fg);
  transition: transform 0.2s;
}

.accordion__trigger[aria-expanded="true"] .icon {
  transform: rotate(180deg);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__item.is-open .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__body {
  padding-bottom: 1.25rem;
  font-size: 15px;
  line-height: 1.625;
  color: var(--muted-fg);
}

.accordion__body p + p,
.accordion__body ul + p,
.accordion__body p + ul {
  margin-top: 0.75rem;
}

.accordion__body ul {
  list-style: disc;
  padding-left: 1.25rem;
}

.accordion__body li + li {
  margin-top: 0.25rem;
}

.accordion__body strong {
  color: var(--forest);
}

/* Minh hoạ trong phần hỏi đáp */
.viz {
  margin-top: 0.75rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-xl);
  background: var(--cream);
  padding: 1rem;
}

.viz__bar {
  display: flex;
  height: 2rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage);
}

.viz__bar .fill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.viz__bar .rest {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-fg);
}

.viz p {
  margin-top: 0.5rem;
  font-size: 11px;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.viz__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.viz__row + .viz__row {
  margin-top: 0.5rem;
}

.viz__row .name {
  width: 6rem;
  flex: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
}

.viz__row .track {
  height: 0.625rem;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: var(--sage);
}

.viz__row .track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: rgb(6 53 31 / 0.25);
}

.viz__row.is-highlight .track i {
  background: var(--green);
}

.viz__row .val {
  width: 4rem;
  flex: none;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.viz--dividend .viz__bar {
  background: rgb(6 53 31 / 0.15);
}

.viz--dividend .viz__bar .fill {
  background: var(--gold);
}

.viz__legend {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 11px;
  color: var(--muted-fg);
}

.viz__legend strong {
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* =================== 19. Dải ảnh ngăn + Tài liệu ======================== */
.image-break {
  position: relative;
  height: 11rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .image-break {
    height: 14rem;
  }
}

.image-break__wash {
  background: linear-gradient(to right, rgb(10 29 19 / 0.85), rgb(10 29 19 / 0.45) 55%, transparent);
}

.image-break .container {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
}

.image-break p {
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

@media (min-width: 640px) {
  .image-break p {
    font-size: 1.5rem;
  }
}

.docs {
  margin-top: 3.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.doc {
  display: flex;
  height: 100%;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.doc:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.doc__icon {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: var(--mint);
  color: var(--green);
}

.doc__body {
  flex: 1;
}

.doc__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--forest);
}

.doc__title .icon {
  flex: none;
  color: var(--muted-fg);
}

.doc:hover .doc__title .icon {
  color: var(--green);
}

.doc__desc {
  margin-top: 0.25rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.sources-box {
  margin-top: 2.5rem;
  border: 1px solid var(--sage);
  border-radius: var(--radius-2xl);
  background: #fff;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .sources-box {
    padding: 1.75rem;
  }
}

.sources-box__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}

.sources-box__head h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
}

.sources-box__head p {
  max-width: 28rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-fg);
}

.source-chips {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.source-chips a {
  display: flex;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: rgb(250 248 245 / 0.7);
  padding: 0.375rem 0.75rem 0.375rem 0.875rem;
  font-size: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.source-chips a:hover {
  border-color: var(--green);
  background: var(--mint);
}

.source-chips .t {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: var(--forest);
}

.source-chips .d {
  flex: none;
  font-size: 11px;
  color: var(--muted-fg);
  font-variant-numeric: tabular-nums;
}

.source-chips .icon {
  flex: none;
  color: var(--muted-fg);
}

/* ==================== 20. Footer + CTA cố định ========================== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}

.site-footer > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.site-footer .container {
  position: relative;
  padding-block: 4rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer__logo {
  display: inline-block;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.5rem 0.75rem;
}

.footer__logo img {
  height: 2.25rem;
  width: auto;
}

.footer__name {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer__en {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.65);
}

.footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: italic;
  color: var(--gold-light);
}

.footer h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

.footer__list {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.footer__list li {
  display: flex;
  gap: 0.5rem;
}

.footer__list li + li {
  margin-top: 0.5rem;
}

.footer__list li.is-strong {
  font-weight: 600;
  color: #fff;
}

.footer__list .icon {
  margin-top: 0.2rem;
  color: var(--green);
}

.footer__list a:hover {
  text-decoration: underline;
}

.footer__gold {
  color: var(--gold-light);
}

.footer__advisor {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 2rem;
}

.footer__advisor p {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.footer__advisor .cap {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-light);
}

.footer__advisor strong {
  font-size: 1rem;
  color: #fff;
}

.footer__cta {
  display: inline-flex;
  height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
  transition: filter 0.2s;
}

.footer__cta:hover {
  filter: brightness(1.1);
}

.footer__positioning {
  margin-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.55);
}

.footer details {
  margin-top: 0.75rem;
}

.footer summary {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.7);
}

.footer summary::-webkit-details-marker {
  display: none;
}

.footer summary:hover {
  color: var(--gold-light);
}

.footer summary .icon {
  transition: transform 0.2s;
}

.footer details[open] summary .icon {
  transform: rotate(90deg);
}

.footer details p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: rgb(255 255 255 / 0.5);
}

.footer__copy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.45);
}

/* Thanh CTA cố định trên di động */
.sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 50;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(10 29 19 / 0.95);
  backdrop-filter: blur(12px);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.sticky-cta.is-shown {
  transform: none;
}

@media (min-width: 1024px) {
  .sticky-cta,
  .sticky-spacer {
    display: none;
  }
}

.sticky-spacer {
  height: 4rem;
}

.sticky-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgb(255 255 255 / 0.1);
}

.sticky-cta__grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--ink);
  padding-block: 0.75rem;
  color: #fff;
}

.sticky-cta__grid a:first-child {
  background: var(--gold);
  color: var(--ink);
}

.sticky-cta__grid a:not(:first-child) .icon {
  color: var(--gold-light);
}

.sticky-cta__grid span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============= 21. Popover nguồn số liệu + modal video ================== */
.src {
  position: relative;
  display: inline-block;
}

.src__btn {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: transparent;
  color: rgb(91 107 96 / 0.7);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.src__btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.src--dark .src__btn {
  border-color: rgb(255 255 255 / 0.2);
  color: rgb(255 255 255 / 0.55);
}

.src--dark .src__btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.src__pop {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  z-index: 40;
  display: none;
  width: 20rem;
  max-width: min(20rem, calc(100vw - 2rem));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 0.75rem;
  color: var(--fg);
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.src.is-open .src__pop {
  display: block;
}

.src__pop > p {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
}

.src__pop ul {
  margin-top: 0.25rem;
}

.src__pop li + li {
  margin-top: 0.5rem;
}

.src__pop li {
  font-size: 0.75rem;
  line-height: 1.4;
}

.src__pop a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-weight: 600;
  color: var(--forest);
}

.src__pop a:hover {
  color: var(--green);
}

.src__pop .page {
  font-weight: 400;
  color: var(--muted-fg);
}

.src__pop .meta {
  color: var(--muted-fg);
}

.src__pop .note {
  margin-top: 0.5rem;
  border-top: 1px solid var(--sage);
  padding-top: 0.5rem;
  font-size: 11px;
  color: var(--muted-fg);
}

/* Modal video */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.6);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal__box {
  position: relative;
  width: 100%;
  max-width: 56rem;
  aspect-ratio: 16 / 9;
  animation: modal-in 0.25s ease-out;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
}

.modal__close {
  position: absolute;
  right: 0;
  top: -3.25rem;
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.15);
  color: #fff;
  cursor: pointer;
}

.modal__close:hover {
  background: rgb(255 255 255 / 0.25);
}

.modal__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: var(--radius-2xl);
  background: #000;
}

.modal__media video,
.modal__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==================== Tôn trọng thiết lập giảm chuyển động ============== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================ In (print) ================================ */
@media print {
  .site-header,
  .sticky-cta,
  .scroll-progress,
  .nav-mobile,
  .nav-backdrop {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
