/* STMNT marketing site — Phase 11
   Single-page scroll. Pure-black Revolut aesthetic.
   Mobile-first (390px+). Extends Phase 9.5 scaffold tokens.
   Page weight target: <500KB excluding the lazy-loaded iframe. */

/* ── TOKENS ── */
:root {
  --bg-black:     #000000;
  --bg-surface:   #121212;
  --bg-surface-2: #1C1C1E;
  --text-primary:   #FFFFFF;
  --text-secondary: #8E8E93;
  --text-tertiary:  #636366;
  --accent-green:   #00D97E;
  --accent-green-dim: rgba(0, 217, 126, 0.12);
  --accent-gold:  rgba(212, 175, 55, 0.6); /* reserved for gold underline only */
  --divider:      #2C2C2E;
  --font-display: 'SF Pro Display', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:        60px;
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    20px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  background: var(--bg-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
p { margin: 0; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── LAYOUT UTILITY ── */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
/* scroll-margin accounts for sticky nav height */
section, footer { scroll-margin-top: calc(var(--nav-h) + 8px); }

.text-center { text-align: center; }

/* ── SECTION TYPOGRAPHY ── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--text-primary);
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 36px;
  min-height: 56px;
  background: var(--accent-green);
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  border-radius: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 150ms ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    160px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.btn-primary:hover {
  background: #08E888;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.15),
    0 8px 24px rgba(0, 217, 126, 0.3),
    inset 0 -2px 0 rgba(255, 255, 255, 0.15);
}
.btn-primary:hover::after { opacity: 1; animation: btn-pulse 1.5s ease-in-out infinite; }
.btn-primary:active { transform: scale(0.96); transition: transform 80ms ease-in; }
.btn-primary:focus-visible { outline: 2px solid rgba(0, 217, 126, 0.7); outline-offset: 3px; border-radius: 14px; }
@keyframes btn-pulse {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 1; }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  min-height: 56px;
  background: transparent;
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  border: 1px solid rgba(0, 217, 126, 0.45);
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    130px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 200ms ease-out;
}
.btn-ghost:hover {
  background: rgba(0, 217, 126, 0.10);
  border-color: var(--accent-green);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover::after { opacity: 1; animation: btn-pulse 1.5s ease-in-out infinite; }
.btn-ghost:active { transform: scale(0.96); transition: transform 80ms ease-in; }
.btn-ghost:focus-visible { outline: 2px solid rgba(0, 217, 126, 0.6); outline-offset: 3px; border-radius: 14px; }

/* Release flash — added via JS on click */
.btn-releasing {
  animation: btn-release 220ms ease-out forwards !important;
}
@keyframes btn-release {
  0%   { filter: brightness(1.3); }
  100% { filter: brightness(1); }
}

.btn-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color 150ms ease;
}
.btn-link:hover { color: var(--text-primary); }
.btn-link:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.4); outline-offset: 3px; border-radius: 4px; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 44, 46, 0.8);
  height: var(--nav-h);
}
.site-nav.is-scrolled {
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.site-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-green);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 22px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:focus-visible { outline: 2px solid rgba(0, 217, 126, 0.5); outline-offset: 3px; border-radius: 4px; }
.nav-cta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  text-decoration: none;
  padding: 7px 14px;
  border: 1px solid rgba(0, 217, 126, 0.38);
  border-radius: 8px;
  flex-shrink: 0;
  transition: background 150ms ease;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(0, 217, 126, 0.1); }
.nav-cta:focus-visible { outline: 2px solid rgba(0, 217, 126, 0.6); outline-offset: 3px; }
@media (max-width: 600px) {
  .nav-links { display: none; }
}

/* ── SECTION 1 — HERO OUTER (full-width gradient container) ── */
.hero-outer {
  position: relative;
  overflow: hidden;
  /* gradient background applied by JS; fallback = pure black */
  background: var(--bg-black);
}

/* Mountain silhouette SVG — anchored to bottom, full width */
.hero-mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 80px;
  pointer-events: none;
  z-index: 0;
  /* Fade edges so silhouette blends cleanly into section seam */
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

/* Hero content sits above mountain */
.s-hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 100px;
}
@media (max-width: 780px) {
  .s-hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 80px 24px 64px;
    gap: 44px;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.032em;
  color: var(--text-primary);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 400px;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-primary, .hero-cta-row .btn-ghost { width: 100%; }
}
.hero-proof {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
  margin-top: 4px;
}

