/* Skyyber Entertainment - Phase 1 temporary visual system.
   Restrained dark entertainment-industry palette. Replace tokens when real
   brand assets exist; nothing below hard-codes a brand image. */

:root {
  /* Page sits deeper than the cards so panels read as raised, and the step
     between them is wide enough to see. The earlier values differed by only
     a few percent lightness, which left every card edge a guess. */
  --bg:        #08090D;
  --surface:   #1A202B;
  --surface-2: #232A38;
  --border:    #333C4D;
  --border-lt: #43506A;
  --text:      #E9ECF3;
  --muted:     #98A1B3;
  --faint:     #6B7488;
  --accent:    #7C5CFF;
  --accent-dk: #6547E8;
  --accent-sf: rgba(124,92,255,.14);
  --ok:        #2FBF71;
  --ok-sf:     rgba(47,191,113,.14);
  --warn:      #E8A33D;
  --warn-sf:   rgba(232,163,61,.14);
  --bad:       #E05561;
  --bad-sf:    rgba(224,85,97,.14);
  --radius:    12px;
  --radius-sm: 8px;
  --tap:       44px;
  --shadow:    0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.24);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font); font-size: 16px; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { margin: 0 0 .5rem; line-height: 1.25; letter-spacing: -.02em; font-weight: 650; }
h1 { font-size: 1.5rem; }
h2 { font-size: 1.15rem; }
h3 { font-size: 1rem; }
p { margin: 0 0 .75rem; }
hr { border: 0; border-top: 1px solid var(--border); margin: 1.25rem 0; }

