/* ============================================================
   FOLLOWERS.CHEAP — site layer v2 (loads AFTER css/style.css)
   Full Path-Social clone: promo bar, nav handle-checker,
   dashboard-composite hero (chart + region map + traffic +
   phone notification), logo strip, feature rows, testimonial
   trio, case study, pillars, featured review, dark navy footer.
   Engine below the token block stays untouched — everything
   Path-specific lives here.
   ============================================================ */

:root {
  --ps-red:    #D23535;  /* promo band */
  --ps-yellow: #FFCA4D;  /* promo highlight chip */
  --ps-orange: #F97B24;  /* secondary links ("Login" slot) */
  --ps-navy:   #131726;  /* footer */
  --ps-navy-2: #181D30;  /* footer upper / dark cards */
  --gold:      #E8A33D;  /* star gold */
}

/* ---- Path-style buttons: rectangular 4px, chunky ---- */
.btn { border-radius: 4px; height: 52px; font-size: 15px; }
.btn-outline {
  background: #fff; color: var(--accent); border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-tint); }

/* ---- promo bar ---- */
.promo-bar {
  background: var(--ps-red); color: #fff; font-weight: 700; font-size: 14px;
  position: relative; z-index: 60;
}
.promo-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 44px; padding-block: 8px; flex-wrap: wrap;
}
.promo-chip {
  background: var(--ps-yellow); color: #111; font-weight: 800;
  letter-spacing: .02em; padding: 4px 10px; border-radius: 3px; white-space: nowrap;
}
.promo-close {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 20px; cursor: pointer;
  line-height: 1; padding: 4px 8px;
}
.promo-bar.is-hidden { display: none; }

/* ---- header / nav ---- */
.site-header .container { gap: 20px; }
.logo { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: .01em; white-space: nowrap; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent);
  color: var(--accent-ink); display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.nav-check { display: flex; align-items: center; gap: 0; background: var(--surface-2); border-radius: 6px; padding: 4px 4px 4px 0; }
.nav-check input {
  border: 0; background: transparent; height: 38px; padding: 0 14px; width: 200px;
  font-family: var(--font-body); font-size: 14px; outline: none; color: var(--ink);
}
.nav-check button {
  border: 0; background: transparent; color: var(--accent); font-weight: 700;
  font-size: 14px; font-family: var(--font-body); cursor: pointer; padding: 0 12px; white-space: nowrap;
}
.nav-support { color: var(--ps-orange) !important; font-weight: 700 !important; }
.nav-cta { height: 44px; padding-inline: 26px; border-radius: var(--r-full); font-size: 15px; }
@media (max-width: 1160px) { .nav-check { display: none; } }
@media (max-width: 640px) { .nav-cta { display: none; } }

/* ---- split hero ---- */
.hero--split { padding-block: clamp(40px, 5vw, 80px) clamp(48px, 5vw, 88px); overflow: hidden; }
.hero--split .container {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero--split h1 {
  font-size: clamp(2.3rem, 1.5rem + 3vw, 3.6rem);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.14; color: #000;
}
.hero--split .lead { font-size: 19px; max-width: 480px; }
.hero-rating { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--ink-muted); margin-bottom: 16px; }
.hero-rating .stars { color: var(--gold); font-size: 17px; }
.hero-rating strong { color: #000; font-size: 16px; }
.hero-actions .btn { min-width: 190px; }
.hero-quote { margin-top: 30px; max-width: 470px; }
.hero-quote p { font-size: 15.5px; color: var(--ink); font-style: italic; margin: 0 0 10px; }
.hero-quote .who { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-muted); }
.hero-quote .who .avatar { width: 36px; height: 36px; font-size: 13px; }
.hero-quote .who b { color: var(--ink); font-style: normal; }
@media (max-width: 960px) {
  .hero--split .container { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 600px; margin-inline: auto; }
}

