/* ================================================================
   sofee.ai product page. Warm palette, restrained type.
   ================================================================ */

:root {
  --bg:            #FAF6EE;
  --bg-alt:        #F4EDDF;
  --surface:       #FFFFFF;
  --ink:           #1A1614;
  --ink-soft:      #4A4139;
  --ink-muted:     #7A6F61;
  --orange:        #C84820;
  --orange-deep:   #A03818;
  --orange-soft:   #F2A878;
  --orange-tint:   #FBEADA;
  --line:          rgba(26, 22, 20, 0.10);
  --line-strong:   rgba(26, 22, 20, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --wrap: 1180px;

  --f-display: 'Newsreader', ui-serif, Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72;
}

h1 {
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 24ch;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

h3 {
  font-family: var(--f-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 54ch;
}

.small { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

/* ================================================================
   BUTTONS + FORMS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.form-footnote {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-muted);
  max-width: 480px;
}

/* ================================================================
   SIGNUP FORM (3 fields: job title, JD, email)
   ================================================================ */

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 480px;
  width: 100%;
}
.signup-form .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.signup-form .field > label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.signup-form .field input[type="text"],
.signup-form .field input[type="email"] {
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.signup-form .field input::placeholder { color: var(--ink-muted); }
.signup-form .field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(200, 72, 32, 0.14);
}
.signup-form .field.has-error > label { color: var(--orange-deep); }
.signup-form .field.has-error input[type="text"],
.signup-form .field.has-error input[type="email"],
.signup-form .field.has-error .jd-row {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200, 72, 32, 0.14);
}
.field-hint {
  font-size: 13px;
  line-height: 1.45;
  color: var(--orange-deep);
  margin-top: 4px;
  min-height: 0;
}
.field-hint:empty { display: none; }
.final .field-hint { color: var(--orange-soft); }

.jd-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.jd-upload {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  font-weight: 500;
  max-width: 100%;
}
.jd-upload:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.jd-upload.has-file {
  border-style: solid;
  border-color: var(--orange);
  background: var(--orange-tint);
  color: var(--orange-deep);
}
.jd-upload-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}
.jd-or {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  font-family: var(--f-display);
}
.jd-none {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  padding: 6px 4px;
}
.jd-none input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  margin: 0;
}

.signup-submit {
  align-self: flex-start;
  margin-top: 4px;
  min-width: 180px;
  padding: 14px 22px;
}
.signup-submit.is-sent {
  background: var(--ink);
  pointer-events: none;
}

/* Dark variant (final CTA section) */
.final .signup-form .field > label {
  color: var(--orange-soft);
}
.final .signup-form .field input[type="text"],
.final .signup-form .field input[type="email"] {
  background: rgba(250, 246, 238, 0.06);
  border-color: rgba(250, 246, 238, 0.2);
  color: var(--bg);
}
.final .signup-form .field input::placeholder { color: rgba(250, 246, 238, 0.45); }
.final .signup-form .field input:focus {
  border-color: var(--orange-soft);
  background: rgba(250, 246, 238, 0.10);
}
.final .jd-row {
  background: rgba(250, 246, 238, 0.06);
  border-color: rgba(250, 246, 238, 0.2);
}
.final .jd-upload {
  border-color: rgba(250, 246, 238, 0.25);
  color: rgba(250, 246, 238, 0.8);
}
.final .jd-upload:hover {
  border-color: var(--orange-soft);
  color: var(--orange-soft);
}
.final .jd-upload.has-file {
  border-color: var(--orange-soft);
  background: rgba(242, 168, 120, 0.12);
  color: var(--orange-soft);
}
.final .jd-or { color: rgba(250, 246, 238, 0.5); }
.final .jd-none { color: rgba(250, 246, 238, 0.8); }
.final .form-footnote { color: rgba(250, 246, 238, 0.5); }

/* ================================================================
   NAV
   ================================================================ */