/* ---------- Layout ---------- */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1rem 5rem; }
.topbar {
  position: sticky; top: 0; z-index: 40; background: rgba(8,9,13,.93);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-in {
  max-width: 1080px; margin: 0 auto; padding: .6rem 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.brand { display: flex; align-items: center; gap: .55rem; font-weight: 700; letter-spacing: -.02em; color: var(--text); }
.brand:hover { text-decoration: none; }
/* The logo artwork ships on a solid black field. `screen` blending makes that
   black read as transparent against the dark UI, so no alpha editing is needed.
   Safe because this interface is dark-only. */
.brand-mark {
  height: 30px; width: auto; flex: 0 0 auto; display: block;
  mix-blend-mode: screen;
}
.auth-logo {
  display: block; width: 168px; max-width: 55%; height: auto;
  margin: 0 auto .45rem; mix-blend-mode: screen;
}
.brand-sub { color: var(--faint); font-weight: 500; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.topbar-spacer { margin-left: auto; }
.mg-wordmark {
  font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
  background: linear-gradient(90deg, var(--text), #FF4FA3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mg-wordmark:hover { text-decoration: none; }

nav.mainnav {
  border-bottom: 1px solid var(--border); background: var(--bg);
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
nav.mainnav::-webkit-scrollbar { display: none; }
nav.mainnav ul {
  display: flex; gap: .25rem; list-style: none; margin: 0 auto; padding: 0 .6rem;
  max-width: 1080px;
}
nav.mainnav a {
  display: block; padding: .7rem .7rem; color: var(--muted); font-size: .9rem;
  font-weight: 550; white-space: nowrap; border-bottom: 2px solid transparent;
  min-height: var(--tap); line-height: 1.7;
}
nav.mainnav a:hover { color: var(--text); text-decoration: none; }
nav.mainnav a.on { color: var(--text); border-bottom-color: var(--accent); }
.navcount {
  display: inline-block; min-width: 18px; padding: 0 5px; margin-left: 2px;
  border-radius: 100px; background: var(--accent); color: #fff;
  font-size: .7rem; font-weight: 700; text-align: center; line-height: 18px;
  vertical-align: middle;
}

.page-head {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-start;
  justify-content: space-between; margin: 1.25rem 0 1rem;
}
.page-head p { color: var(--muted); font-size: .9rem; margin: .15rem 0 0; }

/* Section labels on the talent dashboard. Set apart from the white body text
   so the eye can find the boundaries between groups at a glance. */
.section-head {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.6rem 0 .6rem;
  padding-top: .7rem;
  border-top: 1px solid var(--border);
}
.section-head:first-of-type { margin-top: 1rem; }

/* ---------- Cards & grids ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; margin-bottom: .85rem;
}
.card-tight { padding: .8rem; }
.card h2, .card h3 { margin-bottom: .35rem; }
.grid { display: grid; gap: .85rem; grid-template-columns: 1fr; }
/* Stat rows stay two-up on phones rather than becoming a tall stack. */
@media (max-width: 719px) { .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem; }
.stat .n { font-size: 1.75rem; font-weight: 700; letter-spacing: -.03em; display: block; }
.stat .l { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.stat.alert .n { color: var(--warn); }

/* ---------- Opportunity cards ---------- */
.opp { display: block; color: inherit; }
.opp:hover { text-decoration: none; border-color: var(--border-lt); }
.opp-title { font-size: 1.05rem; font-weight: 650; letter-spacing: -.01em; }
.opp-meta { display: flex; flex-wrap: wrap; gap: .35rem .9rem; color: var(--muted); font-size: .875rem; margin-top: .4rem; }
.opp-meta span { display: inline-flex; align-items: center; gap: .3rem; }
.opp-pay { color: var(--ok); font-weight: 600; }
.deadline { color: var(--warn); font-size: .82rem; }
.deadline.past { color: var(--bad); }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; padding: .18rem .5rem; border-radius: 100px;
  font-size: .72rem; font-weight: 650; letter-spacing: .03em; text-transform: uppercase;
  border: 1px solid var(--border-lt); color: var(--muted); background: var(--surface-2);
  white-space: nowrap;
}
.badge.ok      { color: var(--ok);     background: var(--ok-sf);     border-color: transparent; }
.badge.warn    { color: var(--warn);   background: var(--warn-sf);   border-color: transparent; }
.badge.bad     { color: var(--bad);    background: var(--bad-sf);    border-color: transparent; }
.badge.accent  { color: var(--accent); background: var(--accent-sf); border-color: transparent; }
.badge-row { display: flex; flex-wrap: wrap; gap: .3rem; }
.tag {
  display: inline-block; padding: .15rem .45rem; border-radius: 5px; font-size: .74rem;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: var(--tap); padding: .6rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border-lt); background: var(--surface-2); color: var(--text);
  font: inherit; font-size: .92rem; font-weight: 600; cursor: pointer; text-align: center;
}
.btn:hover { text-decoration: none; border-color: var(--faint); }
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-ok   { background: var(--ok);  border-color: var(--ok);  color: #06240f; }
.btn-bad  { background: transparent; border-color: var(--bad); color: var(--bad); }
.btn-ghost { background: transparent; }
.btn-sm { min-height: 36px; padding: .3rem .65rem; font-size: .82rem; }
.btn-block { width: 100%; }
.btn:disabled, .btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.btn-row form { margin: 0; }

/* Response actions: full width and thumb-friendly on phones. */
.respond { display: grid; gap: .55rem; grid-template-columns: 1fr; }
.respond .btn { min-height: 52px; font-size: 1rem; }
@media (min-width: 620px) { .respond { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Forms ---------- */
form { margin: 0 0 .5rem; }
.field { margin-bottom: .85rem; }
.field label, .lbl {
  display: block; font-size: .82rem; font-weight: 600; color: var(--muted);
  margin-bottom: .3rem; letter-spacing: .01em;
}
.field .hint { font-size: .78rem; color: var(--faint); margin-top: .25rem; }
input[type=text], input[type=email], input[type=password], input[type=tel],
input[type=date], input[type=time], input[type=number], input[type=url], select, textarea {
  width: 100%; min-height: var(--tap); padding: .55rem .65rem; font: inherit; font-size: 16px;
  color: var(--text); background: var(--surface-2); border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm); appearance: none;
}
textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
select { background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
                           linear-gradient(135deg, var(--muted) 50%, transparent 50%);
         background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
         background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2rem; }
input:focus, select:focus, textarea:focus, .btn:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent);
}
.check { display: flex; align-items: flex-start; gap: .55rem; padding: .5rem 0; min-height: var(--tap); }
.check input[type=checkbox], .check input[type=radio] { width: 20px; height: 20px; margin-top: .15rem; flex: 0 0 20px; accent-color: var(--accent); }
.check label { margin: 0; font-size: .92rem; color: var(--text); font-weight: 500; }
.check .hint { color: var(--faint); font-size: .8rem; display: block; margin-top: .15rem; font-weight: 400; }
.form-grid { display: grid; gap: 0 .85rem; grid-template-columns: 1fr; }
.form-grid > * { min-width: 0; }
@media (min-width: 620px) { .form-grid.two { grid-template-columns: 1fr 1fr; } }
fieldset { border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem; margin: 0 0 .85rem; min-width: 0; }
legend { padding: 0 .4rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); font-weight: 700; }

/* A bare wrapper fieldset (#gated-fields) has no legend/border of its own -
   it exists only to disable everything inside until the liability checkbox
   above it is checked. Dimmed rather than hidden, so it's obvious there's
   more form below once the gate clears. */
fieldset#gated-fields { border: 0; padding: 0; margin: 0; transition: opacity .15s ease; }
fieldset#gated-fields:disabled { opacity: .4; }
.liability-gate { border-color: var(--warn); }
/* The canonical liability clause, shown in full (not just linked) since the
   checkbox below claims the reader has seen it - set apart from the rest of
   the gate's softer "who we are" copy so it reads as the formal part. */
.liability-clause {
  background: var(--bg); border: 1px solid var(--warn); border-radius: var(--radius-sm);
  padding: .85rem .95rem; margin: .85rem 0;
}
.liability-clause h4 {
  margin: 0 0 .4rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--warn); font-weight: 700;
}
.liability-clause p { margin: 0; font-size: .92rem; line-height: 1.6; }
.liability-clause p + p { margin-top: .7rem; }
/* Side-by-side variant (see /book): who-we-are on the left, the liability
   clause on the right, in the same box - two columns once there's room,
   stacked on phones like everything else in this system. */
.gate-split { display: grid; gap: 1rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 720px) { .gate-split { grid-template-columns: 1fr 1fr; } }
.gate-split .liability-clause { margin: 0; height: 100%; }
.gate-who p:last-child { margin-bottom: 0; }
.gate-label {
  font-weight: 700; color: var(--warn); margin-bottom: .25rem !important;
  font-size: .95rem;
}
/* Checked-and-locked: still a real, submitted form value - just no longer
   clickable, so it can't be silently unchecked after the rest of the form
   unlocks. */
.check input.locked { pointer-events: none; opacity: .7; }
.filters { display: grid; gap: .5rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .filters { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .filters { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Notices ---------- */
.notice {
  padding: .7rem .85rem; border-radius: var(--radius-sm); margin-bottom: .85rem;
  font-size: .9rem; border: 1px solid transparent;
}
.notice.info { background: var(--accent-sf); color: #C3B6FF; border-color: rgba(124,92,255,.3); }
.notice.good { background: var(--ok-sf);     color: #86E3AE; border-color: rgba(47,191,113,.3); }
.notice.err  { background: var(--bad-sf);    color: #F09AA2; border-color: rgba(224,85,97,.35); }
.notice.warn { background: var(--warn-sf);   color: #F0C687; border-color: rgba(232,163,61,.3); }
.notice ul { margin: .35rem 0 0; padding-left: 1.1rem; }

.empty {
  text-align: center; padding: 2rem 1rem; color: var(--muted);
  border: 1px dashed var(--border-lt); border-radius: var(--radius); background: var(--surface);
}
.empty .big { font-size: 1.6rem; display: block; margin-bottom: .4rem; opacity: .6; }
.empty p { margin: 0 0 .75rem; font-size: .92rem; }

/* ---------- Tables / lists ---------- */
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { text-align: left; padding: .6rem .5rem; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--faint); font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; font-weight: 700; }
tr:last-child td { border-bottom: 0; }

@media (max-width: 719px) {
  table.stacked thead { position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  table.stacked tr {
    display: block; border: 1px solid var(--border); border-radius: var(--radius);
    padding: .7rem; margin-bottom: .6rem; background: var(--surface-2);
  }
  table.stacked td { display: block; border: 0; padding: .2rem 0; text-align: left; }
  table.stacked td[data-label="Note"]:not(:empty)::before,
  table.stacked td[data-label="Contact"]::before {
    content: attr(data-label); display: block; color: var(--faint);
    font-size: .7rem; text-transform: uppercase; letter-spacing: .05em;
    font-weight: 700; margin-top: .4rem;
  }
  table.stacked td[data-label="Actions"] .btn-row { justify-content: flex-start; }
  table.stacked td[data-label="Actions"] { margin-top: .5rem; }
  table.stacked td[data-label="Actions"] .btn { flex: 1 1 auto; }
  table.stacked td:empty { display: none; }
}
/* Keep a placeholder dash in the wide table so columns still read as a grid. */
@media (min-width: 720px) {
  table.stacked td[data-label="Note"]:empty::after { content: "—"; color: var(--faint); }
}

.rowlist { list-style: none; margin: 0; padding: 0; }
.rowlist li {
  display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
  padding: .7rem 0; border-bottom: 1px solid var(--border);
}
.rowlist li:last-child { border-bottom: 0; }
.rowlist .grow { flex: 1 1 200px; min-width: 0; }
.rowlist .nm { font-weight: 600; }
.rowlist .sub { color: var(--muted); font-size: .82rem; }

.person { display: flex; align-items: center; gap: .6rem; min-width: 0; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; flex: 0 0 36px; object-fit: cover;
  background: var(--surface-2); border: 1px solid var(--border-lt);
  display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: var(--muted);
}

details { border: 1px solid var(--border); border-radius: var(--radius-sm);
          padding: .6rem .8rem; background: var(--surface-2); }
details + details { margin-top: .5rem; }
details summary { cursor: pointer; color: var(--text); }
details[open] summary { margin-bottom: .35rem; }
details ol { margin: .4rem 0 .4rem 1.1rem; padding: 0; }
details ol li { margin-bottom: .3rem; }

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.small { font-size: .84rem; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82rem; word-break: break-all; }
.nowrap { white-space: nowrap; }
.mt { margin-top: 1rem; }
.mb0 { margin-bottom: 0; }
.right { text-align: right; }
.copybox {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .6rem; white-space: pre-wrap; word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .8rem; color: var(--muted);
  max-height: 240px; overflow: auto;
}
.footer { color: var(--faint); font-size: .78rem; text-align: center; padding: 2rem 1rem 1rem; }

/* ---------- Auth screens ---------- */
.auth { max-width: 400px; margin: 3rem auto; padding: 0 1rem; }
/* A handful of public forms (e.g. /book, once its liability gate went to a
   side-by-side layout) need more than the standard 400px card - same
   auth-page look, just roomier. */
.auth.wide { max-width: 760px; font-family: "Plus Jakarta Sans", var(--font); }
.auth.wide .auth-brand h1, .auth.wide h3, .auth.wide h4 {
  font-family: "Unbounded", var(--font);
}
.auth.wide .auth-brand h1 { letter-spacing: -.02em; }
.auth .card { padding: 1.5rem; }
.auth-brand { text-align: center; margin-bottom: 1.5rem; }
.auth-brand h1 { font-size: 1.3rem; margin: 0 0 .15rem; }
.auth-brand p { color: var(--muted); font-size: .88rem; margin: 0; }

/* ---------- My Gigs landing page ---------- */
/* My Gigs gets its own accent palette layered on top of the shared tokens -
   a landing page selling a product needs more color variety than an internal
   dashboard, without redefining what --accent means everywhere else. */
.mg-page, .landing-page {
  --mg-pink: #FF4FA3; --mg-pink-sf: rgba(255,79,163,.14);
  --mg-orange: #FF9142; --mg-orange-sf: rgba(255,145,66,.14);
  --mg-blue: #3EC6FF; --mg-blue-sf: rgba(62,198,255,.14);
  --font-display: "Unbounded", var(--font);
  font-family: "Plus Jakarta Sans", var(--font);
  margin: 0 -1rem; padding: 0 1rem; overflow: hidden;
}
/* A bolder, less "default AI dashboard" display face for the standalone
   landing pages' headlines - the wordmark lives outside .mg-page/.landing-page
   (it's in the topbar) so it gets the variable declared again here. */
.mg-wordmark {
  font-family: "Unbounded", var(--font);
}
.landing-hero h1, .landing-section h2, .hero-title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
}
.landing-eyebrow { font-family: var(--font-display); font-weight: 500; }

/* Standalone page-top headline for pages that don't use the split
   .landing-hero layout (e.g. the homepage's centered intro) - same weight
   and family as .landing-hero h1, but sized up a step since it's the very
   first thing on the page. */
.hero-title {
  font-size: 2.3rem; line-height: 1.12; letter-spacing: -.02em; max-width: 760px;
  margin: 0 auto 1rem;
}
@media (min-width: 620px) { .hero-title { font-size: 3rem; } }

.landing-hero {
  display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: center;
  padding: 1.5rem 0 2.5rem; position: relative;
}
.landing-hero::before {
  content: ""; position: absolute; top: -140px; right: -160px; width: 480px; height: 480px;
  background: radial-gradient(closest-side, var(--accent-sf), transparent);
  z-index: -1; pointer-events: none;
}
@media (min-width: 860px) {
  .landing-hero { grid-template-columns: 1.05fr .95fr; padding: 3rem 0 3.5rem; gap: 2.5rem; }
  .landing-hero-copy { order: 1; }
  .landing-hero-art { order: 2; }
}
.landing-hero-copy { text-align: left; }
.landing-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem; color: var(--accent);
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1.1rem;
}
.landing-eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--mg-pink);
  box-shadow: 0 0 0 4px var(--mg-pink-sf);
}
.landing-hero h1 {
  font-size: 2.1rem; line-height: 1.15; letter-spacing: -.01em; max-width: 620px;
  margin: 0 0 1.1rem;
}
.landing-promise {
  font-size: 1.2rem; font-weight: 650; letter-spacing: .01em; max-width: 520px;
  margin: 0 0 1.15rem;
  background: linear-gradient(90deg, var(--text), var(--accent) 60%, var(--mg-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.landing-hero p.lead { color: var(--muted); max-width: 540px; margin: 0 0 1.75rem; font-size: 1.1rem; line-height: 1.65; }
@media (min-width: 620px) { .landing-hero h1 { font-size: 2.6rem; } }

.landing-hero-art { position: relative; }
.landing-hero-art .frame {
  position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--border-lt);
  box-shadow: var(--shadow); aspect-ratio: 4 / 5; max-width: 420px; margin: 0 auto;
}
.landing-hero-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.landing-hero-art .frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,9,13,.75));
}
.landing-hero-art .glow {
  position: absolute; width: 220px; height: 220px; border-radius: 50%; z-index: -1;
  filter: blur(10px); opacity: .55;
}
.landing-hero-art .glow.a { background: var(--accent-sf); top: -30px; left: -40px; }
.landing-hero-art .glow.b { background: var(--mg-pink-sf); bottom: -30px; right: -30px; }
.landing-hero-art .caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; color: #fff;
  font-size: .82rem; font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.landing-cta-row {
  display: flex; flex-direction: column; gap: .65rem; max-width: 380px;
}
@media (min-width: 480px) {
  .landing-cta-row { flex-direction: row; max-width: none; }
  .landing-cta-row .btn { flex: 0 1 260px; }
}
.landing-cta-row .btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--mg-pink));
  border-color: transparent;
}

.landing-section { margin: 3.5rem 0; }
.landing-section h2 {
  font-size: 1.85rem; max-width: 720px; margin: 0 0 .5rem; letter-spacing: -.01em;
}
@media (min-width: 620px) { .landing-section h2 { font-size: 2.1rem; } }
/* Keeps a heading on one line once there's room, instead of wrapping
   awkwardly right at the point the text would otherwise fit - never forced
   on narrow phones, where wrapping is the safer choice. */
@media (min-width: 620px) { h2.one-line { white-space: nowrap; } }
.landing-section > p.lead {
  color: var(--muted); max-width: 620px; margin: 0 0 1.75rem; font-size: 1.1rem;
  line-height: 1.65;
}
.landing-section.center { text-align: center; }
.landing-section.center h2, .landing-section.center > p.lead { margin-left: auto; margin-right: auto; }

.feature-grid { display: grid; gap: .85rem; grid-template-columns: 1fr; margin: 1.75rem 0; }
@media (min-width: 620px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
.feature-chip {
  display: flex; align-items: flex-start; gap: .75rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem;
  transition: border-color .15s ease;
}
.feature-chip .ico {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; font-weight: 700; font-size: .95rem;
}
.feature-chip:nth-of-type(6n+1) .ico { background: var(--accent-sf); color: var(--accent); }
.feature-chip:nth-of-type(6n+2) .ico { background: var(--mg-pink-sf); color: var(--mg-pink); }
.feature-chip:nth-of-type(6n+3) .ico { background: var(--mg-orange-sf); color: var(--mg-orange); }
.feature-chip:nth-of-type(6n+4) .ico { background: var(--mg-blue-sf); color: var(--mg-blue); }
.feature-chip:nth-of-type(6n+5) .ico { background: var(--ok-sf); color: var(--ok); }
.feature-chip:nth-of-type(6n+6) .ico { background: var(--accent-sf); color: var(--accent); }
.feature-chip strong { display: block; font-size: .96rem; }
.feature-chip span.d { color: var(--muted); font-size: .84rem; }

/* Soft-white variant for a chip grid sitting on a dark page - a light card
   for contrast, with its own text colors since the default light/muted text
   is tuned for a dark background and would wash out on white. */
.feature-chip.on-light {
  background: #F4F4F7; border-color: #F4F4F7;
}
.feature-chip.on-light strong { color: #14151A; }
.feature-chip.on-light span.d { color: #53565F; }

/* Phone mockups: illustrative, built from the same tokens as the real app so
   they read as "this app" rather than generic stock UI. */
.phone-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr; justify-items: center;
}
@media (min-width: 620px) { .phone-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .phone-grid { grid-template-columns: repeat(3, 1fr); } }
.phone-block { text-align: center; max-width: 260px; }
.phone-block h3 { margin: .9rem 0 .25rem; font-size: .98rem; }
.phone-block p { color: var(--muted); font-size: .84rem; margin: 0; }
.phone-block { position: relative; }
.phone-block::before {
  content: ""; position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%; filter: blur(28px); opacity: .5; z-index: -1;
}
.phone-block:nth-of-type(5n+1)::before { background: var(--accent-sf); }
.phone-block:nth-of-type(5n+2)::before { background: var(--mg-pink-sf); }
.phone-block:nth-of-type(5n+3)::before { background: var(--mg-orange-sf); }
.phone-block:nth-of-type(5n+4)::before { background: var(--mg-blue-sf); }
.phone-block:nth-of-type(5n+5)::before { background: var(--ok-sf); }
.phone {
  width: 230px; height: 468px; margin: 0 auto; border-radius: 34px;
  background: #050609; border: 1px solid var(--border-lt); padding: 10px;
  box-shadow: var(--shadow); position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 16px; background: #050609; border-radius: 0 0 10px 10px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; background: var(--bg); border-radius: 26px; overflow: hidden;
  padding: 1.4rem .7rem .7rem; display: flex; flex-direction: column; gap: .4rem;
  text-align: left;
}
.phone-screen .ps-title { font-size: .68rem; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .15rem; }
.phone-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: .5rem .6rem; font-size: .72rem;
}
.phone-card .t { font-weight: 650; color: var(--text); font-size: .76rem; }
.phone-card .s { color: var(--muted); font-size: .68rem; margin-top: .1rem; }
.phone-card .row { display: flex; justify-content: space-between; align-items: center; margin-top: .3rem; }
.phone-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.phone-stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: .4rem .5rem;
}
.phone-stat .n { font-size: .95rem; font-weight: 700; display: block; color: var(--accent); }
.phone-stat .l { font-size: .6rem; color: var(--faint); text-transform: uppercase; letter-spacing: .04em; }
.phone-btn {
  background: var(--accent); color: #fff; border-radius: 8px; font-size: .7rem;
  font-weight: 650; text-align: center; padding: .4rem; margin-top: auto;
}
.phone-btn.ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border-lt); }
.phone-soon {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .4rem; text-align: center; color: var(--faint);
}
.phone-soon .big { font-size: 1.6rem; opacity: .7; }
.phone-soon .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }

/* "Document" mockups: same idea as .phone-grid (a stylized preview, not a
   real screenshot - nothing has shipped yet), but shaped like a sheet of
   paper for template products instead of an app screen. */
.doc-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr; justify-items: center;
}
@media (min-width: 620px) { .doc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .doc-grid { grid-template-columns: repeat(4, 1fr); } }
.doc-block { text-align: center; max-width: 230px; position: relative; }
.doc-block h3 { margin: .9rem 0 .25rem; font-size: .92rem; }
.doc-block p { color: var(--muted); font-size: .82rem; margin: 0; }
.doc-block::before {
  content: ""; position: absolute; top: 30px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 180px; border-radius: 50%; filter: blur(28px); opacity: .5; z-index: -1;
}
.doc-block:nth-of-type(4n+1)::before { background: var(--accent-sf); }
.doc-block:nth-of-type(4n+2)::before { background: var(--mg-pink-sf); }
.doc-block:nth-of-type(4n+3)::before { background: var(--mg-orange-sf); }
.doc-block:nth-of-type(4n+4)::before { background: var(--mg-blue-sf); }
/* The bezel makes a "doc" mockup read as a photo of someone's tablet screen
   rather than a bare card - a photo up top, the template content below,
   like an app that opens on a cover image. */
.tablet-frame {
  width: 210px; margin: 0 auto; border-radius: 18px; background: #050609;
  border: 1px solid var(--border-lt); padding: 8px; box-shadow: var(--shadow);
}
.tablet-photo {
  width: 100%; height: 84px; object-fit: cover; display: block;
  border-radius: 11px 11px 0 0;
}
.doc {
  width: 100%; min-height: 210px; margin: 0; border-radius: 0 0 11px 11px;
  background: var(--surface); border: none; border-top: 1px solid var(--border);
  box-shadow: none; padding: .85rem .8rem; text-align: left;
  display: flex; flex-direction: column; gap: .4rem;
}
.doc-head {
  font-size: .68rem; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: .06em; margin: 0 0 .1rem;
  padding-bottom: .4rem; border-bottom: 1px solid var(--border);
}
.doc-line { height: 6px; border-radius: 3px; background: var(--border-lt); }
.doc-line.w60 { width: 60%; } .doc-line.w80 { width: 80%; } .doc-line.w40 { width: 40%; }
.doc-row { display: flex; justify-content: space-between; align-items: center; font-size: .68rem; color: var(--muted); }
.doc-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: .5rem; border-top: 1px dashed var(--border);
  font-size: .78rem; font-weight: 700; color: var(--accent);
}
.doc-check { display: flex; align-items: center; gap: .4rem; font-size: .68rem; color: var(--muted); }
.doc-check .box {
  width: 12px; height: 12px; border-radius: 4px; flex: 0 0 auto;
  background: var(--ok-sf); color: var(--ok); display: flex; align-items: center;
  justify-content: center; font-size: .58rem; font-weight: 800;
}

