/* ===========================================================================
   Agent Pro Apps — Job Organizer marketing site
   Palette is lifted hex-for-hex from the app's design tokens
   (app/theme/tokens.ts) so the site and the product read as one thing.
   House rule, same as the app: no drop shadows. Depth comes from borders,
   flat tinted fills, and colored halos.
   ========================================================================= */

:root {
  /* brand */
  --rust: #aa3000;
  --rust-deep: #d04411;
  --navy: #4f5e7e;
  --ink: #213145;
  --forest: #006947;

  /* text */
  --text: #0b1c30;
  --text-sec: #5a4139;
  --text-ter: #8e7068;
  --on-dark: #eaf1ff;
  --on-dark-dim: #b6c4dc;

  /* surfaces */
  --bg: #f8f9ff;
  --surface: #ffffff;
  --surface-alt: #eff4ff;
  --surface-sunk: #e5eeff;
  --paper: #fffbf7;

  /* lines */
  --border: #e2bfb5;
  --border-cool: #d3e4fe;

  /* derived tints */
  --rust-chip: rgba(170, 48, 0, 0.08);
  --rust-soft: rgba(170, 48, 0, 0.14);
  --rust-glow: rgba(170, 48, 0, 0.22);
  --navy-chip: rgba(79, 94, 126, 0.10);

  /* type */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --serif: Georgia, "Times New Roman", serif;

  /* metrics */
  --wrap: 1180px;
  --wrap-narrow: 860px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --pad-band: clamp(4rem, 9vw, 7.5rem);
}

/* ── reset-ish ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { display: block; height: auto; }
a { color: var(--rust); }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--rust); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--rust-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.15rem, 4vw, 2.5rem); }
.wrap.narrow { max-width: var(--wrap-narrow); }
.center { text-align: center; }

/* ── shared bits ─────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin: 0 0 0.85rem;
}
.eyebrow-light { color: #f0a184; }

.section-h { font-size: clamp(1.85rem, 4.2vw, 2.9rem); max-width: 22ch; }
.center .section-h { max-width: none; }
.section-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-sec);
  max-width: 60ch;
  margin-bottom: 3rem;
}
.center .section-sub { margin-left: auto; margin-right: auto; }

.lede { font-size: clamp(1.05rem, 1.8vw, 1.28rem); color: var(--text-sec); max-width: 56ch; }
.lede-light { color: var(--on-dark-dim); }

/* Nav links jump to these, and the header is sticky — offset the landing point
   so the section heading isn't parked underneath it. */
.band, .hero { scroll-margin-top: 78px; }

.band { padding: var(--pad-band) 0; }
.band-tint { background: var(--surface-alt); border-block: 1px solid var(--border-cool); }
.band-dark { background: var(--ink); color: var(--on-dark); }
.band-dark .section-h { color: #fff; }
.band-dark a { color: #f0a184; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--rust); color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.7rem 1.35rem;
  border: 2px solid var(--rust);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--rust-deep); border-color: var(--rust-deep); }
.btn-lg { font-size: 1.03rem; padding: 0.9rem 1.8rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.88rem; }
.btn-ghost { background: transparent; color: var(--rust); }
.btn-ghost:hover { background: var(--rust-chip); color: var(--rust-deep); }

/* ── announcement ribbon ─────────────────────────────────────────────────── */
.announce { background: var(--ink); color: var(--on-dark); }
.announce-inner {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  flex-wrap: wrap; text-align: center; padding: 0.65rem 0;
}
.announce-icon { width: 17px; height: 17px; color: #f0a184; flex: none; }
.announce p { margin: 0; font-size: 0.88rem; color: var(--on-dark-dim); }
.announce strong { color: #fff; }
.announce a { color: #f0a184; font-weight: 700; }

/* ── header ──────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 249, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-cool);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 70px; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--text); margin-right: auto; }
.brand-mark { width: 34px; height: 34px; color: var(--rust); flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-co { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.02em; }
.brand-product {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-ter); font-weight: 700;
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--text-sec); text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.site-nav a:hover { color: var(--rust); }
.site-nav a.btn { color: #fff; }
.site-nav a.btn:hover { color: #fff; }

.nav-toggle {
  display: none; background: transparent; border: 2px solid var(--border);
  border-radius: var(--r-sm); padding: 0.5rem 0.6rem; cursor: pointer; color: var(--rust);
}
.nav-toggle-bars { display: block; width: 20px; }
.nav-toggle-bars i {
  display: block; height: 2.5px; background: currentColor; border-radius: 2px;
  margin: 3.5px 0; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-cool);
    padding: 0.5rem clamp(1.15rem, 4vw, 2.5rem) 1.25rem;
  }
  .site-nav:not(.open) { display: none; }
  .site-nav a { padding: 0.8rem 0; border-bottom: 1px solid var(--surface-sunk); }
  .site-nav a.btn { margin-top: 0.9rem; border-bottom: 2px solid var(--rust); justify-content: center; }
}

/* ── phone frame ─────────────────────────────────────────────────────────── */
.phone {
  margin: 0;
  --frame: 9px;
}
.phone img {
  width: 100%;
  border-radius: 30px;
  border: var(--frame) solid var(--ink);
  background: var(--ink);
  cursor: zoom-in;
}
.phone figcaption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-ter);
  text-align: center;
  line-height: 1.45;
}
.band-dark .phone figcaption { color: var(--on-dark-dim); }

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(120% 90% at 92% 0%, var(--rust-chip) 0%, transparent 58%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 4.05rem); letter-spacing: -0.035em; }
.hero h1 em { font-style: normal; color: var(--rust); }
.hero .lede { margin-bottom: 2rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.4rem; }