/* ── HERO SCREENSHOT ── */
.hero-screenshot-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-screenshot {
  width: 100%;
  max-width: 340px;
  max-height: 680px;
  height: auto;
  border-radius: 24px;
  display: block;
  background: #161616;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.4),
    0 0 32px rgba(212, 175, 55, 0.12);
}
@media (min-width: 1000px) {
  .hero-screenshot { max-width: 390px; }
}
@media (max-width: 780px) {
  .hero-screenshot-col { justify-content: center; }
  .hero-screenshot {
    max-width: 280px;
    max-height: 380px;
    object-fit: cover;
    object-position: top;
  }
}

/* ── SECTION 2 — LIVE DEMO ── */
.s-demo {
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 96px 0;
}
.s-demo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 780px) {
  .s-demo-inner { grid-template-columns: 1fr; gap: 40px; }
}

.demo-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
}
.demo-copy p {
  font-size: 17px;
  line-height: 1.68;
  color: var(--text-secondary);
}

/* Phone frame wrapper */
.demo-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.demo-phone {
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #1a1a1a;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.demo-phone-notch {
  width: 80px;
  height: 8px;
  background: #111;
  border-radius: 4px;
  margin: 0 auto 10px;
  flex-shrink: 0;
}
.demo-phone-screen {
  /* No flex:1 — explicit height avoids flex-basis:0 overriding the pixel height
     when the parent has no fixed height defined. */
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  position: relative;
  height: 580px;
}
.demo-phone-bar {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

/* Skeleton shimmer (shown until iframe loads) */
.demo-skeleton {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}
.demo-skeleton.is-hidden { display: none; }
.skel-header {
  width: 60%;
  height: 10px;
  background: linear-gradient(90deg, #1c1c1e 25%, #2c2c2e 50%, #1c1c1e 75%);
  background-size: 200% 100%;
  border-radius: 5px;
  animation: skel-shimmer 1.6s ease-in-out infinite;
}
.skel-amount {
  width: 55%;
  height: 36px;
  background: linear-gradient(90deg, #1c1c1e 25%, #2c2c2e 50%, #1c1c1e 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skel-shimmer 1.6s ease-in-out infinite;
  animation-delay: 0.1s;
}
.skel-row {
  height: 12px;
  background: linear-gradient(90deg, #1c1c1e 25%, #2c2c2e 50%, #1c1c1e 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: skel-shimmer 1.6s ease-in-out infinite;
}
.skel-row--wide { width: 90%; animation-delay: 0.15s; }
.skel-row:not(.skel-row--wide):not(.skel-row--narrow) { width: 75%; animation-delay: 0.2s; }
.skel-row--narrow { width: 45%; animation-delay: 0.25s; }
@keyframes skel-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* Fallback static image */
.demo-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: none;
  z-index: 1;
}
.demo-fallback-img.is-visible { display: block; }

/* Live iframe */
.demo-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
  display: block;
  opacity: 0;
  transition: opacity 300ms ease;
  z-index: 3;
}
.demo-iframe.is-loaded { opacity: 1; }

.demo-caption {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
}

/* ── SECTION 3 — HOW IT WORKS ── */
.s-how {
  padding: 96px 0;
}
.s-how .section-h2 {
  margin-bottom: 56px;
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 780px) {
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .s-how .section-h2 { margin-bottom: 36px; }
}

.step {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
@media (hover: hover) {
  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}
.step-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-green);
  text-transform: uppercase;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
  flex-shrink: 0;
}

/* ── SECTION 4 — WHO IT'S FOR ── */
.s-who {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.s-who .section-h2 { margin-bottom: 52px; max-width: 620px; }
@media (max-width: 780px) {
  .s-who .section-h2 { margin-bottom: 32px; }
}

.callouts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
@media (max-width: 780px) {
  .callouts-grid { grid-template-columns: 1fr; gap: 20px; }
}

.callout {
  border-left: 2px solid var(--accent-green);
  padding: 4px 0 4px 20px;
  transition: transform 250ms ease-out;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (hover: hover) {
  .callout:hover { transform: translateY(-4px); }
}
.callout-icon {
  flex-shrink: 0;
  display: block;
}
.who-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 540px;
}
.callout h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 10px;
}
.callout p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.trust-strip {
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 20px 0 0;
  border-top: 1px solid var(--divider);
  line-height: 1.7;
}
.trust-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

/* ── SECTION 5 — PRICING ── */
.s-pricing {
  padding: 96px 0;
}
.s-pricing .section-h2 { margin-bottom: 12px; }
.s-pricing .section-sub { margin-bottom: 52px; }
@media (max-width: 780px) {
  .s-pricing .section-sub { margin-bottom: 36px; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 200ms ease-out;
  transform-style: preserve-3d;
  will-change: transform;
}
/* CSS scale fallback when JS tilt is not active (no pointer:fine or JS off) */
@media (hover: hover) {
  .pricing-card:not(.tilt-active):hover { transform: scale(1.02); }
}
.pricing-card--featured {
  border-color: rgba(0, 217, 126, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 217, 126, 0.1),
    0 20px 56px rgba(0, 0, 0, 0.45);
}

.pricing-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(0, 217, 126, 0.1);
  border: 1px solid rgba(0, 217, 126, 0.28);
  border-radius: 6px;
  padding: 4px 10px;
  align-self: flex-start;
}
.pricing-plan {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.pricing-plan--standard { margin-top: 22px; } /* visual alignment with badge */
.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
}
.pricing-lock {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}
.pricing-sub-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.pricing-cta { margin-top: auto; padding-top: 6px; align-self: flex-start; }

/* ── SECTION 6 — ABOUT ── */
.s-about {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.about-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-green);
}
.about-inner p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ── PRICING FEATURE LIST ── */
.feat-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
}
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.feat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 9px;
  margin-top: 1px;
}
.pricing-card--featured .feat-icon {
  background: rgba(0, 217, 126, 0.14);
  color: var(--accent-green);
  font-weight: 700;
}
.pricing-card:not(.pricing-card--featured) .feat-icon {
  background: rgba(100, 100, 107, 0.15);
  color: var(--text-tertiary);
  font-weight: 600;
}
.pricing-founding-note {
  font-size: 12px;
  font-style: italic;
  color: var(--text-tertiary);
  padding-top: 12px;
  border-top: 1px solid var(--divider);
  line-height: 1.6;
}
.pricing-flat-strip {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 32px;
  line-height: 1.7;
}