/* Real photography for landing pages: a small grid of licensed stock shots,
   and a full-bleed banner for a quote/callout over an image. */
.landing-photo-strip {
  display: grid; gap: .8rem; grid-template-columns: repeat(4, 1fr); margin: 1.75rem 0;
}
@media (max-width: 700px) { .landing-photo-strip { grid-template-columns: 1fr 1fr; } }
.landing-photo-strip img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
  border-radius: var(--radius); border: 1px solid var(--border-lt);
}

.landing-banner {
  position: relative; margin: 3.5rem -1rem; padding: 3.5rem 1.25rem;
  min-height: 220px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.landing-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,13,.55), rgba(8,9,13,.88));
}
.landing-banner .landing-callout {
  position: relative; z-index: 1; background: none; border: none; padding: 0;
}

/* A full-bleed section break: a line, then a visibly different (lighter)
   dark-gray field for everything below it, instead of one flat black page. */
.landing-band {
  margin: 3.5rem -1rem 0; padding: 3rem 1.25rem 3.5rem;
  background: #262E3D; border-top: 1px solid var(--border-lt);
}
.landing-band .landing-section { margin: 0 0 3rem; }
.landing-band .landing-section:last-child { margin-bottom: 0; }
.landing-band .card { background: #2E3648; }

/* Booking Kit teaser on the homepage: mockup "screenshots" on one side,
   the enticing copy + signup form on the other - same idea as
   .landing-hero, but built from .doc-block previews instead of a photo. */
/* Full-width intro row: logo beside "The Business of Being a DJ" (same
   look as other .landing-section h2 headings) with the "Coming Soon" tag
   underneath it - logo sized to roughly match that two-line block. */
.kit-header {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  text-align: center; margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .kit-header { flex-direction: row; align-items: flex-start; text-align: left; } }
.kit-header-text h2 {
  margin: 0 0 .6rem; font-size: 2.1rem; letter-spacing: .02em;
}
@media (min-width: 620px) { .kit-header-text h2 { font-size: 2.6rem; } }
@media (min-width: 720px) {
  .kit-header-text { text-align: left; flex: 1; }
  .kit-header-text h2 { max-width: none; }
}
@media (min-width: 1000px) { .kit-header-text h2 { font-size: 3rem; } }

/* Copy (heading + paragraph) on the left, the two mockups on the right. */
.kit-teaser { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .kit-teaser { grid-template-columns: 1.05fr .95fr; gap: 2.5rem; } }
.kit-docs {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr; justify-items: center;
}
@media (min-width: 480px) { .kit-docs { grid-template-columns: repeat(2, 1fr); } }
.kit-copy { text-align: center; }
.kit-subheading {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em;
  font-size: 1.5rem; margin: 0 0 .75rem;
}
@media (min-width: 620px) { .kit-subheading { font-size: 1.8rem; } }
.kit-star { color: var(--mg-pink); }
@media (min-width: 860px) {
  .kit-copy { text-align: left; }
  .kit-copy .lead { margin-left: 0; line-height: 2.9; font-size: 1.05rem; }
  .kit-subheading { margin-bottom: 1.25rem; }
}

/* Pricing and the signup form each get their own centered row below. */
.kit-pricing-row, .kit-signup-row { text-align: center; margin-top: 2.5rem; }
.kit-signup-card { max-width: 440px; margin: 0 auto; }
.btn-lg { min-height: 56px; padding: .9rem 1.5rem; font-size: 1.05rem; }

.pricing-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.5rem 0; }
@media (min-width: 720px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
/* A grid built for exactly 2 cards (no third column to leave hanging). */
.price-card .label.product { text-transform: none; letter-spacing: 0; font-size: .95rem; }
.pricing-grid.compact { max-width: 400px; gap: .7rem; }
.pricing-grid.compact .price-card { padding: .7rem .6rem; }
.pricing-grid.compact .amount { font-size: 1.15rem; }
.pricing-grid.compact .note { font-size: .74rem; margin: .3rem 0 .6rem; }
.pricing-grid.compact .label.product { font-size: .82rem; }
/* One dominant price with a smaller one beside it. */
.pricing-grid.price-lead { max-width: 820px; margin: 1.5rem auto; align-items: center; }
@media (min-width: 720px) { .pricing-grid.price-lead { grid-template-columns: 1.7fr 1fr; } }
.pricing-grid.price-lead .featured { padding: 2.25rem 1.5rem; transform: none; }
.pricing-grid.price-lead .featured .amount { font-size: 4rem; }
.pricing-grid.price-lead .featured .per { font-size: 1.05rem; }
.pricing-grid.price-lead .featured .note { font-size: .95rem; }
.pricing-grid.price-lead .price-card:not(.featured) { padding: 1rem .9rem; }
.pricing-grid.price-lead .price-card:not(.featured) .amount { font-size: 1.5rem; }
.pricing-grid.cols-2 { max-width: 640px; margin: 1.5rem auto; }
@media (min-width: 620px) { .pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .pricing-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1rem; text-align: center; display: flex; flex-direction: column;
}
.price-card.featured {
  border-color: transparent; position: relative;
  background: linear-gradient(160deg, var(--surface), var(--surface) 60%, var(--accent-sf));
  box-shadow: 0 0 0 1px var(--accent), 0 0 32px -8px rgba(124,92,255,.55), var(--shadow);
  transform: scale(1.02);
}
.price-card .flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--mg-pink)); color: #fff;
  font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; padding: .25rem .7rem; border-radius: 100px;
  white-space: nowrap;
}
.price-card .label { font-size: .8rem; color: var(--muted); font-weight: 650;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
.price-card .amount {
  font-size: 2rem; font-weight: 750; letter-spacing: -.03em;
}
.price-card.featured .amount {
  background: linear-gradient(90deg, var(--text), var(--mg-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card .per { font-size: .85rem; color: var(--muted); font-weight: 500; }
.price-card .note { color: var(--muted); font-size: .82rem; margin: .5rem 0 1rem; flex: 1; }

/* Two side-by-side audience panels on the main public landing page (/) - one
   for DJs, one for event producers/venues/brands/promoters. Each is a
   self-contained card: photo, headline, copy, one CTA. */
.split-panels {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin: 2rem 0 3.5rem;
}
@media (min-width: 860px) { .split-panels { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.split-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-lt);
  display: flex; flex-direction: column;
}
.split-panel.for-dj { box-shadow: 0 0 0 1px var(--border-lt), 0 0 44px -22px var(--accent); }
.split-panel.for-event { box-shadow: 0 0 0 1px var(--border-lt), 0 0 44px -22px var(--mg-blue); }
.split-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--surface) 100%);
}
.split-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.split-eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: .92rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .7rem; padding: .3rem .7rem; border-radius: 100px;
}
.for-dj .split-eyebrow { color: #fff; background: var(--accent); }
.for-event .split-eyebrow { color: #04222E; background: var(--mg-blue); }
.split-body h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em;
  font-size: 1.65rem; margin: 0 0 .6rem;
}
.split-body p { color: var(--muted); margin: 0 0 1.35rem; flex: 1; font-size: 1.02rem; line-height: 1.6; }
.split-body .btn { align-self: flex-start; }
.for-dj .btn-primary { background: var(--accent); border-color: var(--accent); }
.for-event .btn-primary { background: var(--mg-blue); border-color: var(--mg-blue); color: #04222E; }
.for-event .btn-primary:hover { background: #33ADE0; border-color: #33ADE0; }

/* "How the Skyyber Portal Works" - one pain-point column per audience. */
.pain-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin: 2rem 0; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
.pain-col {
  border: 1px solid var(--border-lt); border-radius: calc(var(--radius) + 6px);
  padding: 2rem 1.85rem;
}
.pain-col.for-dj {
  background: linear-gradient(165deg, var(--surface), var(--surface) 55%, var(--accent-sf));
  box-shadow: 0 0 48px -28px var(--accent);
}
.pain-col.for-event {
  background: linear-gradient(165deg, var(--surface), var(--surface) 55%, var(--mg-blue-sf));
  box-shadow: 0 0 48px -28px var(--mg-blue);
}
.pain-col .pain-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.pain-col.for-dj .pain-icon { background: var(--accent-sf); }
.pain-col.for-event .pain-icon { background: var(--mg-blue-sf); }
.pain-col h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; margin: 0 0 .9rem;
}
.pain-col p {
  font-size: 1.08rem; line-height: 1.7; color: var(--muted); margin: 0 0 1rem;
}
.pain-col p:last-child { margin-bottom: 0; }

.landing-note {
  display: inline-flex; align-items: center; gap: .4rem; color: var(--muted);
  font-size: .82rem; font-weight: 600; margin: .9rem 0 0;
}
.landing-note::before { content: "\2713"; color: var(--ok); font-weight: 800; }

.landing-callout {
  max-width: 640px; margin: 0 auto; padding: 2rem 1.5rem; text-align: center;
  border-radius: var(--radius); border: 1px solid var(--border-lt);
  background: linear-gradient(160deg, var(--surface), var(--accent-sf));
}
.landing-callout p {
  margin: 0; font-size: 1.35rem; font-weight: 700; letter-spacing: -.01em;
  line-height: 1.35;
  background: linear-gradient(90deg, var(--text), var(--accent) 65%, var(--mg-pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.landing-fineprint {
  max-width: 640px; margin: 2rem auto 0; color: var(--faint); font-size: .78rem;
  text-align: center; line-height: 1.6;
}

@media print { .topbar, nav.mainnav, .btn { display: none; } body { background: #fff; color: #000; } }

/* Portal messages (DJ Messages tab + admin Inbox) */
.msgs { display: flex; flex-direction: column; gap: .6rem; }
.msg { max-width: 85%; padding: .6rem .8rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.msg-mine { align-self: flex-end; background: var(--accent-sf); }
.msg-theirs { align-self: flex-start; }
.msg-meta { font-size: .75rem; color: var(--muted); margin-bottom: .2rem; }
.msg-body { word-wrap: break-word; }

/* The B.O.B. DJ brand mark (homepage teaser, DJ Booking Kit teaser page) -
   large and front-and-center, not a small inline icon. */
.bobdj-lockup {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) { .bobdj-lockup { align-items: flex-start; } }
.bobdj-mark {
  width: 110px; height: 110px; border-radius: 20px; display: block;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,.55);
}
@media (min-width: 480px) { .bobdj-mark { width: 140px; height: 140px; } }
.bobdj-tag {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--mg-pink);
  background: var(--mg-pink-sf); border-radius: 100px; padding: .3rem .85rem;
}
.bobdj-tag-lg { font-size: 1.1rem; padding: .5rem 1.25rem; }

/* B.O.B.DJGigs page: bigger, more stylized feature cards */
.feature-grid.big { gap: 1rem; }
.feature-grid.big .feature-chip { padding: 1.35rem 1.3rem; gap: 1rem; }
.feature-grid.big .feature-chip .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px; font-size: 1.1rem; }
.feature-grid.big .feature-chip strong {
  font-family: "Unbounded", var(--font); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -.01em; margin-bottom: .3rem;
}
.feature-grid.big .feature-chip span.d {
  font-family: "Space Grotesk", var(--font); font-size: 1.02rem; line-height: 1.45;
  color: #C3CAD8;
}

/* Hero CTA block */
.landing-release { margin: 0 0 .7rem; color: var(--muted); font-size: 1rem; }
.landing-release strong { color: #E9C46A; font-family: "Unbounded", var(--font); font-weight: 700; }
.landing-cta-row.wide { max-width: none; }
.landing-cta-row.wide .btn {
  flex: 0 1 auto; width: 100%; max-width: 460px; white-space: nowrap;
  font-weight: 800; font-size: 1rem; padding: .95rem 1.4rem;
}
.landing-checks { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .35rem; }
.landing-checks li { color: var(--muted); font-size: .9rem; font-weight: 600; }
.landing-checks li::before { content: "\2713"; color: var(--ok); font-weight: 800; margin-right: .5rem; }

/* Phone previews, styled after the app screens */
.phone {
  border-color: rgba(124,92,255,.75);
  box-shadow: 0 0 0 1px rgba(62,198,255,.2), 0 0 30px -6px rgba(124,92,255,.65), var(--shadow);
}
.bobmark { font-family: "Unbounded", var(--font); font-weight: 800; font-size: .8rem; color: #fff; letter-spacing: -.02em; }
.bobmark span { color: #E9C46A; }
.ps-h { font-family: "Unbounded", var(--font); font-weight: 800; font-size: 1.15rem; line-height: 1.1; margin: .1rem 0 .2rem; }
.ps-h span { color: #E9C46A; }
.pt-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .3rem; }
.pt { border: 1px solid; border-radius: 8px; padding: .3rem .35rem; background: rgba(255,255,255,.03); }
.pt b { display: block; font-size: 1rem; line-height: 1.1; }
.pt i { display: block; font-style: normal; font-size: .5rem; color: var(--muted); line-height: 1.15; }
.pt.blue { border-color: #3EC6FF; } .pt.gold { border-color: #E9C46A; } .pt.purple { border-color: #7C5CFF; }
.gr { display: flex; align-items: center; gap: .4rem; background: var(--surface); border: 1px solid var(--border); border-radius: 9px; padding: .35rem .4rem; }
.gd { min-width: 26px; text-align: center; font-size: .62rem; font-weight: 800; line-height: 1.1; }
.gd small { display: block; color: var(--accent); font-size: .5rem; }
.gi { flex: 1; min-width: 0; }
.gi strong { display: block; font-size: .64rem; }
.gi span { display: block; font-size: .5rem; color: var(--muted); }
.pill { font-style: normal; font-size: .48rem; font-weight: 800; text-transform: uppercase; border: 1px solid; border-radius: 100px; padding: .12rem .35rem; white-space: nowrap; }
.pill.ok { color: var(--ok); border-color: var(--ok); }
.pill.gold { color: #E9C46A; border-color: #E9C46A; }
.tabbar { margin-top: auto; display: flex; justify-content: space-around; font-size: .5rem; color: var(--faint); border-top: 1px solid var(--border); padding-top: .3rem; }
.tabbar .on { color: #E9C46A; }
.tl { font-size: .56rem; color: var(--muted); line-height: 1.5; }
.tl::before { content: "\2713"; color: var(--ok); margin-right: .3rem; font-weight: 800; }

/* B.O.B.DJGigs page refinements */
.mg-page .landing-hero { padding-bottom: 1rem; }
.mg-page .landing-hero + .landing-section { margin-top: 1.5rem; }
.landing-release {
  margin: 0 0 .8rem; font-size: 1.2rem; font-weight: 800; color: #E9C46A; letter-spacing: .01em;
}
.landing-cta-row.wide .btn {
  max-width: 620px; font-weight: 800; font-size: clamp(.95rem, 4.1vw, 1.4rem);
  padding: 1.1rem 1.6rem; letter-spacing: 0;
}
.bobmark { display: flex; align-items: center; gap: .3rem; }
.bobmark .bl { width: 18px; height: 18px; border-radius: 50%; flex: 0 0 auto; background: #05060a url(/static/img/bobdj-logo.webp) -32.6px -43.3px / 113px 113px no-repeat; }
.price-card .flag.big-flag, .pricing-grid.price-lead .flag { font-size: 1rem; padding: .5rem 1.3rem; top: -20px; letter-spacing: .04em; }
.price-card .label.product { color: #3DFF8C; font-weight: 800; }
.tier-head { font-family: "Unbounded", var(--font); font-weight: 700; font-size: 1.3rem; margin: 2.75rem 0 .5rem; }
.bobdj-tag.bobdj-tag-name { text-transform: none; letter-spacing: .01em; font-weight: 700; }
.kit-docs.phones { gap: .75rem; }

/* Homepage B.O.B.DJGigs section: bigger copy to fill the space beside the previews */
.kit-star { color: var(--accent); }
.bobdj-tag.bobdj-tag-name { font-size: 1.5rem; padding: .6rem 1.5rem; word-spacing: .5em; }
@media (max-width: 480px) { .bobdj-tag.bobdj-tag-name { font-size: 1.15rem; padding: .5rem 1rem; } }
.kit-copy .kit-subheading { font-size: 1.9rem; }
@media (min-width: 620px) { .kit-copy .kit-subheading { font-size: 2.3rem; } }
.kit-copy .lead, .kit-copy .lead.kit-firstup {
  font-size: 1.3rem; line-height: 1.7; margin-bottom: 1.6rem;
}
@media (min-width: 860px) {
  .kit-copy .lead { font-size: 1.45rem; line-height: 1.7; }
}

/* BOB the owl: the product guide, presenting the previews. Sits above the
   phones and tucks behind their tops so he reads as standing behind the app. */
.kit-stage { position: relative; }
.bob-guide { position: relative; margin: 0 auto -3.5rem; max-width: 460px; }
.bob-guide img {
  display: block; width: 100%; aspect-ratio: 16 / 11; object-fit: cover;
  object-position: 42% 25%; border-radius: 22px; border: 1px solid var(--border-lt);
  box-shadow: 0 0 40px -8px rgba(124,92,255,.55), var(--shadow);
  -webkit-mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 62%, transparent 100%);
}
.bob-callout {
  position: absolute; left: -.5rem; bottom: 4.2rem; max-width: 220px; z-index: 2;
  background: rgba(8,9,13,.88); border: 1px solid #E9C46A; border-radius: 14px;
  padding: .7rem .9rem; box-shadow: var(--shadow); text-align: left;
}
.bob-callout strong {
  display: block; font-family: "Unbounded", var(--font); font-weight: 800;
  font-size: 1rem; color: #E9C46A; margin-bottom: .2rem;
}
.bob-callout span { font-size: .85rem; line-height: 1.4; color: var(--text); }
.kit-stage .kit-docs { position: relative; z-index: 1; }
@media (min-width: 860px) {
  .bob-guide { max-width: 520px; margin-right: -1rem; }
}
@media (max-width: 520px) {
  .bob-guide { margin-bottom: -2rem; }
  .bob-guide img { aspect-ratio: 4 / 3; object-position: 40% 20%; }
  .bob-callout { left: .5rem; bottom: 2.5rem; max-width: 190px; }
}
/* medium-size BOB, right-aligned so he peeks over the previews */
.bob-guide { max-width: 300px; margin: 0 0 -2.75rem auto; }
.bob-guide img { aspect-ratio: 4 / 3; }
.bob-callout { left: -5.5rem; bottom: 3.6rem; max-width: 200px; }
@media (min-width: 860px) { .bob-guide { max-width: 300px; margin-right: 0; } }
@media (max-width: 520px) {
  .bob-guide { margin: 0 auto -2rem; max-width: 300px; }
  .bob-callout { left: .5rem; bottom: 2.4rem; max-width: 190px; }
}
.bob-guide img { height: auto; }
/* v3: bigger owl, callout beside him instead of over his face */
.bob-guide { max-width: 420px; margin: 0 0 -1.25rem auto; }
.bob-guide img { aspect-ratio: 4 / 3; object-position: 50% 30%;
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%); }
.bob-callout { left: -7.5rem; top: 42%; bottom: auto; max-width: 190px; }
@media (max-width: 859px) {
  .bob-guide { margin: 0 auto -1.25rem; }
  .bob-callout { left: .5rem; top: auto; bottom: 1.6rem; max-width: 200px; }
}
/* v4: on small screens the callout sits under BOB, not over him */
@media (max-width: 859px) {
  .bob-guide { margin: 0 auto 1.25rem; max-width: 340px; }
  .bob-guide img { -webkit-mask-image: none; mask-image: none; }
  .bob-callout { position: static; max-width: none; margin-top: .75rem; }
}

.kit-seeall {
  margin-top: .4rem; padding: .9rem 1.6rem; font-size: 1.1rem; font-weight: 800;
  color: #E9C46A; border: 2px solid #E9C46A; background: rgba(233,196,106,.08);
}
.kit-seeall:hover { background: rgba(233,196,106,.18); text-decoration: none; }

/* Name tag pinned to the owl so he reads as a character, not decoration */
.bob-name {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-family: "Unbounded", var(--font); font-weight: 800; font-size: .95rem;
  color: #08090D; background: #E9C46A; border-radius: 100px; padding: .35rem .95rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.45);
}
.bob-callout em {
  display: block; font-style: normal; font-weight: 600; font-size: .85rem;
  line-height: 1.35; color: #fff; margin-bottom: .3rem;
}
.bob-callout { max-width: 215px; }
@media (max-width: 859px) { .bob-callout { max-width: none; } }

/* v5: calmer teaser. Copy | owl on one row, previews on their own row below,
   nothing overlapping. */
.kit-teaser { align-items: center; gap: 2rem; }
.kit-header-text h2 { font-size: 1.7rem; }
@media (min-width: 620px) { .kit-header-text h2 { font-size: 2.1rem; } }
@media (min-width: 1000px) { .kit-header-text h2 { font-size: 2.4rem; } }
.bob-guide { position: relative; margin: 0 auto; max-width: 380px; }
.bob-guide img {
  height: auto; aspect-ratio: 4 / 3; object-position: 50% 30%;
  -webkit-mask-image: none; mask-image: none;
}
.bob-name { top: .7rem; left: .7rem; }
.bob-callout {
  position: static; left: auto; top: auto; bottom: auto; max-width: none;
  margin: .75rem 0 0; text-align: left;
}
.kit-previews { max-width: 640px; margin: 3.5rem auto 0; gap: 2rem; }
.kit-pricing-row { margin-top: 4.5rem; }
@media (max-width: 480px) { .kit-seeall { font-size: .95rem; padding: .85rem 1rem; display: flex; } }

/* v6: "Meet BOB" straddles the photo's top edge so it never covers his face;
   the see-all button sits right under the Take it to BOB card. */
.bob-guide { margin-top: 1.4rem; }
.bob-name { top: -1.1rem; left: 1rem; }
.bob-guide .kit-seeall { display: flex; width: 100%; margin-top: .85rem; text-align: center; }
.bobdj-tag.bobdj-tag-name { word-spacing: 0; letter-spacing: 0; }

/* Launch-list jump target: leave room below it so the browser can actually
   scroll it into view (it is the last block on the page), and clear the
   sticky header. */
#launch-list { scroll-margin-top: 5.5rem; padding-bottom: 22vh; }

/* BOB on the B.O.B.DJGigs page: breathing room before the Previews heading. */
.landing-section > .bob-guide + h2 { margin-top: 2rem; }

/* B.O.B.DJGigs page: brand expansion line above the eyebrow, and a row of
   small square photos under the previews. */
.bobdj-expansion {
  font-family: var(--font-display); font-weight: 700; color: #fff;
  font-size: 1.05rem; letter-spacing: .01em; margin: 0 0 .6rem;
}
@media (min-width: 620px) { .bobdj-expansion { font-size: 1.3rem; } }
.photo-squares {
  display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr);
  max-width: 720px; margin: 0 auto;
}
@media (min-width: 620px) { .photo-squares { grid-template-columns: repeat(4, 1fr); } }
.photo-squares img {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; object-position: 50% 25%;
  border-radius: 14px; border: 1px solid var(--border-lt); display: block;
}
