/* ============================================================
   OTTO — the job hunt that runs itself
   Warm-ivory SaaS · indigo ink · signal coral · pastel tints
   Bricolage Grotesque (display) / Schibsted Grotesk (body + labels)
   ============================================================ */

:root {
  --bg:        #FAF8F2;
  --surface:   #FFFFFF;
  --sunken:    #F1EFE7;
  --ink:       #181B2F;
  --ink-2:     #565A75;
  --ink-3:     #8F92A8;
  --line:      rgba(24, 27, 47, .10);
  --line-2:    rgba(24, 27, 47, .16);

  --accent:      #FF5A2D;
  --accent-deep: #E1440F;
  --accent-soft: #FFE9E0;

  --peri:       #E8ECFF;  --peri-ink:   #4557C7;
  --butter:     #FFF0C4;  --butter-ink: #9A6B00;
  --mint:       #DDF2E4;  --mint-ink:   #17804B;
  --blush:      #FFE4DB;  --blush-ink:  #C2492B;

  --dark:      #14162B;
  --dark-text: #F4F2EA;

  --display: "Bricolage Grotesque", "Arial Black", sans-serif;
  --body:    "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;
  /* labels/tags/eyebrows — tracked-out grotesk caps, never a typewriter font */
  --label:   "Schibsted Grotesk", "Helvetica Neue", Arial, sans-serif;

  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(24, 27, 47, .05), 0 10px 28px -16px rgba(24, 27, 47, .16);
  --shadow-lg: 0 2px 4px rgba(24, 27, 47, .05), 0 28px 64px -24px rgba(24, 27, 47, .28);

  --ease-snap: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, output { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ol, ul { list-style: none; }
[hidden] { display: none !important; }
::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip {
  position: fixed; top: -60px; left: 16px; z-index: 300;
  background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 16px; border-radius: 10px;
  transition: top .2s;
}
.skip:focus { top: 12px; }

.grain {
  position: fixed; inset: -50%; z-index: 220; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .032;
  mix-blend-mode: multiply;
}

/* ---------- primitives ---------- */
.shell { max-width: 1180px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 44px); }

.kicker {
  font-family: var(--label);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent);
}
.sec-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }
.sec-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.06;
}
.hl-ink { color: var(--ink-3); }
.hl { color: var(--accent); }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--accent); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 20px;
  display: grid; place-items: center; line-height: 1;
  box-shadow: 0 6px 14px -6px rgba(255, 90, 45, .6);
}
.brand__name { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.pill b {
  font-family: var(--label); font-size: 10.5px; font-weight: 700; letter-spacing: .1em;
  background: var(--accent); color: #fff;
  padding: 4px 9px; border-radius: 999px;
}

.linkbtn {
  color: var(--accent-deep); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px;
  transition: color .15s;
}
.linkbtn:hover { color: var(--accent); }
.linkbtn--dim { color: rgba(244, 242, 234, .55); font-weight: 500; }
.linkbtn--dim:hover { color: #fff; }

.fine { font-size: 13px; color: var(--ink-3); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -.01em;
  padding: 14px 24px;
  border-radius: 13px;
  transition: transform .15s var(--ease-snap), box-shadow .2s, background .15s, border-color .15s, color .15s;
  user-select: none;
  white-space: nowrap;
}
.btn__arrow { transition: transform .15s var(--ease-snap); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn--accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 30px -12px rgba(255, 90, 45, .65), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-1px); }

.btn--ghost {
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

.btn--sm { padding: 10px 18px; font-size: 14px; border-radius: 11px; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl { padding: 18px 32px; font-size: 17px; border-radius: 15px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

.btn--done {
  background: var(--dark); color: #7BE3A6;
  box-shadow: none; transform: none;
  font-family: var(--label); font-size: 13px; letter-spacing: .06em;
}

/* ---------- donuts ---------- */
.donut { position: relative; width: 42px; height: 42px; flex-shrink: 0; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut__track { fill: none; stroke: var(--sunken); stroke-width: 3.6; }
.donut__arc {
  fill: none; stroke: var(--accent); stroke-width: 3.6; stroke-linecap: round;
  stroke-dasharray: 103.7;
  stroke-dashoffset: calc(103.7 - 103.7 * var(--p) / 100);
  animation: donutDraw 1.1s .5s var(--ease-snap) backwards;
}
@keyframes donutDraw { from { stroke-dashoffset: 103.7; } }
.donut b {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--label); font-size: 11.5px; font-weight: 700;
}
.donut--lg { width: 68px; height: 68px; }
.donut--lg b { font-size: 17px; }
.donut--lg .donut__track, .donut--lg .donut__arc { stroke-width: 3.2; }

/* ---------- avatars ---------- */
.avatars { display: flex; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-style: normal; font-family: var(--label); font-size: 11px; font-weight: 700;
  border: 2px solid var(--bg);
}
.avatars .av + .av { margin-left: -9px; }
.av--1 { background: var(--peri); color: var(--peri-ink); }
.av--2 { background: var(--mint); color: var(--mint-ink); }
.av--3 { background: var(--butter); color: var(--butter-ink); }
.av--4 { background: var(--blush); color: var(--blush-ink); }

/* ============================================================
   VIEWS
   ============================================================ */
.view { animation: viewIn .34s var(--ease-snap) both; }
@keyframes viewIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 242, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.nav__links { display: flex; gap: 28px; margin-inline: auto; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-2); transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__signin { font-size: 15px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav__signin:hover { color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 30fr) minmax(0, 33fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(48px, 7vh, 84px);
  padding-bottom: clamp(64px, 9vh, 110px);
}
.hero__copy > * { animation: riseIn .6s var(--ease-snap) both; }
.hero__copy > :nth-child(1) { animation-delay: .04s; }
.hero__copy > :nth-child(2) { animation-delay: .1s; }
.hero__copy > :nth-child(3) { animation-delay: .18s; }
.hero__copy > :nth-child(4) { animation-delay: .26s; }
.hero__copy > :nth-child(5) { animation-delay: .34s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__title {
  font-family: var(--display);
  font-size: clamp(2.9rem, 5.4vw, 4.9rem);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: .99;
  margin: 26px 0 22px;
}
.hero__title .hl { position: relative; }
.hero__sub { font-size: clamp(1.02rem, 1.3vw, 1.16rem); color: var(--ink-2); max-width: 30em; margin-bottom: 32px; }
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__proof { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-2); }
.hero__proof strong { color: var(--ink); }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 12.5px; }

/* app preview */
.hero__preview { position: relative; animation: riseIn .7s .25s var(--ease-snap) both; }
.hero__preview::before {
  content: ""; position: absolute; inset: -44px -34px;
  background-image: radial-gradient(rgba(24, 27, 47, .13) 1.2px, transparent 1.3px);
  background-size: 19px 19px;
  -webkit-mask-image: radial-gradient(68% 68% at 50% 50%, #000 55%, transparent 100%);
          mask-image: radial-gradient(68% 68% at 50% 50%, #000 55%, transparent 100%);
  z-index: -1;
}
.app {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.app__bar { display: flex; align-items: center; gap: 6px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.app__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sunken); border: 1px solid var(--line); }
.app__title { flex: 1; text-align: center; font-family: var(--label); font-size: 11.5px; letter-spacing: .06em; color: var(--ink-3); }
.app__live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--label); font-size: 10px; font-weight: 700; letter-spacing: .14em;
  color: var(--mint-ink); background: var(--mint);
  padding: 4px 9px; border-radius: 999px;
}
.app__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint-ink); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .25; } }

.app__tabs { display: flex; gap: 22px; padding: 13px 18px 0; border-bottom: 1px solid var(--line); }
.app__tabs b { font-size: 13.5px; font-weight: 600; color: var(--ink-3); padding-bottom: 11px; position: relative; }
.app__tabs b span {
  font-family: var(--label); font-size: 10.5px; font-weight: 600;
  background: var(--sunken); color: var(--ink-2);
  padding: 2px 7px; border-radius: 999px; margin-left: 4px;
}
.app__tabs b.on { color: var(--ink); }
.app__tabs b.on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2.5px; background: var(--accent); border-radius: 2px; }
.app__tabs b.on span { background: var(--accent-soft); color: var(--accent-deep); }

