/* ========== DESIGN TOKENS ========== */
:root {
  --bg-page: #F7F8FA;
  --bg-white: #FFFFFF;
  --bg-subtle: #F1F5F3;
  --bg-emerald-light: #ECFDF5;
  --accent: #166534;
  --accent-light: #22C55E;
  --accent-surface: rgba(22, 101, 52, 0.06);
  --gold: #D97706;
  --gold-surface: #FFFBEB;
  --red: #DC2626;
  --text-heading: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --border: #E5E7EB;
  --border-accent: rgba(22, 101, 52, 0.15);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --font-sans: 'Be Vietnam Pro', system-ui, sans-serif;
  --font-serif: 'Noto Serif Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-variant-numeric: tabular-nums; }
body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ========== LAYOUT ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ========== COMPONENTS ========== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--accent);
  background: var(--bg-emerald-light); border: 1px solid var(--border-accent);
  border-radius: 100px; padding: 6px 18px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  color: #fff; background: var(--accent);
  padding: 16px 32px; border-radius: 14px; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.3s ease;
  min-height: 52px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,101,52,0.25); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 600;
  color: var(--text-heading); background: var(--bg-white);
  padding: 16px 32px; border-radius: 14px;
  border: 1px solid var(--border); cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  min-height: 52px;
}
.btn-outline:hover { border-color: var(--accent); background: var(--bg-emerald-light); }

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 14px 40px; } }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-badge {
  background: var(--accent); color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  padding: 8px 14px; border-radius: 12px; letter-spacing: 0.04em;
}
.nav-logo-text { font-weight: 600; font-size: 13px; color: var(--text-muted); }
.nav-links { display: none; list-style: none; gap: 28px; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s ease; padding: 8px 0;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  font-size: 13px; font-weight: 600; color: #fff !important;
  background: var(--accent); padding: 10px 20px; border-radius: 100px;
  transition: transform 0.2s var(--ease-spring);
}
.nav-cta:hover { transform: scale(1.03); }

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(247,248,250,0.45) 0%,
    rgba(247,248,250,0.68) 55%,
    rgba(247,248,250,0.96) 100%
  );
}
.hero-content-wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  flex: 1;
  padding-top: 120px; padding-bottom: 0;
}
.hero-center {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 800px;
}
.hero h1 {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text-heading); margin: 20px 0;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-desc { font-size: 17px; color: var(--text-body); max-width: 580px; line-height: 1.75; margin-bottom: 32px; }
.hero-cta-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 40px; }
@media (min-width: 768px) { .hero-cta-group { margin-bottom: 0; } }

/* Hero stats strip */
.hero-stats-strip {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.75); border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.06);
}
@media (min-width: 768px) {
  .hero-stats-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 32px;
    gap: 0;
  }
}
.hero-stat-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  align-items: center;
  grid-column: 1 / -1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .hero-stat-price {
    padding: 0 28px 0 0;
    border-bottom: none;
    grid-column: auto;
  }
}
.hsp-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.hsp-value { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: var(--text-heading); line-height: 1; }
@media (min-width: 768px) { .hsp-value { font-size: 30px; } }
.hsp-unit { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.hsp-change { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 2px; }
.hero-stat-divider { display: none; }
@media (min-width: 768px) {
  .hero-stat-divider { display: block; width: 1px; height: 44px; background: var(--border); margin: 0 20px; flex-shrink: 0; }
}
.hero-stat-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-stat-badges { padding: 0 8px; gap: 6px; }
}
.hose-badge { background: var(--bg-emerald-light); color: var(--accent); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 100px; display: inline-block; }
@media (min-width: 768px) { .hose-badge { font-size: 11px; padding: 3px 10px; } }
.hng-code { font-size: 10px; color: var(--text-faint); }
@media (min-width: 768px) { .hng-code { font-size: 11px; } }
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-stat-item { padding: 0 20px; gap: 3px; }
}
.hsi-label { font-size: 10px; color: var(--text-muted); font-weight: 500; }
@media (min-width: 768px) { .hsi-label { font-size: 11px; } }
.hsi-value { font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: var(--text-heading); }
@media (min-width: 768px) { .hsi-value { font-size: 17px; } }
.hsi-note { font-size: 10px; font-weight: 600; color: var(--accent); margin-left: 4px; }
@media (min-width: 768px) { .hsi-note { font-size: 11px; } }


