/* dis-brand-agent: repo=PLUS ONE product=GOLD NETWORK tag=DIS-PLUSONE-M3-SITE-CSS name="DIS BRAND Governed Agent" action=edit at=2026-08-08T22:30:00.000Z */
/* GNET marketing site — premium institutional gold token */

:root {
  --bg: #faf8f4;
  --bg-dark: #0c0e12;
  --surface: #ffffff;
  --surface-alt: #f3f1ec;
  --card: #ffffff;
  --ink: #12141a;
  --ink-secondary: #4a4f5c;
  --muted: #6e7380;
  --gold: #c9a227;
  --gold-light: #e8c56a;
  --gold-deep: #9a7720;
  --gold-bg: #faf6ee;
  --gold-glow: rgba(201, 162, 39, 0.18);
  --line: #e8e6e0;
  --line-dark: #d4d0c8;
  --green: #1a7a4a;
  --red: #c0392b;
  --font: "Avenir Next", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --mono: "SF Mono", "Fira Code", "Consolas", monospace;
  --max: 1140px;
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 4rem;
  --shadow-sm: 0 2px 8px rgba(18, 20, 26, 0.04);
  --shadow-md: 0 8px 32px rgba(18, 20, 26, 0.08);
  --shadow-lg: 0 24px 64px rgba(18, 20, 26, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::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.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Skip link */
.m3s-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  border-radius: 0 0 var(--radius) 0;
}
.m3s-skip:focus { left: 0; }

/* Scroll reveal */
.m3s-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.m3s-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.m3s-reveal[data-reveal-delay="1"] { transition-delay: 0.12s; }

/* Live ticker */
.m3s-ticker {
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.m3s-ticker-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.m3s-ticker-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(26, 122, 74, 0.6);
  animation: m3s-pulse 2s ease infinite;
}
@keyframes m3s-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.m3s-ticker-label {
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.65rem;
  font-weight: 600;
}
.m3s-ticker-inner strong {
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--gold-light);
  transition: color 0.3s;
}
.m3s-ticker-inner strong.flash { color: #fff; }
.m3s-ticker-unit { color: rgba(255, 255, 255, 0.45); font-size: 0.78rem; }
.m3s-ticker-change {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}
.m3s-ticker-change.up { color: #3ecf8e; background: rgba(62, 207, 142, 0.12); }
.m3s-ticker-change.down { color: #ff6b6b; background: rgba(255, 107, 107, 0.12); }
.m3s-ticker-attest {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 999px;
}
.m3s-ticker-cta {
  margin-left: auto;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.82rem;
  transition: opacity 0.15s;
}
.m3s-ticker-cta:hover { opacity: 0.8; text-decoration: underline; }

/* Navigation */
.m3s-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.m3s-nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.m3s-nav--dark {
  background: rgba(12, 14, 18, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.m3s-nav--dark .m3s-logo { color: #fff; }
.m3s-nav--dark .m3s-nav-links a:not(.m3s-btn) { color: rgba(255, 255, 255, 0.72); }
.m3s-nav--dark .m3s-nav-links a:not(.m3s-btn):hover,
.m3s-nav--dark .m3s-nav-links a:not(.m3s-btn).active { color: var(--gold-light); }
.m3s-nav--dark .m3s-nav-toggle { color: #fff; }
.m3s-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.m3s-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  flex-shrink: 0;
}
.m3s-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-deep));
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 12px var(--gold-glow);
}
.m3s-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.m3s-nav-links a:not(.m3s-btn) {
  color: var(--ink-secondary);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.15s;
  white-space: nowrap;
}
.m3s-nav-links a:not(.m3s-btn):hover,
.m3s-nav-links a:not(.m3s-btn).active { color: var(--gold-deep); }
.m3s-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--ink);
  padding: 0.25rem;
}

/* Buttons */
.m3s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s, border-color 0.2s;
  white-space: nowrap;
}
.m3s-btn:active { transform: scale(0.98); }
.m3s-btn-gold {
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.m3s-btn-gold:hover {
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.35);
  filter: brightness(1.05);
}
.m3s-btn-primary {
  background: var(--ink);
  color: #fff;
}
.m3s-btn-primary:hover { background: #2a2d35; }
.m3s-btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line-dark);
}
.m3s-btn-outline:hover { border-color: var(--ink); }
.m3s-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.m3s-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}
.m3s-btn-lg { padding: 0.9rem 1.85rem; font-size: 0.95rem; }

