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

:root {
  --navy-900: #0A0F0D;
  --navy-800: #111A14;
  --navy-700: #172012;
  --navy-600: #1E2E1F;
  --navy-500: #2A3D2C;
  --mint-500: #4ADE80;
  --mint-400: #A3E635;
  --mint-300: #86EFAC;
  --mint-100: #E0FAF6;
  --mint-50:  rgba(74, 222, 128, 0.12);
  --white: #E8F0E9;
  --gray-100: #111A14;
  --gray-200: #24352A;
  --gray-400: #6B8A70;
  --gray-600: #9FB89F;
  --gray-800: #E5F0E7;
  --gold: #F2B705;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  background: var(--navy-900);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,15,13,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74,222,128,.15);
  padding: 0 max(24px, calc((100% - 1160px)/2));
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-badge {
  width: 36px; height: 36px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--mint-500), var(--mint-300));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--navy-900);
  letter-spacing: -.5px;
}
.nav-logo-text { color: var(--white); font-weight: 700; font-size: 20px; }
.nav-logo-text span { color: var(--mint-400); }
.nav-cta {
  background: var(--mint-500); color: var(--navy-900);
  border: none; border-radius: var(--radius-full);
  padding: 8px 20px; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all .2s;
  font-family: inherit;
}
.nav-cta:hover { background: var(--mint-400); transform: translateY(-1px); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links > li > a,
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: color .2s;
}

.nav__links > li > a:hover,
.nav__dropdown-toggle:hover {
  color: var(--white);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform .2s;
}

.nav__dropdown.open .nav__dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 190px;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all .2s;
  z-index: 1001;
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  white-space: nowrap;
}

.nav__dropdown-menu a:hover {
  color: var(--mint-400);
  background: rgba(255,255,255,.05);
}

/* ── SITE-WIDE AUTH WIDGET (shared by js/auth.js) ── */
.nav__auth { display: flex; align-items: center; gap: 12px; }
.nav__auth-link {
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 8px 14px; background: none; border: none;
  font-family: inherit; cursor: pointer;
}
.nav__auth-link:hover { color: var(--white); }
.nav__auth-cta {
  background: var(--mint-500); color: var(--navy-900);
  border: none; border-radius: var(--radius-full);
  padding: 8px 20px; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: all .2s;
  font-family: inherit; text-decoration: none;
}
.nav__auth-cta:hover { background: var(--mint-400); transform: translateY(-1px); }
.nav__auth-email {
  color: rgba(255,255,255,.6); font-size: 13px;
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nav__auth-logout {
  background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff;
  border-radius: var(--radius-full); padding: 8px 14px; font-size: 13px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all .2s;
}
.nav__auth-logout:hover { border-color: rgba(255,255,255,.6); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,.75);
  border-radius: 1px;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 13, 0.75);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}

.nav__backdrop.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .mobile-menu-btn { display: flex; }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: none;
    border: none;
    padding: 8px 0 0 20px;
  }
  .nav__dropdown.open .nav__dropdown-menu {
    display: block;
  }
}

/* ── HERO ──────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 60%, #0F2417 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(74,222,128,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,222,128,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,222,128,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.12); border: 1px solid rgba(74,222,128,.3);
  border-radius: 100px; padding: 6px 16px;
  color: var(--mint-400); font-size: 13px; font-weight: 600;
  margin-bottom: 28px;
  position: relative;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint-500);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50%{ box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  position: relative;
}
.hero h1 .accent { color: var(--mint-400); }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mint-500), var(--mint-400));
  color: var(--navy-900); border: none;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s; font-family: inherit;
  box-shadow: 0 4px 20px rgba(74,222,128,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(74,222,128,.45); }
.btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all .25s; font-family: inherit;
}
.btn-outline:hover { border-color: var(--mint-400); color: var(--mint-400); }

.hero-stats {
  display: flex; gap: 48px; margin-top: 64px;
  justify-content: center; flex-wrap: wrap;
  position: relative;
}
.stat { text-align: center; }
.stat-num { font-size: 28px; font-weight: 800; color: var(--mint-400); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; letter-spacing: .5px; }

/* ── SECTION WRAPPER ───────────────────── */
.section {
  padding: 96px max(24px, calc((100% - 1160px)/2));
}
.section-alt { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  color: var(--mint-500); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800; color: var(--white); line-height: 1.3;
}
.section-desc {
  color: var(--gray-600); margin-top: 12px;
  font-size: 16px; font-weight: 300;
}