.nav {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.nav-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  font-family: var(--f-display);
  color: var(--ink);
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.brand-text {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
  transform: translateY(1px);
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.nav-links a { transition: color 0.18s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.18s ease;
}
.nav-cta:hover { background: var(--orange); color: #fff; }

/* ================================================================
   STICKY NAV (desktop only, fades in past hero)
   ================================================================ */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}
.sticky-nav[data-state="visible"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-nav-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sticky-nav .logo-img {
  height: 26px;
  width: auto;
}
.sticky-nav-cta {
  padding: 10px 18px;
  font-size: 14px;
  min-width: 0;
}

/* ================================================================
   MOBILE BOTTOM CTA BAR (mobile only, fades in past hero)
   ================================================================ */

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-top: 1px solid var(--line);
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-cta-bar[data-state="visible"] {
  opacity: 1;
  transform: translateY(0);
}
.mobile-cta-btn {
  width: 100%;
  padding: 14px 22px;
  font-size: 15px;
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  padding: 64px 0 80px;
}
.hero-top {
  margin-bottom: 56px;
  max-width: 1116px;
}
.hero-top .eyebrow {
  margin-bottom: 18px;
}
.hero-top h1 {
  margin: 0;
  max-width: none;
  text-wrap: balance;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hero h1 .price {
  color: var(--orange);
}
.hero-lede {
  margin-bottom: 32px;
  max-width: 52ch;
}
/* portrait */
.portrait {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(26, 22, 20, 0.04), 0 24px 48px -18px rgba(26, 22, 20, 0.12);
}
.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  z-index: 1;
}
.portrait-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  z-index: 3;
  box-shadow: 0 8px 24px -8px rgba(26, 22, 20, 0.18);
  max-width: calc(100% - 40px);
}
.portrait-tag-name {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2px;
}
.portrait-tag-role {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* ================================================================
   LOGO / TRUST STRIP
   ================================================================ */

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 32px;
}
.trust-strip-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.trust-strip-items {
  display: flex;
  gap: 12px 28px;
  flex-wrap: wrap;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.012em;
}
.trust-strip-items span {
  display: inline-flex;
  align-items: center;
}
.trust-strip-items span:not(:last-child)::after {
  content: '·';
  color: var(--orange);
  margin-left: 28px;
  font-weight: 600;
}

/* ================================================================
   SECTION BASICS
   ================================================================ */

section {
  padding: 112px 0;
}

.sec-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head p {
  margin-top: 20px;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 58ch;
}

/* ================================================================
   FEATURES (three cards)
   ================================================================ */

.features { background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.feature-kicker-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--orange-deep);
  text-transform: none;
}
.feature h3 {
  font-size: 22px;
  line-height: 1.25;
}
.feature p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ================================================================
   WHAT SOFEE IS / ISN'T
   ================================================================ */

.whatis { background: var(--bg); }
.whatis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.whatis-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.whatis-col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 22px;
}
.whatis-is h3 { color: var(--orange-deep); }
.whatis-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whatis-col li {
  font-size: 15.5px;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
}
.whatis-is li {
  color: var(--ink);
}
.whatis-is li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 11px;
  height: 6px;
  border-left: 1.8px solid var(--orange);
  border-bottom: 1.8px solid var(--orange);
  transform: rotate(-45deg);
}
.whatis-isnt li {
  color: var(--ink-muted);
}
.whatis-isnt li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 1.5px;
  background: var(--ink-muted);
  opacity: 0.5;
}

/* ================================================================
   HOW IT WORKS (5 steps)
   ================================================================ */

.how { background: var(--bg); }
.steps {
  display: grid;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.015em;
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  margin-bottom: 6px;
  font-size: 19px;
}
.step-body p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 62ch;
}
.step-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-top: 10px;
  white-space: nowrap;
}

.how-note {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--bg-alt);
  border-left: 3px solid var(--orange-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 70ch;
}
.how-note strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 4px;
}

/* ================================================================
   THE RECRUITER REVIEW
   ================================================================ */

.review { background: var(--bg-alt); }
.review-closer {
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.4;
  max-width: 50ch;
}

/* ================================================================
   WHO IT'S FOR
   ================================================================ */

.who { background: var(--bg-alt); }
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.who-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.chip strong {
  font-weight: 600;
  color: var(--ink);
}
.role-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.role-types strong { color: var(--ink); font-weight: 600; }