/* Hero */
.m3s-hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.m3s-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201, 162, 39, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 60%, rgba(78, 205, 196, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 5% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    var(--bg-dark);
  pointer-events: none;
}
.m3s-hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}
.m3s-kicker {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.m3s-hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.m3s-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.m3s-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.m3s-chains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.m3s-chain {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.m3s-chain-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.m3s-chain-dot.eth { background: #627eea; }
.m3s-chain-dot.xlm { background: #7b61ff; }
.m3s-chain-dot.xdc { background: #1e88e5; }
.m3s-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.m3s-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75rem 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.m3s-stat strong {
  display: block;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: #fff;
}
.m3s-stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 500;
}

/* Wallet section */
.product-wallet-inline {
  scroll-margin-top: var(--nav-h);
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  z-index: 210;
  isolation: isolate;
  overflow: hidden;
}
.product-wallet-inline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 80% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.m3s-wallet-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.m3s-wallet-copy { max-width: 28rem; }
.m3s-wallet-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.85rem;
  color: #fff;
}
.m3s-wallet-lead {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.m3s-wallet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.m3s-wallet-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}
.m3s-wallet-features li span {
  color: var(--gold-light);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.m3s-wallet-device {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.product-wallet-inline .app-stage {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent;
  width: 100%;
  display: block !important;
}
.product-wallet-inline .app-device {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  max-width: min(100%, 400px) !important;
  width: 100% !important;
  max-height: 580px !important;
  padding: 0 !important;
  gap: 0 !important;
  grid-template-columns: unset !important;
  grid-template-rows: unset !important;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(201, 162, 39, 0.08);
}
.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;
  order: 2;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}
.product-wallet-inline .app-device .m3-shell {
  grid-column: unset !important;
  grid-row: unset !important;
  order: 1;
  min-height: 0 !important;
  max-height: 520px !important;
  width: 100% !important;
  padding-bottom: 0 !important;
}
.product-wallet-inline .m3-main {
  min-height: 380px;
  max-height: 460px;
  overflow: hidden;
}

/* Sections */
.m3s-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}
.m3s-section--alt {
  background: var(--surface-alt);
  max-width: none;
}
.m3s-section--alt > *:not(.m3s-section-label) {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.m3s-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  text-align: center;
}
.m3s-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.m3s-section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.15;
}
.m3s-section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Features */
.m3s-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.m3s-feature {
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s;
}
.m3s-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.25);
}
.m3s-feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: var(--gold-bg);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}
.m3s-feature h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.m3s-feature p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Regulated band */
.m3s-regulated-band {
  background: linear-gradient(135deg, var(--gold-bg) 0%, #fff 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.m3s-regulated-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 0.85rem;
}
.m3s-regulated-band h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.m3s-regulated-band p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Compare table */
.m3s-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.m3s-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.m3s-compare-table th,
.m3s-compare-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.m3s-compare-table thead th {
  background: var(--surface-alt);
  font-weight: 600;
  font-size: 0.82rem;
}
.m3s-compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink-secondary);
  background: var(--bg);
  position: sticky;
  left: 0;
  z-index: 1;
}
.m3s-compare-table tbody tr:last-child td { border-bottom: none; }
.m3s-compare-table tbody tr:hover td { background: rgba(201, 162, 39, 0.03); }
.m3s-compare-table tbody tr:hover td:first-child { background: var(--bg); }
.m3s-compare-highlight {
  background: var(--gold-bg) !important;
  font-weight: 500;
}
.m3s-compare-table thead .m3s-compare-highlight {
  background: linear-gradient(145deg, var(--gold), var(--gold-deep)) !important;
  color: #fff;
}
.m3s-compare-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 1.25rem;
  line-height: 1.6;
}

/* Verify */
.m3s-verify-disclaimer {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.m3s-verify-form-wrap {
  max-width: 36rem;
  margin: 0 auto;
}
.m3s-verify-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.m3s-verify-tab {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.15s;
}
.m3s-verify-tab:hover { border-color: var(--line-dark); color: var(--ink); }
.m3s-verify-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.m3s-verify-form {
  display: flex;
  gap: 0.75rem;
}
.m3s-verify-input {
  flex: 1;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.m3s-verify-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.m3s-verify-input::placeholder { color: #aaa; }
.m3s-verify-result {
  margin-top: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  animation: m3s-fade-in 0.4s var(--ease);
}
@keyframes m3s-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.m3s-verify-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.m3s-verify-result-header strong { font-size: 1rem; font-weight: 600; }
.m3s-verify-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
  background: rgba(26, 122, 74, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}
.m3s-verify-details { display: grid; gap: 0.75rem; }
.m3s-verify-details div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.m3s-verify-details div:last-child { border-bottom: none; padding-bottom: 0; }
.m3s-verify-details dt { color: var(--muted); font-weight: 400; }
.m3s-verify-details dd {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--ink);
  text-align: right;
  word-break: break-all;
  max-width: 60%;
}

/* Venue grid */
.m3s-venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.75rem;
}
.m3s-venue {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.m3s-venue:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.m3s-venue--featured {
  border-color: rgba(201, 162, 39, 0.4);
  background: var(--gold-bg);
}
.m3s-venue span {
  font-size: 0.76rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Resources */
.m3s-resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.m3s-resource {
  padding: 1.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: box-shadow 0.2s;
}
.m3s-resource:hover { box-shadow: var(--shadow-sm); }
.m3s-resource h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.m3s-resource p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.m3s-blockchain-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}
.m3s-blockchain-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-deep);
}
.m3s-blockchain-links a:hover { text-decoration: underline; }