.hero-points { display: grid; gap: 0.6rem; }
.hero-points li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--text-sec);
  font-size: 0.97rem;
}
.hero-points li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 12px;
  border-radius: 3px;
  background: var(--rust);
  box-sizing: border-box;
}
.hero-shot { display: flex; justify-content: center; }
.phone-lg { width: min(340px, 100%); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Headline stays first — the screenshot means nothing before you've read it.
     The <br>s are kept too: hiding them would butt the sentences together,
     since the markup has no whitespace around them. */
  .phone-lg { width: min(290px, 80%); margin-top: 1rem; }
}

/* ── problem cards ───────────────────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rust);
  border-radius: var(--r);
  padding: 1.75rem 1.6rem;
}
.card h3 { font-size: 1.28rem; }
.card p { color: var(--text-sec); margin: 0; font-size: 0.99rem; }

/* ── voice band ──────────────────────────────────────────────────────────── */
.voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.quotes { display: grid; gap: 0.85rem; margin: 2rem 0; }
.quotes li {
  display: flex; gap: 0.9rem; align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 161, 132, 0.28);
  border-radius: var(--r);
  padding: 1rem 1.15rem;
}
.quotes p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--on-dark);
}
.q-icon { width: 22px; height: 22px; flex: none; color: #f0a184; margin-top: 0.15rem; }

.reassure {
  border-left: 4px solid #f0a184;
  padding: 0.35rem 0 0.35rem 1.35rem;
  margin-top: 2.25rem;
}
.reassure h3 { font-size: 1.15rem; color: #fff; }
.reassure p { color: var(--on-dark-dim); margin: 0; font-size: 0.99rem; }
.reassure strong { color: #fff; }

.voice-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 940px) {
  .voice-grid { grid-template-columns: 1fr; }
  .voice-shots { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 520px) {
  .voice-shots { grid-template-columns: 1fr; max-width: 260px; }
}

/* ── hands-free (Siri + sketch-on-photo) ─────────────────────────────────── */
.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.coming-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--rust);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.75rem;
}
.coming-card h3 { font-size: 1.3rem; margin-top: 0.85rem; }
.coming-card > p { color: var(--text-sec); }
.coming-card-shot { padding-top: 1.6rem; text-align: center; }
.coming-card-shot .phone { width: min(230px, 100%); margin: 0.35rem auto 1.4rem; }
.coming-card-copy { text-align: left; }
.coming-card-copy h3 { margin-top: 0; }

/* ── walkthrough steps ───────────────────────────────────────────────────── */
.steps { display: grid; gap: clamp(3rem, 6vw, 5rem); }
.step {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.step .phone { width: min(300px, 100%); justify-self: center; }
.step-alt .step-copy { order: 2; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rust);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.step-copy h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
.step-copy p { color: var(--text-sec); }
.step-copy strong { color: var(--text); }
.step-note {
  border-left: 3px solid var(--border);
  padding-left: 1rem;
  font-size: 0.94rem;
  color: var(--text-ter);
}
.step-note em { color: var(--rust); font-style: normal; font-weight: 600; }

@media (max-width: 880px) {
  .step, .step-alt { grid-template-columns: 1fr; }
  .step-alt .step-copy { order: 0; }
  .step .phone { width: min(265px, 80%); }
}

/* ── callout ─────────────────────────────────────────────────────────────── */
.callout {
  display: flex;
  gap: 1.4rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  border: 2px solid var(--rust-soft);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
}
.callout-icon { width: 42px; height: 42px; flex: none; color: var(--rust); }
.callout h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.callout p { color: var(--text-sec); margin-bottom: 0.85rem; }
.callout p:last-child { margin-bottom: 0; }
@media (max-width: 620px) { .callout { flex-direction: column; gap: 1rem; } }

/* ── features ────────────────────────────────────────────────────────────── */
/* 9 features — minmax is tuned so the desktop grid lands on 3 even columns
   rather than 4 with a lonely straggler. */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.1rem;
}
@media (max-width: 720px) {
  .feat-grid { grid-template-columns: 1fr; }
}
.feat {
  background: var(--surface);
  border: 1px solid var(--border-cool);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
}
.feat-icon {
  width: 30px; height: 30px; color: var(--rust);
  margin-bottom: 0.9rem;
}
.feat h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.feat p { margin: 0; color: var(--text-sec); font-size: 0.94rem; line-height: 1.55; }

/* ── clients & calendar duo ──────────────────────────────────────────────── */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.duo-item {
  display: grid;
  grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.duo-copy h3 { font-size: 1.4rem; }
.duo-copy p { color: var(--text-sec); font-size: 0.97rem; }
.duo-copy em { color: var(--text); font-style: italic; }

@media (max-width: 1050px) {
  .duo { grid-template-columns: 1fr; gap: 3rem; }
  .duo-item { grid-template-columns: minmax(0, 240px) minmax(0, 1fr); }
}
@media (max-width: 620px) {
  .duo-item { grid-template-columns: 1fr; }
  .duo-item .phone { width: min(250px, 75%); }
}

/* ── honest list ─────────────────────────────────────────────────────────── */
.honest-list { margin: 0; display: grid; gap: 1.6rem; }
.honest-list dt {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}
.honest-list dd { margin: 0; color: var(--text-sec); }
.honest-list > div {
  border-left: 4px solid var(--rust);
  padding-left: 1.25rem;
}

/* The training shot is cropped to the top of the screen, so the frame is drawn
   as a phone that runs off the bottom rather than a whole device. */
.phone-crop img {
  border-radius: 30px 30px 5px 5px;
  border-bottom-width: 3px;
}

.soon {
  display: grid;
  grid-template-columns: minmax(0, 265px) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.soon h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; }
.soon p { color: var(--text-sec); margin: 0; }
.inline-icon { width: 24px; height: 24px; color: var(--rust); flex: none; }
@media (max-width: 640px) {
  .soon { grid-template-columns: 1fr; }
  .soon .phone { width: min(240px, 70%); }
}

/* ── team ────────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.25rem;
}
.member { text-align: center; }
.member-photo {
  width: 168px; height: 168px;
  border-radius: 50%;
  margin: 0 auto 1.15rem;
  border: 3px solid var(--border);
  background: var(--surface-sunk);
  object-fit: cover;
}
.member h3 { font-size: 1.35rem; margin-bottom: 0.15rem; }
.member-role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.member p:last-child { color: var(--text-sec); font-size: 0.96rem; margin: 0; }

.pull {
  margin: 3.5rem 0 0;
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.pull p {
  margin: 0 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.45;
  color: var(--text);
}
.pull cite {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-ter);
  font-weight: 700;
}

/* ── contact ─────────────────────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.1rem;
  margin-top: 2.5rem;
  text-align: left;
}
.contact-card {
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(240, 161, 132, 0.35);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.contact-card:hover { background: rgba(255, 255, 255, 0.1); border-color: #f0a184; }
.contact-icon { width: 26px; height: 26px; color: #f0a184; margin-bottom: 0.35rem; }
.contact-label {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--on-dark-dim); font-weight: 700;
}
.contact-value { color: #fff; font-weight: 700; font-size: 1.02rem; word-break: break-word; }

/* ── footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-cool);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { display: flex; gap: 0.85rem; align-items: flex-start; max-width: 34ch; }
.footer-brand .brand-mark { width: 32px; height: 32px; margin-top: 0.15rem; }
.footer-co { font-weight: 800; margin: 0 0 0.15rem; }
.footer-tag { color: var(--text-ter); font-size: 0.9rem; margin: 0; }
.footer-nav { display: grid; gap: 0.55rem; }
.footer-nav a { color: var(--text-sec); text-decoration: none; font-size: 0.93rem; font-weight: 600; }
.footer-nav a:hover { color: var(--rust); }
.footer-legal {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--surface-sunk);
}
.footer-legal p { margin: 0; color: var(--text-ter); font-size: 0.85rem; }

/* ── lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(11, 28, 48, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 1.25rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 100%;
  max-width: min(400px, 100%);
  width: auto;
  border-radius: 26px;
  border: 8px solid #000;
}
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%; cursor: pointer;
}
.lightbox-close:hover { border-color: #fff; }
.lightbox-close svg { width: 22px; height: 22px; }

/* ── content pages (support / privacy) ───────────────────────────────────── */
.page { padding: clamp(3rem, 7vw, 5rem) 0 var(--pad-band); }
.page h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.4rem; }
.page .updated {
  font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-ter); margin-bottom: 2.5rem;
}
.page h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.page h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 2rem; }
.page h3 { font-size: 1.08rem; margin-top: 1.9rem; margin-bottom: 0.35rem; color: var(--text); }
.page p, .page li { color: var(--text-sec); }
.page .btn { margin-bottom: 1.5rem; }
.page .btn svg { flex: none; }
.page ul.bullets { list-style: disc; padding-left: 1.35rem; margin-bottom: 1em; display: grid; gap: 0.45rem; }

/* ── jobOrganizerUnlock ──────────────────────────────────────────────────── */
.unlock-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
  max-width: 420px;
}
.unlock-form label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.unlock-form input[type="number"],
.unlock-form input[type="email"] {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.65rem 0.85rem;
}
.unlock-current {
  font-size: 0.92rem;
  color: var(--text-sec);
}
.unlock-price {
  font-family: var(--mono);
  color: var(--rust);
  font-weight: 700;
  font-size: 1.15rem;
}
.unlock-status { font-size: 0.92rem; color: var(--text-sec); }
.unlock-status.error { color: var(--rust-deep); }