/* ── REPORT CARDS ──────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-active { border-color: rgba(74,222,128,.25); }
.card-active:hover { border-color: transparent; }

.card-ribbon {
  position: absolute; top: 20px; right: -8px;
  background: var(--mint-500); color: var(--navy-900);
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 14px 4px 10px;
  border-radius: 4px 0 0 4px;
  box-shadow: 2px 2px 8px rgba(0,0,0,.35);
}
.card-ribbon-soon {
  background: var(--gray-200); color: var(--gray-600);
}

.card-header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  position: relative; overflow: hidden;
}
.card-header::after {
  content: '';
  position: absolute; bottom: -30px; right: -30px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(74,222,128,.2); border: 1px solid rgba(74,222,128,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.card-title {
  color: var(--white); font-size: 18px; font-weight: 700; line-height: 1.4;
}
.card-meta {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.tag {
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.75);
  font-size: 11px; font-weight: 500; border-radius: 4px;
  padding: 3px 8px; letter-spacing: .3px;
}
.tag-mint { background: rgba(74,222,128,.2); color: var(--mint-400); }

.card-body { padding: 24px 28px 28px; }
.card-desc { color: var(--gray-600); font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.card-contents { list-style: none; margin-bottom: 24px; }
.card-contents li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--gray-800); padding: 5px 0;
  border-bottom: 1px solid var(--gray-200);
}
.card-contents li:last-child { border-bottom: none; }
.card-contents li::before {
  content: '›'; color: var(--mint-500); font-weight: 700; font-size: 16px;
  line-height: 1.4; flex-shrink: 0;
}
.card-price {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px;
}
.price-amount { font-size: 26px; font-weight: 800; color: var(--white); }
.price-unit { font-size: 14px; color: var(--gray-400); }
.price-original {
  font-size: 14px; color: var(--gray-400);
  text-decoration: line-through;
}

.card-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-card-buy {
  background: linear-gradient(135deg, var(--mint-500), var(--mint-400));
  color: var(--navy-900); border: none;
  padding: 12px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all .25s; font-family: inherit; width: 100%;
}
.btn-card-buy:hover { box-shadow: 0 4px 16px rgba(74,222,128,.4); transform: translateY(-1px); }
.btn-card-sample {
  background: transparent; border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  padding: 11px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all .25s; font-family: inherit; width: 100%;
}
.btn-card-sample:hover { border-color: var(--mint-500); color: var(--mint-500); }

.card-soon { opacity: .65; pointer-events: none; }
.soon-overlay {
  background: repeating-linear-gradient(
    45deg, transparent, transparent 6px,
    rgba(255,255,255,.015) 6px, rgba(255,255,255,.015) 12px
  );
}
.soon-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-200); border-radius: 100px;
  padding: 8px 20px; color: var(--gray-600);
  font-size: 13px; font-weight: 600; width: 100%;
  justify-content: center;
}

/* ── SAMPLE SECTION ────────────────────── */
.sample-section {
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
  padding: 96px max(24px, calc((100% - 1160px)/2));
  text-align: center;
}
.sample-section .section-title { color: var(--white); }
.sample-section .section-desc { color: rgba(255,255,255,.6); }

