/* Aurum marketing website — full competitor-grade · M2 */

:root {
  --bg: #f7f4ee;
  --ink: #12141a;
  --muted: #5c6370;
  --gold: #c49a3c;
  --gold-light: #e8c56a;
  --gold-deep: #8a671f;
  --cream: #faf3e3;
  --white: #ffffff;
  --line: #e8e2d6;
  --green: #1a7f4e;
  --hero-bg: linear-gradient(165deg, #0f1118 0%, #1e1a14 45%, #3d2e14 100%);
  --font: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  --display: "Iowan Old Style", Palatino, Georgia, serif;
  --max: 1140px;
  --radius: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Nav ── */
.m2s-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.m2s-nav.scrolled { border-bottom-color: var(--line); }
.m2s-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.m2s-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}
.m2s-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f0d78a, var(--gold) 55%, var(--gold-deep));
  box-shadow: 0 2px 8px rgba(196, 154, 60, 0.35);
}
.m2s-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.m2s-nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.15s;
}
.m2s-nav-links a:hover { color: var(--ink); }
.m2s-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
  padding: 0.25rem;
}

.m2s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.m2s-btn:active { transform: scale(0.98); }
.m2s-btn-dark { background: var(--ink); color: #fff; }
.m2s-btn-dark:hover { box-shadow: 0 8px 24px rgba(18, 20, 26, 0.25); }
.m2s-btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fff;
}
.m2s-btn-gold:hover { box-shadow: 0 8px 28px rgba(196, 154, 60, 0.4); }
.m2s-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.m2s-btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }

/* ── Hero ── */
.m2s-hero-wrap {
  background: var(--hero-bg);
  color: #f7f2e8;
  overflow: hidden;
  position: relative;
}
.m2s-hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196, 154, 60, 0.18), transparent);
  pointer-events: none;
}
.m2s-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.m2s-kicker {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1rem;
}
.m2s-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.m2s-hero-lead {
  font-size: 1.12rem;
  color: rgba(247, 242, 232, 0.78);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.m2s-hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2rem; }
.m2s-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 232, 0.55);
}
.m2s-hero-badges span { display: flex; align-items: center; gap: 0.35rem; }
.m2s-hero-badges svg { width: 1rem; height: 1rem; fill: var(--gold-light); }