.app__list li { display: flex; align-items: center; gap: 14px; padding: 14px 18px; }
.app__list li + li { border-top: 1px solid var(--line); }
.mlogo {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--label); font-size: 13px; font-weight: 700;
}
.mlogo--mint { background: var(--mint); color: var(--mint-ink); }
.mlogo--peri { background: var(--peri); color: var(--peri-ink); }
.mlogo--blush { background: var(--blush); color: var(--blush-ink); }
.mrow__mid { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mrow__mid strong { font-size: 15px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow__meta { font-size: 12.5px; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mrow__end { display: flex; align-items: center; gap: 12px; }
.sentpill {
  font-size: 12.5px; font-weight: 700;
  background: var(--mint); color: var(--mint-ink);
  padding: 8px 13px; border-radius: 9px;
}
.app__foot {
  font-family: var(--label); font-size: 11px; letter-spacing: .05em;
  color: var(--ink-3);
  padding: 12px 18px;
  border-top: 1px dashed var(--line-2);
}
.app__foot b { color: var(--accent-deep); }

/* floating toasts */
.float {
  position: absolute;
  display: flex; align-items: center; gap: 11px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 11px 16px 11px 11px;
}
.float strong { display: block; font-size: 13.5px; letter-spacing: -.01em; }
.float em { display: block; font-style: normal; font-family: var(--label); font-size: 10.5px; color: var(--ink-3); margin-top: 1px; }
.float__ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex-shrink: 0; }
.float__ic svg { width: 17px; height: 17px; }
.float__ic--accent { background: var(--accent-soft); color: var(--accent-deep); }
.float__ic--mint { background: var(--mint); color: var(--mint-ink); }
.float--mail { top: -46px; right: -26px; animation: riseIn .6s .7s var(--ease-snap) both, bob 5.5s 1.4s ease-in-out infinite alternate; }
@keyframes bob { to { transform: translateY(-9px); } }
.float--replay { animation: floatPop .5s var(--ease-snap) both, bob 5.5s .7s ease-in-out infinite alternate; }
@keyframes floatPop {
  0% { opacity: 0; transform: translateY(12px) scale(.85); }
  55% { opacity: 1; transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: none; }
}

/* ---------- hero auto-apply demo ---------- */
.app__cta { padding: 12px 18px; border-top: 1px solid var(--line); }
.app__applyall {
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  padding: 12px 16px; border-radius: 11px;
  box-shadow: 0 10px 22px -10px rgba(255, 90, 45, .65), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: background .18s, color .18s, transform .18s var(--ease-snap), box-shadow .18s;
}
.app__applyall.hov { background: var(--accent-deep); transform: translateY(-1px); }
.app__applyall.press { transform: scale(.97); }
.app__applyall.busy { background: var(--accent-soft); color: var(--accent-deep); box-shadow: none; animation: pulse 1.1s ease-in-out infinite; }
.app__applyall.done { background: var(--mint); color: var(--mint-ink); box-shadow: none; }
.sentpill--in { animation: stampIn .34s var(--ease-snap) both; }
.mrow--out { animation: rowOut .28s var(--ease-snap) both; }
@keyframes rowOut { to { opacity: 0; transform: translateY(10px); } }

/* gmail-style iphone notification */
.notif {
  position: absolute; left: 50%; top: 12px; z-index: 14;
  width: min(384px, 88%);
  display: flex; align-items: center; gap: 12px;
  background: rgba(252, 251, 248, .9);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(24, 27, 47, .08);
  border-radius: 24px;
  padding: 12px 15px;
  box-shadow: 0 22px 48px -18px rgba(24, 27, 47, .42);
  opacity: 0; pointer-events: none;
  transform: translate(-50%, -26px) scale(.92);
}
.notif.show { animation: notifIn .6s cubic-bezier(.32, 1.4, .4, 1) forwards; }
.notif.hide { animation: notifOut .45s var(--ease-snap) forwards; }
@keyframes notifIn {
  from { opacity: 0; transform: translate(-50%, -26px) scale(.92); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes notifOut {
  from { opacity: 1; transform: translate(-50%, 0) scale(1); }
  to   { opacity: 0; transform: translate(-50%, -24px) scale(.95); }
}
.notif__icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(24, 27, 47, .07);
  border-radius: 9.5px;
  display: grid; place-items: center;
}
.notif__icon svg { width: 20px; }
.notif__body { flex: 1; min-width: 0; }
.notif__top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.notif__top b { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.notif__top em { font-style: normal; font-size: 11.5px; color: var(--ink-3); }
.notif__text {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12.5px; line-height: 1.35; color: var(--ink-2);
  margin-top: 1px;
}

.demo-cursor {
  position: absolute; left: 0; top: 0; z-index: 12;
  pointer-events: none;
  opacity: 0;
  transition: transform .85s cubic-bezier(.3, .75, .25, 1), opacity .4s;
  will-change: transform;
  filter: drop-shadow(0 5px 12px rgba(24, 27, 47, .35));
}
.demo-cursor.live { opacity: 1; }
.demo-cursor svg { width: 22px; height: 22px; margin: -2px 0 0 -3px; transition: transform .12s var(--ease-snap); transform-origin: 30% 15%; }
.demo-cursor.down svg { transform: scale(.78); }
.demo-cursor__tag {
  position: absolute; left: 15px; top: 20px;
  background: var(--accent); color: #fff;
  font-family: var(--label); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 3px 10px 10px 10px;
  box-shadow: 0 6px 14px -6px rgba(255, 90, 45, .7);
  white-space: nowrap;
}

.demo-ripple {
  position: absolute; left: 0; top: 0; z-index: 11;
  width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 2.5px solid var(--accent); border-radius: 50%;
  opacity: 0; pointer-events: none;
}
.demo-ripple.go { animation: rippleGo .55s ease-out; }
@keyframes rippleGo {
  0% { opacity: .85; transform: scale(.25); }
  100% { opacity: 0; transform: scale(1.35); }
}

.demo-tip {
  position: absolute; left: 0; top: 0; z-index: 12;
  background: var(--dark); color: var(--dark-text);
  font-family: var(--label); font-size: 11.5px; font-weight: 600; letter-spacing: .02em;
  padding: 8px 12px; border-radius: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s, transform .25s var(--ease-snap);
  pointer-events: none; white-space: nowrap;
}
.demo-tip b { color: #7BE3A6; font-weight: 700; }
.demo-tip.show { opacity: 1; transform: translateY(0); }

.mrow--in { animation: rowIn .45s var(--ease-snap) both; }
@keyframes rowIn {
  from { opacity: 0; transform: translateY(-13px); background: var(--accent-soft); }
  to { opacity: 1; transform: none; background: transparent; }
}
.newtag {
  font-style: normal; font-family: var(--label); font-size: 9px; font-weight: 800; letter-spacing: .12em;
  color: var(--accent-deep); background: var(--accent-soft);
  padding: 2.5px 6px; border-radius: 5px; margin-left: 7px;
  vertical-align: 2px;
  animation: newFade 3.2s ease forwards;
}
@keyframes newFade { 0%, 70% { opacity: 1; } 100% { opacity: 0; } }

.app__tabs b span { display: inline-block; font-variant-numeric: tabular-nums; }
.donut b, .app__foot b { font-variant-numeric: tabular-nums; }
.app__tabs b span.tick { animation: countPop .5s var(--ease-snap); }
@keyframes countPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.28); background: var(--accent); color: #fff; }
  100% { transform: scale(1); }
}

/* ============================================================
   FEED (marquee)
   ============================================================ */
.feed {
  border-block: 1px solid var(--line);
  background: #FFFDF7;
  padding-block: 16px;
  overflow: hidden;
}
.feed__track { display: flex; width: max-content; animation: tick 42s linear infinite; }
.feed:hover .feed__track { animation-play-state: paused; }
.feed__group { display: flex; flex-shrink: 0; padding-right: 14px; }
.feed__item {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 16px;
  margin-right: 14px;
  font-size: 13px; color: var(--ink-2); white-space: nowrap;
}
.feed__item b { font-family: var(--label); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; color: var(--accent-deep); }
.feed__item em { font-style: normal; font-family: var(--label); font-size: 10.5px; color: var(--ink-3); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding-top: clamp(72px, 10vh, 116px); padding-bottom: clamp(56px, 7vh, 84px); }
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.how__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-snap), box-shadow .2s;
}
.how__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.how__num {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 11px;
  background: var(--sunken);
  font-family: var(--label); font-size: 14px; font-weight: 700;
  margin-bottom: 42px;
}
.how__card h3 { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.how__card p { font-size: 14.5px; color: var(--ink-2); }
.how__card--accent { background: var(--accent-soft); border-color: rgba(255, 90, 45, .25); }
.how__card--accent .how__num { background: var(--accent); color: #fff; }

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.features { padding-top: clamp(56px, 7vh, 84px); padding-bottom: clamp(72px, 10vh, 116px); }
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bcard {
  border-radius: var(--r-lg);
  padding: 26px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease-snap), box-shadow .2s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bcard h3 { font-family: var(--display); font-size: 19.5px; font-weight: 700; letter-spacing: -.02em; margin-top: 22px; }
.bcard p { font-size: 14.5px; color: var(--ink-2); margin-top: 8px; }
.bcard__visual { min-height: 118px; display: flex; align-items: center; }
.bcard--peri   { background: var(--peri); }
.bcard--butter { background: var(--butter); }
.bcard--mint   { background: var(--mint); }
.bcard--blush  { background: var(--blush); }

.bcard--peri .bcard__visual { gap: 20px; }
.fitlist { flex: 1; }
.fitlist li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  padding: 5.5px 0;
}
.fitlist li + li { border-top: 1px solid rgba(24, 27, 47, .07); }
.fitlist b { color: var(--mint-ink); }
.bcard--peri .donut__track { stroke: rgba(24, 27, 47, .1); }

.docdiff { position: relative; width: 100%; display: flex; flex-direction: column; gap: 9px; padding-right: 20px; }
.docdiff i { height: 9px; border-radius: 5px; background: rgba(24, 27, 47, .13); }
.docdiff i:nth-child(1) { width: 62%; }
.docdiff i:nth-child(2) { width: 84%; }
.docdiff i:nth-child(3) { width: 48%; }
.docdiff i:nth-child(4) { width: 91%; }
.docdiff i:nth-child(5) { width: 70%; }
.docdiff i:nth-child(6) { width: 38%; }
.docdiff i:nth-child(7) { width: 77%; }
.docdiff i.hot { background: var(--butter-ink); opacity: .85; }
.docdiff__tag {
  position: absolute; right: -6px; bottom: -8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 11px;
  font-family: var(--label); font-size: 10.5px; font-weight: 700; letter-spacing: .05em;
  color: var(--butter-ink);
  transform: rotate(-4deg);
  box-shadow: var(--shadow-sm);
}

.queue { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.queue li {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 10px 14px;
  font-size: 13.5px; font-weight: 600;
}
.queue b { font-family: var(--label); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; }
.queue .ok { color: var(--mint-ink); }
.queue .run { color: var(--accent-deep); animation: pulse 1.4s ease-in-out infinite; }

.bcard--wide {
  grid-column: span 2;
  background: var(--surface);
  flex-direction: row; align-items: center; gap: 34px;
}
.chat { flex: 1.1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.chat__msg { font-size: 14px; line-height: 1.45; padding: 12px 16px; max-width: 92%; }
.chat__msg--you { background: var(--sunken); border-radius: 15px 15px 15px 5px; align-self: flex-start; }
.chat__msg--otto { background: var(--dark); color: var(--dark-text); border-radius: 15px 15px 5px 15px; align-self: flex-end; }
.chat__msg--otto b {
  display: inline-block;
  font-family: var(--label); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-right: 6px;
}
.bcard__wide-copy { flex: 1; }
.bcard__wide-copy h3 { margin-top: 0; }

.brief {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px 17px;
  box-shadow: var(--shadow-sm);
}
.brief__head { font-family: var(--label); font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--blush-ink); margin-bottom: 7px; }
.brief p:not(.brief__head) { font-size: 13px; color: var(--ink-2); margin: 0; }

/* ============================================================
   PULSE — live numbers under the features headline
   ============================================================ */
.pulse {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  border-block: 1px solid var(--line-2);
  margin-bottom: 44px;
}
.pulse > div { padding: 34px 36px; }
.pulse > div:first-child { padding-left: 0; }
.pulse > div:last-child { padding-right: 0; }
.pulse > div + div { border-left: 1px solid var(--line); }
.pulse__live {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--label); font-size: 10.5px; font-weight: 800; letter-spacing: .16em;
  color: var(--mint-ink); background: var(--mint);
  padding: 4px 11px; border-radius: 999px;
  margin-bottom: 16px;
}
.pulse__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--mint-ink); animation: pulse 1.6s ease-in-out infinite; }
.pulse__num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  font-weight: 750; letter-spacing: -.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pulse__num--sm { font-size: clamp(1.9rem, 3.2vw, 2.8rem); margin-top: 47px; }
.pulse__num em {
  font-style: normal; font-size: .44em; font-weight: 600;
  color: var(--ink-3); letter-spacing: -.01em; margin-left: 2px;
}
.pulse__cap { font-size: 14px; color: var(--ink-2); margin-top: 12px; max-width: 24em; }
.pulse__cap b { color: var(--ink); }

