/* MetIRL Creator landing */

.mc-page {
  --bg: #F5F3EE;
  --surface: #FFFFFF;
  --tint: #EEEDFE;
  --purple: #826DCC;
  --purple-dk: #534AB7;
  --ink: #2C2C2A;
  --ink-2: #5F5E5A;
  --ink-3: #888780;
  --line: rgba(0, 0, 0, 0.10);
  --green: #639922;
  --amber: #BA7517;
  --amber-bg: #FAEEDA;
  --amber-ink: #854F0B;
  --dark: #2C2C2A;
  --radius: 12px;
  --radius-lg: 14px;
  --maxw: 1140px;

  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.mc-page *,
.mc-page *::before,
.mc-page *::after {
  box-sizing: border-box;
}

.mc-page a {
  color: inherit;
  text-decoration: none;
}

.mc-page img {
  max-width: 100%;
  display: block;
}

.mc-page .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.mc-page .eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-dk);
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.mc-page h1,
.mc-page h2,
.mc-page h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.mc-page h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.mc-page h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.18;
}

.mc-page h3 {
  font-size: 18px;
  line-height: 1.3;
}

.mc-page .lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  line-height: 1.5;
  margin: 16px 0 0;
}

.mc-page .fine {
  font-size: 13px;
  color: var(--ink-3);
}

.mc-page .mc-btn {
  display: inline-block;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}

.mc-page .mc-btn:active {
  transform: scale(.98);
}

.mc-page .mc-btn-primary {
  background: var(--purple);
  color: #fff;
}

.mc-page .mc-btn-primary:hover {
  background: #7361c0;
}

.mc-page .mc-btn-onpurple {
  background: #fff;
  color: var(--purple-dk);
}

.mc-page .mc-btn-onpurple:hover {
  background: #f3f1fb;
}

.mc-page .mc-btn-soft {
  background: var(--tint);
  color: var(--purple-dk);
}

.mc-page .mc-btn-soft:hover {
  background: #e4e1fb;
}

.mc-page .mc-btn-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--purple-dk);
  cursor: pointer;
}

.mc-page .mc-btn-link:hover {
  text-decoration: underline;
}

.mc-page a:focus-visible,
.mc-page button:focus-visible,
.mc-page input:focus-visible,
.mc-page textarea:focus-visible {
  outline: 2px solid var(--purple-dk);
  outline-offset: 2px;
  border-radius: 6px;
}

.mc-page .nav {
  background: var(--surface);
  border-bottom: 0.5px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.mc-page .brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
}

.mc-page .brand img {
  height: 28px;
  width: auto;
}

.mc-page .brand span {
  color: var(--purple-dk);
}

.mc-page .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mc-page .nav-venue {
  font-size: 14px;
  color: var(--ink-2);
}

.mc-page .nav-venue:hover {
  color: var(--ink);
}

.mc-page .nav-login {
  font-size: 14px;
  color: var(--ink-2);
}

.mc-page .nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--purple);
  padding: 9px 16px;
  border-radius: 8px;
}

.mc-page .nav-cta:hover {
  background: #7361c0;
}

@media (max-width: 560px) {
  .mc-page .nav-venue,
  .mc-page .nav-login {
    display: none;
  }
}

.mc-page .section {
  padding: clamp(44px, 6vw, 80px) 0;
}

.mc-page .section-head {
  max-width: 600px;
  margin: 0 auto clamp(24px, 3vw, 34px);
  text-align: center;
}

.mc-page .band-white {
  background: var(--surface);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}

.mc-page .band-tint {
  background: var(--tint);
}

.mc-page .hero {
  padding: clamp(40px, 5vw, 64px) 0 clamp(32px, 4vw, 48px);
}

.mc-page .hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.mc-page .hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

.mc-page .hero-shot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-page .hero-shot img {
  width: 100%;
  max-width: 330px;
  height: auto;
  border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
  .mc-page .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 44px;
  }

  .mc-page .hero-text {
    text-align: center;
  }

  .mc-page .hero-text .hero-cta-row {
    justify-content: center;
  }
}

