:root {
  color-scheme: light only;
  --white:        #fafaf8;
  --surface:      #f4f2ed;
  --border:       #dedad2;
  --border2:      #ccc9bf;
  --ink:          #1a1a18;
  --ink2:         #2e2e2a;
  --muted:        #6b6862;
  --muted2:       #9a9790;
  --green:        #1a7a4a;
  --green-mid:    #2ea86a;
  --green-light:  #e8f5ee;
  --green-dark:   #0f4f30;
  --red-text:     #8b2020;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', monospace;
}

*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
  scroll-padding-top: 62px;
}

body {
  background: var(--white) !important;
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container, .nav-inner, .stats-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  height: 60px;
}

.nav-logo span { color: var(--green); font-style: normal; }
.nav-logo-img { height: 36px; width: auto; display: block; }

.nav-links {
  display: flex;
  list-style: none;
  height: 60px;
}

.nav-links li {
  display: flex;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--green); background: var(--green-light); }
.nav-links a:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; color: var(--green); }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.2s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  display: block;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}

.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--green); background: var(--green-light); }


/* ── STATS BAR ── */
.stats-bar {
  background: var(--ink);
  padding: 20px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
  min-width: 100px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num span { color: var(--green-mid); }

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* ── MICROLEARNING ── */
.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-top: 0;
}

.micro-card {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: background 0.15s;
}

.micro-card:last-child { border-right: none; }
.micro-card:hover { background: var(--surface); }

.micro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.15s;
}

.micro-card:hover::before { opacity: 1; }

.micro-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}

.micro-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.micro-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

.micro-source {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  width: 100%;
}

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--border);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid rgba(26,122,74,0.2);
  padding: 5px 12px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.5s 0.1s ease forwards;
}

.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.kicker-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 7vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.5s 0.2s ease forwards;
}

h1 .accent { color: var(--green); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.5s 0.3s ease forwards;
}

/* ── LANG CLOUD ── */
.lang-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.5s 0.4s ease forwards;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.15s;
  cursor: default;
  white-space: nowrap;
}

.chip.live {
  background: var(--green-light);
  border: 1.5px solid rgba(26,122,74,0.3);
  color: var(--green-dark);
  cursor: pointer;
}

.chip.live:hover {
  background: #d4eedd;
  border-color: var(--green);
}

.chip.soon {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted2);
}

.chip-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chip.live .chip-dot {
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.chip.soon .chip-dot {
  background: var(--muted2);
  opacity: 0.5;
}

/* ── CTA ── */
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s 0.5s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }

/* ── SECTIONS ── */
section {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.sec-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--green);
  opacity: 0.5;
  flex-shrink: 0;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

h2 .accent { color: var(--green); }

.sec-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
  max-width: 540px;
  margin-bottom: 40px;
}

/* ── CARDS GRID ── */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background 0.15s;
}

.card:last-child { border-right: none; }
.card:hover { background: var(--surface); }

.card-icon {
  width: 28px; height: 28px;
  margin-bottom: 16px;
}

.card-icon.red   { color: var(--red-text); }
.card-icon.green { color: var(--green); }

.card-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-label.red   { color: var(--red-text); }
.card-label.green { color: var(--green); }

.card-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ── VIDEO DEMO ── */
.demo-wrap {
  display: grid;
  grid-template-columns: 1fr 190px;
  border: 1px solid var(--border);
  margin-top: 32px;
}

.demo-text {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: var(--white);
}

.demo-text h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 10px;
}

.demo-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 5px; }

.mono-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-dark);
  background: var(--green-light);
  border: 1px solid rgba(26,122,74,0.2);
  padding: 3px 8px;
}

.demo-phone {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Photo area — top ~55% */
.dp-photo {
  flex: 0 0 55%;
  position: relative;
  background:
    linear-gradient(175deg, #7a9e8a 0%, #6b8c70 15%, #a89878 35%, #c4aa84 50%, #b89d78 65%, #8a9e82 82%, #6d8c6f 100%);
  overflow: hidden;
}

.dp-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 65%, rgba(155,130,85,0.55) 0%, transparent 48%),
    radial-gradient(ellipse at 72% 35%, rgba(95,118,85,0.45) 0%, transparent 38%),
    radial-gradient(ellipse at 50% 85%, rgba(75,65,50,0.35) 0%, transparent 30%);
}

.dp-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  background: var(--green);
  border-radius: 99px;
  padding: 4px 8px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Green separator line between photo and content */