/* odometer digits */
.od__c { display: inline-block; vertical-align: top; }
.od__c--roll { overflow: hidden; height: 1em; }
.od__stack { display: block; animation: odRoll .6s var(--ease-snap) forwards; }
.od__stack span { display: block; height: 1em; }
@keyframes odRoll { from { transform: translateY(0); } to { transform: translateY(-1em); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--dark); color: var(--dark-text); padding-block: clamp(52px, 7vh, 76px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__cell { padding: 10px 30px; }
.stats__cell + .stats__cell { border-left: 1px solid rgba(244, 242, 234, .14); }
.stats__cell b {
  display: block;
  font-family: var(--display); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 750; letter-spacing: -.03em;
  color: var(--accent);
}
.stats__cell span { display: block; font-size: 14px; color: rgba(244, 242, 234, .66); margin-top: 6px; max-width: 15em; }

/* ============================================================
   QUOTES
   ============================================================ */
.quotes { padding-top: clamp(72px, 10vh, 116px); padding-bottom: clamp(56px, 7vh, 84px); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.quote blockquote { font-size: 16.5px; font-weight: 500; letter-spacing: -.01em; line-height: 1.5; }
.quote figcaption { display: flex; align-items: center; gap: 12px; }
.quote figcaption .av { border-color: var(--surface); }
.quote figcaption b { display: block; font-size: 14.5px; }
.quote figcaption em { display: block; font-style: normal; font-size: 12.5px; color: var(--ink-3); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding-top: clamp(56px, 7vh, 84px); padding-bottom: clamp(72px, 10vh, 116px); }
.pricing__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 16px; max-width: 860px; margin-inline: auto; }
.price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex; flex-direction: column;
}
.price--pro { border: 2px solid var(--accent); box-shadow: var(--shadow-lg); }
.price__badge {
  position: absolute; top: -13px; left: 26px;
  background: var(--accent); color: #fff;
  font-family: var(--label); font-size: 10px; font-weight: 700; letter-spacing: .14em;
  padding: 5px 11px; border-radius: 999px;
}
.price h3 { font-size: 16px; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: .06em; }
.price__num { font-family: var(--display); font-size: 46px; font-weight: 750; letter-spacing: -.03em; margin-top: 6px; }
.price__num span { font-size: 16px; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.price__blurb { font-size: 14.5px; color: var(--ink-2); margin: 2px 0 16px; }
.price ul { flex: 1; border-top: 1px solid var(--line); padding-top: 16px; margin-bottom: 22px; }
.price li { display: flex; gap: 10px; font-size: 14.5px; padding: 6px 0; color: var(--ink-2); }
.price li::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-bottom: clamp(72px, 10vh, 116px); }
.faq__list { max-width: 760px; margin-inline: auto; }
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 22px;
  font-size: 16px; font-weight: 600; letter-spacing: -.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa__x { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.qa__x::before, .qa__x::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform .25s var(--ease-snap);
}
.qa__x::before { left: 0; right: 0; top: 7px; height: 2.5px; }
.qa__x::after { top: 0; bottom: 0; left: 7px; width: 2.5px; }
.qa[open] .qa__x::after { transform: scaleY(0); }
.qa > p { padding: 0 22px 20px; font-size: 15px; color: var(--ink-2); max-width: 62ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta { padding-bottom: clamp(72px, 10vh, 116px); }
.cta__inner {
  background: var(--dark); color: var(--dark-text);
  border-radius: 28px;
  padding: clamp(52px, 8vh, 88px) clamp(24px, 5vw, 72px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
}
.cta__inner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244, 242, 234, .1) 1.2px, transparent 1.3px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(75% 100% at 50% 0%, #000 20%, transparent 80%);
          mask-image: radial-gradient(75% 100% at 50% 0%, #000 20%, transparent 80%);
}
.cta__inner h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 750; letter-spacing: -.025em; line-height: 1.08;
  margin-bottom: 30px;
  position: relative;
}
.cta__inner h2 span { color: var(--accent); }
.cta__fine { font-family: var(--label); font-size: 12px; letter-spacing: .06em; color: rgba(244, 242, 234, .55); margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-top: 56px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer__brand p { font-size: 14px; color: var(--ink-3); margin-top: 14px; font-style: italic; }
.footer__grid h4 {
  font-family: var(--label); font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 14px;
}
.footer__grid nav a { display: block; font-size: 14.5px; color: var(--ink-2); padding: 4px 0; transition: color .15s; }
.footer__grid nav a:hover { color: var(--accent-deep); }
.footer__fine { border-top: 1px solid var(--line); margin-top: 44px; padding-block: 22px; }
.footer__fine p { font-size: 13px; color: var(--ink-3); }

/* ============================================================
   FUNNEL
   ============================================================ */
.fchrome { display: flex; align-items: center; justify-content: space-between; padding: 20px clamp(20px, 4vw, 40px) 16px; }
.fchrome__step { font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .18em; color: var(--ink-2); }

.fprogress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-inline: clamp(20px, 4vw, 40px); }
.fprogress i { height: 6px; border-radius: 999px; background: #EBE8DE; transition: background .3s; }
.fprogress i.on { background: var(--accent); }

.fmain { max-width: 660px; margin-inline: auto; padding: clamp(40px, 6vh, 72px) clamp(20px, 4vw, 40px) 110px; }
.backlink {
  font-family: var(--label); font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--ink-3);
  margin-bottom: 28px;
  transition: color .15s;
}
.backlink:hover { color: var(--accent-deep); }

.step { animation: stepIn .32s var(--ease-snap) both; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.step--wide { max-width: none; }

.step__eyebrow {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--label); font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
  margin-bottom: 36px;
  outline: none;
}
.step__sub { font-size: 16.5px; color: var(--ink-2); margin: -22px 0 34px; max-width: 32em; }
.field--reveal { animation: stepIn .32s var(--ease-snap); }

.stack { display: flex; flex-direction: column; gap: 26px; }
.step__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; margin-top: 12px; }
.step__actions--center { align-items: center; margin-top: 32px; }

/* fields */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.field__label { font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .15em; color: var(--ink-3); }
.field__input {
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-size: 17.5px; font-weight: 500; letter-spacing: -.01em;
  transition: border-color .18s, box-shadow .18s, background .18s;
  caret-color: var(--accent);
  width: 100%;
}
.field__input::placeholder { color: var(--ink-3); font-weight: 400; }
.field__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 90, 45, .14); }
.field__err { font-size: 13.5px; font-weight: 600; color: var(--accent-deep); }
.field--bad .field__input { border-color: var(--accent); animation: nudge .3s; }
@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-7px); }
  60% { transform: translateX(5px); }
}
.field--flash .field__input { animation: fillFlash 1.2s ease-out; }
@keyframes fillFlash { 0% { background: var(--butter); } 100% { background: var(--surface); } }