/* Marketing visual — NOT the app */
.m2s-visual {
  position: relative;
  justify-self: center;
  width: min(380px, 100%);
}
.m2s-visual-card {
  background: linear-gradient(160deg, #faf3e3 0%, #f0e4c8 100%);
  border-radius: 28px;
  padding: 1.75rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--ink);
  transform: rotate(-2deg);
}
.m2s-visual-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.m2s-visual-card-header span { font-size: 0.75rem; color: var(--muted); font-weight: 600; }
.m2s-visual-balance {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.m2s-visual-grams {
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.m2s-visual-chart {
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(196, 154, 60, 0.12));
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.m2s-visual-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 60' preserveAspectRatio='none'%3E%3Cpath d='M0 50 L40 42 L80 45 L120 30 L160 35 L200 18 L240 22 L300 8' fill='none' stroke='%23c49a3c' stroke-width='2.5'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
.m2s-visual-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.m2s-visual-action {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
}
.m2s-visual-action i {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.35rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.m2s-visual-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  color: var(--ink);
}
.m2s-visual-float strong { display: block; font-size: 0.95rem; color: var(--green); }
.m2s-visual-float--sip {
  top: -12px;
  right: -20px;
  transform: rotate(3deg);
}
.m2s-visual-float--spot {
  bottom: 40px;
  left: -28px;
  transform: rotate(-4deg);
}

/* ── Trust strip ── */
.m2s-trust {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.m2s-trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.m2s-trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.m2s-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

/* ── Sections ── */
.m2s-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.m2s-section--alt { background: var(--white); }
.m2s-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.m2s-section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.m2s-section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Stats row */
.m2s-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.m2s-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.m2s-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}
.m2s-stat span { font-size: 0.82rem; color: var(--muted); }

/* Feature grid */
.m2s-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.m2s-feature {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.m2s-section--alt .m2s-feature { background: var(--bg); }
.m2s-feature:hover {
  box-shadow: 0 12px 32px rgba(18, 20, 26, 0.08);
  transform: translateY(-2px);
}
.m2s-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 14px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.m2s-feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.m2s-feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

/* How it works */
.m2s-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: m2step;
}
.m2s-step {
  counter-increment: m2step;
  position: relative;
  padding-top: 3rem;
}
.m2s-step::before {
  content: counter(m2step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 800;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}
.m2s-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.m2s-step p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Split feature rows */
.m2s-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.m2s-split:last-child { margin-bottom: 0; }
.m2s-split--reverse .m2s-split-visual { order: 2; }
.m2s-split--reverse .m2s-split-copy { order: 1; }
.m2s-split-copy h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.m2s-split-copy p { color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.m2s-split-copy ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.m2s-split-copy li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.m2s-split-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.m2s-split-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m2s-split-panel--dark {
  background: var(--hero-bg);
  color: #f7f2e8;
  border: none;
}
.m2s-sip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.m2s-sip-row:last-child { border: none; }
.m2s-sip-row strong { color: var(--gold-deep); }

/* Pricing */
.m2s-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.m2s-price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg);
}
.m2s-price-card--featured {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(196, 154, 60, 0.15);
  position: relative;
}
.m2s-price-card--featured::before {
  content: "Most popular";
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.m2s-price-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.m2s-muted { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.25rem; }
.m2s-price-card .m2s-price {
  font-family: var(--display);
  font-size: 2rem;
  margin: 1rem 0;
  color: var(--gold-deep);
}
.m2s-price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.m2s-price-card li::before { content: "· "; color: var(--gold); font-weight: 700; }

/* Comparison table */
.m2s-table-wrap { overflow-x: auto; }
.m2s-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.m2s-table th, .m2s-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.m2s-table th { font-weight: 600; background: var(--cream); }
.m2s-table td:first-child { font-weight: 500; }
.m2s-table .m2s-yes { color: var(--green); font-weight: 700; }
.m2s-table .m2s-no { color: #c44; }

/* Testimonials */
.m2s-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.m2s-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.m2s-quote p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
  color: var(--ink);
}
.m2s-quote footer {
  font-size: 0.82rem;
  color: var(--muted);
}
.m2s-quote footer strong { display: block; color: var(--ink); font-style: normal; }

/* FAQ */
.m2s-faq { max-width: 720px; margin: 0 auto; }
.m2s-faq-item {
  border-bottom: 1px solid var(--line);
}
.m2s-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 2rem 1.25rem 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--ink);
}
.m2s-faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.2s;
}
.m2s-faq-item.open .m2s-faq-q::after { transform: translateY(-50%) rotate(45deg); }
.m2s-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.m2s-faq-a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.m2s-faq-item.open .m2s-faq-a { max-height: 200px; }

/* CTA band */
.m2s-cta-band {
  background: var(--hero-bg);
  color: #f7f2e8;
  margin: 0 1.5rem 0;
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: calc(var(--max) - 3rem);
  margin-left: auto;
  margin-right: auto;
}
.m2s-cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.m2s-cta-band p {
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.m2s-cta-band .m2s-hero-cta { justify-content: center; margin-bottom: 0; }

/* Footer */
.m2s-footer {
  background: var(--ink);
  color: rgba(247, 242, 232, 0.65);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}
.m2s-footer-grid {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}
.m2s-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 0.75rem;
  max-width: 20rem;
}
.m2s-footer-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.m2s-footer-col a {
  display: block;
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  color: rgba(247, 242, 232, 0.55);
  transition: color 0.15s;
}
.m2s-footer-col a:hover { color: #fff; }
.m2s-footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

/* ── Responsive ── */
/* Competitor landscape */
.m2s-comp-landscape {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.m2s-comp-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}
.m2s-comp-chip--bench {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: var(--cream);
}
.m2s-comp-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.m2s-callout {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.m2s-callout strong { display: block; margin-bottom: 0.35rem; }
.m2s-callout p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.m2s-callout a { color: var(--gold-deep); font-weight: 600; }

/* ── Live price bar ── */
.m2s-price-bar {
  background: var(--ink);
  color: #f7f2e8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.m2s-price-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}
.m2s-price-bar-spot {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.m2s-price-bar-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(247, 242, 232, 0.5);
  font-weight: 600;
}
.m2s-price-bar-spot strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold-light);
}
.m2s-price-bar-change {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}
.m2s-price-bar-change.m2s-down { color: #e85d5d; }
.m2s-price-bar-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: rgba(247, 242, 232, 0.45);
}
.m2s-price-bar-cta {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  transition: opacity 0.15s;
}
.m2s-price-bar-cta:hover { opacity: 0.8; }

/* ── Five pillars ── */
.m2s-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.m2s-pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.m2s-pillar:hover {
  box-shadow: 0 12px 32px rgba(18, 20, 26, 0.08);
  transform: translateY(-2px);
}
.m2s-pillar-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
}
.m2s-pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.m2s-pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}
.m2s-pillar-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
}
.m2s-pillar-link:hover { text-decoration: underline; }