/* ---- dashboard composite (chart + region map + traffic + phone) ---- */
.hero-visual { position: relative; }
.dash-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 24px 60px -30px rgba(19,23,38,.35); padding: 20px;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash-head b { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.dash-pill {
  background: var(--surface-2); border-radius: 6px; padding: 5px 12px;
  font-size: 12px; font-weight: 500; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 6px;
}
.dash-chart svg { width: 100%; height: auto; display: block; }
.dash-sub { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; margin-top: 16px; }
.dash-cell { border: 1px solid var(--line); border-radius: 8px; padding: 14px; }
.dash-cell h5 {
  margin: 0 0 10px; font-family: var(--font-display); font-weight: 600;
  font-size: 13px; color: var(--ink);
}
.dash-cell svg { width: 100%; height: auto; display: block; }
/* keep the world-map dots clear of the phone overlay in the corner */
.dash-sub .dash-cell:nth-child(2) svg { max-width: 150px; }
.traffic-row { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--ink-muted); margin-top: 8px; }
.traffic-row .bar { flex: 1; height: 8px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.traffic-row .bar i { display: block; height: 100%; border-radius: 4px; }
.traffic-row .pct { font-weight: 700; color: var(--ink); font-size: 11.5px; width: 34px; text-align: right; }

/* phone overlay with a single (static) notification — sized/positioned so it
   only ever covers the empty corner of the region-map card, never the dots */
.phone {
  position: absolute; right: -24px; bottom: -52px; width: 150px; z-index: 2;
  background: var(--ps-navy-2); border-radius: 24px; padding: 9px 9px 14px;
  box-shadow: 0 30px 60px -24px rgba(19,23,38,.5); border: 3px solid #2A3048;
}
.phone .notch { width: 64px; height: 6px; border-radius: 3px; background: #2A3048; margin: 2px auto 14px; }
.phone .ptime { color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 23px; text-align: center; }
.phone .pdate { color: rgba(255,255,255,.6); font-size: 11px; text-align: center; margin-bottom: 14px; }
.notif {
  background: rgba(255,255,255,.96); border-radius: 12px; padding: 9px 11px; text-align: left;
}
.notif-head { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.notif .app {
  width: 17px; height: 17px; border-radius: 5px; background: var(--accent);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.notif .napp { font-size: 10px; font-weight: 500; color: var(--ink-muted); }
.notif .ntime { margin-left: auto; font-size: 9.5px; color: var(--ink-faint); }
.notif .nmsg { font-size: 12px; line-height: 1.35; color: var(--ink); }
.notif .nmsg b { font-weight: 700; }
@media (max-width: 960px) { .phone { right: 0; bottom: -24px; } }
@media (max-width: 600px) {
  /* compact phone: overlaps only the map's ocean corner on small screens */
  .phone { width: 132px; right: -4px; bottom: -14px; border-radius: 20px; padding: 8px 8px 12px; }
  .phone .ptime { font-size: 18px; }
  .phone .pdate { font-size: 9.5px; margin-bottom: 9px; }
  .phone .notch { width: 44px; margin-bottom: 9px; }
  .notif { padding: 8px 9px; border-radius: 10px; }
  .notif .app { width: 15px; height: 15px; }
  .notif .napp { font-size: 9px; }
  .notif .ntime { font-size: 8.5px; }
  .notif .nmsg { font-size: 10.5px; }
  /* tighter panel */
  .dash-panel { padding: 16px; }
  .dash-cell { padding: 12px; }
  .traffic-row { font-size: 11px; }
  .dash-caption { padding-right: 124px; } /* wraps clear of the phone */
  .dash-sub .dash-cell:last-child { padding-right: 116px; } /* map dots stay clear of the phone */
}

/* ---- trusted-by strip ---- */
.trusted { text-align: center; }
.trusted h2 { font-weight: 600; }
.trusted .sub { max-width: 560px; margin: 14px auto 22px; }
.logo-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px;
  margin-top: 36px; color: var(--ink-faint);
}
.logo-strip span {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: .12em; text-transform: uppercase; opacity: .75;
}

/* ---- feature section ---- */
.feature-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 32px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.feature-card .picon {
  width: 44px; height: 44px; border-radius: 8px; background: var(--accent-tint);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; margin: 0; }

/* ---- testimonial trio ---- */
.testis { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; margin-top: 32px; }
.testi { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.testi p { font-size: 15px; color: var(--ink); margin: 0 0 16px; }
.testi .who { display: flex; align-items: center; gap: 10px; }
.testi .who .avatar { width: 40px; height: 40px; font-size: 14px; }
.testi .handle { font-weight: 700; font-size: 14px; color: var(--ink); }
.testi .vr { display: inline-flex; align-items: center; gap: 5px; color: var(--ps-orange); font-size: 12.5px; font-weight: 700; }

/* ---- case study ---- */
.case { background: var(--surface-2); }
.case .container { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.case-portrait {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 34px 26px; text-align: center;
}
.case-portrait .avatar { width: 96px; height: 96px; font-size: 32px; margin: 0 auto 16px; }
.case-portrait .h { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.case-portrait .s { color: var(--ink-muted); font-size: 14px; }
.case-portrait .outcome {
  margin-top: 16px; display: inline-block; background: var(--ok-tint); color: var(--ok);
  font-weight: 700; font-size: 13.5px; border-radius: 6px; padding: 7px 14px;
}
.case-body h2 { font-weight: 600; font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); line-height: 1.35; }
@media (max-width: 860px) { .case .container { grid-template-columns: 1fr; } .case-portrait { max-width: 340px; margin-inline: auto; } }

/* ---- pillars ---- */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.pillar { text-align: center; padding: 10px 18px; }
.pillar .picon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent-tint);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.pillar h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.pillar p { font-size: 14.5px; margin: 0; }

/* ---- featured review ---- */
.featured-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: clamp(26px, 4vw, 48px);
  max-width: 780px; margin: 28px auto 0; text-align: center;
}
.featured-card .stars { font-size: 22px; color: var(--gold); letter-spacing: 4px; }
.featured-card blockquote {
  margin: 16px 0 20px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 1rem + 0.7vw, 1.35rem); line-height: 1.45; color: #000;
}
.featured-card .who { display: flex; align-items: center; justify-content: center; gap: 12px; }
.featured-card .who .name { font-weight: 700; font-size: 15px; text-align: left; }
.featured-card .who .sub { font-size: 13.5px; color: var(--ink-muted); text-align: left; }

/* ---- steps (kept from v1, used on both pages) ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 28px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.step .n {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.step p { font-size: 14.5px; margin: 0; }

/* ---- package tab panels ---- */
.svc-panel[hidden] { display: none; }

/* ---- FAQ (Path-style: bigger, roomier) ---- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-still { color: var(--ink-muted); margin-top: 10px; }
.faq-still a { color: var(--ps-orange); font-weight: 700; text-decoration: none; }

/* ---- sticky mobile buy bar internals ---- */
.buybar .btn { width: auto; height: 44px; padding-inline: 20px; }
.buybar .bb-title { font-weight: 700; font-size: 14px; }
.buybar .bb-sub { font-size: 12.5px; color: var(--ink-muted); }

/* ---- mobile menu (burger drawer under the sticky header) ---- */
.nav-burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: var(--ink); align-items: center; justify-content: center;
  margin-right: -8px; /* icon's visible edge aligns with the container gutter */
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg); flex-direction: column;
  padding: 6px clamp(20px, 4vw, 48px) 20px; /* tracks .container gutter */
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 0; border-bottom: 1px solid var(--line); text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: 16px;
}
.mobile-menu a.m-support { color: var(--ps-orange); }
.mobile-menu a.btn { border-bottom: 0; margin-top: 14px; color: var(--accent-ink); }
@media (max-width: 860px) { .nav-burger { display: flex; } }

