/* ============================================================
   WeApply4U v3 sales page
   Manrope (display) + DM Sans (body) + Instrument Serif italic (accent)
   Paper #faf7f0 · Ink #1a1410 · Signal #e54b1a · Positive #2f7a52
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --paper:      #faf7f0;
  --paper-2:    #f3ecdc;
  --paper-3:    #efe7d3;
  --ink:        #1a1410;
  --ink-soft:   #3a2e24;
  --muted:      #6e5a48;
  --rule:       #e4dcc8;
  --rule-soft:  #ede6d0;
  --signal:     #e54b1a;
  --signal-2:   #c23a0e;
  --signal-soft:#fbe5d8;
  --positive:   #2f7a52;
  --positive-2: #d3e8dc;
  --warn:       #c48a1a;

  --display:  'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --body:     'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --serif:    'Instrument Serif', 'Hoefler Text', Georgia, serif;
  --mono:     'JetBrains Mono', ui-monospace, Menlo, monospace;

  --radius:   16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --maxw:     1200px;
  --shadow-1: 0 1px 2px rgba(26,20,16,.05), 0 1px 3px rgba(26,20,16,.06);
  --shadow-2: 0 4px 14px rgba(26,20,16,.07), 0 1px 3px rgba(26,20,16,.05);
  --shadow-3: 0 10px 40px rgba(26,20,16,.10), 0 4px 14px rgba(26,20,16,.06);
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ==================== TOP TICKER ==================== */
.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  white-space: nowrap;
  animation: tickerScroll 48s linear infinite;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.ticker-item { display: inline-flex; align-items: center; gap: 10px; }
.ticker-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgba(229, 75, 26, 0.22);
}
.ticker-item b { color: #fff; font-weight: 500; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==================== NAV ==================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--rule); background: rgba(250, 247, 240, 0.98); }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-family: var(--display);
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--signal);
  line-height: 1;
}
.brand-word {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.brand-word b {
  font-weight: 800;
  color: var(--signal);
  font-style: normal;
}
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-soft); font-size: 14px; font-weight: 600;
  text-decoration: none; padding: 4px 2px;
  transition: color .15s;
}
.nav-links a:hover { color: var(--signal); }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 3px 0; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 18px 28px; gap: 14px;
  }
  .nav-mobile-open .nav-links a { font-size: 17px; }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  cursor: pointer;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 9px 15px; font-size: 13px; }