/* Stock card */
.stock-card {
  background: var(--bg-white); border-radius: 24px;
  box-shadow: var(--shadow-lg); padding: 32px; border: 1px solid var(--border);
  position: relative;
}
.stock-price { font-family: var(--font-mono); font-size: 48px; font-weight: 700; color: var(--text-heading); }
.stock-change { color: var(--accent-light); font-weight: 600; font-size: 14px; }
.stock-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.stock-mini-item {
  background: var(--bg-subtle); border-radius: 16px; padding: 16px; text-align: center;
}
.stock-mini-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stock-mini-value { font-family: var(--font-mono); font-weight: 700; font-size: 16px; color: var(--text-heading); margin-top: 4px; }
.stock-mini-note { font-size: 11px; color: var(--accent); font-weight: 600; }
.stock-badge {
  position: absolute; bottom: -20px; right: -8px;
  background: var(--bg-white); box-shadow: var(--shadow-md);
  border-radius: 16px; padding: 14px 20px; border: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.stock-badge-icon { width: 40px; height: 40px; background: var(--bg-emerald-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.stock-badge-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; }

/* ========== SECTIONS ========== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { margin-bottom: 48px; }
.section-header .label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); }
.section-header h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; line-height: 1.2; color: var(--text-heading); margin-top: 12px;
}
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 540px; margin-top: 12px; }

/* ========== REASON CARDS ========== */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); } }
.reason-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.3s ease, border-color 0.3s ease;
}
.reason-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-accent); }
.reason-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  background: var(--bg-emerald-light); border: 1px solid var(--border-accent);
}
.reason-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.reason-card h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.reason-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.reason-card.featured {
  background: var(--accent); color: #fff; border-color: var(--accent);
  grid-column: 1 / -1;
}
@media (min-width: 1024px) { .reason-card.featured { grid-column: auto; } }
.reason-card.featured h3 { color: #fff; }
.reason-card.featured p { color: rgba(255,255,255,0.8); }
.reason-card.featured .reason-icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.reason-card.featured .reason-icon svg { stroke: #fff; }

/* ========== NEW RESULTS SECTION ========== */
.results-grid-new { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .results-grid-new { grid-template-columns: 1fr 1.2fr; gap: 60px; } }
.stats-bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.stat-card {
  background: var(--bg-page); border-radius: 20px; padding: 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-accent); background: var(--bg-white); }
.stat-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-emerald-light); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 2; }
.stat-value { font-family: var(--font-mono); font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; font-weight: 600; color: var(--text-heading); margin-bottom: 12px; }
.stat-badge { display: inline-block; font-size: 11px; font-weight: 700; background: var(--bg-white); border: 1px solid var(--border); color: var(--text-muted); padding: 4px 10px; border-radius: 100px; }

/* ========== CIRCULAR ECONOMY - GLASSMORPHISM ========== */
.moat-section {
  position: relative;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  overflow: hidden;
  padding: 100px 0;
}
.moat-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 70% 80%, rgba(22, 101, 52, 0.1) 0%, transparent 40%);
  animation: moat-glow 15s ease-in-out infinite alternate;
}
@keyframes moat-glow {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5%, -5%) rotate(5deg); }
}
.moat-section .section-header { position: relative; z-index: 2; text-align: center; }
.moat-section .section-header .label {
  display: inline-block;
  color: #86EFAC;
  background: transparent;
  border: none;
}
.moat-section .section-header h2 { color: #fff; }
.moat-section .section-header p { color: rgba(255, 255, 255, 0.7); margin: 12px auto 0; max-width: 600px; }

.circular-wrapper {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) { .circular-wrapper { padding: 56px; } }

.circular-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .circular-image-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .circular-image-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.circular-image-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.circular-image-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
  border-radius: 24px;
}
.circular-image-step:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(134, 239, 172, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(34, 197, 94, 0.15);
}