/* ── SECTION 4.5 — STACK ── */
.s-stack {
  padding: 96px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.s-stack .section-h2 { margin-bottom: 10px; }
.stack-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 52px;
  max-width: 540px;
}
.stack-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stack-row {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 28px 28px 32px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
@media (hover: hover) {
  .stack-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  }
}
.stack-row-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.stack-row-label--neutral { color: rgba(142, 142, 147, 0.85); }
.stack-row-label--gap     { color: var(--text-tertiary); }
.stack-row-label--stmnt   { color: var(--accent-green); }
.stack-row--stmnt {
  background: #181818;
  border-color: rgba(0, 217, 126, 0.18);
}
.stack-row--stmnt .stack-row-body {
  color: rgba(255, 255, 255, 0.82);
}
.stack-row-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 0;
}
.stack-pm-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.stack-pm-strip span {
  padding: 5px 13px;
  background: var(--bg-surface-2);
  border: 1px solid var(--divider);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.stack-gaps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
@media (max-width: 780px) {
  .stack-gaps-grid { grid-template-columns: 1fr 1fr; }
}
/* stack-gaps-grid stays 2-col at 390px — no single-column override */
.stack-gap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 14px 10px 22px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
  position: relative;
}
.stack-gap::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.6);
}
.stack-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.stack-flow-node {
  padding: 8px 16px;
  border: 1px solid var(--divider);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-surface);
  white-space: nowrap;
}
.stack-flow-node--stmnt {
  border-color: rgba(0, 217, 126, 0.45);
  color: var(--accent-green);
  font-weight: 600;
}
.stack-flow-arrow {
  color: var(--text-tertiary);
  font-size: 18px;
}

/* ── SECTION 4.7 — COMPARISON TABLE ── */
.s-compare {
  padding: 96px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.s-compare .section-h2 { margin-bottom: 10px; }
.compare-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 640px;
  line-height: 1.62;
}

/* Outer wrapper — positioned so the scroll hint can anchor to it.
   Keeping position:relative off .compare-wrap avoids the Chromium
   scrollHeight inflation bug triggered by sticky cells inside overflow:auto. */