.btn-signal { background: var(--signal); border-color: var(--signal); color: #fff; }
.btn-signal:hover { background: var(--signal-2); border-color: var(--signal-2); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-paper:hover { background: #fff; border-color: #fff; }

.arrow::after { content: "→"; transition: transform .2s; }
.arrow:hover::after { transform: translateX(4px); }

/* ==================== CLEAN HERO ==================== */
.hero-clean {
  padding: 72px 0 88px;
  background: var(--paper);
  position: relative;
}
.hero-clean .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding: 7px 14px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
}
.hero-clean .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 3px rgba(47, 122, 82, .18); }
.hero-clean h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(42px, 6.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 18ch;
}
.hero-clean h1 s {
  text-decoration-thickness: 5px;
  text-decoration-color: var(--signal);
  color: var(--muted);
  font-weight: 700;
}
.hero-clean h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 58ch;
  font-weight: 400;
}
.hero-sub b { color: var(--ink); font-weight: 700; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.trust-row .tr-check {
  display: inline-flex; align-items: center; gap: 6px;
}
.trust-row .tr-check::before {
  content: "✓";
  color: var(--positive);
  font-weight: 700;
  font-family: var(--body);
}

@media (max-width: 780px) {
  .hero-clean { padding: 48px 0 56px; }
}

/* ==================== TIMELINE HERO ==================== */
.timeline-section {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 88px 0;
}
.timeline-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}
.timeline-head .eyebrow-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 16px;
}
.timeline-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.timeline-head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--signal);
}
.timeline-head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.timeline {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.tl-row {
  display: grid;
  grid-template-columns: 1fr 132px 1fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.tl-row.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s, transform .7s; }
.tl-row.reveal.in { opacity: 1; transform: translateY(0); }
.tl-col {
  padding: 26px 28px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tl-col.without {
  background: var(--paper);
  color: var(--ink-soft);
  border-right: 1px solid var(--rule);
}
.tl-col.with {
  background: var(--ink);
  color: var(--paper);
  border-left: 1px solid var(--ink);
}
.tl-label {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--paper-3);
  font-family: var(--display);
  gap: 2px;
  padding: 12px;
  border-right: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.tl-label .tl-label-top {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.tl-label .tl-label-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.tl-side-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.tl-col.without .tl-side-label { color: var(--muted); }
.tl-col.with .tl-side-label { color: var(--signal); }
.tl-col.with .tl-side-label .dot { background: var(--signal); width: 6px; height: 6px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(229,75,26,.25); animation: dotPulse 2s infinite; }

.tl-quote {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.tl-col.with .tl-quote { color: var(--paper); }
.tl-meta {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}
.tl-col.with .tl-meta { color: rgba(250,247,240,0.7); }

.tl-local-badge, .tl-remote-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-right: 6px;
  margin-top: 6px;
}
.tl-local-badge { background: var(--positive-2); color: var(--positive); border: 1px solid var(--positive); }
.tl-remote-badge { background: var(--signal-soft); color: var(--signal-2); border: 1px solid var(--signal); }
.tl-col.with .tl-local-badge { background: rgba(47,122,82,.2); border-color: rgba(47,122,82,.5); color: #7bd8a0; }
.tl-col.with .tl-remote-badge { background: rgba(229,75,26,.2); border-color: rgba(229,75,26,.5); color: #ffa074; }

.tl-row.still-searching .tl-col.without { animation: stillSearching 2s infinite; }
.tl-row.still-searching .tl-col.without .tl-quote { color: var(--signal); }

.tl-row.offer .tl-col.with { position: relative; overflow: hidden; }
.tl-row.offer .tl-col.with::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 50%, rgba(229, 75, 26, .28) 0%, transparent 60%);
  animation: offerPop 3s ease-out;
  pointer-events: none;
}
.tl-row.offer .tl-col.with .tl-quote b {
  display: inline-block;
  background: var(--signal);
  color: #fff;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  margin-top: 4px;
  animation: tagPop 0.9s ease-out 0.4s both;
}

@keyframes stillSearching {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(229,75,26,0); }
  50% { box-shadow: inset 0 0 0 3px rgba(229,75,26,.22); }
}
@keyframes offerPop {
  0% { opacity: 0; transform: scale(0.5); }
  40% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes tagPop {
  0% { opacity: 0; transform: scale(0.6); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Totals block */
.tl-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.tl-total-col { padding: 32px; }
.tl-total-col.without { background: var(--paper); border-right: 1px solid var(--rule); }
.tl-total-col.with { background: var(--ink); color: var(--paper); }
.tl-total-col .tl-total-head {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tl-total-col.with .tl-total-head { color: var(--signal); }
.tl-total-col .tl-total-h {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 20px;
}
.tl-total-col.with .tl-total-h { color: var(--paper); }
.tl-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.tl-stat { }
.tl-stat .tl-stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tl-total-col.with .tl-stat .tl-stat-num { color: var(--signal); }
.tl-total-col.with .tl-stat.zero .tl-stat-num,
.tl-total-col.without .tl-stat.zero .tl-stat-num { color: var(--muted); }
.tl-stat .tl-stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.3;
}
.tl-total-col.with .tl-stat .tl-stat-label { color: rgba(250,247,240,0.65); }

.tl-cap {
  text-align: center;
  margin-top: 28px;
  font-family: var(--display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 600;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.25;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.tl-cap em { color: var(--signal); }

.tl-after-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .tl-row { grid-template-columns: 1fr; }
  .tl-col.without { border-right: 0; border-bottom: 1px solid var(--rule); }
  .tl-col.with { border-left: 0; }
  .tl-label { border: 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--ink); order: -1; padding: 10px; flex-direction: row; gap: 10px; }
  .tl-label .tl-label-big { font-size: 22px; }
  .tl-totals { grid-template-columns: 1fr; }
  .tl-total-col.without { border-right: 0; border-bottom: 1px solid var(--rule); }
  .tl-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== HOW WE GET YOU HIRED ==================== */
.how-section { padding: 96px 0; background: var(--paper); }
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.section-head h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--signal); }
.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.how-3up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.how-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-pill);
  background: var(--signal-soft);
  color: var(--signal);
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}
.how-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.how-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.how-card p b { color: var(--ink); font-weight: 700; }
.how-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.how-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  color: var(--muted);
}
.how-tag.positive { background: var(--positive-2); color: var(--positive); border-color: var(--positive); }

@media (max-width: 900px) {
  .how-3up { grid-template-columns: 1fr; }
}

/* ==================== MANIFESTO (softened) ==================== */
.manifesto {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.manifesto-grid h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.manifesto-grid h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--signal); }
.manifesto-grid .mf-note {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 16px 0 0;
}
.manifesto-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.manifesto-body p:last-of-type { margin-bottom: 0; }
.manifesto-body b { color: var(--ink); font-weight: 700; }
.manifesto-body em { font-family: var(--serif); font-style: italic; color: var(--signal); font-weight: 400; }

