:root {
  --bg: #f5f5f7;
  --card: #ffffff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --green: #1f8a4c;
  --red: #d70015;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); font-family: var(--font); }
body { min-height: 100vh; line-height: 1.45; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.wrap { width: min(1080px, calc(100% - 2.4rem)); margin: 0 auto; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.brand { font-weight: 700; letter-spacing: -0.03em; font-size: 1.05rem; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 1.1rem; align-items: center; font-size: 0.92rem; }
.nav-links a { color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 980px; padding: 0.72rem 1.2rem;
  font: 600 0.95rem/1 var(--font); cursor: pointer; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-primary:disabled { opacity: 0.5; cursor: wait; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.hero { padding: 4.5rem 0 3rem; text-align: center; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.045em;
  font-weight: 700; line-height: 1.08; max-width: 16ch; margin: 0 auto 1rem;
}
.hero p { color: var(--muted); font-size: 1.15rem; max-width: 36rem; margin: 0 auto 1.6rem; }
.hero-actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem 0 3rem; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 1.35rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.card p, .muted { color: var(--muted); font-size: 0.95rem; }
.section { padding: 1.2rem 0 3rem; }
.section h2 { font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.footer { color: var(--muted); font-size: 0.82rem; padding: 2rem 0 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }
label { display: block; font-size: 0.78rem; color: var(--muted); margin: 0.75rem 0 0.28rem; font-weight: 600; }
input, textarea, select {
  width: 100%; padding: 0.7rem 0.85rem; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; font: inherit; color: inherit;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(0,113,227,0.55); }
.auth-card { width: min(420px, calc(100% - 2rem)); margin: 3.5rem auto; }
.auth-card h1 { font-size: 1.7rem; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.status { min-height: 1.2em; margin-top: 0.7rem; font-size: 0.88rem; }
.status.err { color: var(--red); }
.status.ok { color: var(--green); }
.app-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.side {
  padding: 1.2rem 0.9rem; border-right: 1px solid var(--line); background: #fff;
}
.side a {
  display: block; padding: 0.55rem 0.75rem; border-radius: 10px;
  color: var(--muted); text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.side a.active, .side a:hover { background: var(--bg); color: var(--text); text-decoration: none; }
.main { padding: 1.4rem 1.5rem 3rem; }
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.8rem; margin: 1rem 0; }
.kpi b { display: block; font-size: 1.4rem; letter-spacing: -0.03em; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.check { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.7rem; font-size: 0.92rem; }
.check input { width: auto; }
.banner {
  background: #fff3cd; color: #634e00; border-radius: 12px; padding: 0.75rem 1rem;
  margin-bottom: 1rem; font-size: 0.9rem;
}
.banner.err { background: #fde8ea; color: #8a1020; }
.hidden { display: none !important; }
.el-modal {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
}
.el-modal.hidden { display: none !important; }
.el-modal-card {
  width: min(440px, 100%);
  background: #fff; border-radius: 18px; padding: 1.4rem;
  box-shadow: var(--shadow);
}
.el-modal-card label { display: block; margin: 0.85rem 0 0.35rem; font-size: 0.85rem; }
.el-modal-card input { width: 100%; }
.admin-emails { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.6rem 0 1rem; }
.admin-email {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--bg); border-radius: 980px; padding: 0.35rem 0.75rem;
  font-size: 0.85rem; color: var(--text);
}
.admin-email button {
  border: 0; background: none; cursor: pointer; color: var(--muted);
  font: inherit; line-height: 1; padding: 0;
}
.admin-email button:hover { color: var(--red); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.82rem; word-break: break-all; }
.link-row { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.link-row .actions { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.el-link-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: start; }
.el-cover-row { display: flex; align-items: center; gap: 0.75rem; }
.el-cover-thumb {
  width: 72px; height: 72px; border-radius: 12px; background: #e8e8ed center/cover no-repeat;
  flex: 0 0 auto; border: 1px solid var(--line);
}
.el-ab-stage { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.el-ab-phone {
  position: relative; width: 168px; height: 300px; border-radius: 28px;
  border: 2.5px solid #1d1d1f; overflow: hidden; background: #111;
}
.el-ab-phone-bg {
  position: absolute; inset: 0; background: #111 center/cover no-repeat;
}
.el-ab-phone[data-theme="blur"] .el-ab-phone-bg.has-cover {
  filter: blur(18px) saturate(1.2); transform: scale(1.25);
}
.el-ab-phone[data-theme="dark"] .el-ab-phone-bg { background: #0b0b0d !important; filter: none; transform: none; }
.el-ab-phone[data-theme="light"] .el-ab-phone-bg { background: #f5f5f7 !important; filter: none; transform: none; }
.el-ab-phone-cover {
  position: relative; z-index: 1; width: 78px; height: 78px; border-radius: 10px;
  margin: 38px auto 8px; background: #333 center/cover no-repeat;
}
.el-ab-phone-cover:not(.has-cover) { background: #2a2a2e; }
.el-ab-phone-title, .el-ab-phone-artist, .el-ab-phone-cta {
  position: relative; z-index: 1; text-align: center;
}
.el-ab-phone-title { font-weight: 700; font-size: 0.78rem; padding: 0 10px; }
.el-ab-phone-artist { font-size: 0.68rem; opacity: 0.7; margin-top: 2px; }
.el-ab-phone-cta {
  margin: 12px 14px 0; background: #fff; color: #111; border-radius: 980px;
  padding: 0.42rem 0.6rem; font-size: 0.68rem; font-weight: 700;
}
.el-ab-phone[data-theme="light"] { color: #1d1d1f; }
.el-ab-phone[data-theme="dark"], .el-ab-phone[data-theme="blur"] { color: #fff; }
.el-ab-phone[data-theme="light"] .el-ab-phone-cta { background: #1d1d1f; color: #fff; }
.el-ab-dots { display: flex; gap: 0.35rem; }
.el-ab-dot, .el-ab-chip {
  appearance: none; font: 600 0.78rem var(--font); cursor: pointer;
  border: 1px solid var(--line); background: #fff; color: var(--muted); border-radius: 980px;
}
.el-ab-dot { width: 32px; height: 32px; }
.el-ab-dot.is-on, .el-ab-chip.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.el-ab-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.4rem 0; }
.el-ab-chip { padding: 0.4rem 0.75rem; }
.el-ab-chip.is-off { opacity: 0.45; }
.el-ab-limit-row { display: flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--muted); }
.el-ab-limit-row input { width: 5.2rem; }
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/outfit-400.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/outfit-500.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/outfit-600.woff2") format("woff2");
}

/* ── Marketing (2026) ── */
.site-public {
  --ink: #0c0c0d;
  --ink-soft: #3d3d42;
  --ink-muted: #6b6b73;
  --surface: #fafafa;
  --surface-2: #f0f0f2;
  --line-mkt: rgba(12, 12, 13, 0.08);
  --green: #22c55e;
  --green-deep: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.35);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
.site-public .brand {
  font-family: Outfit, var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: inherit;
  text-decoration: none;
}
.site-public .brand-light { color: #fff; }

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, backdrop-filter 0.2s;
}
.site-public:not(.site-auth) .mkt-header {
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.mkt-header-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}
.site-public:not(.site-auth) .mkt-header .brand { color: #fff; }
.mkt-nav { display: flex; align-items: center; gap: 1.35rem; }
.mkt-nav a:not(.btn) {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.15s;
}
.mkt-nav a:not(.btn):hover { color: #fff; text-decoration: none; }

.btn-go {
  background: linear-gradient(135deg, #34d399 0%, #22c55e 45%, #16a34a 100%);
  color: #052e16;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 24px rgba(34, 197, 94, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-go:hover {
  color: #052e16;
  filter: brightness(1.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 32px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.86rem; }
.btn-block { width: 100%; margin-top: 0.5rem; }
.btn-outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

.mkt-hero {
  background:
    radial-gradient(900px 480px at 72% 18%, rgba(34, 197, 94, 0.14), transparent 55%),
    radial-gradient(600px 400px at 12% 80%, rgba(99, 102, 241, 0.08), transparent 50%),
    #0a0a0b;
  color: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
  margin-top: -3.5rem;
  padding-top: calc(clamp(2.5rem, 6vw, 4.5rem) + 3.5rem);
}
.mkt-hero-grid {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.mkt-badge {
  display: inline-block;
  font-family: Outfit, var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1.25rem;
}
.mkt-badge-light {
  color: #bbf7d0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.mkt-hero h1 {
  font-family: Outfit, var(--font);
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.1rem;
  max-width: 11ch;
}
.mkt-lead {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2rem; }
.mkt-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.mkt-trust li::before { content: "·"; margin-right: 0.5rem; opacity: 0.5; }
.mkt-trust li:first-child::before { content: none; margin: 0; }

.mkt-hero-visual { position: relative; min-height: 380px; }
.mkt-glow {
  position: absolute;
  inset: 10% 5% 5% 15%;
  background: radial-gradient(circle, var(--green-glow), transparent 68%);
  filter: blur(40px);
  pointer-events: none;
}
.mkt-phone {
  position: relative;
  z-index: 1;
  width: min(240px, 72%);
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, #2a2a2e 0%, #111 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.55);
}
.mkt-phone-screen {
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1520;
}
.mkt-phone-screen-live {
  display: flex;
  flex-direction: column;
}
.mkt-phone-blur {
  position: absolute;
  inset: -24px;
  background: center/cover no-repeat;
  filter: blur(28px) saturate(1.15);
  transform: scale(1.08);
  pointer-events: none;
}
.mkt-phone-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}
.mkt-phone-link {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.65rem 0.75rem 1.1rem;
  text-align: center;
}
.mkt-phone-art {
  width: 58%;
  max-width: 118px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.mkt-phone-title {
  font-family: Outfit, var(--font);
  font-weight: 600;
  font-size: clamp(0.78rem, 3.2vw, 0.92rem);
  color: #fff;
  margin-top: 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.mkt-phone-artist {
  font-family: Outfit, var(--font);
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.2rem 0 0.65rem;
}
.mkt-phone-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 34px;
  padding: 0 0.55rem 0 0.75rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  margin-top: 0.35rem;
}
.mkt-phone-btn-row-alt { opacity: 0.92; }
.mkt-phone-btn-play {
  font-family: Outfit, var(--font);
  font-size: 0.62rem;
  font-weight: 500;
  color: #0c0c0d;
}
.mkt-phone-btn-svc {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.58rem;
  color: #b8b6b5;
}
.mkt-phone-btn-svc img,
.mkt-phone-apple {
  display: block;
  flex: 0 0 auto;
  border-radius: 50%;
}
.mkt-phone-apple { border-radius: 5px; }
.mkt-float {
  position: absolute;
  z-index: 2;
  background: rgba(18, 18, 20, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.mkt-float-a { top: 8%; right: 0; }
.mkt-float-b { bottom: 12%; left: -4%; }
.mkt-float-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}
.mkt-float strong {
  font-family: Outfit, var(--font);
  font-size: 1.15rem;
  font-weight: 600;
  color: #86efac;
}
.mkt-float-accent {
  border-color: rgba(34, 197, 94, 0.35);
}
.mkt-float-accent strong {
  font-size: 1.35rem;
}

.mkt-section {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.mkt-section-alt { background: var(--surface-2); width: 100%; max-width: none; }
.mkt-section-alt > * {
  width: min(1120px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
}
.mkt-eyebrow {
  font-family: Outfit, var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}
.mkt-section-head h2 {
  font-family: Outfit, var(--font);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  color: var(--ink);
}
.mkt-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-mkt);
  border: 1px solid var(--line-mkt);
  border-radius: 20px;
  overflow: hidden;
}
.mkt-bento-item {
  background: #fff;
  padding: 1.65rem 1.5rem;
}
.mkt-bento-wide { grid-column: 1 / -1; }
.mkt-step-num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 0.85rem;
}
.mkt-bento-item h3 {
  font-family: Outfit, var(--font);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.mkt-bento-item p { font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }

.mkt-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
}
.mkt-feature h3 {
  font-family: Outfit, var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.mkt-feature p { font-size: 0.9rem; line-height: 1.55; color: var(--ink-soft); }
.mkt-feature {
  padding-left: 1rem;
  border-left: 2px solid var(--green);
}

.mkt-cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.mkt-cta-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  text-align: center;
}
.mkt-cta-inner h2 {
  font-family: Outfit, var(--font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.mkt-cta-inner p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.mkt-footer {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-mkt);
}
.mkt-footer nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.mkt-footer a { color: var(--ink-soft); text-decoration: none; }
.mkt-footer a:hover { color: var(--ink); text-decoration: none; }

/* Logos + stats strip */
.mkt-logos {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 0.5rem;
  text-align: center;
}
.mkt-logos > p {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.mkt-logos ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
.mkt-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-mkt);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.mkt-logo-pill img { display: block; border-radius: 50%; }
.mkt-logo-accent {
  background: #052e16;
  border-color: transparent;
  color: #86efac;
  font-weight: 600;
}

.mkt-stats {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--line-mkt);
}
.mkt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.mkt-stat {
  padding: 1.1rem 0.5rem;
  text-align: center;
}
.mkt-stat-ico {
  width: 22px;
  height: 22px;
  color: var(--green-deep);
  margin: 0 auto 0.65rem;
  display: block;
}
.mkt-stat strong {
  display: block;
  font-family: Outfit, var(--font);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.mkt-stat span {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.4;
}
.mkt-stats-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 1.25rem;
}

.mkt-accent { color: var(--green-deep); }
.mkt-section-head-center {
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.mkt-section-head-center h2 { margin-bottom: 0.65rem; }
.mkt-pricing {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line-mkt);
  text-align: center;
}
.mkt-pricing-lead {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 0.5rem;
}

.mkt-price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(680px, 100%);
  margin: 2rem auto 1rem;
}
.mkt-price-card {
  background: #fff;
  border: 1px solid var(--line-mkt);
  border-radius: 14px;
  padding: 1.1rem 0.65rem;
  text-align: center;
  font-family: system-ui, var(--font);
}
.mkt-price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}
.mkt-price-card strong {
  display: block;
  font-family: Outfit, var(--font);
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}
.mkt-price-green { color: var(--green-deep); }
.mkt-price-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-muted);
  margin-top: 0.35rem;
}
.mkt-price-hero {
  background: #052e16;
  border-color: #22c55e;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
  transform: scale(1.04);
}
.mkt-price-hero .mkt-price-label { color: #86efac; }
.mkt-price-hero strong {
  color: #fff;
  font-size: clamp(1.55rem, 4.5vw, 1.85rem);
}
.mkt-price-hero .mkt-price-sub { color: #bbf7d0; }

@media (max-width: 640px) {
  .mkt-price-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 360px;
  }
  .mkt-price-hero { transform: none; }
}

/* Infographic charts */
.mkt-chart-scroll {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin: 2rem auto 0;
  padding: 0 0.25rem;
}
.mkt-figure-chart {
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mkt-chart {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
}
.mkt-chart-pricing {
  aspect-ratio: 720 / 168;
  max-width: 680px;
}
.mkt-chart-algo {
  aspect-ratio: 680 / 340;
}
.mkt-chart-dashboard {
  aspect-ratio: 520 / 360;
}
.mkt-chart-steps {
  aspect-ratio: 840 / 240;
  max-width: 840px;
}
.mkt-chart-pixel {
  aspect-ratio: 560 / 280;
}

.mkt-figure-centered {
  margin: 2rem auto 1rem;
  max-width: 680px;
  width: 100%;
}
.mkt-features-inline {
  max-width: 960px;
  margin: 2rem auto 0;
  grid-template-columns: repeat(3, 1fr);
}
.mkt-section-steps { padding-top: clamp(2.5rem, 5vw, 4rem); }
.mkt-steps-lead {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-top: 0.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.mkt-steps-captions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.mkt-steps-captions article {
  padding-left: 0.85rem;
  border-left: 2px solid var(--green);
}
.mkt-steps-captions h3 {
  font-family: Outfit, var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.mkt-steps-captions p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-muted);
}
.mkt-steps-captions .mkt-step-num {
  display: block;
  margin-bottom: 0.5rem;
}
.mkt-stats-grid-pricing { margin-top: 0.5rem; }
.mkt-stat-hero {
  background: #052e16;
  border-radius: 16px;
  padding: 1.25rem 0.75rem !important;
  margin: -0.25rem 0;
}
.mkt-stat-hero strong {
  color: #fff !important;
  font-size: 1.65rem !important;
}
.mkt-stat-hero span {
  color: #86efac !important;
  font-weight: 500;
}

/* Infographic sections */
.mkt-visual-grid,
.mkt-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.mkt-visual-grid .mkt-figure-chart,
.mkt-dashboard-grid .mkt-figure-chart {
  width: 100%;
  min-width: 0;
}
.mkt-visual-grid-reverse { direction: rtl; }
.mkt-visual-grid-reverse > * { direction: ltr; }
.mkt-visual-copy h2 {
  font-family: Outfit, var(--font);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.mkt-visual-lead {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.mkt-visual-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.mkt-visual-list li {
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
}
.mkt-visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.mkt-figure { margin: 0; }
.mkt-figure img:not(.mkt-chart) {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.mkt-figure-shadow .mkt-chart {
  box-shadow: 0 24px 60px rgba(12, 12, 13, 0.1);
}
.mkt-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
}
.mkt-kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.mkt-kpi b {
  display: block;
  font-family: Outfit, var(--font);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.mkt-kpi span { font-size: 0.75rem; color: var(--ink-muted); }
.mkt-kpi-green b { color: var(--green-deep); }

.mkt-bento-visual {
  display: grid !important;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.mkt-bento-thumb { justify-self: end; }
.mkt-mini-link {
  width: 140px;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #1e293b, #0f172a);
  text-align: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.mkt-mini-cover {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  margin: 0 auto 0.65rem;
  background: linear-gradient(135deg, #34d399, #6366f1);
}
.mkt-mini-link span {
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  background: #1db954;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  display: inline-block;
}
.mkt-bento-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Outfit, var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.mkt-bento-icon-go {
  background: #052e16;
  color: #86efac;
  font-size: 0.75rem;
}
.auth-panel-chart {
  margin: 1.75rem 0 0;
  opacity: 0.92;
  transform: perspective(800px) rotateY(-6deg) rotateX(2deg);
}
.auth-panel-chart img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.mkt-header-light {
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line-mkt);
}
.mkt-header-light .brand { color: var(--ink); }
.mkt-header-light .mkt-nav a:not(.btn) { color: var(--ink-muted); }
.mkt-header-light .mkt-nav a:not(.btn):hover { color: var(--ink); }
.site-doc { background: var(--surface); padding-bottom: 2rem; }
.site-doc .wrap.prose { padding-top: 2.5rem; }

/* Auth split */
.site-auth { background: #fff; min-height: 100vh; }
.auth-split {
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  min-height: 100vh;
}
.auth-panel {
  background:
    radial-gradient(600px 400px at 20% 90%, rgba(34, 197, 94, 0.18), transparent 55%),
    #0a0a0b;
  color: #fff;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
}
.auth-panel-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 2rem 0; }
.auth-panel h1 {
  font-family: Outfit, var(--font);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 14ch;
}
.auth-panel-lead { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.55; max-width: 28rem; }
.auth-panel-list {
  list-style: none;
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
}
.auth-panel-list li { padding: 0.35rem 0; padding-left: 1rem; position: relative; }
.auth-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}
.auth-panel-foot { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.auth-main {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 3rem;
}
.auth-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: auto;
}
.auth-top a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
}
.auth-top a:hover { color: var(--ink); }
.auth-form-wrap {
  width: min(380px, 100%);
  margin: auto;
  padding: 1rem 0 3rem;
}
.auth-form-wrap h2 {
  font-family: Outfit, var(--font);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.auth-sub { color: var(--ink-muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.site-auth label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0.85rem 0 0.35rem;
}
.site-auth input[type="text"],
.site-auth input[type="email"],
.site-auth input[type="password"] {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-mkt);
  background: var(--surface);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.site-auth input:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.site-auth input::placeholder { color: #a1a1aa; }
.auth-check { margin-top: 1rem !important; font-size: 0.82rem !important; font-weight: 400 !important; color: var(--ink-muted) !important; }
.auth-check a { color: var(--ink-soft); }
.auth-switch { margin-top: 1.25rem; font-size: 0.88rem; color: var(--ink-muted); }
.auth-switch a { color: var(--green-deep); font-weight: 500; text-decoration: none; }

/* Legal / guide prose on marketing shell */
.site-public .wrap.prose { width: min(720px, calc(100% - 2.5rem)); padding: 2rem 0 4rem; }
.site-public .wrap.prose .nav { padding: 1.5rem 0; }
.site-public .wrap.prose .brand { color: var(--ink); }
.site-public .wrap.prose .nav-links a { color: var(--ink-muted); }
.prose { max-width: 720px; }
.prose h1 {
  font-family: Outfit, var(--font);
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.7rem;
  color: var(--ink);
}
.prose h2 {
  font-family: Outfit, var(--font);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.6rem 0 0.5rem;
  color: var(--ink);
}
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 0.7rem; line-height: 1.6; }
.prose .muted { color: var(--ink-muted); }
.prose a { color: var(--green-deep); }
.prose ul, .prose ol { padding-left: 1.25rem; margin-bottom: 0.8rem; }
.prose code, .prose .mono { font-size: 0.84rem; }

/* ── App cabinet (matches marketing 2026) ── */
.site-app {
  --ink: #0c0c0d;
  --ink-soft: #3d3d42;
  --ink-muted: #6b6b73;
  --surface: #fafafa;
  --surface-2: #f0f0f2;
  --line-mkt: rgba(12, 12, 13, 0.08);
  --green: #22c55e;
  --green-deep: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.35);
  --app-side: #0a0a0b;
  --app-side-line: rgba(255, 255, 255, 0.06);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
.site-app .app-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.site-app .app-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.site-app .app-side {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 0.85rem 1.25rem;
  background:
    radial-gradient(480px 320px at 100% 0%, rgba(34, 197, 94, 0.12), transparent 55%),
    var(--app-side);
  border-right: 1px solid var(--app-side-line);
}
.site-app .app-side .brand {
  font-family: Outfit, var(--font);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  margin: 0 0.65rem 1.35rem;
  display: block;
}
.site-app .app-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.site-app .app-nav a {
  display: flex;
  align-items: center;
  padding: 0.58rem 0.75rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}
.site-app .app-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}
.site-app .app-nav a.active {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.22);
}
.site-app .app-side-foot {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0.75rem 0;
  margin-top: auto;
  border-top: 1px solid var(--app-side-line);
}
.site-app .app-side-foot a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}
.site-app .app-side-foot a:hover { color: rgba(255, 255, 255, 0.7); }

.site-app .app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.75rem;
  border-bottom: 1px solid var(--line-mkt);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-app .app-topbar-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.site-app .app-topbar-meta strong { color: var(--ink-soft); font-weight: 500; }
.site-app .app-topbar-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.site-app .app-main {
  padding: 1.5rem 1.75rem 3.5rem;
  flex: 1;
}
.site-app .app-page-head { margin-bottom: 1.75rem; }
.site-app .app-page-head h1 {
  font-family: Outfit, var(--font);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.site-app .app-lead {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 42rem;
}
.site-app .app-section { margin-top: 1.25rem; }
.site-app .app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.site-app .card {
  background: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--line-mkt);
  box-shadow: 0 8px 32px rgba(12, 12, 13, 0.04);
}
.site-app .card h3 {
  font-family: Outfit, var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.site-app .card + .card,
.site-app .app-section + .card { margin-top: 1rem; }
.site-app .card-highlight {
  background: linear-gradient(135deg, #052e16 0%, #0a0a0b 100%);
  border-color: rgba(34, 197, 94, 0.25);
  color: #fff;
}
.site-app .card-highlight h3 { color: #fff; }
.site-app .card-highlight .muted { color: rgba(255, 255, 255, 0.55); }
.site-app .card-highlight .app-checklist li { color: rgba(255, 255, 255, 0.72); }

.site-app .kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}
.site-app .kpi {
  padding: 1.15rem 1rem;
  text-align: center;
}
.site-app .kpi > span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.site-app .kpi b {
  font-family: Outfit, var(--font);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.site-app .kpi-hero {
  background: #052e16;
  border-color: rgba(34, 197, 94, 0.3);
}
.site-app .kpi-hero > span { color: #86efac; }
.site-app .kpi-hero b { color: #fff; font-size: 1.65rem; }
.site-app .kpi-ok b { color: var(--green-deep); }

.site-app .app-checklist {
  list-style: none;
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.site-app .app-checklist li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
}
.site-app .app-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-mkt);
}
.site-app .app-checklist li.is-done::before { background: var(--green); }
.site-app .app-checklist li.is-done { color: var(--ink); }

.site-app .muted { color: var(--ink-muted); }
.site-app label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0.85rem 0 0.35rem;
}
.site-app input,
.site-app textarea,
.site-app select {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-mkt);
  background: var(--surface);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.site-app input:focus,
.site-app textarea:focus,
.site-app select:focus {
  outline: none;
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}
.site-app .btn-primary {
  background: linear-gradient(135deg, #34d399 0%, #22c55e 45%, #16a34a 100%);
  color: #052e16;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25) inset, 0 8px 24px rgba(34, 197, 94, 0.22);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.site-app .btn-primary:hover {
  color: #052e16;
  filter: brightness(1.04);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 12px 32px rgba(34, 197, 94, 0.3);
  transform: translateY(-1px);
}
.site-app .btn-primary:disabled {
  opacity: 0.45;
  transform: none;
  cursor: not-allowed;
  filter: none;
}
.site-app .btn-ghost {
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line-mkt);
}
.site-app .btn-ghost:hover {
  background: var(--surface-2);
  color: var(--ink);
  text-decoration: none;
}
.site-app .banner {
  background: rgba(34, 197, 94, 0.08);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.site-app .banner.err {
  background: #fef2f2;
  color: #991b1b;
  border-color: rgba(215, 0, 21, 0.15);
}
.site-app .status.ok { color: var(--green-deep); }
.site-app .status.err { color: #d70015; }

.site-app .app-table-wrap { overflow-x: auto; margin-top: 0.5rem; }
.site-app .app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.site-app .app-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  font-weight: 600;
  padding: 0.65rem 0.5rem 0.65rem 0;
  border-bottom: 1px solid var(--line-mkt);
}
.site-app .app-table td {
  padding: 0.85rem 0.5rem 0.85rem 0;
  border-bottom: 1px solid var(--line-mkt);
  color: var(--ink-soft);
  vertical-align: middle;
}
.site-app .app-table tr:last-child td { border-bottom: 0; }
.site-app .app-table td:first-child { color: var(--ink); font-weight: 500; }

.site-app .inline-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-app .inline-row input { flex: 1; min-width: 12rem; }

.site-app .el-ab-dot.is-on,
.site-app .el-ab-chip.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.site-app .admin-email {
  background: var(--surface-2);
  border: 1px solid var(--line-mkt);
}
.site-app .el-modal {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}
.site-app .el-modal-card {
  border-radius: 20px;
  border: 1px solid var(--line-mkt);
  box-shadow: 0 24px 60px rgba(12, 12, 13, 0.18);
}
.site-app .el-modal-card h3 {
  font-family: Outfit, var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.site-app .mkt-badge {
  display: inline-block;
  font-family: Outfit, var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.65rem;
}
.site-app a { color: var(--green-deep); }
.site-app a:hover { color: #15803d; }

@media (max-width: 900px) {
  .mkt-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .mkt-hero h1 { max-width: none; margin-left: auto; margin-right: auto; }
  .mkt-lead { margin-left: auto; margin-right: auto; }
  .mkt-hero-actions, .mkt-trust { justify-content: center; }
  .mkt-hero-visual { min-height: 320px; margin-top: 1rem; }
  .mkt-float-b { left: 4%; }
  .mkt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .mkt-visual-grid, .mkt-dashboard-grid { grid-template-columns: 1fr; }
  .mkt-visual-grid-reverse { direction: ltr; }
  .mkt-chart-scroll {
    justify-content: flex-start;
    padding: 0 0.5rem 0.25rem;
  }
  .mkt-chart-scroll .mkt-chart-steps {
    width: 720px;
    max-width: none;
  }
  .mkt-bento { grid-template-columns: 1fr; }
  .mkt-bento-wide { grid-column: auto; }
  .mkt-bento-visual { grid-template-columns: 1fr; }
  .mkt-bento-thumb { justify-self: center; }
  .mkt-features { grid-template-columns: 1fr; }
  .mkt-features-inline { grid-template-columns: 1fr; }
  .mkt-steps-captions { grid-template-columns: 1fr; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-panel { min-height: auto; padding: 1.75rem 1.5rem; }
  .auth-panel-body { padding: 1rem 0; }
  .auth-panel h1 { max-width: none; font-size: 1.45rem; }
  .auth-panel-foot { display: none; }
  .auth-panel-chart { display: none; }
  .mkt-nav a:not(.btn):not(.btn-go) { display: none; }
}
@media (max-width: 800px) {
  .site-app .app-shell { grid-template-columns: 1fr; }
  .site-app .app-side {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.85rem 1rem;
    gap: 0.5rem;
  }
  .site-app .app-side .brand { margin: 0 0.5rem 0 0; }
  .site-app .app-nav {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    gap: 0.25rem;
  }
  .site-app .app-nav a { white-space: nowrap; padding: 0.45rem 0.65rem; font-size: 0.82rem; }
  .site-app .app-side-foot {
    flex-direction: row;
    border-top: 0;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    width: 100%;
  }
  .site-app .app-main { padding: 1.15rem 1rem 2.5rem; }
  .site-app .app-topbar { padding: 0.75rem 1rem; }
  .steps, .why, .row { grid-template-columns: 1fr; }
  .hero { padding-top: 2.4rem; }
}