.compare-outer {
  position: relative;
  width: 100%;
}
/* Scrollable wrapper — horizontal scroll on mobile */
.compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--divider);
  -webkit-overflow-scrolling: touch;
}
/* Right-edge scroll hint on mobile */
.compare-scroll-hint {
  display: none;
}
@media (max-width: 900px) {
  .compare-scroll-hint {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(to left, rgba(18, 18, 18, 0.85), transparent);
    pointer-events: none;
    border-radius: 0 12px 12px 0;
  }
}

.compare-table {
  /* Explicit pixel width avoids width:100%+min-width conflict that triggers
     the Chromium scrollHeight inflation bug when sticky cells are present. */
  width: 820px;
  border-collapse: collapse;
  background: #0a0a0a;
  font-size: 14px;
  table-layout: fixed;
}

/* Column widths — total = 220 + 6×100 = 820px */
.compare-table thead tr th:first-child,
.compare-table tbody tr td:first-child {
  width: 220px;
}
.compare-table thead tr th:not(:first-child),
.compare-table tbody tr td:not(:first-child) {
  width: 100px;
}

/* First column: no sticky (Chromium bug: position:sticky on td inside
   overflow-x:auto inflates document.scrollHeight by 2-3×). Plain left-align. */
.ctc-feat {
  background: #0a0a0a;
}

/* Header row */
.compare-table thead th {
  padding: 20px 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--divider);
  vertical-align: bottom;
}
.compare-table thead th.ctc-feat {
  text-align: left;
}
.compare-table thead th.ctc-stmnt {
  background: #161616;
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  border-right: 1px solid rgba(212, 175, 55, 0.4);
  border-top: 2px solid rgba(212, 175, 55, 0.5);
  padding-top: 22px;
  z-index: 3;
}

/* STMNT header brand */
.ct-brand {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ct-brand-underline {
  display: block;
  width: 60%;
  height: 1.5px;
  background: rgba(212, 175, 55, 0.7);
  margin: 0 auto;
}
.ct-comp-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* Data rows */
.compare-table tbody tr {
  border-bottom: 1px solid rgba(44, 44, 46, 0.6);
}
.compare-table tbody tr:last-child {
  border-bottom: none;
}
.compare-table tbody td {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody td.ctc-feat {
  text-align: left;
}
.ctc-stmnt {
  background: #161616;
  border-left: 1px solid rgba(212, 175, 55, 0.4);
  border-right: 1px solid rgba(212, 175, 55, 0.4);
}
.compare-table thead th.ctc-stmnt { z-index: 3; }

/* Feature label column */
.ctc-feat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
  padding-right: 20px;
}

/* Cell content types */
.ct-check--stmnt {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-green);
}
.ct-check--comp {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.ct-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}
.ct-dash {
  font-size: 14px;
  color: var(--text-tertiary);
}
.ct-text-good {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.ct-text-muted {
  font-size: 13px;
  color: rgba(142, 142, 147, 0.7);
}

/* Row alternate shade */
.compare-table tbody tr:nth-child(even) td:not(.ctc-stmnt):not(.ctc-feat) {
  background: rgba(255, 255, 255, 0.015);
}
.compare-table tbody tr:nth-child(even) .ctc-feat {
  background: rgba(255, 255, 255, 0.015);
}
/* STMNT column stays #161616 always */
.compare-table tbody tr:nth-child(even) .ctc-stmnt {
  background: #161616;
}

/* Footer caption */
.compare-footer {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-tertiary);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  padding: 0 0 52px;
}
.pre-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 88px 24px;
  border-bottom: 1px solid var(--divider);
}
.pre-footer-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.18;
  max-width: 540px;
  margin: 0;
}
.pre-footer-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.55;
}
.pre-footer-email {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}
.pre-footer-email a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 150ms ease;
}
.pre-footer-email a:hover { color: var(--text-primary); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 52px 0 44px;
}
@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--brand { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-green);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
  line-height: 1.5;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-col a:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.4); outline-offset: 3px; border-radius: 4px; }
.footer-bottom {
  font-size: 12px;
  color: var(--text-tertiary);
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  text-align: center;
}

