:root {
  --green: #2A9A78;
  --green-dark: #1D7057;
  --green-light: #54BB98;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5EDD4;
  --cream: #FAF7F2;
  --ink: #1A1612;
  --ink-soft: #3D3630;
  --muted: #7A6E64;
  --border: rgba(139, 26, 43, 0.15);
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', Arial, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 20px;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('/fund/feature/vietnamfund/images/hero.png') center center / cover no-repeat;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13, 10, 7, 0.62) 0%, rgba(31, 10, 15, 0.55) 45%, rgba(42, 16, 5, 0.5) 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 26, 43, 0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 860px;
  opacity: 0;
  transform: translateY(24px);
}

.hero.hero-ready .hero-content {
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: transparent;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.5);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.7), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ───── SECTION COMMON ───── */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
}

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ───── WHY VIETNAM STRIP ───── */
.why-strip {
  background: var(--ink);
  color: var(--white);
  padding: 3rem 2rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1060px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.why-item:nth-child(1) {
  animation-delay: 0.1s;
}

.why-item:nth-child(2) {
  animation-delay: 0.2s;
}

.why-item:nth-child(3) {
  animation-delay: 0.3s;
}

.why-item:nth-child(4) {
  animation-delay: 0.4s;
}

.why-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.2rem;
}

.why-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}

.why-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

/* ───── POINT SECTIONS ───── */
.point-section {
  background: var(--white);
}

.point-section:nth-child(even) {
  background: var(--cream);
}

.point-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

.point-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.3rem;
}

/* ───── CHART BARS ───── */
.chart-wrap {
  background: var(--ink);
  border-radius: 2px;
  padding: 2.5rem 2.5rem 2rem;
  margin-top: 2.5rem;
  overflow: hidden;
}

.chart-title {
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.chart-title-main {
  display: block;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.chart-title-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.8rem;
  height: 220px;
  position: relative;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar-track {
  width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 180px;
  position: relative;
}

.bar-fill {
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px 1px 0 0;
  position: relative;
  transition: height 1.2s cubic-bezier(.22, .61, .36, 1);
}

.bar-fill.highlight {
  background: var(--green);
}

.bar-fill.highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--green-dark), var(--green-light));
  border-radius: inherit;
}

.bar-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.3rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
}

.bar-fill.highlight~.bar-val,
.bar-item .bar-val {
  order: -1;
}

.bar-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.02em;
}

.bar-target-note {
  position: absolute;
  left: 50%;
  bottom: calc(93% + 2rem);
  transform: translateX(-50%);
  width: 150px;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(232, 201, 106, 0.38);
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
}

.bar-note {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

/* ───── STAT CARDS ───── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(139, 26, 43, 0.08);
}

.stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.stat-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ───── UPGRADE SECTION ───── */
.upgrade-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.market-box {
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  text-align: center;
  background: var(--white);
  min-width: 160px;
  transition: transform 0.25s;
}

.market-box:hover {
  transform: translateY(-3px);
}

.market-box.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.market-type {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.5rem;
}

.market-names {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 1.8rem;
  color: var(--gold);
}

.upgrade-highlight {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 1.2rem 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.upgrade-highlight strong {
  color: var(--green);
}

/* ───── FUND INFO ───── */
.fund-section {
  background: var(--ink);
  color: var(--white);
}

.fund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

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

.fund-card {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
  position: relative;
}

.fund-card .chart-title {
  margin-top: 0.45rem;
}

.fund-card img {
  margin-top: 0.2rem;
}

.fund-card::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.fund-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.fund-detail {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}

.fund-perf-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fund-perf-val {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}

.distribution-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
}

.distribution-table td {
  padding: 0.45rem 0;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}

.distribution-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* ───── HOLDINGS ───── */
.holdings-section {
  background: var(--cream);
}

.holdings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.holding-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.holding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 22, 18, 0.08);
}

.holding-header {
  padding: 1.5rem;
  background: var(--ink);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.holding-ticker {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-light);
}

.holding-cat {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.holding-body {
  padding: 1.5rem;
}

.holding-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.holding-points {
  list-style: none;
}

.holding-points li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.holding-points li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ───── DISCLAIMER ───── */
.disclaimer {
  background: #F0EDE8;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.disclaimer-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.disclaimer-text {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 2;
  counter-reset: disc;
}

.disclaimer-text p {
  counter-increment: disc;
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 0.5rem;
}

.disclaimer-text p::before {
  content: counter(disc) '.';
  position: absolute;
  left: 0;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ───── FINAL CTA ───── */
.final-cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  padding: 5rem 2rem 5.25rem;
  text-align: center;
}

.final-cta-title {
  font-size: clamp(1.28rem, 2.7vw, 1.85rem);
  font-weight: 700;
  line-height: 1.62;
  color: var(--ink);
  margin-bottom: 1.8rem;
  letter-spacing: 0.01em;
}

.cta-arrow {
  width: 0;
  height: 0;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  border-top: 19px solid rgba(42, 154, 120, 0.42);
  margin: 1.45rem auto;
}

.fund-cta-list {
  display: grid;
  gap: 1.4rem;
  max-width: 460px;
  margin: 0 auto 4.25rem;
}

.fund-cta-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 80px;
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  background: var(--green);
  border-radius: 4px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 0 var(--green-dark), 0 14px 28px rgba(29, 112, 87, 0.16);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.fund-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--green-dark), 0 8px 18px rgba(29, 112, 87, 0.14);
}