.manifesto-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.manifesto-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}
.manifesto-list li::before {
  content: attr(data-n);
  font-family: var(--display);
  font-weight: 800;
  color: var(--signal);
  font-size: 16px;
}
.manifesto-list li b { color: var(--ink); font-weight: 700; }
.manifesto-list li span { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }

@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ==================== UNDENIABLE PROOF ==================== */
.proof-section { padding: 96px 0; background: var(--paper); }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.proof-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.proof-number {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--signal);
  margin-bottom: 10px;
}
.proof-card.positive .proof-number { color: var(--positive); }
.proof-card.ink .proof-number { color: var(--ink); }
.proof-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 24ch;
  margin: 0 auto;
}
.proof-label b { color: var(--ink); font-weight: 700; }

.proof-callout {
  margin-top: 28px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-soft);
}
.proof-callout em { color: var(--signal); font-style: normal; font-family: var(--display); font-weight: 700; font-size: 17px; letter-spacing: 0.02em; }

@media (max-width: 900px) {
  .proof-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== LOGO MARQUEE (refined) ==================== */
.logos-strip {
  background: var(--paper-2);
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.logos-label {
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 auto 24px;
  padding: 0 24px;
  max-width: 820px;
}
.logos-label b { color: var(--signal); font-weight: 600; }

.logos-track-wrap {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logos-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: logosReverse 58s linear infinite;
  align-items: center;
  width: max-content;
}
@keyframes logosReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  height: 40px;
  opacity: 0.78;
  transition: opacity .2s;
  flex-shrink: 0;
}
.logo-mark:hover { opacity: 1; }

/* ==================== TAILORING ==================== */
.tailor-section {
  padding: 96px 0;
  background: var(--paper);
}
.tailor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}
.tailor-grid h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}
.tailor-grid h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--signal); }
.tailor-rule {
  background: var(--ink);
  color: var(--paper);
  padding: 24px;
  border-radius: var(--radius);
  margin-top: 20px;
}
.tailor-rule-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 10px;
}
.tailor-rule-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.25;
  color: var(--paper);
  margin: 0;
}
.tailor-pairs { display: grid; gap: 14px; }
.tailor-pair {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 14px;
  align-items: start;
}
.tailor-col .tc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.tailor-col.them .tc-text { color: var(--ink-soft); font-size: 15px; font-weight: 500; }
.tailor-col.us .tc-text { color: var(--ink); font-size: 14.5px; line-height: 1.5; }
.tailor-col.us .tc-text b { display: block; color: var(--signal); font-weight: 700; font-size: 13px; margin-bottom: 3px; font-family: var(--mono); letter-spacing: 0.04em; }
.tailor-arrow { color: var(--signal); padding-top: 16px; font-weight: 700; }

@media (max-width: 900px) {
  .tailor-grid { grid-template-columns: 1fr; gap: 32px; }
  .tailor-pair { grid-template-columns: 1fr; }
  .tailor-arrow { display: none; }
}