.mc-page .features {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.mc-page .feature {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
}

.mc-page .feature .ico {
  font-size: 23px;
  color: var(--purple-dk);
}

.mc-page .feature h3 {
  margin: 11px 0 5px;
  font-size: 16px;
}

.mc-page .feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}

.mc-page .feature-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-page .soon {
  font-size: 11px;
  font-weight: 600;
  color: var(--amber-ink);
  background: var(--amber-bg);
  padding: 2px 9px;
  border-radius: 999px;
}

.mc-page .beta {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-dk);
  background: var(--tint);
  padding: 2px 9px;
  border-radius: 999px;
}

.mc-page .dash-shot {
  max-width: 1000px;
  margin: 0 auto;
}

.mc-page .dash-shot img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 0.5px solid var(--line);
  box-shadow: 0 14px 40px rgba(44, 44, 42, 0.16);
}

.mc-page .dash-shot .shot-theme-dark {
  display: none;
}

.mc-page .comm-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .mc-page .comm-grid {
    grid-template-columns: 1fr 0.82fr;
    gap: 48px;
  }
}

.mc-page .comm-text .eyebrow {
  margin-bottom: 8px;
}

.mc-page .comm-text h2 {
  margin-bottom: 12px;
}

.mc-page .comm-text .sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}

.mc-page .comm-feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mc-page .comm-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mc-page .comm-feat i {
  font-size: 20px;
  color: var(--purple-dk);
  flex-shrink: 0;
  margin-top: 1px;
}

.mc-page .comm-feat .cf-l {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.mc-page .comm-feat .cf-s {
  font-size: 13px;
  color: var(--ink-2);
}

.mc-page .comm-shot {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 360px;
  padding: 8px 0 0;
}

.mc-page .comm-shot img {
  border-radius: 14px;
  border: 0.5px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 30px rgba(44, 44, 42, 0.13);
  background: #fff;
}

.mc-page .comm-shot .cs-back {
  width: 63%;
  max-width: 230px;
  transform: translateX(-16%) rotate(-3deg);
}

.mc-page .comm-shot .cs-front {
  width: 63%;
  max-width: 230px;
  position: absolute;
  left: 50%;
  top: 44px;
  transform: translateX(-24%) rotate(3deg);
}

@media (max-width: 859px) {
  .mc-page .comm-shot {
    min-height: 340px;
  }

  .mc-page .comm-shot .cs-back {
    width: 56%;
  }

  .mc-page .comm-shot .cs-front {
    width: 56%;
    top: 36px;
  }
}

.mc-page .vs {
  max-width: 640px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
}

.mc-page .vs-them {
  background: var(--bg);
  border-radius: 12px 12px 0 0;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: .82;
}

.mc-page .vs-them i {
  font-size: 22px;
  color: #B4B2A9;
  flex-shrink: 0;
}

.mc-page .vs-them .l {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 3px;
  letter-spacing: .03em;
}

.mc-page .vs-them p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

.mc-page .vs-badge {
  display: flex;
  justify-content: center;
  margin: -13px 0;
  position: relative;
  z-index: 2;
}

.mc-page .vs-badge span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--surface);
}

.mc-page .vs-us {
  background: var(--surface);
  border: 2px solid var(--purple);
  border-radius: 0 0 12px 12px;
  padding: 24px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.mc-page .vs-us i {
  font-size: 26px;
  color: var(--purple-dk);
  flex-shrink: 0;
}

.mc-page .vs-us .l {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-dk);
  margin-bottom: 3px;
  letter-spacing: .03em;
}

.mc-page .vs-us p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

.mc-page .steps {
  display: grid;
  gap: 14px;
  max-width: 740px;
  margin: 0 auto;
}

@media (min-width: 680px) {
  .mc-page .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mc-page .step {
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.mc-page .step .n {
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-dk);
  margin: 0 0 8px;
}

.mc-page .step h3 {
  margin: 0 0 5px;
  font-size: 16px;
}

.mc-page .step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
}

.mc-page .payoff {
  max-width: 600px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
}

.mc-page .payoff strong {
  color: var(--ink);
  font-weight: 500;
}

.mc-page .payoff i {
  color: var(--purple-dk);
  font-size: 17px;
  vertical-align: -3px;
  margin-right: 6px;
}