.circular-step-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.circular-step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.circular-image-step:hover .circular-step-img img {
  transform: scale(1.1);
}
.circular-step-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}

.circular-step-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.circular-step-num.highlight {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.circular-step-content {
  padding: 24px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.circular-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.circular-step-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  flex: 1;
}

.circular-arrow-connector {
  display: none;
}
@media (min-width: 1024px) {
  .circular-arrow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    z-index: 10;
  }
  .circular-arrow-connector svg {
    width: 20px;
    height: 20px;
    color: rgba(134, 239, 172, 0.6);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  .circular-image-step { position: relative; }
  .circular-image-step:last-child .circular-arrow-connector { display: none; }
}

/* Flow indicator for mobile */
.circular-flow-indicator {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
@media (min-width: 1024px) {
  .circular-flow-indicator { display: none; }
}
.circular-flow-indicator svg {
  width: 32px;
  height: 32px;
  color: rgba(134, 239, 172, 0.5);
  transform: rotate(90deg);
}

/* ========== SCENARIO TABLE ========== */
.scenario-table { width: 100%; border-collapse: collapse; background: var(--bg-white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.scenario-table thead th {
  background: var(--accent); color: #fff;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 16px 20px; text-align: center;
}
.scenario-table thead th:first-child { text-align: left; }
.scenario-table tbody td { padding: 18px 20px; border-bottom: 1px solid var(--border); font-size: 14px; text-align: center; }
.scenario-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-heading); }
.scenario-table tbody tr:last-child td { border-bottom: none; }
.scenario-table tbody tr:hover { background: var(--bg-emerald-light); }
.scenario-table .positive { color: var(--accent); font-weight: 700; }
.scenario-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 100px;
}
.badge-good { background: var(--bg-emerald-light); color: var(--accent); }
.badge-great { background: #D1FAE5; color: var(--accent); }
.badge-bull { background: var(--accent); color: #fff; }
.badge-superbull { background: #064E3B; color: #fff; }

/* ========== VISION SECTION ========== */
.vision-section {
  position: relative; overflow: hidden;
  padding: 100px 0; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.vision-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.vision-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}
.vision-content {
  position: relative; z-index: 2; width: 100%;
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 992px) {
  .vision-content { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 80px; }
}

.vision-header {
  color: #fff; flex: 1; max-width: 440px;
}
.vision-badge {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: #86EFAC; background: rgba(255,255,255,0.1); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.2);
}
.vision-header h2 {
  font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 16px;
}
.vision-header p {
  font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.6;
}

.vision-cards {
  display: flex; flex-direction: column; gap: 20px;
  flex: 1; max-width: 640px;
}
.vision-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px;
  padding: 32px 40px; color: #fff;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
  position: relative; overflow: hidden;
}
.vision-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: #86EFAC; opacity: 0; transition: opacity 0.3s;
}
.vision-card:hover { 
  background: rgba(255,255,255,0.15); 
  transform: translateX(8px); 
}
.vision-card:hover::before { opacity: 1; }

.vision-card-year {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  color: #86EFAC; margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
}
.vision-card-year::before {
  content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: #86EFAC;
}
.vision-card h3 {
  font-size: 22px; font-weight: 600;
  margin-bottom: 12px; color: #fff; line-height: 1.3;
}
.vision-card p {
  font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.6;
}

/* ========== RISK ========== */
.risk-banner {
  background: var(--gold-surface); border: 1px solid #FDE68A;
  border-radius: 20px; padding: 28px 32px;
  display: flex; gap: 16px; align-items: flex-start;
}
.risk-icon { flex-shrink: 0; width: 40px; height: 40px; background: #FEF3C7; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.risk-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.risk-title { font-weight: 700; color: var(--gold); font-size: 14px; margin-bottom: 6px; }
.risk-text { font-size: 13px; color: #92400E; line-height: 1.7; }

/* ========== CTA ========== */
.cta-banner {
  background: var(--bg-white); border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-lg); border-radius: 24px;
  padding: 56px 48px; text-align: center;
}
.cta-banner h3 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--text-heading); }
.cta-banner p { color: var(--text-muted); font-size: 15px; max-width: 480px; margin: 12px auto 32px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-contact { font-size: 12px; color: var(--text-faint); margin-top: 24px; }

/* ========== FOOTER ========== */
/* ========== FOOTER ========== */
.footer {
  position: relative; overflow: hidden;
  padding: 100px 0 48px;
  text-align: center;
}
.footer-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.footer-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(5, 30, 15, 0.55) 0%,
    rgba(5, 30, 15, 0.72) 60%,
    rgba(5, 30, 15, 0.88) 100%
  );
}
.footer-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 60px;
}
.footer-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-badge {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08);
  border-radius: 100px; padding: 6px 18px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.footer-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: #fff; max-width: 560px;
}
.footer-sub {
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,0.65); max-width: 480px;
}
.footer-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 4px; }
.footer-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--text-heading);
  border-radius: 100px; padding: 14px 28px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.footer-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.footer-btn-primary svg { width: 16px; height: 16px; }