/* ── MOBILE: section padding consistency ── */
@media (max-width: 780px) {
  .s-demo, .s-how, .s-who, .s-stack, .s-compare, .s-pricing, .s-about {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .demo-phone-screen { height: 460px; }
  .pre-footer { padding-top: 56px; padding-bottom: 56px; }
  .who-sub { margin-bottom: 28px; }
}

/* ── SCROLL FADE-UP ANIMATION ── */
.js-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
  will-change: opacity, transform;
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .step, .callout, .stack-row {
    transition: none;
  }
  .step:hover, .callout:hover, .stack-row:hover { transform: none; box-shadow: none; }
  .pricing-card { transition: none; will-change: auto; }
  .btn-primary::after, .btn-ghost::after { display: none; }
  .btn-primary:active, .btn-ghost:active { transform: none; }
  .btn-releasing { animation: none !important; filter: none; }
  .skel-header, .skel-amount, .skel-row { animation: none; background: #1c1c1e; }
}

/* ── FOCUS STYLES (global) ── */
:focus-visible {
  outline: 2px solid rgba(0, 217, 126, 0.65);
  outline-offset: 3px;
}

/* ── DEMO COPY BULLETS (1B) ── */
.demo-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.demo-bullets {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.demo-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.demo-bullets li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
  flex-shrink: 0;
}
.demo-trust-link {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 150ms ease;
}
.demo-trust-link:hover { color: var(--text-secondary); }

/* ── DEMO MINI-PORTAL v7 ── */
.mp-root {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  color: #fff;
  user-select: none;
}
.mp-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 48px;
}
.mp-scroll::-webkit-scrollbar { display: none; }