/* ── Portfolio preview ── */
.m2s-portfolio-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 48px rgba(18, 20, 26, 0.1);
}
.m2s-portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.m2s-portfolio-badge {
  background: var(--cream);
  color: var(--gold-deep);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.m2s-portfolio-balance {
  margin-bottom: 1rem;
}
.m2s-portfolio-label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.m2s-portfolio-balance strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.02em;
}
.m2s-portfolio-grams {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
}
.m2s-portfolio-chart {
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(196, 154, 60, 0.1));
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
}
.m2s-portfolio-chart-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 50' preserveAspectRatio='none'%3E%3Cpath d='M0 42 L30 38 L60 40 L90 28 L120 32 L150 20 L180 24 L210 14 L240 18 L270 10 L300 6' fill='none' stroke='%23c49a3c' stroke-width='2'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
.m2s-portfolio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.m2s-portfolio-stats div {
  text-align: center;
}
.m2s-portfolio-stats span {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.m2s-portfolio-stats strong {
  font-size: 0.88rem;
}
.m2s-up { color: var(--green); }
.m2s-portfolio-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.m2s-portfolio-btn {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.5rem 0.25rem;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--muted);
}
.m2s-portfolio-btn--primary {
  background: var(--ink);
  color: var(--gold-light);
  border-color: var(--ink);
}
.m2s-portfolio-activity { display: flex; flex-direction: column; gap: 0.35rem; }
.m2s-portfolio-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}
.m2s-portfolio-row:last-child { border: none; }
.m2s-portfolio-row span:first-child { color: var(--ink); font-weight: 500; }
.m2s-portfolio-row span:nth-child(2) { color: var(--green); font-weight: 600; }
.m2s-portfolio-row span:last-child { color: var(--muted); font-size: 0.72rem; }

/* ── AutoInvest preview ── */
.m2s-autoinvest-preview {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.75rem;
}
.m2s-autoinvest-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.m2s-autoinvest-status {
  font-size: 0.72rem;
  background: rgba(26, 127, 78, 0.12);
  color: var(--green);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.m2s-autoinvest-amount {
  margin-bottom: 1.25rem;
}
.m2s-autoinvest-amount span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.m2s-autoinvest-amount strong {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--gold-deep);
}
.m2s-autoinvest-schedule {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.m2s-autoinvest-day {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 0;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
}
.m2s-autoinvest-day--done {
  background: rgba(26, 127, 78, 0.1);
  border-color: rgba(26, 127, 78, 0.25);
  color: var(--green);
}
.m2s-autoinvest-day--today {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--gold-light);
}
.m2s-autoinvest-progress { margin-bottom: 1.25rem; }
.m2s-autoinvest-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.m2s-autoinvest-progress-bar {
  height: 8px;
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.m2s-autoinvest-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 999px;
}
.m2s-autoinvest-rows { display: flex; flex-direction: column; }
.m2s-autoinvest-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}
.m2s-autoinvest-row:last-child { border: none; }
.m2s-autoinvest-row strong { color: var(--gold-deep); }