.footer-btn-ghost {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  border-radius: 100px; padding: 14px 28px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.footer-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.footer-meta {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.footer-meta p { font-size: 12px; color: rgba(255,255,255,0.4); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.footer-meta strong { color: rgba(255,255,255,0.6); }

/* ========== BENTO - GLASSMORPHISM ========== */
.business-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  overflow: hidden;
  padding: 100px 0;
}
.business-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2316a34a' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v4h-2v-4h-4v-2h4v-4h2v4h4v2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.business-section .section-header { position: relative; z-index: 2; }

.bento-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .bento-grid { grid-template-columns: 1.4fr 1fr; } }
@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: 1.5fr 0.8fr 0.7fr; grid-template-rows: auto auto; }
  .bento-card.span-rows { grid-row: 1 / 3; }
}

.bento-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 220px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
  pointer-events: none;
  border-radius: 24px;
}
.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(22, 101, 52, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 60px rgba(22, 101, 52, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.bento-card .bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.bento-card:hover .bento-bg-img {
  opacity: 0.12;
  transform: scale(1.05);
}

.bento-tag {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.bento-value {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.bento-title {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.bento-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.bento-card.gold .bento-tag { color: var(--gold); }
.bento-card.gold .bento-value { color: var(--gold); }

/* Featured bento card */
.bento-card.span-rows {
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.9) 0%, rgba(21, 128, 61, 0.85) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}
.bento-card.span-rows::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 40%);
}
.bento-card.span-rows .bento-bg-img { opacity: 0.15; }
.bento-card.span-rows:hover .bento-bg-img { opacity: 0.2; }
.bento-card.span-rows .bento-tag { color: #86EFAC; }
.bento-card.span-rows .bento-value { color: #fff; }
.bento-card.span-rows .bento-title { color: #fff; }
.bento-card.span-rows .bento-desc { color: rgba(255, 255, 255, 0.8); }
.bento-card.span-rows:hover {
  background: linear-gradient(135deg, rgba(22, 101, 52, 0.95) 0%, rgba(21, 128, 61, 0.9) 100%);
  box-shadow: 0 20px 40px rgba(22, 101, 52, 0.3), 0 0 60px rgba(34, 197, 94, 0.2);
}

/* ========== SCROLL REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 60ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 300ms; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > * { transition: none; opacity: 1; transform: none; }
}
