/* Sought — launching-soon page (SOUG-94).
 * Ported 1:1 from the design export's inline styles
 * (docs/design-handoff/designs/14 Launching Soon.dc.html — extract the
 * __bundler/template block to read them). The launch-page-only additions
 * (inline waitlist form, FAQ section, Privacy footer link) follow the same
 * vocabulary. Light theme only, per the export. Self-contained: no imports
 * from src/.
 */

:root {
  --page: #fafafa;
  --surface: #ffffff;
  --inset: #f0f0f2;
  --border: #e4e4e7;
  --hairline: #ececef;
  --ink: #18181b;
  --body: #3f3f46;
  --muted: #63636b;
  --faint: #8b8b93;
  --disabled: #a1a1a9;
  --input-border: #d9d9de;
  --input-border-hover: #b9b9c1;
  --accent: #3455db;
  --accent-hover: #2b48c7;
  --accent-deep: #2b48c7;
  --accent-tint-bg: #f4f6fe;
  --accent-tint-border: #d8dffa;
  --accent-chip-bg: #eef1fd;
  --avatar-bg: #e3e8fb;
  --green-dot: #3f8a4f;
  --red: #c2382e;
  --red-text: #a13029;
  --red-bg: #fdf1f0;
  --red-border: #f3d2cf;
  --dark-panel: #17171b;

  --font-ui: 'Geist', 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, SFMono-Regular, monospace;

  --shadow-control: 0 1px 2px rgba(24, 24, 27, 0.07);

  /* Every horizontal gutter in the export is this exact clamp. */
  --gutter: clamp(16px, 4vw, 32px);

  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 85, 219, 0.13);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Nav (export: full-width 58px bar, no inner container) ---------- */

.nav {
  height: 59px;
  background: rgba(250, 250, 250, 0.9);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-weight: 600;
  color: var(--ink);
}

.nav .brand-lockup {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand-glyph {
  width: 1em;
  height: 1em;
  flex: none;
  background: center / contain no-repeat url('assets/sought-beacon-glyph.svg');
}

.launching-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--body);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dot);
  flex: none;
}

.dot--accent {
  background: var(--accent);
}

/* ---------- Hero (export: 880px column) ---------- */

.hero {
  text-align: center;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 9vw, 76px) var(--gutter) clamp(36px, 6vw, 56px);
}

.kicker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
}

.hero h1 {
  margin: clamp(18px, 3.5vw, 26px) 0 0;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  margin: clamp(14px, 3vw, 22px) auto 0;
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 580px;
  text-wrap: pretty;
}

/* ---------- Waitlist form (launch-page addition; export CTA superseded) ---------- */

.waitlist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: clamp(22px, 4vw, 32px) auto 0;
}

.waitlist-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(560px, 100%);
}

.waitlist-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.field-group {
  flex: 1;
  min-width: min(240px, 100%);
  text-align: left;
}

.text-input {
  width: 100%;
  border: 1px solid var(--input-border);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 46px;
}

.text-input:hover {
  border-color: var(--input-border-hover);
}

.text-input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(52, 85, 219, 0.13);
}

.text-input[aria-invalid='true'] {
  border-color: var(--red);
}

.text-input[aria-invalid='true']:focus-visible {
  box-shadow: 0 0 0 3px rgba(194, 56, 46, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  min-height: 46px;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:disabled {
  background: var(--disabled);
  cursor: not-allowed;
}

.btn-on-dark {
  background: #fff;
  color: var(--ink);
  padding: 12px 24px;
}

.btn-on-dark:hover {
  background: var(--hairline);
}

.field-error {
  margin: 0;
  width: 100%;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  color: var(--red-text);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 10px;
  width: min(560px, 100%);
  margin: 0 auto;
  text-align: left;
}

.role-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--input-border);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  position: relative;
  text-align: left;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.role-card:hover {
  border-color: var(--input-border-hover);
}

/* Selected state carries a 1.5px accent border in the design; the 0.5px
   growth is absorbed by the padding so the card never shifts its neighbours. */
.role-card[aria-pressed='true'] {
  background: var(--accent-tint-bg);
  border: 1.5px solid var(--accent);
  padding: 13.5px 15.5px;
}

.role-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
}

.role-card[aria-pressed='true'] .role-check {
  display: inline-grid;
}

.role-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.role-sub {
  font-size: 11.5px;
  color: var(--muted);
}

.consent-line {
  font-size: 12px;
  color: var(--faint);
  text-align: center;
}

.honeypot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-success {
  /* Replaces the whole form on submit, so it has to repeat the form's own top
     offset from the hero copy — without it the panel butts against the
     paragraph above. */
  margin: clamp(22px, 4vw, 32px) auto 0;
  background: var(--accent-tint-bg);
  border: 1px solid var(--accent-tint-border);
  border-radius: 10px;
  padding: 22px 24px;
  text-align: center;
}

.waitlist-success h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}