.mc-page .toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.mc-page .toggle-inner {
  display: inline-flex;
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.mc-page .toggle button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  transition: background .15s ease, color .15s ease;
}

.mc-page .toggle button.on {
  background: var(--purple-dk);
  color: #fff;
}

.mc-page .plan {
  max-width: 420px;
  margin: 0 auto;
  background: var(--surface);
  border: 0.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.mc-page .plan h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.mc-page .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.mc-page .price .amt {
  font-size: 32px;
  font-weight: 600;
}

.mc-page .price .per,
.mc-page .price .from {
  font-size: 14px;
  color: var(--ink-3);
}

.mc-page .plan-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-dk);
  margin: 6px 0 18px;
}

.mc-page .plan-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 8px 0 18px;
}

.mc-page .plan ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mc-page .plan li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.mc-page .plan li i {
  font-size: 16px;
  line-height: 1.4;
  color: var(--purple-dk);
}

.mc-page .plan li.is-live i {
  color: var(--green);
}

.mc-page .plan li.is-soon {
  color: var(--ink-3);
}

.mc-page .plan li.is-soon i {
  color: var(--amber);
}

.mc-page .plan li.is-beta i {
  color: var(--purple-dk);
}

.mc-page .plan .mc-btn {
  width: 100%;
  text-align: center;
}

.mc-page .plan-empty {
  text-align: center;
  color: var(--ink-2);
  font-size: 15px;
}

.mc-page .final {
  background: var(--purple);
  text-align: center;
}

.mc-page .final h2 {
  color: #fff;
}

.mc-page .final p {
  color: #EEEDFE;
  font-size: 16px;
  margin: 12px 0 24px;
}

.mc-page .contact {
  max-width: 520px;
  margin: 0 auto;
}

.mc-page .contact form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mc-page .contact label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 4px;
  display: block;
}

.mc-page .contact input,
.mc-page .contact textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 0.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
}

.mc-page .contact textarea {
  min-height: 110px;
  resize: vertical;
}

.mc-page footer {
  background: var(--dark);
  color: #D3D1C7;
}

.mc-page .foot-top {
  display: grid;
  gap: 26px;
  padding: 44px 0 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .mc-page .foot-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.mc-page .foot-brand .fb-name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin: 0 0 10px;
}

.mc-page .foot-brand .fb-name img {
  height: 30px;
  width: auto;
}

.mc-page .foot-brand .fb-name span {
  color: #AFA9EC;
}

.mc-page .foot-brand p {
  font-size: 13px;
  line-height: 1.5;
  color: #B4B2A9;
  margin: 0;
  max-width: 240px;
}

.mc-page .foot-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  margin: 0 0 13px;
}

.mc-page .foot-col a {
  display: block;
  font-size: 14px;
  color: #D3D1C7;
  margin-bottom: 9px;
}

.mc-page .foot-col a:hover {
  color: #fff;
}

.mc-page .foot-bottom {
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mc-page .foot-bottom .cr {
  font-size: 13px;
  color: var(--ink-3);
}

.mc-page .social {
  display: flex;
  gap: 10px;
}

.mc-page .social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D3D1C7;
  font-size: 18px;
}