/* ── Physical products grid ── */
.m2s-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.m2s-product {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.m2s-product:hover {
  box-shadow: 0 12px 32px rgba(18, 20, 26, 0.08);
  transform: translateY(-2px);
}
.m2s-product-img {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f5e6b8, var(--gold) 50%, var(--gold-deep));
  box-shadow: 0 8px 24px rgba(196, 154, 60, 0.3);
}
.m2s-product-img--coin { width: 4.5rem; height: 4.5rem; }
.m2s-product-img--coin-lg { width: 5.5rem; height: 5.5rem; }
.m2s-product-img--bar {
  border-radius: 8px;
  width: 4rem;
  height: 2.5rem;
}
.m2s-product-img--bar-lg {
  border-radius: 8px;
  width: 5rem;
  height: 3rem;
}
.m2s-product h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.m2s-product p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.m2s-product-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.m2s-products-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* ── Vault security grid ── */
.m2s-vault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.m2s-vault-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.m2s-vault-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
}
.m2s-vault-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.m2s-vault-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 960px) {
  .m2s-hero { grid-template-columns: 1fr; text-align: center; padding-top: 2.5rem; }
  .m2s-hero-lead { margin-left: auto; margin-right: auto; }
  .m2s-hero-cta, .m2s-hero-badges { justify-content: center; }
  .m2s-visual { margin-top: 1rem; }
  .m2s-visual-float--sip { right: 0; }
  .m2s-visual-float--spot { left: 0; }
  .m2s-stats, .m2s-features, .m2s-steps, .m2s-pricing, .m2s-testimonials,
  .m2s-pillars, .m2s-products, .m2s-vault-grid { grid-template-columns: 1fr; }
  .m2s-split { grid-template-columns: 1fr; gap: 2rem; }
  .m2s-split--reverse .m2s-split-visual,
  .m2s-split--reverse .m2s-split-copy { order: unset; }
  .m2s-footer-grid { grid-template-columns: 1fr 1fr; }
  .m2s-price-bar-meta { display: none; }
  .m2s-nav-links { display: none; }
  .m2s-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 1rem;
  }
  .m2s-nav { position: relative; }
  .m2s-nav-toggle { display: block; }
}

/* ══════════════════════════════════════════════════════════
   OneGold-style layout · v5 · white/clean aesthetic
   ══════════════════════════════════════════════════════════ */

.m2s-og {
  --navy: #0c1a2e;
  --hero-bg-light: #ffffff;
  background: var(--white);
}