/* CTA band */
.m3s-cta-band {
  background: var(--bg-dark);
  color: #fff;
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.m3s-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.m3s-cta-band h2 {
  position: relative;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.m3s-cta-band p {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.m3s-cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.m3s-cta-band .m3s-btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.m3s-cta-band .m3s-btn-outline:hover { border-color: #fff; }

/* Contact */
.m3s-section--contact { padding-bottom: 3rem; }
.m3s-contact-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.75rem;
}
.m3s-contact-note a {
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: underline;
}
.m3s-contact-form {
  max-width: 28rem;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.m3s-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.m3s-form-row label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-secondary);
}
.m3s-form-row input,
.m3s-form-row textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--card);
  resize: vertical;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.m3s-form-row input:focus,
.m3s-form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Footer */
.m3s-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4.5rem 1.5rem 2rem;
}
.m3s-footer-grid {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
}
.m3s-footer-brand .m3s-logo { color: #fff; margin-bottom: 0.85rem; }
.m3s-footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  max-width: 16rem;
}
.m3s-footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
  font-weight: 600;
}
.m3s-footer-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.45rem;
  transition: color 0.15s;
}
.m3s-footer-col a:hover { color: var(--gold-light); }
.m3s-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.76rem;
  color: rgba(255, 255, 255, 0.4);
}
.m3s-footer-disclaimer {
  max-width: var(--max);
  margin: 1.5rem auto 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

/* Attestation, offering, biz */
.m3s-attestation-viewer { margin-top: 1rem; overflow-x: auto; }
.m3s-attestation-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.m3s-attestation-table th, .m3s-attestation-table td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--line); text-align: left; }
.m3s-attestation-pick { display: block; margin: 0.75rem 0; font-size: 0.85rem; }
.m3s-attestation-pick select { margin-left: 0.5rem; padding: 0.4rem 0.6rem; border-radius: 8px; border: 1px solid var(--line); font: inherit; }
.m3s-resource-toggle { border: none; background: none; color: var(--gold-deep); font-weight: 600; cursor: pointer; padding: 0; font-size: 0.9rem; }
.m3s-resource-toggle:hover { text-decoration: underline; }
.m3s-resource-panel { margin-top: 0.75rem; font-size: 0.9rem; color: var(--ink-secondary); line-height: 1.65; }
.m3s-onesheet-list { padding-left: 1.1rem; }
.m3s-verify-error { color: var(--red); font-size: 0.85rem; margin-top: 0.5rem; }
.m3s-contact-success {
  margin-top: 1.5rem;
  padding: 1.35rem;
  background: rgba(26, 122, 74, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 122, 74, 0.2);
  text-align: center;
}
.m3s-contact-success h3 { color: var(--green); margin-bottom: 0.35rem; }