.fund-cta-label {
  font-size: 1.36rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.cta-play-icon {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.cta-play-icon::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--green);
}

.account-cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.4rem;
  background: rgba(42, 154, 120, 0.1);
  border: 1px solid rgba(42, 154, 120, 0.12);
}

.account-cta-title {
  font-size: clamp(1.18rem, 2.7vw, 1.72rem);
  font-weight: 700;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.account-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.account-cta-card {
  background: var(--white);
  border-radius: 6px;
  padding: 1.9rem;
  border: 1px solid rgba(26, 22, 18, 0.04);
}

.account-cta-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.account-main-btn {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}

.account-main-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
}

.account-main-btn.is-red {
  background: #E83A3A;
}

.account-main-btn.is-green {
  background: var(--green);
}

.account-flow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.account-flow-link::after {
  content: '›';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #009E88;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 720px) {
  .final-cta {
    padding: 4rem 1.2rem;
  }

  .fund-cta-btn {
    min-height: 74px;
    padding-left: 1.2rem;
  }

  .fund-cta-label {
    font-size: 1.08rem;
  }

  .account-cta {
    padding: 1.4rem;
  }

  .account-cta-grid {
    grid-template-columns: 1fr;
  }

  .account-cta-card {
    padding: 1.4rem;
  }
}

/* ───── FOOTER ───── */
.footer {
  background: var(--ink);
  padding: 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.footer-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
}


/* ───── ANIMATIONS ───── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ───── CALLOUT BOXES ───── */
.callout {
  border-left: 3px solid var(--green);
  padding: 1rem 1.5rem;
  background: rgba(139, 26, 43, 0.04);
  margin: 1.5rem 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ───── PER POINT LAYOUT ───── */
.point-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

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

/* ───── POPULATION CHART ───── */
.pop-visual {
  background: var(--ink);
  padding: 2rem;
  border-radius: 2px;
  margin-top: 1.5rem;
}

.pop-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 120px;
}

.pop-bar {
  flex: 1;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 1px 1px 0 0;
  position: relative;
  min-width: 4px;
  transition: height 1s ease;
}

.pop-bar .inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green);
  opacity: 0.7;
  border-radius: 1px 1px 0 0;
}

.pop-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.pop-axis span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ───── PER SECTION ───── */
.section-dark {
  background: #0F0C09;
  color: var(--white);
}

.section-dark .section-title,
.fund-section .section-title {
  color: var(--white);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.5);
}

.section-dark .divider {
  background: var(--gold);
}

.section-dark .callout {
  border-left-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: rgba(255, 255, 255, 0.7);
}

/* ───── UPGRADE TABLE ───── */
.upgrade-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.upgrade-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.upgrade-table th {
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

.upgrade-table td {
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
}

.upgrade-table tr.highlight td {
  color: var(--gold-light);
  font-weight: 500;
}

.upgrade-table td:first-child {
  color: rgba(255, 255, 255, 0.4);
}

/* --- HOLDINGS IMAGE UPDATE --- */

.holding-card .holding-header {
  min-height: 170px;
  align-items: flex-end;
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}

.holding-card .holding-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(26, 22, 18, 0.48) 100%);
}

.holding-card .holding-header > * {
  position: relative;
  z-index: 1;
}

.holdings-grid .holding-card:nth-child(1) .holding-header {
  background-image: url('/fund/feature/vietnamfund/images/VHM.jpg');
}

.holdings-grid .holding-card:nth-child(2) .holding-header {
  background-image: url('/fund/feature/vietnamfund/images/VCB.jpg');
}

.holdings-grid .holding-card:nth-child(3) .holding-header {
  background-image: url('/fund/feature/vietnamfund/images/FPT.jpg');
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    background-position: 58% center;
  }

  .holding-card .holding-header {
    min-height: 150px;
    background-position: center top;
  }

  #point2 .reveal[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/*--*/

.l-header{
    padding:10px;

}

@media screen and (max-width: 768px) {
.l-header img{
    max-width: 120px;
	 
}
}

.ft-att{
    max-width: 980px;
    margin:auto;
}


@media screen and (max-width: 768px) {
.ft-att{
    padding-left: 20px;
    padding-right: 20px;
}
}

.theme-box-base{
    max-width: 980px;
    margin:auto;
}

.theme-list-disc,  .theme-list-link{
    font-size:16px;
}

.ft-btm{
    background-color: #FAF7F2;
}

.footer {
  background: var(--ink); /* #1A1612 = 黒に近い色 */
  padding: 0;
}

.footer__inner{
    text-align:left;
	}

.theme-list-disc a {
  word-break: break-all;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {

  /* グリッドアイテムが最小幅を超えて縮めるようにする（核心的な修正） */
  .point-body > div {
    min-width: 0;
  }

  /* 棒グラフをスマホ幅に合わせてコンパクトに */
  .bar-chart {
    gap: 0.6rem;
  }

  .bar-track {
    width: 32px;
  }

  .bar-val {
    font-size: 0.7rem;
  }

  .bar-label {
    font-size: 0.58rem;
  }

  .bar-target-note {
    width: 88px;
    font-size: 0.6rem;
    line-height: 1.3;
  }
}

/* ───── 親サイト main.css の黒背景を上書き ───── */
html {
  background: var(--ink);
}

.l-content {
  background: transparent;
  padding: 0;
  margin: 0;
}

/* ───── 親サイト main.css の黒背景を上書き ───── */
/*--*/