.mc-page .social a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.mc-page .mc-banner {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 60;
  width: min(92vw, 520px);
  transform: translateX(-50%);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mc-page .mc-banner.ok {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.mc-page .mc-banner.err {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.mc-page .mc-banner.neutral {
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

@media (prefers-reduced-motion: reduce) {
  .mc-page * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

html.dark .mc-page {
  --bg: #0f1117;
  --surface: #171b25;
  --tint: #25203d;
  --ink: #f5f3ee;
  --ink-2: #cbc7d6;
  --ink-3: #a8a2b5;
  --line: rgba(255, 255, 255, .15);
  --dark: #090b10;
}

html.dark .mc-page .feature,
html.dark .mc-page .vs-them {
  background: #202532;
}

html.dark .mc-page .vs-us,
html.dark .mc-page .step,
html.dark .mc-page .plan,
html.dark .mc-page .toggle-inner {
  background: #171b25;
  border-color: rgba(255, 255, 255, .2);
}

html.dark .mc-page .nav {
  background: #171b25;
}

html.dark .mc-page .band-white {
  background: #171b25;
  border-color: rgba(255, 255, 255, .15);
}

html.dark .mc-page .band-tint {
  background: #25203d;
}

html.dark .mc-page .final {
  background: #6b57b5;
}

html.dark .mc-page .contact input,
html.dark .mc-page .contact textarea {
  background: #202532;
  color: #f5f3ee;
  border-color: rgba(255, 255, 255, .2);
}

html.dark .mc-page .foot-col a,
html.dark .mc-page .foot-brand p {
  color: #cbc7d6;
}

html.dark .mc-page .dash-shot .shot-theme-light {
  display: none;
}

html.dark .mc-page .dash-shot .shot-theme-dark {
  display: block;
}

html.dark .mc-page .plan li i {
  color: #b8a6ff;
}

/* Legacy theme hooks (no html.dark class on vivus-web) */
@media (prefers-color-scheme: dark) {
  .mc-page {
    --bg: #0f1117;
    --surface: #171b25;
    --tint: #25203d;
    --ink: #f5f3ee;
    --ink-2: #cbc7d6;
    --ink-3: #a8a2b5;
    --line: rgba(255, 255, 255, .15);
    --dark: #090b10;
  }
  .mc-page .feature,
  .mc-page .vs-them { background: #202532; }
  .mc-page .vs-us,
  .mc-page .step,
  .mc-page .plan,
  .mc-page .toggle-inner { background: #171b25; border-color: rgba(255, 255, 255, .2); }
  .mc-page .nav { background: #171b25; }
  .mc-page .band-white { background: #171b25; border-color: rgba(255, 255, 255, .15); }
  .mc-page .band-tint { background: #25203d; }
  .mc-page .final { background: #6b57b5; }
  .mc-page .contact input,
  .mc-page .contact textarea { background: #202532; color: #f5f3ee; border-color: rgba(255, 255, 255, .2); }
  .mc-page .foot-col a,
  .mc-page .foot-brand p { color: #cbc7d6; }
  .mc-page .dash-shot .shot-theme-light { display: none; }
  .mc-page .dash-shot .shot-theme-dark { display: block; }
  .mc-page .plan li i { color: #b8a6ff; }
}

html[data-theme='dark'] .mc-page {
  --bg: #0f1117;
  --surface: #171b25;
  --tint: #25203d;
  --ink: #f5f3ee;
  --ink-2: #cbc7d6;
  --ink-3: #a8a2b5;
  --line: rgba(255, 255, 255, .15);
  --dark: #090b10;
}
html[data-theme='dark'] .mc-page .feature,
html[data-theme='dark'] .mc-page .vs-them { background: #202532; }
html[data-theme='dark'] .mc-page .vs-us,
html[data-theme='dark'] .mc-page .step,
html[data-theme='dark'] .mc-page .plan,
html[data-theme='dark'] .mc-page .toggle-inner { background: #171b25; border-color: rgba(255, 255, 255, .2); }
html[data-theme='dark'] .mc-page .nav { background: #171b25; }
html[data-theme='dark'] .mc-page .band-white { background: #171b25; border-color: rgba(255, 255, 255, .15); }
html[data-theme='dark'] .mc-page .band-tint { background: #25203d; }
html[data-theme='dark'] .mc-page .final { background: #6b57b5; }
html[data-theme='dark'] .mc-page .contact input,
html[data-theme='dark'] .mc-page .contact textarea { background: #202532; color: #f5f3ee; border-color: rgba(255, 255, 255, .2); }
html[data-theme='dark'] .mc-page .foot-col a,
html[data-theme='dark'] .mc-page .foot-brand p { color: #cbc7d6; }
html[data-theme='dark'] .mc-page .dash-shot .shot-theme-light { display: none; }
html[data-theme='dark'] .mc-page .dash-shot .shot-theme-dark { display: block; }
html[data-theme='dark'] .mc-page .plan li i { color: #b8a6ff; }

/* Reset wallstreet/mainvivus bleed onto this page */
body.mc-body {
  margin: 0;
  background: #F5F3EE;
}
body.mc-body #wrapper,
body.mc-body .mc-page {
  max-width: none;
}
