/* MyStache Marketing Site — Design System */
:root {
  --teal:        #1f8a8a;
  --teal-600:    #166d6d;
  --teal-700:    #0f5555;
  --teal-50:     #e7f1f1;
  --teal-100:    #d9e8e8;
  --orange:      #e8833a;
  --orange-600:  #c96a22;
  --cream:       #f7f3ec;
  --paper:       #fffdf8;
  --card:        #ffffff;
  --ink:         #1a2a2e;
  --ink-2:       #34474b;
  --muted:       #6b7a7d;
  --line:        #e4ded2;
  --line-2:      #d8d1c1;
  --warn:        #e6a54b;
  --danger:      #d96b5e;
  --success:     #3f9e7a;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 1px 2px rgba(20,40,42,.05), 0 1px 1px rgba(20,40,42,.04);
  --shadow:      0 6px 24px rgba(20,40,42,.08), 0 2px 6px rgba(20,40,42,.04);
  --shadow-lg:   0 24px 60px rgba(20,40,42,.14), 0 8px 20px rgba(20,40,42,.06);
  --maxw:        1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-700); }

h1, h2, h3 {
  font-family: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
}
h4 {
  font-size: 20px;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(44px, 6.4vw, 88px); }
h2 { font-size: clamp(34px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }

p { margin: 0 0 1em 0; }
small, .small { font-size: 13px; color: var(--muted); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow    { max-width: 920px;    margin: 0 auto; padding: 0 28px; }

.brand-orange { color: var(--orange); }
.brand-teal   { color: var(--teal); }

/* ── NAV ── */
.mkt-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,243,236,.82);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(26,42,46,.06);
}
.mkt-nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.mkt-logo {
  display: flex; align-items: center; gap: 0;
  font-family: "Geist", sans-serif; font-weight: 700; font-size: 22px;
  color: var(--ink); letter-spacing: -0.01em; text-decoration: none;
}
.mkt-logo img { height: 30px; width: auto; display: block; }
.mkt-logo .stache-word { color: var(--orange); }

.mkt-nav-links { display: flex; gap: 4px; align-items: center; }
.mkt-nav-links a {
  color: var(--ink-2);
  font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.mkt-nav-links a:hover  { background: rgba(26,42,46,.05); color: var(--ink); }
.mkt-nav-links a.active { color: var(--ink); background: rgba(26,42,46,.06); }

.mkt-nav-cta { display: flex; gap: 10px; align-items: center; }
.mkt-nav-cta .btn { white-space: nowrap; }

.mkt-hamburger {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--ink); flex-direction: column; gap: 5px; align-items: center;
}
.mkt-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mkt-mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 50;
  flex-direction: column; padding: 24px 28px; gap: 0;
}
.mkt-mobile-menu.open { display: flex; }
.mkt-mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px;
}
.mkt-mobile-menu a {
  color: var(--ink); font-size: 22px; font-family: "Instrument Serif", serif;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: block; text-decoration: none;
}
.mkt-mobile-menu a:hover { color: var(--teal); }
.mkt-mobile-menu a.active { color: var(--teal); }
.mkt-mobile-menu-ctas {
  display: flex; flex-direction: column; gap: 10px; margin-top: 28px;
}
.mkt-close-btn {
  background: none; border: none; cursor: pointer;
  color: var(--ink); padding: 8px; font-size: 24px;
}

@media (max-width: 1080px) {
  .mkt-nav-links a { padding: 8px 10px; font-size: 14px; }
}
@media (max-width: 900px) {
  .mkt-nav-links { display: none; }
  .mkt-nav-cta   { display: none; }
  .mkt-hamburger { display: flex; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  font-family: "Geist", sans-serif; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal); color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.04), 0 8px 20px rgba(31,138,138,.28);
}
.btn-primary:hover {
  background: var(--teal-600); color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.04), 0 10px 26px rgba(31,138,138,.34);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(26,42,46,.18);
}
.btn-ghost:hover { background: rgba(26,42,46,.05); color: var(--ink); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-600); color: #fff; }
.btn-lg  { padding: 16px 26px; font-size: 16px; }
.btn-xl  { padding: 18px 30px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 0 88px;
  text-align: center;
  overflow: hidden;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(31,138,138,.1); color: var(--teal-700);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}