.waitlist-success p {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Shared content column (export: 1080px) ---------- */

.section-inner,
.hero-photo-wrap,
.cta-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(44px, 8vw, 72px);
}

/* ---------- Hero photograph ---------- */

.hero-photo-wrap {
  padding-bottom: clamp(40px, 7vw, 64px);
}

.hero-photo-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-photo {
  display: block;
  width: 100%;
  height: clamp(200px, 32vw, 380px);
  object-fit: cover;
}

/* ---------- How-it-works cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(22px, 4vw, 30px);
}

.mono-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.card h2 {
  margin: 8px 0 22px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 14px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 6px;
  background: var(--accent-chip-bg);
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

/* Export: the clients card is the neutral variant. */
.card--neutral .mono-kicker {
  color: var(--muted);
}

.card--neutral .step-number {
  background: var(--inset);
  color: var(--body);
}

.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.step-body {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Section headers (No black-box scores / FAQ) ---------- */

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.section-header .mono-kicker {
  display: block;
}

.section-header h2 {
  margin: 10px 0 0;
  font-size: clamp(23px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-sub {
  margin: 12px auto 0;
  font-size: clamp(13px, 2vw, 14.5px);
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
}

/* ---------- No-black-box demo card (export: white shell, inset panel) ---------- */

.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.demo-inner {
  background: var(--page);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: clamp(14px, 3vw, 22px);
}

.demo-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.demo-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 6px;
  background: var(--avatar-bg);
  color: var(--accent-deep);
  font-size: 11.5px;
  font-weight: 600;
}

.demo-main {
  flex: 1;
  min-width: min(280px, 100%);
}

.demo-name-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.demo-name {
  font-size: 14px;
  font-weight: 600;
}

.demo-title {
  font-size: 12px;
  color: var(--muted);
}

.demo-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 500;
}

.skill-chip--verified {
  background: var(--accent-tint-bg);
  border: 1px solid var(--accent-tint-border);
  color: var(--accent-deep);
}

.skill-chip--self {
  background: var(--surface);
  border: 1px solid #e0e0e5;
  color: #4c4c53;
}

.chip-check {
  flex: none;
}

.skill-chip .affix {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.05em;
  padding-left: 6px;
  border-left: 1px solid var(--accent-tint-border);
  color: #5a6fd4;
}

.skill-chip--self .affix {
  color: var(--faint);
  border-left-color: #e0e0e5;
}

.reason-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reason-row {
  display: flex;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--body);
}

.reason-row--negative {
  color: var(--muted);
}

.reason-marker {
  font-family: var(--font-mono);
  color: var(--accent);
  flex: none;
}

.reason-row--negative .reason-marker {
  color: #9a9aa2;
}

.demo-score {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  column-gap: 2px;
  row-gap: 6px;
  width: 74px;
  margin-left: auto;
  font-family: var(--font-mono);
}

.demo-score .num {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.demo-score .denom {
  font-size: 10px;
  color: var(--faint);
}

.score-track {
  flex-basis: 100%;
  height: 3px;
  border-radius: 99px;
  background: var(--hairline);
  overflow: hidden;
  display: block;
}

.score-fill {
  display: block;
  height: 100%;
  width: 95%;
  background: var(--muted);
}

/* ---------- Explainer mini-cards ---------- */

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
  margin-top: 16px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.mini-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 0;
}

.mini-card p {
  margin: 7px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- FAQ (launch-page addition, export card vocabulary) ---------- */

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.faq-row {
  display: flex;
  gap: 16px;
  padding: 18px clamp(16px, 3vw, 24px);
}

.faq-row + .faq-row {
  border-top: 1px solid var(--hairline);
}

.faq-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--faint);
  flex: none;
  padding-top: 2px;
}

.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.faq-a {
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--dark-panel);
  border-radius: 12px;
  padding: clamp(36px, 7vw, 60px) clamp(22px, 5vw, 48px);
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.cta-band p {
  margin: 14px auto 0;
  font-size: clamp(13px, 2.2vw, 15px);
  line-height: 1.6;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.75);
  text-wrap: pretty;
}

.cta-band .btn {
  margin-top: 28px;
}

/* ---------- Footer (export: full-width single row) ---------- */

.footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px var(--gutter);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer .brand-lockup {
  font-size: 14px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--faint);
}

.footer-links {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--faint);
}

.footer-links a:hover {
  color: var(--body);
}

/* ---------- Privacy page ---------- */

.privacy-main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 64px) var(--gutter) clamp(44px, 8vw, 72px);
}

.privacy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(24px, 4vw, 32px);
}

.privacy-card h1 {
  font-size: clamp(23px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}

.privacy-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
}

.privacy-card p + p {
  margin-top: 12px;
}

.privacy-card a {
  color: var(--accent);
}

.privacy-card a:hover {
  color: var(--accent-hover);
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {
  .waitlist-row {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
    min-height: 48px;
  }

  .role-card {
    min-height: 44px;
  }
}