.autofill-tag {
  font-family: var(--label); font-size: 10.5px; font-weight: 700; letter-spacing: .08em;
  color: var(--mint-ink); background: var(--mint);
  padding: 4px 10px; border-radius: 999px;
}

.divider {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .16em;
  color: var(--ink-3); margin-top: 4px;
}
.divider::before, .divider::after { content: ""; flex: 1; border-top: 1px solid var(--line); }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip {
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--line-2);
  background: var(--surface);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink-2);
  transition: border-color .15s, color .15s, background .15s, transform .1s;
}
.chip:hover { border-color: var(--accent); color: var(--accent-deep); }
.chip.picked { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip:active { transform: scale(.96); }

/* salary range */
.range__out { font-family: var(--label); font-size: clamp(20px, 3vw, 25px); font-weight: 700; color: var(--accent-deep); }
.range__out span { font-size: 13px; color: var(--ink-3); font-weight: 500; margin-left: 3px; }
.range {
  --pct: 33%;
  appearance: none; -webkit-appearance: none;
  width: 100%; height: 28px; background: transparent; margin-top: 10px;
  cursor: pointer;
}
.range::-webkit-slider-runnable-track {
  height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--accent) var(--pct), #EBE8DE var(--pct));
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px; margin-top: -9px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform .12s var(--ease-snap);
}
.range::-webkit-slider-thumb:hover { transform: scale(1.1); }
.range:active::-webkit-slider-thumb { transform: scale(1.16); }
.range::-moz-range-track { height: 6px; border-radius: 999px; background: #EBE8DE; }
.range::-moz-range-progress { height: 6px; border-radius: 999px; background: var(--accent); }
.range::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--surface); border: 2px solid var(--ink); border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.range__ends { display: flex; justify-content: space-between; margin-top: 4px; font-family: var(--label); font-size: 10.5px; color: var(--ink-3); }