/* ---- anchors clear the sticky header ---- */
#packages, #how-it-works, #reviews, #faq-home, #why-us { scroll-margin-top: 84px; }

/* ---- mobile compaction ---- */
@media (max-width: 640px) {
  /* promo bar: one short line */
  .promo-long { display: none; }
  .promo-short { display: inline; }
  .promo-bar .container { min-height: 36px; padding-block: 6px; font-size: 13px; gap: 8px; flex-wrap: nowrap; }
  .promo-chip { padding: 3px 8px; font-size: 12px; }
  .promo-close { right: 6px; }

  /* single-column stacking for the whole ≤640 band — the engine's auto-fit
     grids otherwise go two-up with orphans between ~480 and 640px */
  .packs, .feature-cards, .testis, .pillars, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }

  /* package cards become compact rows (ViralShift value-ladder pattern) */
  .packs { gap: 12px; }
  .pack {
    display: grid; grid-template-columns: 1fr auto; align-items: center;
    column-gap: 14px; row-gap: 2px; padding: 14px 16px;
  }
  .pack__badge {
    position: static; transform: none; grid-column: 1 / -1;
    justify-self: start; margin: 0 0 8px;
  }
  .pack__qty { grid-column: 1; }
  .pack__price { grid-column: 2; grid-row: span 2; font-size: 24px; margin: 0; align-self: center; }
  .pack__anchor { grid-column: 1; margin: 0; }
  .pack ul { display: none; }
  .pack .btn { grid-column: 1 / -1; height: 44px; margin-top: 10px; }
}
@media (min-width: 641px) { .promo-short { display: none; } }