/* White hero override */
.m2s-hero-wrap--light {
  background: var(--hero-bg-light);
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.m2s-hero-wrap--light::before { display: none; }
.m2s-hero-wrap--light .m2s-kicker { color: var(--gold-deep); }
.m2s-hero-wrap--light .m2s-hero h1 { color: var(--navy); }
.m2s-hero-wrap--light .m2s-hero-lead { color: var(--muted); }
.m2s-hero-wrap--light .m2s-btn-ghost {
  color: var(--navy);
  border-color: #d0d5dd;
}
.m2s-hero-wrap--light .m2s-visual-card {
  transform: rotate(-1deg);
  box-shadow: 0 24px 64px rgba(12, 26, 46, 0.12), 0 0 0 1px var(--line);
}
.m2s-visual-live {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 700;
}
.m2s-visual-balance {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.m2s-visual-grams {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.m2s-visual-chart {
  width: 100%;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.m2s-visual-actions {
  display: flex;
  gap: 0.5rem;
}
.m2s-visual-actions span {
  flex: 1;
  text-align: center;
  padding: 0.55rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--navy);
}
.m2s-visual-actions span:first-child {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fff;
}
.m2s-og .m2s-nav-links a.active:not(.m2s-btn) {
  color: #fff;
  font-weight: 600;
}
.m2s-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.m2s-reveal.m2s-visible {
  opacity: 1;
  transform: none;
}
.m2s-section--dark {
  background: var(--navy);
  color: #f0ebe3;
}
.m2s-section-head--light h2 { color: #fff; }
.m2s-section-head--light .m2s-section-lead { color: rgba(240, 235, 227, 0.72); }
.m2s-section-head--light .m2s-kicker { color: var(--gold-light); }

/* Nav — OneGold navy bar */
.m2s-og .m2s-nav {
  background: var(--navy);
  border-bottom: none;
}
.m2s-og .m2s-nav .m2s-logo { color: #fff; }
.m2s-og .m2s-nav-links a:not(.m2s-btn) { color: rgba(255, 255, 255, 0.78); }
.m2s-og .m2s-nav-links a:not(.m2s-btn):hover { color: #fff; }
.m2s-og .m2s-nav-toggle { color: #fff; }
.m2s-og .m2s-nav.scrolled { border-bottom: none; }

/* Price bar — navy strip */
.m2s-og .m2s-price-bar {
  background: var(--navy);
  border-bottom: none;
}

/* Four feature cards */
.m2s-og-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.m2s-og-feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.m2s-og-feature:hover {
  box-shadow: 0 8px 32px rgba(12, 26, 46, 0.08);
  border-color: rgba(196, 154, 60, 0.35);
}
.m2s-og-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--cream);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  color: var(--gold-deep);
}
.m2s-og-feature-icon svg { width: 1.5rem; height: 1.5rem; }
.m2s-og-feature h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.m2s-og-feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.m2s-og-feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
}
.m2s-og-feature-link:hover { text-decoration: underline; }

/* App section */
.m2s-og-app {
  background: var(--navy);
  color: #f7f2e8;
  padding: 5rem 1.5rem;
}
.m2s-og-app-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.m2s-og-app-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.m2s-og-app-copy p {
  font-size: 1.05rem;
  color: rgba(247, 242, 232, 0.75);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 26rem;
}
.m2s-og-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.m2s-og-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  transition: background 0.15s, transform 0.15s;
}
.m2s-og-store-badge:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}
.m2s-og-store-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.m2s-og-store-icon--play {
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
}
.m2s-og-store-text { display: flex; flex-direction: column; }
.m2s-og-store-text small {
  font-size: 0.62rem;
  opacity: 0.8;
  line-height: 1.2;
}
.m2s-og-store-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Phone mockup */
.m2s-og-phone {
  width: min(260px, 100%);
  margin: 0 auto;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35);
}
.m2s-og-phone-screen {
  background: var(--white);
  border-radius: 28px;
  padding: 1.5rem 1.25rem;
  color: var(--navy);
  min-height: 320px;
}
.m2s-og-phone-header {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
}
.m2s-og-phone-balance {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.m2s-og-phone-grams {
  font-size: 0.85rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.m2s-og-phone-chart {
  height: 72px;
  background: linear-gradient(180deg, transparent, rgba(196, 154, 60, 0.1));
  border-radius: 10px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
}
.m2s-og-phone-chart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 50' preserveAspectRatio='none'%3E%3Cpath d='M0 42 L40 35 L80 38 L120 25 L160 30 L200 15 L240 20 L300 8' fill='none' stroke='%23c49a3c' stroke-width='2.5'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}
.m2s-og-phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.m2s-og-phone-actions span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.55rem 0.25rem;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
}
.m2s-og-phone-actions span:first-child {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--navy);
}

/* Three value props */
.m2s-og-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.m2s-og-value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  background: var(--cream);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-deep);
}
.m2s-og-value h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  font-weight: 700;
}
.m2s-og-value p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 22rem;
  margin: 0 auto;
}