/* dropzone */
.drop {
  background: var(--surface);
  border: 2px dashed var(--line-2);
  border-radius: var(--r-lg);
  min-height: 252px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px;
  text-align: center;
  padding: 32px;
  cursor: pointer;
  transition: border-color .18s, background .18s, transform .18s var(--ease-snap);
}
.drop:hover, .drop:focus-visible { border-color: var(--ink-3); }
.drop.dragover { border-color: var(--accent); background: var(--accent-soft); transform: scale(1.01); }
.drop__badge {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent-deep);
  display: grid; place-items: center;
}
.drop__badge svg { width: 26px; height: 26px; }
.drop.dragover .drop__badge { background: var(--accent); color: #fff; }
.drop__label { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.drop__browse { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.drop__hint { font-family: var(--label); font-size: 11.5px; letter-spacing: .06em; color: var(--ink-3); }
.drop__err { font-size: 13.5px; font-weight: 600; color: var(--accent-deep); margin-top: 14px; }
.drop__alt { font-size: 14.5px; color: var(--ink-2); margin-top: 22px; }

/* parse log */
.parse {
  margin-top: 24px;
  background: var(--dark);
  border-radius: 16px;
  padding: 20px 24px;
  font-family: var(--label);
  font-size: 12.5px; letter-spacing: .05em; line-height: 2.15;
  text-transform: uppercase;
  color: rgba(244, 242, 234, .82);
  box-shadow: var(--shadow-lg);
}
.parse__line { animation: lineIn .25s var(--ease-snap) both; }
.parse__line strong { color: #7BE3A6; font-weight: 600; }
.parse__caret { display: inline-block; width: 8px; height: 14px; background: var(--accent); vertical-align: middle; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@keyframes lineIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* search scene */
.search {
  display: flex; flex-direction: column; align-items: center; gap: 38px;
  padding-top: clamp(20px, 6vh, 64px);
  text-align: center;
}
.search__ring { position: relative; width: 190px; height: 190px; }
.search__spinner {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(var(--accent) 0 80deg, #EBE8DE 80deg 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 9px), #000 calc(100% - 8px));
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.search__num {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  font-family: var(--display); font-size: 36px; font-weight: 750; letter-spacing: -.02em;
}
.search__numlabel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, 22px);
  font-family: var(--label); font-size: 10px; font-weight: 600; letter-spacing: .18em;
  color: var(--ink-3);
}
.search__log {
  display: flex; flex-direction: column; gap: 10px; min-height: 132px;
  font-family: var(--label); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
}
.search__log li { animation: lineIn .3s var(--ease-snap) both; color: var(--ink-3); }
.search__log li.hot { color: var(--accent-deep); }

/* results */
.results .step__title { margin-bottom: 28px; }
.jobs { display: flex; flex-direction: column; gap: 14px; }
.job {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  animation: cardIn .5s var(--ease-snap) both;
  transition: transform .2s var(--ease-snap), box-shadow .2s;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.job__logo {
  width: 48px; height: 48px; border-radius: 13px; align-self: start;
  display: grid; place-items: center;
  font-family: var(--label); font-size: 15px; font-weight: 700;
}
.job__logo--mint { background: var(--mint); color: var(--mint-ink); }
.job__logo--peri { background: var(--peri); color: var(--peri-ink); }
.job__logo--blush { background: var(--blush); color: var(--blush-ink); }
.job__logo--butter { background: var(--butter); color: var(--butter-ink); }
.job__title { font-family: var(--display); font-size: 19px; font-weight: 700; letter-spacing: -.02em; }
.job__co { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; }
.job__meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.tagchip {
  font-family: var(--label); font-size: 11px; font-weight: 600; letter-spacing: .03em;
  background: var(--sunken); color: var(--ink-2);
  padding: 4.5px 9px; border-radius: 7px;
}
.tagchip--pay { background: var(--accent-soft); color: var(--accent-deep); }
.job__blurb { font-size: 13.5px; color: var(--ink-2); margin-top: 10px; max-width: 42em; }
.job__side { display: flex; flex-direction: column; align-items: center; gap: 7px; align-self: center; }
.job__side .donut { width: 50px; height: 50px; }
.job__side .donut b { font-size: 12.5px; }
.job__ref { font-family: var(--label); font-size: 9.5px; letter-spacing: .08em; color: var(--ink-3); }

.job.flyout { animation: flyout .5s var(--ease-snap) both; }
@keyframes flyout { to { opacity: 0; transform: translateY(-34px) scale(.96); } }

/* ============================================================
   SENT / UPSELL
   ============================================================ */
.smain { max-width: 680px; margin-inline: auto; padding: clamp(32px, 5vh, 60px) clamp(20px, 4vw, 40px) 120px; }
.sent__title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 750; letter-spacing: -.03em; line-height: 1;
  margin-bottom: 38px;
  outline: none;
}

.receipt { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.receipt__row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.receipt__no { font-family: var(--label); font-size: 13px; font-weight: 600; color: var(--ink-3); }
.receipt__role { font-family: var(--display); font-size: 17px; font-weight: 700; letter-spacing: -.015em; }
.receipt__co { font-family: var(--label); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-top: 3px; }
.receipt__stamp { min-width: 92px; display: flex; justify-content: flex-end; }

.stamp {
  display: inline-block;
  font-family: var(--label); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 8px 13px; border-radius: 999px;
  box-shadow: 0 8px 18px -8px rgba(255, 90, 45, .7);
}
.stamp--in { animation: stampIn .34s var(--ease-snap) both; }
@keyframes stampIn {
  0%   { transform: scale(1.9) rotate(-8deg); opacity: 0; }
  60%  { transform: scale(.94) rotate(1deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.thunk { animation: thunk .28s .05s var(--ease-snap); }
@keyframes thunk {
  0% { transform: translate(0, 0); }
  30% { transform: translate(1px, 2px); }
  60% { transform: translate(-1px, 0); }
  100% { transform: translate(0, 0); }
}

.sent__sub { color: var(--ink-2); max-width: 36em; }
.sent__sub strong { color: var(--ink); }

.upsell {
  margin-top: 52px;
  background: var(--dark); color: var(--dark-text);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-lg);
  animation: upsellIn .55s var(--ease-snap) both;
  position: relative; overflow: hidden;
}
.upsell::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244, 242, 234, .09) 1.2px, transparent 1.3px);
  background-size: 20px 20px;
  -webkit-mask-image: radial-gradient(90% 90% at 100% 0%, #000 10%, transparent 70%);
          mask-image: radial-gradient(90% 90% at 100% 0%, #000 10%, transparent 70%);
  pointer-events: none;
}
@keyframes upsellIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }
.upsell__eyebrow { font-family: var(--label); font-size: 11px; font-weight: 700; letter-spacing: .18em; color: var(--accent); margin-bottom: 14px; }
.upsell__title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 750; letter-spacing: -.025em; line-height: 1.08;
  margin-bottom: 14px;
}
.upsell__copy { color: rgba(244, 242, 234, .75); max-width: 36em; margin-bottom: 22px; font-size: 15px; }
.upsell__list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.upsell__list li { display: flex; gap: 11px; align-items: baseline; font-size: 14.5px; color: rgba(244, 242, 234, .85); }
.upsell__list li::before { content: "✓"; color: #7BE3A6; font-weight: 700; }
.upsell__price {
  font-family: var(--label); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(244, 242, 234, .6);
  border-top: 1px solid rgba(244, 242, 234, .14);
  padding-top: 20px; margin-bottom: 22px;
}
.upsell__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; position: relative; }

/* ============================================================
   TOAST · CONFETTI
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 250;
  transform: translate(-50%, 80px);
  background: var(--dark); color: var(--dark-text);
  font-family: var(--label); font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform .3s var(--ease-snap);
  pointer-events: none;
  max-width: min(92vw, 560px);
  text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

.confetti-layer { position: fixed; inset: 0; z-index: 240; pointer-events: none; overflow: hidden; }
.confetti-piece {
  position: absolute; top: -3vh; left: var(--x);
  width: var(--w); height: var(--h);
  background: var(--c);
  border-radius: 2px;
  opacity: .95;
  animation: fall var(--d) linear var(--delay) forwards;
}
@keyframes fall { to { transform: translateY(108vh) rotate(var(--r)); opacity: .85; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero__preview { max-width: 600px; margin-inline: auto; width: 100%; }
  .float--mail { right: -6px; top: -42px; }
  .how__grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bcard--wide { grid-column: span 2; }
  .pulse { grid-template-columns: 1fr 1fr; }
  .pulse__main { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .pulse > div { padding: 26px 28px; }
  .pulse > div + div { border-left: 0; }
  .pulse__main + .pulse__cell { padding-left: 0; }
  .pulse__cell + .pulse__cell { border-left: 1px solid var(--line); }
  .pulse__num--sm { margin-top: 0; }
  .stats__grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .stats__cell:nth-child(3) { border-left: 0; }
  .quotes__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__signin { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bcard--wide { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 22px; }
  .how__grid { grid-template-columns: 1fr; }
  .how__num { margin-bottom: 22px; }
}
@media (max-width: 620px) {
  .hero__title { font-size: clamp(2.3rem, 10.5vw, 2.9rem); }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
  .app__tabs { gap: 14px; overflow-x: auto; }
  .mrow__end .sentpill { display: none; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__cell { border-left: 0 !important; padding-inline: 20px; }
  .stats__cell + .stats__cell { border-top: 1px solid rgba(244, 242, 234, .14); padding-top: 30px; }
  .pulse { grid-template-columns: 1fr; }
  .pulse > div { padding: 22px 0; }
  .pulse__cell + .pulse__cell { border-left: 0; border-top: 1px solid var(--line); }
  .step__actions .btn, .upsell__actions .btn { width: 100%; }
  .job { grid-template-columns: 42px minmax(0, 1fr); }
  .job__logo { width: 42px; height: 42px; border-radius: 11px; }
  .job__side { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; width: 100%; }
  .receipt__row { grid-template-columns: 30px minmax(0, 1fr) auto; gap: 10px; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
  .feed__track { animation: none; }
  .search__spinner { animation: none; }
  .confetti-piece { display: none; }
  .demo-cursor, .demo-ripple, .demo-tip, .notif { display: none; }
}