@media (max-width: 480px) {
  /* dashboard sub-cells stack for breathing room */
  .dash-sub { grid-template-columns: 1fr; }
}

/* ---- dark navy footer (Path-style) ---- */
.site-footer { background: var(--ps-navy); border-top: 0; color: rgba(255,255,255,.75); }
.site-footer .footer-grid h4 { color: rgba(255,255,255,.5); }
.site-footer .footer-grid a { color: rgba(255,255,255,.75); }
.site-footer .footer-grid a:hover { color: #fff; }
.site-footer .footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.site-footer .footer-brand .mark { width: 26px; height: 26px; border-radius: 7px; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.site-footer .footer-disclaimer { color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.12); }
.site-footer .footer-legal { color: rgba(255,255,255,.35); font-size: 12.5px; margin-top: 10px; }
.site-footer .pay-logos .logo { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }

/* ---- photo avatars (Higgsfield-generated persona pfps) ---- */
img.avatar { object-fit: cover; background: var(--surface-2); }

/* ---- real payment icons (network-standard acceptance marks) ---- */
.pay-logos { flex-wrap: wrap; }
.pay-logos img { display: block; border-radius: 4px; }
.site-footer .pay-logos img { background: #fff; }

/* ---- legal-page copy rhythm (bare h3s otherwise hug the next paragraph) ---- */
.legal-copy h3 { margin: 26px 0 8px; }

/* ---- order flow: inline profile preview (ScrapeCreators) ---- */
.uv-box { margin-top: 10px; }
.uv-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--ink-muted);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 13px;
}
.uv-row.uv-bad { color: #B3261E; background: #FDECEC; border-color: #F3C1C3; }
.uv-row.uv-warn { color: #8A5A00; background: #FFF6E5; border-color: #F2DFAE; }
.uv-spin {
  width: 14px; height: 14px; border-radius: 50%; flex: none;
  border: 2px solid var(--line-strong); border-top-color: var(--accent);
  animation: uvspin 700ms linear infinite;
}
@keyframes uvspin { to { transform: rotate(360deg); } }
.uv-card {
  background: #fff; border: 1px solid var(--line-strong); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow-md);
  animation: uv-in 260ms var(--ease-out);
}
@keyframes uv-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.uv-found {
  display: flex; align-items: center; gap: 7px;
  background: var(--ok-tint); color: #0F7A4D;
  font-size: 12.5px; font-weight: 800; padding: 9px 15px;
  border-bottom: 1px solid #CDEFDE;
}
.uv-found-ic {
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  width: 17px; height: 17px; border-radius: 50%; background: var(--ok); color: #fff;
}
.uv-found-ic svg { width: 11px; height: 11px; }
.uv-body { padding: 14px 15px; }
.uv-top { display: flex; align-items: center; gap: 12px; }
.uv-avwrap { position: relative; flex: none; }
.uv-av, .uv-av-sm { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block; }
.uv-av { box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--line-strong); }
.uv-av-sm { width: 30px; height: 30px; }
.uv-av-fallback {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-tint); color: var(--accent); font-weight: 800; font-size: 17px;
}
.uv-avbadge {
  position: absolute; right: -2px; bottom: -2px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #3897F0; border: 2px solid #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.uv-avbadge svg { width: 9px; height: 9px; }
.uv-id { min-width: 0; flex: 1; }
.uv-name {
  display: flex; align-items: center; gap: 5px;
  font-size: 15.5px; font-weight: 800; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.uv-tick { width: 15px; height: 15px; flex: none; }
.uv-handle { font-size: 13px; color: var(--ink-faint); font-weight: 600; margin-top: 1px; }
.uv-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 13px; padding-top: 13px; border-top: 1px solid var(--line); text-align: center;
}
.uv-stat { position: relative; }
.uv-stat + .uv-stat::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--line);
}
.uv-stat b { display: block; font-size: 16px; font-weight: 800; color: var(--ink); }
.uv-stat span { font-size: 11.5px; color: var(--ink-faint); font-weight: 600; }