/* Vault custody */
.m2s-og-vault-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.m2s-og-vault-step {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.m2s-og-vault-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.m2s-og-vault-step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.m2s-og-vault-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.m2s-og-vault-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.m2s-og-vault-trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.m2s-og-vault-trust-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* CTA band — light variant */
.m2s-og-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.m2s-og-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.m2s-og-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.m2s-og-cta .m2s-hero-cta {
  justify-content: center;
  margin-bottom: 0;
}
.m2s-og-cta .m2s-btn-ghost {
  color: var(--navy);
  border-color: #d0d5dd;
}

/* Footer spacing */
.m2s-og .m2s-footer { margin-top: 0; }

/* Responsive — OneGold sections */
@media (max-width: 960px) {
  .m2s-og-features,
  .m2s-og-values,
  .m2s-og-vault-steps,
  .m2s-og-vault-trust,
  .m2s-pattern-grid,
  .m2s-offering-grid,
  .m2s-phases { grid-template-columns: 1fr; }
  .m2s-hero { grid-template-columns: 1fr; text-align: center; }
  .m2s-hero-lead { margin-left: auto; margin-right: auto; }
  .m2s-hero-cta, .m2s-hero-badges { justify-content: center; }
  .m2s-visual { order: -1; margin-bottom: 1rem; }
  .m2s-biz-grid { grid-template-columns: 1fr; }
  .m2s-biz-card--wide { grid-column: auto; }
  .m2s-og-app-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .m2s-og-app-copy p { margin-left: auto; margin-right: auto; }
  .m2s-og-store-badges { justify-content: center; }
  .m2s-og-app-visual { order: -1; }
}

.m2s-offering-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 1.5rem 0; }
.m2s-offering-card {
  position: relative;
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.m2s-offering-card:hover {
  box-shadow: 0 12px 40px rgba(12, 26, 46, 0.08);
  transform: translateY(-2px);
}
.m2s-offering-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(196, 154, 60, 0.15);
}
.m2s-offering-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}
.m2s-offering-card--featured .m2s-offering-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #fff;
}
.m2s-offering-card h3 { margin: 0 0 0.35rem; font-size: 1.25rem; color: var(--navy); }
.m2s-offering-card .min { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; font-weight: 600; }
.m2s-offering-card ul { margin: 0; padding-left: 0; list-style: none; font-size: 0.9rem; }
.m2s-offering-card li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0ebe3;
  color: var(--muted);
}
.m2s-offering-card li::before { content: "✓ "; color: var(--gold-deep); font-weight: 700; }
.m2s-offering-fees-wrap { margin: 2rem 0; }
.m2s-fees-title, .m2s-compare-title, .m2s-flywheel-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}
.m2s-offering-fees table { width: 100%; border-collapse: collapse; font-size: 0.9rem; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.m2s-offering-fees td { padding: 0.75rem 1rem; border-bottom: 1px solid #f0ebe3; }
.m2s-offering-fees tr:last-child td { border-bottom: none; }
.m2s-offering-fees td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.m2s-compare-wrap { margin: 2.5rem 0 1.5rem; }
.m2s-compare-table table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.m2s-compare-table th, .m2s-compare-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #f0ebe3; }
.m2s-compare-table th { background: var(--cream); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.m2s-compare-aurum { font-weight: 700; color: var(--gold-deep); }
.m2s-pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.m2s-pattern-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.m2s-pattern-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(196, 154, 60, 0.4);
}
.m2s-pattern-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(196, 154, 60, 0.15);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.m2s-pattern-icon svg { width: 1.25rem; height: 1.25rem; }
.m2s-pattern-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: #fff; }
.m2s-pattern-insight { font-size: 0.85rem; color: rgba(240, 235, 227, 0.65); line-height: 1.55; margin-bottom: 0.75rem; }
.m2s-pattern-aurum { font-size: 0.82rem; color: rgba(240, 235, 227, 0.85); line-height: 1.5; }
.m2s-pattern-aurum strong { color: var(--gold-light); }
.m2s-revenue-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.m2s-revenue-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  transition: box-shadow 0.2s;
}
.m2s-revenue-card:hover { box-shadow: 0 8px 28px rgba(12, 26, 46, 0.07); }
.m2s-revenue-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
.m2s-revenue-phase {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--gold-deep);
}
.m2s-revenue-card[data-phase="next"] .m2s-revenue-phase { background: #e8f0fe; color: #1a56db; }
.m2s-revenue-card[data-phase="later"] .m2s-revenue-phase { background: #f3e8ff; color: #7c3aed; }
.m2s-revenue-rate { font-size: 0.95rem; color: var(--navy); }
.m2s-revenue-card h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--navy); }
.m2s-revenue-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0; }
.m2s-flywheel { margin-bottom: 2.5rem; overflow-x: auto; }
.m2s-flywheel-track {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: min-content;
  padding-bottom: 0.5rem;
}
.m2s-flywheel-step {
  flex: 0 0 140px;
  text-align: center;
  padding: 1rem 0.75rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.m2s-flywheel-num {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.m2s-flywheel-step strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.25rem; }
.m2s-flywheel-step p { font-size: 0.75rem; color: var(--muted); margin: 0; line-height: 1.4; }
.m2s-flywheel-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0.25rem;
}
.m2s-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.m2s-phase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}
.m2s-phase-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold-deep);
}
.m2s-phase-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0.35rem 0 0.75rem; }
.m2s-phase-card ul { margin: 0; padding-left: 1rem; font-size: 0.85rem; color: var(--muted); }
.m2s-phase-card li { margin-bottom: 0.3rem; }
.m2s-biz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.m2s-biz-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 1.25rem 1.35rem; }
.m2s-biz-card--wide { grid-column: 1 / -1; }
.m2s-biz-card h4 { margin: 0 0 0.6rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: #888; }
.m2s-biz-card ul { margin: 0; padding-left: 1rem; font-size: 0.9rem; line-height: 1.6; }
.m2s-biz-card p { margin: 0; font-size: 0.9rem; color: #444; line-height: 1.6; }

.product-wallet-inline {
  scroll-margin-top: 5.5rem;
  position: relative;
  z-index: 210;
  isolation: isolate;
  padding: 2.5rem 1rem 3rem;
  background: linear-gradient(180deg, #f0ebe3 0%, #f7f4ee 40%, #fff 100%);
  border-top: 1px solid #e5dfd3;
  border-bottom: 1px solid #e5dfd3;
}
.m2s-inline-wallet-head { max-width: 36rem; margin: 0 auto 1.75rem; text-align: center; }
.m2s-inline-wallet-head h2 { margin: 0.35rem 0 0.5rem; font-size: clamp(1.5rem, 4vw, 2rem); }
.m2s-inline-wallet-head p { margin: 0; color: #555; line-height: 1.5; }
/* Inline embed — compact phone frame, NOT full viewport / desktop app grid */
.product-wallet-inline .app-stage {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
  background: transparent !important;
}
.product-wallet-inline .app-device {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  max-width: 420px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 0 !important;
  grid-template-columns: unset !important;
  grid-template-rows: unset !important;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.product-wallet-inline .app-device .model-glass-nav {
  position: static !important;
  transform: none !important;
  grid-column: unset !important;
  grid-row: unset !important;
  flex-direction: row !important;
  max-width: none !important;
  width: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  border-top: 1px solid #e8e2d6 !important;
  order: 2;
}
.product-wallet-inline .app-device .m2-shell,
.product-wallet-inline .app-device .m3-shell {
  grid-column: unset !important;
  grid-row: unset !important;
  order: 1;
  min-height: 0 !important;
  height: auto !important;
  max-height: 580px;
  width: 100% !important;
  padding-bottom: 0 !important;
}
.product-wallet-inline .m2-main,
.product-wallet-inline .m3-main {
  min-height: 380px;
  max-height: 480px;
  overflow: hidden;
}
.m2s-vault-link { text-align: center; margin-top: 1.5rem; font-size: 0.95rem; }
.m2s-vault-link a { color: var(--gold-deep); font-weight: 600; }
.m2s-alloc-form { display: grid; gap: 1rem; max-width: 420px; margin: 0 auto 1.5rem; }
.m2s-alloc-form label { display: grid; gap: 0.35rem; font-size: 0.85rem; color: var(--muted); }
.m2s-alloc-form input { padding: 0.65rem 0.75rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.m2s-alloc-dl { display: grid; gap: 0.75rem; max-width: 520px; margin: 0 auto; }
.m2s-alloc-dl div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); padding: 0.5rem 0; }
.m2s-alloc-dl dt { color: var(--muted); font-size: 0.85rem; }
.m2s-alloc-dl dd { font-weight: 600; }
.m2s-attestation-viewer { margin-top: 1rem; overflow-x: auto; }
.m2s-attestation-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.m2s-attestation-table th, .m2s-attestation-table td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
.m2s-attestation-pick { display: block; margin: 0.75rem 0; font-size: 0.85rem; }
.m2s-attestation-pick select { margin-left: 0.5rem; padding: 0.4rem 0.6rem; border-radius: 8px; border: 1px solid var(--line); font: inherit; }
.m2s-attestation-actions { margin: 0.75rem 0 1rem; }
.product-wallet-inline .m2-screen.active,
.product-wallet-inline .m3-screen.active {
  max-height: 440px;
  overflow-y: auto;
}