.hero h1 { max-width: 14ch; margin: 0 auto; text-wrap: balance; }
.hero .underline-orange { position: relative; display: inline-block; }
.hero .underline-orange::after {
  content: ""; position: absolute;
  left: -4px; right: -4px; bottom: .08em; height: .24em;
  background: var(--orange); opacity: .28; z-index: -1; border-radius: 4px;
}
.hero-lede {
  max-width: 58ch; margin: 22px auto 34px;
  font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2); line-height: 1.5;
  text-wrap: pretty;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-meta { font-size: 13px; color: var(--muted); }

/* decorative mustaches */
.deco-stache { position: absolute; opacity: .08; pointer-events: none; }
.deco-stache img { display: block; }

/* ── SECTION ── */
section { padding: 88px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 52px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { text-wrap: balance; }
.section-head p { color: var(--ink-2); font-size: 18px; margin-top: 16px; text-wrap: pretty; }

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card.feature { display: flex; flex-direction: column; gap: 14px; min-height: 100%; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ── BADGE / PILL ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}
.badge-teal   { background: rgba(31,138,138,.12); color: var(--teal-700); }
.badge-orange { background: rgba(232,131,58,.14);  color: var(--orange-600); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--teal-50); color: var(--teal-700); font-size: 12px; font-weight: 600; }