.m3s-offering-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin: 1.5rem 0; }
.m3s-offering-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.35rem; background: var(--card); transition: box-shadow 0.2s; position: relative; }
.m3s-offering-card--featured { border-color: rgba(201, 162, 39, 0.35); background: var(--gold-bg); }
.m3s-offering-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.m3s-offering-card h3 { margin: 0 0 0.35rem; }
.m3s-offering-card .min { color: var(--ink-secondary); font-size: 0.85rem; margin-bottom: 0.75rem; }
.m3s-offering-card ul { margin: 0; padding-left: 1.1rem; font-size: 0.9rem; color: var(--muted); }
.m3s-offering-fees-wrap { margin: 2rem 0; }
.m3s-fees-title, .m3s-compare-title, .m3s-flywheel-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ink);
}
.m3s-offering-fees table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.m3s-offering-fees td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.m3s-offering-fees td:last-child { text-align: right; font-weight: 600; }
.m3s-gnet-compare { margin-bottom: 2rem; overflow-x: auto; }
.m3s-revenue-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.m3s-revenue-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: box-shadow 0.2s;
}
.m3s-revenue-card:hover { box-shadow: var(--shadow-sm); }
.m3s-revenue-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.65rem; gap: 0.5rem; }
.m3s-revenue-phase {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(26, 122, 74, 0.1);
  color: var(--green);
}
.m3s-revenue-card[data-phase="next"] .m3s-revenue-phase { background: #e8f0fe; color: #1a56db; }
.m3s-revenue-card[data-phase="later"] .m3s-revenue-phase { background: #f3e8ff; color: #7c3aed; }
.m3s-revenue-rate { font-size: 0.9rem; color: var(--gold-deep); }
.m3s-revenue-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.m3s-revenue-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; margin: 0; }
.m3s-flywheel { margin-bottom: 2.5rem; overflow-x: auto; }
.m3s-flywheel-track {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  min-width: min-content;
  padding-bottom: 0.5rem;
}
.m3s-flywheel-step {
  flex: 0 0 9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
}
.m3s-flywheel-num {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold-bg);
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.m3s-flywheel-step strong { display: block; font-size: 0.88rem; margin-bottom: 0.25rem; }
.m3s-flywheel-step p { font-size: 0.72rem; color: var(--muted); margin: 0; line-height: 1.4; }
.m3s-flywheel-arrow { align-self: center; color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.m3s-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.m3s-phase-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.m3s-phase-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}
.m3s-phase-card h3 { font-size: 1.05rem; margin: 0.35rem 0 0.75rem; }
.m3s-phase-card ul { margin: 0; padding-left: 1rem; font-size: 0.85rem; color: var(--muted); }
.m3s-phase-card li { margin-bottom: 0.3rem; }
.m3s-biz-card--wide { grid-column: 1 / -1; }
.m3s-biz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.m3s-biz-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem; }
.m3s-biz-card h4 { margin: 0 0 0.5rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-secondary); }
.m3s-biz-operators { margin-top: 1.25rem; font-weight: 600; }
.m3s-biz-operators a { color: var(--gold-deep); }
.m3s-biz-operators a:hover { text-decoration: underline; }

/* P0 trust — reserve proof */
.m3s-reserve-updated { font-size: 0.85rem; color: var(--muted); margin-top: -0.5rem; }
.m3s-reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.m3s-reserve-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-align: center;
}
.m3s-reserve-card--highlight {
  border-color: rgba(201, 162, 39, 0.35);
  background: var(--gold-bg);
}
.m3s-reserve-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-secondary);
  margin-bottom: 0.5rem;
}
.m3s-reserve-card strong { font-size: 1.35rem; color: var(--ink); }
.m3s-reserve-chains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.m3s-reserve-chain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  font-size: 0.9rem;
}
.m3s-reserve-chain strong { color: var(--gold-deep); }
.m3s-reserve-vaults { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }
.m3s-attestation-actions { margin: 0.75rem 0 1rem; }
.m3s-btn-sm { padding: 0.45rem 0.9rem; font-size: 0.82rem; }
.m3s-contact-error { color: #c0392b; font-size: 0.88rem; margin-bottom: 0.75rem; }

/* Responsive */
@media (max-width: 960px) {
  .m3s-wallet-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 4rem;
  }
  .m3s-wallet-copy { max-width: none; text-align: center; }
  .m3s-wallet-features { align-items: center; }
  .m3s-stats { grid-template-columns: repeat(2, 1fr); }
  .m3s-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .m3s-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .m3s-nav-links { display: none; }
  .m3s-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1.25rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    gap: 0.85rem;
    align-items: stretch;
    box-shadow: var(--shadow-md);
  }
  .m3s-nav--dark .m3s-nav-links.open { background: var(--bg-dark); }
  .m3s-nav { position: sticky; }
  .m3s-nav-toggle { display: block; }
  .m3s-hero-inner { padding: 3rem 1.5rem 2.5rem; }
  .m3s-section { padding: 3.5rem 1.5rem; }
  .m3s-verify-form { flex-direction: column; }
  .m3s-compare-table { font-size: 0.78rem; }
  .m3s-compare-table th,
  .m3s-compare-table td { padding: 0.7rem 0.65rem; }
  .m3s-resources { grid-template-columns: 1fr; }
  .m3s-footer-grid { grid-template-columns: 1fr; }
  .m3s-regulated-band { padding: 2rem 1.5rem; }
  .m3s-chains { gap: 0.45rem; }
  .m3s-reserve-grid,
  .m3s-reserve-chains { grid-template-columns: 1fr; }
  .m3s-ticker-attest { display: none; }
  .m3s-phases { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .m3s-reveal { opacity: 1; transform: none; transition: none; }
  .m3s-ticker-pulse { animation: none; }
  html { scroll-behavior: auto; }
}