.sample-preview {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; margin: 48px 0;
}
.sample-item {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 28px 20px;
  transition: all .25s; cursor: pointer;
}
.sample-item:hover {
  background: rgba(74,222,128,.1); border-color: rgba(74,222,128,.3);
  transform: translateY(-4px);
}
.sample-item-icon { font-size: 32px; margin-bottom: 12px; }
.sample-item-title { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.sample-item-sub { color: rgba(255,255,255,.5); font-size: 12px; }

.btn-sample-big {
  background: var(--mint-500); color: var(--navy-900);
  border: none; padding: 16px 48px;
  border-radius: var(--radius-full); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all .25s; font-family: inherit;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.btn-sample-big:hover { background: var(--mint-400); transform: translateY(-2px); }

/* ── HOW TO BUY ────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-500), var(--mint-300));
  color: var(--navy-900); font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(74,222,128,.3);
}
.step-content h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.account-box {
  background: var(--navy-900); border-radius: var(--radius-md);
  padding: 20px 24px; margin-top: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.account-row { display: flex; justify-content: space-between; align-items: center; }
.account-label { font-size: 12px; color: rgba(255,255,255,.5); }
.account-value { font-size: 14px; color: var(--white); font-weight: 600; }
.account-value.highlight { color: var(--mint-400); font-size: 18px; }

.contact-box {
  background: var(--mint-50); border: 1.5px solid var(--mint-300);
  border-radius: var(--radius-md); padding: 20px 24px; margin-top: 14px;
}
.contact-box a { color: var(--mint-500); font-weight: 700; text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

/* ── FAQ ───────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--white); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--mint-500); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; color: var(--gray-400); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--mint-500); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 20px; color: var(--gray-600); font-size: 14px; line-height: 1.8; }

/* ── MODAL ─────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,15,13,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: all .3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--navy-800); border-radius: var(--radius-lg);
  width: 100%; max-width: 680px; max-height: 90vh;
  overflow-y: auto; transform: translateY(24px);
  transition: transform .3s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  padding: 28px 32px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-title { color: var(--white); font-size: 20px; font-weight: 700; }
.modal-subtitle { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 6px; }
.modal-close {
  background: rgba(255,255,255,.15); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--white); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s; font-family: inherit;
}
.modal-close:hover { background: rgba(255,255,255,.25); }
.modal-body { padding: 32px; }
.modal-section { margin-bottom: 28px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-size: 14px; font-weight: 700; color: var(--white);
  padding-bottom: 12px; border-bottom: 2px solid var(--mint-500);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.modal-section h3 span { color: var(--mint-500); }
.sample-stat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px;
}
.sample-stat {
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 16px 12px; text-align: center;
}
.sample-stat-val { font-size: 22px; font-weight: 800; color: var(--mint-500); }
.sample-stat-lbl { font-size: 11px; color: var(--gray-600); margin-top: 4px; }
.sample-toc { list-style: none; }
.sample-toc li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--gray-200);
  font-size: 13px;
}
.sample-toc li:last-child { border-bottom: none; }
.toc-title { color: var(--gray-800); }
.toc-pages { color: var(--gray-400); font-size: 12px; }
.toc-lock { color: var(--gray-400); font-size: 14px; }
.toc-open .toc-lock { color: var(--mint-500); }
.sample-chart {
  background: var(--gray-100); border-radius: var(--radius-sm);
  padding: 20px; margin-bottom: 16px;
}
.chart-title { font-size: 12px; color: var(--gray-600); margin-bottom: 16px; font-weight: 600; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 100px; }
.chart-bar-wrap { flex: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 6px; }
.chart-bar {
  width: 100%; border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--mint-400), var(--mint-500));
  transition: opacity .2s;
}
.chart-bar:hover { opacity: .8; }
.chart-bar-lbl { font-size: 10px; color: var(--gray-600); text-align: center; }
.blurred { filter: blur(5px); pointer-events: none; user-select: none; }
.modal-cta {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  border-radius: var(--radius-md); padding: 24px;
  text-align: center; margin-top: 24px;
}
.modal-cta p { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 16px; }
.modal-cta .btn-primary { display: inline-block; }

/* ── BUY MODAL ─────────────────────────── */
.buy-modal .modal-body { padding: 32px; }
.buy-steps { display: flex; flex-direction: column; gap: 20px; }
.buy-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.buy-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-500), var(--mint-300));
  color: var(--navy-900); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.buy-step-text h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.buy-step-text p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }
.account-info-box {
  background: var(--navy-900); border-radius: 10px;
  padding: 16px 20px; margin-top: 10px;
}
.account-info-row {
  display: flex; justify-content: space-between;
  padding: 5px 0; font-size: 13px;
}
.account-info-row .lbl { color: rgba(255,255,255,.5); }
.account-info-row .val { color: var(--white); font-weight: 600; }
.account-info-row .val.mint { color: var(--mint-400); font-size: 15px; }
.email-info-box {
  background: var(--mint-50); border: 1.5px solid var(--mint-300);
  border-radius: 10px; padding: 14px 18px; margin-top: 10px;
  font-size: 13px; color: var(--gray-600);
}
.email-info-box strong { color: var(--white); }
.divider { height: 1px; background: var(--gray-200); margin: 8px 0; }

/* ── UTILITIES ─────────────────────────── */
@media (max-width: 640px) {
  .hero-stats { gap: 28px; }
  .sample-stat-grid { grid-template-columns: repeat(2,1fr); }
}

.scroll-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s, transform .6s;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