.fit-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
}
.fit-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.fit-item dt {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.fit-item dd {
  font-size: 14.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ================================================================
   PRICING
   ================================================================ */

.pricing { background: var(--bg); }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(26, 22, 20, 0.04);
}
.pricing-head .eyebrow { margin-bottom: 16px; }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 14px;
}
.pricing-price-num {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.pricing-price-unit {
  font-size: 18px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pricing-compare {
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.pricing-compare s { color: var(--ink-muted); opacity: 0.7; }
.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.pricing-list li {
  list-style: none;
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.pricing-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 6px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}
.pricing-action {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.pricing-callout {
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  max-width: 38ch;
}
.pricing-aside {
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 70ch;
  text-align: center;
}
.pricing-aside em {
  font-style: italic;
  font-family: var(--f-body);
}

.alongside-closer {
  margin: 40px auto 0;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.4;
  max-width: 46ch;
}

/* ================================================================
   RUN ALONGSIDE
   ================================================================ */

.alongside { background: var(--bg-alt); }
.alongside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.alongside-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.alongside-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.alongside-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.015em;
  line-height: 1;
  margin-bottom: 6px;
}
.alongside-item h3 {
  font-size: 20px;
  line-height: 1.25;
}
.alongside-item p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ================================================================
   PULL-QUOTE (the single editorial moment)
   ================================================================ */

.pullquote {
  background: var(--bg-alt);
  padding: 96px 0;
}
.pullquote-wrap {
  max-width: 900px;
}
.pullquote blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pullquote blockquote::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--orange);
  margin-bottom: 28px;
}
.pullquote cite {
  display: block;
  margin-top: 22px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ================================================================
   CLIENT TESTIMONIAL
   ================================================================ */

.client-testimonial {
  background: var(--bg-alt);
  padding: 96px 0;
}
.client-testimonial-card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(26, 22, 20, 0.06), 0 8px 32px rgba(26, 22, 20, 0.08);
  padding: 56px 64px;
  max-width: 760px;
  margin: 0 auto;
}
.client-testimonial-card .eyebrow {
  margin-bottom: 24px;
}
.client-testimonial-card blockquote {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.client-testimonial-card blockquote::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--orange);
  margin-bottom: 28px;
}
.client-testimonial-card cite {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  font-style: normal;
}
.client-testimonial-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.client-testimonial-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.client-testimonial-role {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.client-testimonial-context {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 4px;
}
@media (max-width: 720px) {
  .client-testimonial { padding: 64px 0; }
  .client-testimonial-card { padding: 36px 28px; }
  .client-testimonial-card blockquote::before { margin-bottom: 20px; }
}

/* ================================================================
   TRUST / COMPLIANCE
   ================================================================ */

.trust { background: var(--bg); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  background: var(--bg);
  padding: 32px 24px 32px 0;
}
.trust-item:not(:first-child) { padding-left: 24px; }
.trust-num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.trust-label {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 22ch;
}
.trust-label strong {
  display: block;
  color: var(--ink);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq { background: var(--bg-alt); }
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-strong);
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 48px 22px 0;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.3;
  position: relative;
  transition: color 0.18s ease;
  font-variation-settings: "opsz" 72;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--orange-deep); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-item > summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 1.8px solid var(--ink);
  border-bottom: 1.8px solid var(--ink);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.18s ease;
}
.faq-item[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item > summary:hover::after { border-color: var(--orange-deep); }

.faq-answer {
  padding: 0 32px 24px 0;
}
.faq-answer p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 68ch;
}

/* ================================================================
   FINAL CTA (dark)
   ================================================================ */

.final {
  background: var(--ink);
  color: var(--bg);
  padding: 112px 0;
}
.final-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.final h2 {
  color: var(--bg);
  margin-bottom: 22px;
}
.final p {
  color: rgba(250, 246, 238, 0.72);
  font-size: 17px;
  max-width: 46ch;
  margin-bottom: 28px;
}
.final .form-footnote { color: rgba(250, 246, 238, 0.5); }