/* ==================== COMPETITOR TABLE ==================== */
.compare-section {
  padding: 96px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.compare-wrap {
  max-width: 1180px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: #fff;
  box-shadow: var(--shadow-1);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-family: var(--body);
}
.compare-table thead th {
  background: var(--paper);
  padding: 18px 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
  letter-spacing: -0.005em;
  vertical-align: bottom;
}
.compare-table thead th.w4u-col {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.compare-table thead th.w4u-col::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 3px;
  background: var(--signal);
  border-radius: 99px;
}
.compare-table thead th:first-child {
  text-align: left;
  padding-left: 22px;
  background: #fff;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.compare-table tbody tr { border-top: 1px solid var(--rule); }
.compare-table tbody tr:nth-child(even) { background: var(--paper); }
.compare-table tbody td {
  padding: 14px 10px;
  font-size: 13.5px;
  color: var(--ink);
  text-align: center;
  vertical-align: middle;
}
.compare-table tbody td:first-child {
  text-align: left;
  padding-left: 22px;
  max-width: 300px;
  font-weight: 500;
  color: var(--ink);
}
.compare-table tbody td.w4u-col {
  background: rgba(26, 20, 16, 0.04);
  font-weight: 700;
}
.compare-table tbody tr:hover td.w4u-col { background: rgba(229, 75, 26, 0.08); }

.ct-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
}
.ct-check.yes { background: var(--positive-2); color: var(--positive); border: 1.5px solid var(--positive); }
.ct-check.no { background: var(--paper-3); color: var(--muted); border: 1.5px solid var(--rule); font-size: 16px; }
.ct-check.part { background: var(--paper-2); color: var(--warn); border: 1.5px dashed var(--warn); font-weight: 700; font-size: 12px; }

.compare-table tbody td.w4u-col .ct-check.yes {
  background: var(--signal);
  color: #fff;
  border-color: var(--signal);
  animation: checkStroke .6s ease-out;
}
@keyframes checkStroke {
  from { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  to { transform: scale(1); opacity: 1; }
}

.compare-foot {
  max-width: 1080px;
  margin: 18px auto 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==================== TESTIMONIALS (love letters) ==================== */
.love-section { padding: 96px 0; background: var(--paper); }
.love-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.love-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.love-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.love-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.love-avatar {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.love-avatar.signal { background: var(--signal); color: #fff; }
.love-avatar.positive { background: var(--positive); color: #fff; }
.love-avatar.paper { background: var(--paper-2); color: var(--ink); border: 1.5px solid var(--ink); }
.love-who .ln {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex; align-items: center; gap: 6px;
  line-height: 1.2;
}
.love-who .ln .verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--positive);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.love-who .lr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
.love-who .lr b { color: var(--signal); font-weight: 600; }

.love-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 14px;
}
.love-quote em { background: var(--signal-soft); font-style: normal; padding: 0 4px; }

.love-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: auto;
}
.love-proofs span b {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

@media (max-width: 780px) { .love-grid { grid-template-columns: 1fr; } }

/* ==================== PRICING ==================== */
.pricing-section { padding: 96px 0; background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.pricing-trust {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.pricing-trust b { color: var(--positive); font-weight: 700; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.price-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--signal);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.price-card.featured .price-kicker { color: var(--signal); }
.price-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.price-card.featured .price-name { color: var(--paper); }
.price-forwho {
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 22px;
  line-height: 1.5;
}
.price-card.featured .price-forwho { color: rgba(250,247,240,0.7); }
.price-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2px;
}
.price-card.featured .price-amount { color: var(--paper); }
.price-amount em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--signal); font-size: 18px; }
.price-vol {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--signal);
  margin-bottom: 4px;
}
.price-per-day {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.price-card.featured .price-per-day { color: rgba(250,247,240,0.6); }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-features li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--positive);
  font-weight: 800;
}
.price-card.featured .price-features li { color: rgba(250,247,240,0.85); }
.price-card.featured .price-features li::before { color: var(--signal); }

.price-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.price-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.price-card.featured .price-cta { background: var(--signal); border-color: var(--signal); color: #fff; }
.price-card.featured .price-cta:hover { background: var(--signal-2); }

.price-secondary {
  margin-top: 12px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.price-secondary a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.price-card.featured .price-secondary { color: rgba(250,247,240,0.6); }
.price-card.featured .price-secondary a { color: rgba(250,247,240,0.85); }

.pricing-footer {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  font-family: var(--mono);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { order: -1; transform: none; }
}

/* ==================== FAQ ==================== */
.faq-section { padding: 96px 0; background: var(--paper); }
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-1); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q .faq-plus {
  color: var(--signal);
  font-weight: 800;
  font-size: 22px;
  line-height: 0.8;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 480px; padding-bottom: 22px; }
.faq-a em { font-family: var(--serif); font-style: italic; color: var(--signal); }
.faq-a b { color: var(--ink); font-weight: 700; }

/* ==================== FINAL CTA ==================== */
.finalcta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(250,247,240,.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
}
.finalcta > * { position: relative; }
.finalcta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 18px;
  max-width: 14ch;
  color: var(--paper);
}
.finalcta h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--signal); }
.finalcta p {
  font-size: 18px;
  color: rgba(250,247,240,0.8);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.finalcta-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.finalcta-ctas .btn-signal:hover { background: #fff; color: var(--ink); border-color: #fff; }
.finalcta-foot {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(250,247,240,0.5);
  letter-spacing: 0.02em;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--paper);
  padding: 52px 0 36px;
  border-top: 1px solid var(--rule);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-about p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 380px;
  margin: 12px 0 12px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a {
  color: var(--ink); font-size: 14.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color .15s, color .15s;
}
.footer-col a:hover { border-bottom-color: var(--signal); color: var(--signal); }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--muted);
}
@media (max-width: 780px) { .footer-top { grid-template-columns: 1fr; } }

/* ==================== REVEAL ==================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