/* ---- order flow: post-picker modal ---- */
.om-overlay {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(12, 22, 38, 0.5);
  display: flex; align-items: center; justify-content: center; padding: 18px;
  opacity: 0; pointer-events: none; transition: opacity 220ms ease;
}
.om-overlay.open { opacity: 1; pointer-events: auto; }
.om-dialog {
  position: relative; width: min(560px, 100%); max-height: min(88vh, 760px);
  background: #fff; border-radius: 16px; box-shadow: 0 30px 80px -20px rgba(12, 22, 38, 0.45);
  display: flex; flex-direction: column; overflow: hidden;
  transform: scale(0.96); opacity: 0; transition: transform 220ms var(--ease-out), opacity 200ms ease;
}
.om-overlay.open .om-dialog { transform: scale(1); opacity: 1; }
.om-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 9px; border: 1px solid var(--line-strong);
  background: #fff; color: var(--ink); font-size: 20px; line-height: 1; cursor: pointer;
  transition: transform 140ms ease;
}
.om-close:active { transform: scale(0.94); }
.om-body { display: flex; flex-direction: column; min-height: 0; flex: 1; }
.om-head { padding: 20px 22px 12px; flex: none; }
.om-scroll { flex: 1; min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 0 22px 8px; }
.om-foot { flex: none; padding: 12px 22px 18px; border-top: 1px solid var(--line); background: #fff; }
.om-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.om-sum { font-size: 19px; font-weight: 800; margin: 4px 0 12px; padding-right: 44px; font-family: var(--font-display); }
.om-acct {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 12px; font-size: 13px; color: var(--ink-muted); font-weight: 600;
}
.om-acct-av { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex: none; }
.om-acct-tx b { color: var(--ink); }
.om-hint { font-size: 13.5px; color: var(--ink-muted); font-weight: 500; margin: 12px 0; }
.om-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.om-loading, .om-empty {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 34px 12px; font-size: 13.5px; color: var(--ink-muted); font-weight: 600; text-align: center;
}
.om-post {
  position: relative; aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  border: 2px solid var(--line); background: var(--surface-2); cursor: pointer; padding: 0;
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}
.om-post:hover { border-color: var(--line-strong); }
.om-post:active { transform: scale(0.96); }
.om-post img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 200ms ease; }
.om-post.sel img { transform: scale(1.04); }
.om-post-noimg img { display: none; }
.om-post-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff; font-size: 10.5px; font-weight: 700; padding: 16px 8px 6px; text-align: left;
}
.om-post-check {
  position: absolute; top: 7px; right: 7px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.55); backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255, 255, 255, 0.9); color: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}
.om-post.sel { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow-md); }
.om-post.sel .om-post-check { background: var(--accent); border-color: #fff; color: #fff; transform: scale(1.08); }
.om-post.sel::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: inset 0 0 0 100px rgba(238, 29, 82, 0.10); pointer-events: none;
}
.om-split {
  font-size: 13px; font-weight: 700; color: #0F7A4D; text-align: center;
  background: var(--ok-tint); border-radius: 9px; padding: 9px 13px; margin-bottom: 12px;
}
.om-split-cap { color: #8A5A00; background: #FFF6E5; }
.om-confirm { width: 100%; height: 50px; font-size: 16px; }
.om-safe { font-size: 12px; color: var(--ink-faint); font-weight: 500; text-align: center; margin-top: 10px; }

/* Bottom-sheet on mobile — CTA always pinned, grid drops to 3-up */
@media (max-width: 560px) {
  .om-overlay { padding: 0; align-items: flex-end; }
  .om-dialog {
    width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0;
    transform: translateY(100%); opacity: 1;
    transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  }
  .om-overlay.open .om-dialog { transform: translateY(0); }
  .om-dialog::before {
    content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 38px; height: 4px; border-radius: 4px; background: var(--line-strong); z-index: 3;
  }
  .om-head { padding: 22px 18px 12px; }
  .om-scroll { padding: 0 18px 8px; }
  .om-foot { padding: 12px 18px calc(16px + env(safe-area-inset-bottom)); }
  .om-close { top: 16px; right: 16px; }
  .om-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ---- order modal: username step ---- */
.om-label { display: block; font-weight: 600; font-size: 14px; margin: 14px 0 8px; }
.om-userwrap {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface);
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.om-userwrap:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-ring); }
.om-at {
  padding: 0 4px 0 14px; font-weight: 700; font-size: 16px; color: var(--ink-faint);
}
.om-userwrap input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: none;
  height: 50px; font-size: 16px; font-family: var(--font-body); color: var(--ink);
  padding-right: 14px;
}
.om-uv { margin-top: 12px; min-height: 8px; }
.om-back {
  background: none; border: 0; padding: 0; margin: 0 0 10px; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--accent);
}
.om-back:hover { text-decoration: underline; }