.final-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid rgba(250, 246, 238, 0.1);
  border-radius: var(--radius-md);
}
.final-side-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-soft);
}
.final-side-q {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 450;
  color: var(--bg);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.final-side-a {
  font-size: 14.5px;
  color: rgba(250, 246, 238, 0.7);
  line-height: 1.55;
}
.final-side-item + .final-side-item {
  padding-top: 18px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: #120F0D;
  color: rgba(250, 246, 238, 0.55);
  padding: 56px 0 36px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.1);
  margin-bottom: 24px;
}
.foot-brand-col .brand { color: var(--bg); margin-bottom: 14px; }
.foot-brand-col p {
  color: rgba(250, 246, 238, 0.6);
  font-size: 14px;
  max-width: 34ch;
  margin-bottom: 16px;
  line-height: 1.5;
}
.foot-brand-col .powered {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: rgba(250, 246, 238, 0.5);
}
.foot-col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a {
  color: rgba(250, 246, 238, 0.65);
  transition: color 0.18s ease;
}
.foot-col a:hover { color: var(--orange-soft); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.4);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  section { padding: 80px 0; }

  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { max-width: 460px; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .whatis-grid { grid-template-columns: 1fr; gap: 16px; }
  .who-layout { grid-template-columns: 1fr; gap: 40px; }
  .alongside-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-item > summary { padding: 20px 40px 20px 0; }
  .faq-answer { padding: 0 0 20px 0; }

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }
  .pricing-action { min-width: 0; }

  .step { grid-template-columns: 48px 1fr; gap: 20px; padding: 22px 0; }
  .step-num { font-size: 22px; }
  .step-tag { grid-column: 2; padding-top: 4px; }

  .final { padding: 80px 0; }
  .final-layout { grid-template-columns: 1fr; gap: 40px; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  section { padding: 64px 0; }

  .nav-links a:not(.nav-cta) { display: none; }

  /* Swap: hide sticky desktop nav, show mobile bottom CTA bar */
  .sticky-nav { display: none; }
  .mobile-cta-bar { display: block; }

  /* Bottom padding so the last section isn't covered by the bar */
  body { padding-bottom: 76px; }

  .hero { padding: 32px 0 48px; }
  .hero h1 { font-size: 42px; }
  .signup-submit { width: 100%; align-self: stretch; }
  .jd-row { flex-direction: column; align-items: flex-start; }
  .jd-or { display: none; }

  .trust-strip-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-strip-items { font-size: 15px; gap: 18px 28px; }

  .pricing-price-num { font-size: 56px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:not(:first-child) { padding: 20px 0; }

  .foot-grid { grid-template-columns: 1fr; }

  .portrait-tag { left: 14px; bottom: 14px; padding: 10px 14px; }
}

/* ================================================================
   ENTRANCE
   ================================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.25s; }
.d4 { animation-delay: 0.35s; }
.d5 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   LEGAL / CONTENT PAGES (About, Privacy, Terms, AI & data policy)
   Reading-width article layout on cream. Matches the 404 pattern.
   ================================================================ */

.legal {
  padding: 80px 0 96px;
}
.legal-inner {
  max-width: 720px;
  margin: 0 auto;
}
.legal .eyebrow {
  margin-bottom: 18px;
}
.legal h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 24px;
  font-variation-settings: "opsz" 72;
}
.legal .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 48px;
}
.legal h2 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 56px 0 16px;
  font-variation-settings: "opsz" 72;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  margin: 32px 0 10px;
}
.legal p,
.legal li {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
}
.legal p {
  margin: 0 0 18px;
}
.legal ul,
.legal ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal li {
  margin-bottom: 8px;
}
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal a:hover {
  color: var(--orange);
}
.legal .meta-row {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.legal hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 56px 0;
}
.legal .legal-cta {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-top: 48px;
}
.legal .legal-cta h3 {
  margin-top: 0;
}
.legal .legal-cta p {
  margin-bottom: 16px;
}
.legal .legal-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .legal { padding: 56px 0 72px; }
  .legal h2 { margin: 44px 0 14px; }
  .legal p, .legal li { font-size: 16px; }
  .legal .lede { font-size: 17px; margin-bottom: 36px; }
}