/* Header */
.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 10px;
}
.mp-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8e8e93;
}
.mp-header-right {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mp-greet {
  font-size: 12px;
  color: #8e8e93;
}
.mp-greet strong { font-weight: 600; color: #fff; }
.mp-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #8e8e93;
  flex-shrink: 0;
}
.mp-signout {
  font-size: 9px;
  color: #636366;
  text-decoration: none;
  pointer-events: none;
}

/* Hero card */
.mp-hero-card {
  margin: 4px 16px 8px;
  padding: 16px 16px 14px;
  background: #161616;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04),
              0 4px 20px rgba(0,0,0,0.6),
              0 0 20px rgba(212,175,55,0.12);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.mp-hero-card:focus-visible { outline: 1px solid rgba(0,217,126,0.4); }
.mp-hero-kicker {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #636366;
  margin-bottom: 8px;
}
.mp-hero-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8e8e93;
  margin-bottom: 4px;
}
.mp-underline {
  width: 40px;
  height: 1px;
  background: rgba(212,175,55,0.6);
  margin-bottom: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out;
}
.mp-underline.is-visible { transform: scaleX(1); }
.mp-hero-rule-top {
  width: 60%;
  height: 1px;
  background: rgba(210,210,215,0.3);
  margin-bottom: 12px;
}
.mp-hero-amount {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
}
.mp-hero-cents {
  font-size: 21px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.mp-hero-rule-bottom {
  width: 100%;
  height: 1px;
  background: rgba(210,210,215,0.18);
  margin-bottom: 10px;
}
.mp-hero-subline {
  font-size: 10px;
  font-style: italic;
  color: #8e8e93;
  margin-bottom: 14px;
  line-height: 1.4;
}
.mp-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 12px;
  border-top: 1px solid #2c2c2e;
}
.mp-stat {
  padding: 8px 6px 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border-right: 1px solid rgba(44,44,46,0.6);
  transition: background 120ms ease;
  border-radius: 4px;
}
.mp-stat:last-child { border-right: none; }
.mp-stat:active { background: rgba(255,255,255,0.04); }
.mp-stat:focus-visible { outline: 1px solid rgba(0,217,126,0.4); border-radius: 4px; }
.mp-stat-label {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #636366;
  margin-bottom: 4px;
}
.mp-stat-value {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.mp-stat-value--green { color: #00D97E; }
.mp-stat-value--red   { color: #FF453A; }

/* Insights panel */
.mp-insights {
  margin: 0 16px 6px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  max-height: 0;
  padding: 0 14px;
  transition: max-height 300ms ease, padding 300ms ease;
}
.mp-insights.is-open {
  max-height: 180px;
  padding: 12px 14px;
}
.mp-insights-head {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #636366;
  margin-bottom: 8px;
}
.mp-insights-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(44,44,46,0.5);
  font-size: 11px;
  color: #8e8e93;
}
.mp-insights-row:last-child { border-bottom: none; }
.mp-ins-up { color: #00D97E; font-weight: 600; }
.mp-ins-neutral { color: #fff; font-weight: 600; }

/* Chart card */
.mp-chart-section {
  margin: 8px 16px 0;
  background: #121212;
  border: 1px solid #2c2c2e;
  border-radius: 18px;
  overflow: hidden;
}
.mp-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.mp-chart-head:focus-visible { outline: 1px solid rgba(0,217,126,0.4); border-radius: 18px; }
.mp-chart-head-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.mp-chart-chevron {
  font-size: 14px;
  color: #636366;
  transition: transform 280ms ease;
}
.mp-chart-chevron.is-open { transform: rotate(180deg); }

/* Collapsed summary bar */
.mp-chart-summary {
  padding: 0 16px 14px;
  transition: opacity 200ms ease;
}
.mp-chart-summary.is-hidden {
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  padding: 0;
}
.mp-summary-wrap { position: relative; }
.mp-summary-track {
  display: flex;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(0,217,126,0.08);
}
.mp-summary-seg {
  height: 100%;
  background: #00D97E;
  opacity: 0.72;
}
.mp-summary-tip {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 10px;
  background: rgba(212,175,55,0.9);
  border-radius: 0 2px 2px 0;
}

/* Expanded bar chart */
.mp-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0 14px;
  height: 0;
  overflow: hidden;
  transition: height 280ms ease, padding-bottom 280ms ease;
}
.mp-chart-bars.is-open {
  height: 76px;
  padding-bottom: 12px;
}
.mp-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.mp-bar {
  width: 100%;
  background: rgba(0,217,126,0.22);
  border-radius: 3px 3px 0 0;
}
.mp-bar--active { background: #00D97E; }
.mp-bar-label {
  font-size: 7px;
  color: #636366;
  white-space: nowrap;
}
.mp-bar-label--active { color: #00D97E; font-weight: 600; }

/* Statement rows */
.mp-stmt-head {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #636366;
  padding: 14px 18px 6px;
}
.mp-stmt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  border-top: 1px solid rgba(44,44,46,0.45);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.mp-stmt-row:active { background: #0d0d0d; }
.mp-stmt-row:focus-visible { outline: 1px solid rgba(0,217,126,0.3); }
.mp-stmt-month {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.mp-stmt-props {
  font-size: 9px;
  color: #636366;
}
.mp-stmt-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-stmt-amount {
  font-size: 13px;
  font-weight: 600;
  color: #00D97E;
  letter-spacing: -0.01em;
}
.mp-stmt-chevron {
  font-size: 14px;
  color: #636366;
  transition: transform 200ms ease;
}
.mp-stmt-row.is-expanded .mp-stmt-chevron { transform: rotate(90deg); }
.mp-stmt-detail {
  overflow: hidden;
  height: 0;
  background: #080808;
  transition: height 260ms ease;
}
.mp-detail-inner {
  padding: 10px 18px 12px;
  border-top: 1px solid rgba(44,44,46,0.35);
}
.mp-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 10px;
  color: #8e8e93;
  border-bottom: 1px solid rgba(44,44,46,0.35);
}
.mp-detail-row:last-child { border-bottom: none; }
.mp-detail-total { font-weight: 700; color: #00D97E; }

/* Bottom sheet */
.mp-sheet-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}
.mp-sheet-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mp-sheet {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  background: #161616;
  border-top: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px 14px 0 0;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(0.34,1.2,0.64,1);
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.mp-sheet.is-open { transform: translateY(0); }
.mp-sheet-bar {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 10px auto 0;
  cursor: pointer;
  flex-shrink: 0;
}
.mp-sheet-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 10px 16px 6px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.mp-sheet-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
  scrollbar-width: none;
  min-height: 0;
}
.mp-sheet-body::-webkit-scrollbar { display: none; }
.mp-sheet-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(44,44,46,0.45);
  font-size: 11px;
}
.mp-sheet-item:last-child { border-bottom: none; }
.mp-sheet-item-name { color: #8e8e93; }
.mp-sheet-item-val { font-weight: 600; color: #fff; }
.mp-sheet-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 4px;
}
.mp-sheet-total-val { color: #00D97E; }