.dp-separator {
  position: relative;
  flex-shrink: 0;
  height: 4px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-level-pill {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  color: #fff;
  background: var(--green);
  border-radius: 99px;
  padding: 5px 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Text content — cream bottom area */
.dp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  padding: 16px 12px 12px;
  gap: 0;
}

.dp-word {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.1;
}

/* Feminine gender line (pink) */
.dp-gender-bar {
  width: 40%;
  height: 2px;
  background: #E8729A;
  border-radius: 1px;
  margin-bottom: 10px;
}

.dp-trans {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
}

/* ── TABLE ── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  margin-top: 0;
}

.vocab-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.vocab-table th {
  text-align: left;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--surface);
  border-bottom: 2px solid var(--border2);
  font-weight: 400;
  white-space: nowrap;
}

.vocab-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 300;
  vertical-align: middle;
  white-space: nowrap;
}

.vocab-table tr.live td { color: var(--ink2); font-weight: 400; }
.vocab-table tr.live td:first-child { font-weight: 500; }
.vocab-table tr.dim td { opacity: 0.55; }
.vocab-table tr:hover td { background: var(--surface); }

.src-link {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--green);
  text-decoration: none;
}
.src-link:hover { text-decoration: underline; }

.badge {
  font-family: var(--mono);
  font-size: 10px;
  padding: 2px 8px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-weight: 400;
  display: inline-block;
}

.badge-live { color: var(--green); background: var(--green-light); border: 1px solid rgba(26,122,74,0.2); }
.badge-soon { color: var(--muted2); background: var(--surface); border: 1px solid var(--border); }
.badge-exam { color: var(--green-dark); background: var(--green-light); border: 1px solid rgba(26,122,74,0.15); }

.table-note {
  margin-top: 12px;
  padding: 12px 16px;
  border-left: 3px solid rgba(26,122,74,0.3);
  background: var(--green-light);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}

/* ── PHASE 2 ── */
.phase2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.p2-card {
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.p2-card:last-child { border-right: none; }

.p2-card::after {
  content: 'PHASE 2';
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted2);
  letter-spacing: 0.12em;
  border: 1px solid var(--border2);
  padding: 2px 6px;
  background: var(--white);
}

.p2-icon {
  width: 26px; height: 26px;
  color: var(--muted2);
  margin-bottom: 14px;
  opacity: 0.5;
}

.p2-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 8px;
}

.p2-desc {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
}

/* ── WAITLIST ── */
.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.wl-info {
  background: var(--green);
  padding: 40px 32px;
}

.wl-info h3 {
  font-family: var(--serif);
  font-size: 30px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.wl-info p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.wl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.wl-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  margin-top: 5px;
}

.wl-text {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.wl-form {
  background: var(--white);
  padding: 40px 32px;
}

.form-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border2);
  padding: 12px 14px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 24px;
  -webkit-appearance: none;
}

.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: var(--muted2); }

.lang-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.lc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.12s;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-error {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red-text);
  margin-top: -18px;
  margin-bottom: 16px;
  min-height: 16px;
  line-height: 1.4;
}

.lc:hover { border-color: var(--green); color: var(--ink); }
.lc:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.lc.on {
  background: var(--green-light);
  border-color: rgba(26,122,74,0.4);
  color: var(--green-dark);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  border: none;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  -webkit-appearance: none;
}

.submit-btn:hover { background: var(--green); }
.submit-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.submit-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.success-state {
  display: none;
  padding: 32px 16px;
  text-align: center;
}

.success-icon { width: 40px; height: 40px; color: var(--green); margin: 0 auto 14px; }

.success-title {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}

.success-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
}

.footer-logo span { color: var(--green-mid); }

.footer-col-title {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--green-mid); }

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.5); }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .card:last-child { border-bottom: none; }

  .demo-wrap {
    grid-template-columns: 1fr;
  }
  .demo-text { border-right: none; border-bottom: 1px solid var(--border); }
  .demo-phone { min-height: 320px; }
  .dp-photo { flex: 0 0 52%; }
  .dp-gender-bar { width: 4.25em; }
  
  .phase2-cards {
    grid-template-columns: 1fr;
  }
  .p2-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .p2-card:last-child { border-bottom: none; }

  .waitlist-wrap { grid-template-columns: 1fr; }
  .wl-info { padding: 32px 24px; }
  .wl-form { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  section { padding: 48px 0; }

  .stats-inner {
    gap: 0;
  }

  .stat-item {
    padding: 10px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 100%;
  }

  .stat-item:last-child { border-bottom: none; }

  .stat-num { font-size: 22px; margin-bottom: 0; }

  .micro-grid {
    grid-template-columns: 1fr;
  }

  .micro-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .micro-card:last-child { border-bottom: none; }
}