/* ── FOOTER ── */
footer.mkt-footer {
  background: var(--ink); color: #cfd9db;
  padding: 64px 0 36px; margin-top: 100px;
  position: relative; overflow: hidden;
}
footer.mkt-footer h4 {
  color: #fff; font-size: 14px; font-family: "Geist", sans-serif;
  font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 14px;
}
footer.mkt-footer a { color: #cfd9db; display: block; padding: 4px 0; font-size: 14px; }
footer.mkt-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: #8ea0a3;
}
.footer-logo { color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 0; font-family: "Geist", sans-serif; font-weight: 700; font-size: 22px; }
.footer-logo img { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-logo .stache-word { color: var(--orange); }
.footer-tag { font-size: 14px; color: #8ea0a3; max-width: 40ch; margin: 0 0 16px; }

.app-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.badge-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px dashed rgba(255,255,255,.25); color: #8ea0a3;
  border-radius: 12px; padding: 10px 16px 10px 14px;
  font-family: "Geist", sans-serif;
}
.badge-store .store-tag  { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: .7; display: block; line-height: 1; }
.badge-store .store-name { font-size: 15px; font-weight: 600; display: block; line-height: 1.1; margin-top: 3px; }

/* ── STACHE DIVIDER ── */
.stache-divider {
  display: flex; justify-content: center; padding: 40px 0; opacity: .4;
}
.stache-divider img { width: 120px; height: auto; display: block; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; position: relative;
}
.plan.featured {
  border-color: var(--teal);
  box-shadow: 0 20px 40px rgba(31,138,138,.12), var(--shadow-sm);
}
.plan .price {
  font-family: "Instrument Serif", serif; font-size: 56px;
  line-height: 1; margin: 10px 0 4px; color: var(--ink);
}
.plan .price small { font-size: 15px; color: var(--muted); font-family: "Geist", sans-serif; }
.plan ul {
  list-style: none; padding: 0; margin: 18px 0 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; color: var(--ink-2);
}
.plan li svg { flex: none; margin-top: 3px; color: var(--teal); }
.plan li.off { color: var(--muted); }
.plan li.off svg { color: var(--muted); }
.plan .plan-top { flex: 1; }

/* Pricing toggle */
.price-toggle {
  display: inline-flex; gap: 4px; padding: 4px;
  background: rgba(26,42,46,0.06); border-radius: 999px;
}
.price-toggle button {
  padding: 8px 18px; border-radius: 999px; border: none; cursor: pointer;
  font-family: "Geist", sans-serif; font-size: 15px; font-weight: 500;
  transition: all .15s ease; background: transparent; color: var(--ink);
}
.price-toggle button.active {
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; list-style: none;
  font-family: "Instrument Serif", serif; font-size: 24px; color: var(--ink);
  line-height: 1.2;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .chev {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(26,42,46,.06);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .15s;
  flex: none;
}
details[open] .faq-q .chev {
  transform: rotate(45deg);
  background: rgba(31,138,138,.14); color: var(--teal-700);
}
.faq-a { padding-top: 12px; color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 72ch; }

/* ── PHONE FRAME ── */
.phone-frame {
  width: 340px; height: 700px;
  background: #0a1619; border-radius: 48px; padding: 14px;
  box-shadow: 0 40px 80px rgba(20,40,42,.22), 0 12px 30px rgba(20,40,42,.12), inset 0 0 0 2px #1c2c30;
  position: relative; flex-shrink: 0;
}
.phone-frame::before {
  content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #0a1619;
  border-radius: 0 0 18px 18px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--teal-100); border-radius: 36px;
  overflow: hidden; position: relative;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  border-radius: 28px; padding: 60px 40px;
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-block h2 { color: #fff; }
.cta-block p  { color: rgba(255,255,255,.82); max-width: 52ch; margin: 18px auto 28px; }
.cta-block .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.cta-block .btn-primary  { background: #fff; color: var(--teal-700); }
.cta-block .btn-primary:hover { background: var(--cream); color: var(--teal-700); }
.cta-block .btn-ghost    { color: #fff; border-color: rgba(255,255,255,.3); }
.cta-block .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.cta-deco { position: absolute; pointer-events: none; filter: brightness(0) invert(1); opacity: .16; }

/* ── STAT ROW ── */
.stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 4px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 0;
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat { padding: 28px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
@media (max-width: 800px) { .stat { border-right: none; border-bottom: 1px solid var(--line); } }
.stat .n { font-family: "Instrument Serif", serif; font-size: 46px; line-height: 1; color: var(--teal-700); margin-bottom: 6px; }
.stat .n .u { font-size: 24px; color: var(--orange); margin-left: 2px; }
.stat .l { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── FORM CONTROLS ── */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); }
.mkt-input, .mkt-textarea {
  width: 100%; padding: 12px 16px; border-radius: 14px;
  border: 1px solid var(--line-2); background: #fff;
  font-family: "Geist", sans-serif; font-size: 15px; color: var(--ink);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.mkt-input:focus, .mkt-textarea:focus {
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(31,138,138,.14);
}
.mkt-textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field-error { font-size: 12px; color: var(--danger); margin-top: 2px; }

/* ── UTILITIES ── */
.row  { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.center { text-align: center; }
.muted  { color: var(--muted); }

/* ── PHONE MOCK INTERNALS ── */
.pm-root { width: 100%; height: 100%; background: #d9e8e8; display: flex; flex-direction: column; font-family: "Geist", sans-serif; color: #1a2a2e; font-size: 13px; }
.pm-statusbar { display: flex; justify-content: space-between; align-items: center; padding: 14px 24px 6px; font-size: 12px; font-weight: 600; color: #1a2a2e; }
.pm-header  { padding: 10px 18px 8px; display: flex; align-items: center; justify-content: space-between; }
.pm-brandname { display: flex; align-items: center; gap: 0; font-weight: 700; font-size: 16px; }
.pm-brandname img { height: 22px; width: auto; }
.pm-brandname .so { color: #e8833a; }
.pm-avatar { width: 30px; height: 30px; border-radius: 50%; background: #1f8a8a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.pm-greeting { padding: 4px 18px 14px; }
.pm-greeting .name { font-family: "Instrument Serif", serif; font-size: 22px; line-height: 1.1; }
.pm-greeting .sub  { font-size: 11px; color: #6b7a7d; margin-top: 2px; }
.pm-search { margin: 0 18px 12px; background: #fff; border-radius: 12px; padding: 9px 12px; display: flex; align-items: center; gap: 8px; font-size: 12px; color: #6b7a7d; border: 1px solid #e4ded2; }
.pm-label  { padding: 0 18px; font-size: 10px; letter-spacing: 0.08em; color: #6b7a7d; font-weight: 600; margin-bottom: 8px; }
.pm-cats   { padding: 0 18px 16px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.pm-cat    { background: #fff; border-radius: 12px; padding: 10px; border: 1px solid #e4ded2; }
.pm-cat-icon { width: 24px; height: 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; margin-bottom: 6px; }
.pm-cat-name { font-size: 11px; font-weight: 600; }
.pm-cat-cnt  { font-size: 9px; color: #6b7a7d; }
.pm-alerts-hd { padding: 0 18px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pm-alerts-lbl { display: flex; align-items: center; gap: 6px; font-size: 10px; letter-spacing: 0.08em; color: #6b7a7d; font-weight: 600; }
.pm-alerts-cnt { background: #fde0ec; color: #b83464; border-radius: 999px; padding: 1px 6px; font-size: 9px; font-weight: 700; }
.pm-lowstache-badge { font-size: 10px; background: #1f8a8a; color: #fff; border-radius: 999px; padding: 2px 8px; font-weight: 600; }
.pm-alert-items { padding: 0 18px; display: flex; flex-direction: column; gap: 6px; }
.pm-alert-row { background: #fff; border-radius: 10px; padding: 8px 10px; display: flex; align-items: center; gap: 8px; border: 1px solid #e4ded2; }
.pm-alert-icon { width: 22px; height: 22px; border-radius: 6px; background: #fde1dd; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.pm-alert-info { flex: 1; min-width: 0; }
.pm-alert-name { font-size: 11px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-alert-sub  { font-size: 9px; color: #6b7a7d; }
.pm-low-badge  { font-size: 9px; background: #fde1dd; color: #a6392f; border-radius: 999px; padding: 2px 6px; font-weight: 600; }
.pm-spacer { flex: 1; }
.pm-tabbar { border-top: 1px solid #cdd9da; background: rgba(255,255,255,.92); padding: 10px 22px 18px; display: flex; justify-content: space-between; align-items: center; }
.pm-tab    { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 9px; color: #6b7a7d; font-weight: 600; }
.pm-tab.active { color: #1f8a8a; }
.pm-scan-btn { width: 36px; height: 36px; border-radius: 999px; background: #e8833a; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-top: -12px; box-shadow: 0 4px 10px rgba(232,131,58,.4); }

/* MustStache phone */
.pm-ms-root { width: 100%; height: 100%; background: #d9e8e8; display: flex; flex-direction: column; font-family: "Geist", sans-serif; color: #1a2a2e; }
.pm-ms-hd   { padding: 8px 18px 14px; }
.pm-ms-hd .sub  { font-size: 11px; color: #6b7a7d; margin-bottom: 4px; }
.pm-ms-hd .title { font-family: "Instrument Serif", serif; font-size: 30px; line-height: 1; }
.pm-ms-hd .cnt   { font-size: 11px; color: #6b7a7d; margin-top: 6px; }
.pm-ms-items { padding: 0 18px; display: flex; flex-direction: column; gap: 8px; }
.pm-ms-row  { background: #fff; border-radius: 12px; padding: 10px; display: flex; gap: 10px; align-items: center; border: 1px solid #e4ded2; }
.pm-ms-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.pm-ms-name { font-size: 12px; font-weight: 600; }
.pm-ms-loc  { font-size: 10px; color: #6b7a7d; }
.pm-ms-qty  { text-align: right; }
.pm-ms-qty .n { font-size: 13px; font-family: "Instrument Serif", serif; }
.pm-ms-qty .s { font-size: 9px; font-weight: 600; }
.pm-ms-qty .n.low { color: #c96a22; }
.pm-ms-qty .n.ok  { color: #1f8a8a; }
.pm-ms-qty .s.low { color: #c96a22; }
.pm-ms-qty .s.ok  { color: #3f9e7a; }
.pm-ms-btn { margin: 0 18px 22px; background: #1f8a8a; color: #fff; border-radius: 999px; padding: 12px 16px; text-align: center; font-size: 12px; font-weight: 600; }

/* Scan phone */
.pm-scan-root { width: 100%; height: 100%; background: #0a1619; display: flex; flex-direction: column; font-family: "Geist", sans-serif; color: #fff; position: relative; }
.pm-scan-bar  { padding: 8px 18px 14px; display: flex; justify-content: space-between; align-items: center; }
.pm-scan-muted { font-size: 12px; color: rgba(255,255,255,.7); }
.pm-scan-title { font-size: 12px; font-weight: 600; }
.pm-scan-area  { flex: 1; display: flex; align-items: center; justify-content: center; }
.pm-scan-frame { width: 200px; height: 200px; border: 2px solid rgba(255,255,255,.6); border-radius: 18px; position: relative; }
.pm-scan-corner { position: absolute; width: 24px; height: 24px; }
.pm-scan-corner.tl { top: -2px; left: -2px; border-top: 3px solid #e8833a; border-left: 3px solid #e8833a; border-top-left-radius: 18px; }
.pm-scan-corner.tr { top: -2px; right: -2px; border-top: 3px solid #e8833a; border-right: 3px solid #e8833a; border-top-right-radius: 18px; }
.pm-scan-corner.bl { bottom: -2px; left: -2px; border-bottom: 3px solid #e8833a; border-left: 3px solid #e8833a; border-bottom-left-radius: 18px; }
.pm-scan-corner.br { bottom: -2px; right: -2px; border-bottom: 3px solid #e8833a; border-right: 3px solid #e8833a; border-bottom-right-radius: 18px; }
.pm-scan-line { position: absolute; top: 50%; left: 10px; right: 10px; height: 2px; background: #e8833a; box-shadow: 0 0 12px #e8833a; }
.pm-scan-foot { padding: 20px 22px 30px; text-align: center; }
.pm-scan-foot .title { font-size: 14px; font-family: "Instrument Serif", serif; margin-bottom: 4px; }
.pm-scan-foot .sub   { font-size: 11px; color: rgba(255,255,255,.6); }

/* Comparison table */
.compare-table { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-head  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 20px 24px; border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: 0.08em; color: var(--muted); font-weight: 600; text-transform: uppercase; background: #faf6ed; }
.compare-row   { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 16px 24px; border-bottom: 1px solid #f1ebdf; align-items: center; }
.compare-row:last-child { border-bottom: none; }
.compare-row .label { font-weight: 500; }
.compare-row .free  { color: var(--muted); }
.compare-row .home  { color: var(--teal); font-weight: 600; }

/* Alert flash messages */
.mkt-flash { padding: 14px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 15px; }
.mkt-flash.success { background: rgba(63,158,122,.12); color: #1a5c42; border: 1px solid rgba(63,158,122,.3); }
.mkt-flash.error   { background: rgba(217,107,94,.12);  color: #8b2b24; border: 1px solid rgba(217,107,94,.3); }

/* Vocab cards (home page) */
.vocab-card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px 28px; }
.vocab-word { font-family: "Instrument Serif", serif; font-size: clamp(36px,4vw,54px); line-height: 1; margin-bottom: 10px; }

/* Testimonial */
.testimonial { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 32px; }
.quote-mark { font-family: "Instrument Serif", serif; font-size: 64px; line-height: 0.6; color: var(--orange); margin-bottom: 16px; display: block; }
.testimonial p { font-size: 17px; color: var(--ink-2); font-style: italic; line-height: 1.55; margin: 0 0 18px; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--muted); }

/* How it works */
.step-num { font-family: "Instrument Serif", serif; font-size: clamp(72px,8vw,100px); color: var(--orange); opacity: .25; line-height: 1; margin-bottom: -16px; }

/* Use case swatch */
.usecase-swatch { height: 80px; border-radius: 14px 14px 0 0; display: flex; align-items: center; justify-content: center; font-size: 36px; overflow: hidden; position: relative; }
.usecase-swatch-stache { position: absolute; bottom: -20px; right: -10px; opacity: .2; filter: brightness(0) invert(1); }

/* Responsive helpers */
@media (max-width: 900px) {
  .hide-mobile { display: none !important; }
  section { padding: 60px 0; }
  .hero   { padding: 56px 0 60px; }
  .cta-block { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .mkt-nav-inner { padding: 14px 18px; }
  .container, .narrow { padding: 0 18px; }
}
