/* OpenSpecAI landing page — intentionally dependency-free */
:root {
  --ink: #181818;
  --muted: #666a70;
  --quiet: #92969b;
  --line: #e4e6e8;
  --line-strong: #d4d7da;
  --paper: #ffffff;
  --wash: #f7f8f8;
  --wash-2: #f1f3f4;
  --accent: #5c8df6;
  --accent-soft: #eaf1ff;
  --green: #16b876;
  --green-soft: #e3f8ef;
  --dark: #191a1b;
  --radius: 14px;
  --rail: 1152px;
  --shadow: 0 18px 60px rgba(16, 24, 40, .09), 0 2px 8px rgba(16, 24, 40, .04);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent calc(50% - 577px), rgba(228,230,232,.72) calc(50% - 577px), rgba(228,230,232,.72) calc(50% - 576px), transparent calc(50% - 576px)),
    linear-gradient(90deg, transparent calc(50% + 576px), rgba(228,230,232,.72) calc(50% + 576px), rgba(228,230,232,.72) calc(50% + 577px), transparent calc(50% + 577px)),
    #fafafa;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: #dce7ff; color: #111; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000; padding: 10px 15px;
  background: var(--paper); border-radius: 8px; box-shadow: var(--shadow); transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.rail { width: min(var(--rail), calc(100% - 40px)); margin-inline: auto; background: var(--paper); border-inline: 1px solid var(--line); }

/* Announcement and header */
.announcement {
  min-height: 40px; padding: 9px 20px; display: flex; align-items: center; justify-content: center; gap: 8px;
  color: #fff; background: var(--dark); font-size: 12px; letter-spacing: -.01em;
}
.announcement:hover .announcement-secondary { color: #fff; }
.announcement-secondary { color: #bfc2c5; transition: color .2s ease; }
.status-dot { width: 6px; height: 6px; background: #35d596; border-radius: 50%; box-shadow: 0 0 0 4px rgba(53,213,150,.1); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,250,.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(15px); }
.header-inner { height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 24px; border-top: 0; border-bottom: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 15px; font-weight: 700; letter-spacing: -.035em; }
.brand-ai { color: var(--accent); }
.brand-mark { display: grid; grid-template-columns: repeat(2, 9px); grid-template-rows: repeat(2, 9px); gap: 2px; width: 20px; height: 20px; transform: rotate(45deg); }
.brand-mark i { display: block; background: var(--accent); border-radius: 8px 8px 2px 8px; }
.brand-mark i:nth-child(2) { opacity: .72; transform: rotate(90deg); }
.brand-mark i:nth-child(3) { opacity: .72; transform: rotate(-90deg); }
.brand-mark i:nth-child(4) { opacity: .42; transform: rotate(180deg); }
.brand-mark-small { grid-template-columns: repeat(2, 7px); grid-template-rows: repeat(2, 7px); width: 16px; height: 16px; }
.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a { position: relative; color: #55595e; font-size: 13px; font-weight: 500; transition: color .2s ease; }
.primary-nav a::after { content: ""; position: absolute; height: 1px; left: 0; right: 100%; bottom: -7px; background: var(--ink); transition: right .25s ease; }
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; padding: 9px 15px; color: #fff; background: var(--ink); border: 1px solid var(--ink); border-radius: 9px; font-size: 12px; font-weight: 650; box-shadow: 0 2px 4px rgba(0,0,0,.1); transition: transform .2s, background .2s; }
.header-cta:hover { background: #2c2d2e; transform: translateY(-1px); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }

/* Common typography and controls */
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: #73777b; font-size: 11px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow > span { width: 18px; height: 1px; background: var(--green); position: relative; }
.eyebrow > span::after { content: ""; position: absolute; right: -1px; top: -2px; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
.button { min-height: 48px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(20,20,20,.1); }
.button-dark { color: #fff; background: var(--dark); border-color: var(--dark); }
.button-dark:hover { background: #2c2d2e; }
.button-light { background: var(--paper); }
.button-light:hover { background: #fafafa; }
.button-white { color: var(--ink); background: #fff; border-color: #fff; }

/* Hero */
.hero { min-height: 1480px; padding: 70px 24px 0; position: relative; overflow: hidden; border-top: 0; }
.hero::before { content: ""; position: absolute; width: 650px; height: 420px; left: 50%; top: -130px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(92,141,246,.12), transparent 68%); pointer-events: none; }
.notification-stack { width: 420px; height: 124px; margin: 0 auto 28px; position: relative; perspective: 700px; }
.notification { position: absolute; left: 50%; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 11px; width: 360px; height: 68px; padding: 10px 13px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 8px 30px rgba(25,30,40,.09); transform: translateX(-50%); }
.notification::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.8), transparent 70%); transform: translateX(-100%); animation: sheen 5s 2s infinite; pointer-events: none; }
.notification span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.notification small { color: #4d5155; font-size: 10px; white-space: nowrap; }
.notification small b { color: var(--green); }
.notification strong { overflow: hidden; color: #252729; font-size: 11px; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.notification time { align-self: start; margin-top: 3px; color: #92969a; font-size: 9px; }
.company-avatar { width: 40px; height: 40px; display: grid !important; place-items: center; color: #fff; border-radius: 9px; font-size: 13px; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.avatar-blue { background: #5b8df5; } .avatar-orange { background: #ff935c; } .avatar-purple { background: #7d68df; } .avatar-cyan { background: #2aabc0; } .avatar-dark { background: #191a1b; }
.notification-5 { top: 0; opacity: .14; transform: translateX(-50%) scale(.88); }
.notification-4 { top: 10px; opacity: .22; transform: translateX(-50%) scale(.91); }
.notification-3 { top: 21px; opacity: .34; transform: translateX(-50%) scale(.94); }
.notification-2 { top: 33px; opacity: .55; transform: translateX(-50%) scale(.97); }
.notification-1 { top: 48px; z-index: 2; animation: notification-float 4s ease-in-out infinite; }
.hero-copy { text-align: center; position: relative; z-index: 3; }
.hero-copy .eyebrow { justify-content: center; }
.hero h1 { max-width: 930px; margin: 0 auto; font-size: clamp(58px, 6.2vw, 88px); line-height: .98; letter-spacing: -.065em; font-weight: 670; }
.hero-lede { max-width: 650px; margin: 26px auto 0; color: #5f6368; font-size: 16px; line-height: 1.55; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.hero-actions .button { min-width: 210px; }
.hero-note { margin: 14px 0 0; color: #7a7d81; font-size: 11px; }
.hero-note span { color: var(--green); font-weight: 800; }

/* Hero product mockup */
.product-demo { max-width: 1060px; height: 660px; margin: 76px auto 0; position: relative; z-index: 2; background: var(--paper); border: 1px solid #cfd3d7; border-radius: 16px; box-shadow: 0 30px 90px rgba(24,28,34,.14), 0 2px 4px rgba(24,28,34,.04); overflow: hidden; }
.product-demo::before { content: ""; position: absolute; inset: 42px 0 0; z-index: 5; box-shadow: inset 0 0 70px rgba(40,45,52,.025); pointer-events: none; }
.browser-bar { height: 42px; padding: 0 14px; display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; background: #f6f7f7; border-bottom: 1px solid var(--line); }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 8px; height: 8px; border-radius: 50%; background: #d6d9dc; }
.browser-dots span:first-child { background: #ff7d76; } .browser-dots span:nth-child(2) { background: #f4c95f; } .browser-dots span:last-child { background: #63ca78; }
.browser-address { justify-self: center; min-width: 290px; padding: 5px 20px; color: #7a7d81; background: #fff; border: 1px solid #e2e4e6; border-radius: 7px; text-align: center; font-size: 9px; }
.lock-icon { color: var(--green); font-size: 6px; }
.browser-action { justify-self: end; color: #a5a8aa; letter-spacing: 1px; }
.app-shell { height: calc(100% - 42px); display: grid; grid-template-columns: 184px 1fr; }
.app-sidebar { position: relative; padding: 19px 14px; background: #fafbfb; border-right: 1px solid var(--line); }
.app-brand { display: flex; align-items: center; gap: 8px; padding: 0 7px 18px; font-size: 11px; }
.sidebar-profile { display: flex; align-items: center; gap: 9px; padding: 10px; margin-bottom: 11px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.sidebar-profile > span { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: #1e2022; border-radius: 8px; font-size: 9px; }
.sidebar-profile p { min-width: 0; margin: 0; display: flex; flex-direction: column; }
.sidebar-profile b { font-size: 9px; } .sidebar-profile small { color: #95989b; font-size: 7px; }
.app-sidebar ul { list-style: none; padding: 0; margin: 0; }
.app-sidebar li { height: 34px; padding: 0 9px; display: flex; align-items: center; gap: 8px; color: #73777b; border-radius: 7px; font-size: 9px; }
.app-sidebar li span { width: 15px; color: #919599; font-size: 13px; }
.app-sidebar li em { margin-left: auto; font-size: 8px; font-style: normal; }
.app-sidebar li.active { color: var(--ink); background: #edf2ff; font-weight: 700; }
.app-sidebar li.active span { color: var(--accent); }
.sidebar-plan { position: absolute; left: 14px; right: 14px; bottom: 16px; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 9px; display: flex; flex-direction: column; }
.sidebar-plan small { color: #999da1; font-size: 6px; letter-spacing: .1em; } .sidebar-plan b { margin-top: 2px; font-size: 8px; }
.sidebar-plan > span { height: 3px; margin: 9px 0 6px; background: #eef0f1; border-radius: 3px; overflow: hidden; }
.sidebar-plan > span i { display: block; width: 62%; height: 100%; background: var(--accent); }
.sidebar-plan a { color: var(--accent); font-size: 7px; font-weight: 700; }
.app-main { min-width: 0; padding: 26px 26px 0; background: #fff; }
.app-topbar { display: flex; align-items: center; justify-content: space-between; }
.app-topbar small { color: #9a9da0; font-size: 7px; letter-spacing: .1em; }
.app-topbar h2 { margin: 2px 0 0; font-size: 19px; letter-spacing: -.035em; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.live-pill { padding: 5px 8px; color: #555a5e; background: #f6f8f7; border: 1px solid #e3e7e4; border-radius: 20px; font-size: 7px; }
.live-pill i { display: inline-block; width: 5px; height: 5px; margin-right: 3px; background: var(--green); border-radius: 50%; }
.round-avatar { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--dark); border-radius: 50%; font-size: 8px; }
.app-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.app-stats > div { min-height: 67px; padding: 10px 12px; display: grid; grid-template-columns: 1fr auto; background: #fafbfb; border: 1px solid var(--line); border-radius: 9px; }
.app-stats small { grid-column: 1/-1; color: #868a8e; font-size: 7px; }
.app-stats strong { font-size: 19px; letter-spacing: -.04em; }
.app-stats span { align-self: end; color: #92969a; font-size: 7px; }
.app-stats .trend { color: var(--green); }
.app-content { height: 433px; margin-top: 14px; display: grid; grid-template-columns: minmax(330px, 1.05fr) minmax(260px, .95fr); border: 1px solid var(--line); border-radius: 10px 10px 0 0; overflow: hidden; }
.job-feed { min-width: 0; padding: 13px; background: #fbfcfc; border-right: 1px solid var(--line); }
.search-row { height: 35px; padding: 0 10px; display: flex; align-items: center; gap: 8px; color: #8b8f93; background: #fff; border: 1px solid var(--line); border-radius: 7px; font-size: 8px; }
.search-row kbd { margin-left: auto; padding: 2px 5px; background: #f6f7f7; border: 1px solid #e4e6e7; border-radius: 3px; font-size: 6px; }
.filter-row { display: flex; gap: 5px; margin: 9px 0 13px; overflow: hidden; }
.filter-row button { padding: 4px 7px; flex: 0 0 auto; color: #777b7f; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 6.5px; }
.filter-row button.active { color: #fff; background: var(--dark); border-color: var(--dark); }
.feed-label { display: flex; justify-content: space-between; align-items: center; margin: 0 2px 7px; color: #92969a; font-size: 7px; }
.feed-label button { background: none; border: 0; color: inherit; font-size: 7px; }
.job-row { width: 100%; min-height: 65px; margin-bottom: 6px; padding: 9px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 9px; text-align: left; background: #fff; border: 1px solid #e5e7e9; border-radius: 8px; cursor: pointer; transition: border .2s, background .2s, transform .2s; }
.job-row:hover { transform: translateX(2px); border-color: #bbc9e8; }
.job-row.active { border-color: #83a8fc; background: #f8faff; box-shadow: 0 0 0 2px rgba(92,141,246,.08); }
.job-logo, .mini-logo { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.06); border-radius: 8px; font-size: 10px; font-weight: 800; }
.logo-n { color: #fff; background: #202124; } .logo-s { color: #fff; background: #6a78eb; } .logo-a { color: #fff; background: #d56d70; } .logo-l { color: #fff; background: #26272a; }
.job-info { min-width: 0; display: flex; flex-direction: column; }
.job-info b { overflow: hidden; font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.job-info small { color: #777b7f; font-size: 7px; }
.job-info em { margin-top: 3px; color: #989b9e; font-size: 6px; font-style: normal; }
.match { align-self: start; padding: 3px 5px; color: #088754; background: var(--green-soft); border-radius: 9px; font-size: 6px; font-style: normal; font-weight: 700; }
.match.neutral { color: #65696c; background: #f0f1f2; }
.job-detail { min-width: 0; padding: 19px 19px 15px; position: relative; }
.detail-top { display: flex; justify-content: space-between; align-items: center; }
.detail-logo { width: 42px; height: 42px; }
.detail-top button { width: 28px; height: 28px; color: #777; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.detail-company { margin: 15px 0 3px; color: #8d9195; font-size: 6.5px; font-weight: 700; letter-spacing: .12em; }
.job-detail h3 { margin: 0; font-size: 16px; letter-spacing: -.035em; }
.detail-location { margin: 4px 0 13px; color: #7b7f83; font-size: 7.5px; }
.detail-match { padding: 9px 10px; background: #f8faf9; border: 1px solid #e0e9e4; border-radius: 7px; }
.detail-match span { display: flex; justify-content: space-between; color: #61666a; font-size: 7px; }
.detail-match b { color: var(--green); }
.detail-match div { height: 3px; margin-top: 7px; background: #e9eeee; border-radius: 3px; overflow: hidden; }
.detail-match i { display: block; height: 100%; background: var(--green); transition: width .3s; }
.skill-list { display: flex; flex-wrap: wrap; gap: 4px; margin: 12px 0; }
.skill-list span { padding: 3px 6px; color: #6e7276; background: #f5f6f6; border: 1px solid #e8e9ea; border-radius: 4px; font-size: 6.5px; }
.detail-summary { color: #606468; font-size: 7.5px; line-height: 1.55; }
.detail-checks { padding: 0; margin: 11px 0 14px; list-style: none; }
.detail-checks li { margin: 4px 0; color: #595e62; font-size: 7px; }
.detail-checks li::before { content: "✓"; margin-right: 5px; color: var(--green); font-weight: 800; }
.apply-button { width: 100%; height: 36px; padding: 0 12px; display: flex; align-items: center; justify-content: center; gap: 20px; color: #fff; background: var(--dark); border: 0; border-radius: 7px; font-size: 8px; font-weight: 700; cursor: pointer; }
.apply-note { display: block; margin-top: 7px; color: #999da1; text-align: center; font-size: 6px; }
.submission-toast { position: absolute; right: 21px; bottom: 19px; z-index: 8; width: 208px; padding: 10px; display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; background: #fff; border: 1px solid #dfe3e1; border-radius: 9px; box-shadow: 0 12px 35px rgba(25,30,34,.15); animation: toast-in 5s ease-in-out infinite; }
.submission-toast > span { width: 28px; height: 28px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 10px; }
.submission-toast p { margin: 0; display: flex; flex-direction: column; }
.submission-toast b { font-size: 7.5px; } .submission-toast small, .submission-toast time { color: #94989b; font-size: 6px; }

/* Trust logos */
.trust { padding: 0 0 48px; }
.trust > p { margin: 0; padding: 25px 20px; color: #777b7f; border-block: 1px solid var(--line); text-align: center; font-size: 12px; }
.logo-cloud { min-height: 190px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; justify-items: center; gap: 20px 10px; padding: 32px 50px; }
.company-logo { width: 120px; height: 60px; object-fit: contain; display: block; }
.logo-anthropic { width: 150px; height: 42px; }
.logo-openai { width: 122px; height: 42px; }
.logo-microsoft { width: 128px; }
.logo-paypal { width: 124px; }

/* Sections and feature grid */
.features-section, .comparison-section, .workflow-section, .pricing-section, .faq-section { padding: 118px 0; border-top: 1px solid var(--line); }
.section-heading { padding: 0 52px 70px; }
.section-heading h2, .comparison-heading h2, .center-heading h2 { margin: 0; font-size: clamp(40px, 4.3vw, 62px); line-height: 1.04; letter-spacing: -.057em; font-weight: 650; }
.section-heading > p:last-child, .center-heading > p:last-child { max-width: 580px; margin: 20px 0 0; color: #676b6f; font-size: 15px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.feature-card { min-width: 0; min-height: 476px; padding: 30px 28px 24px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card:nth-child(3n) { border-right: 0; }
.feature-card:nth-child(n+4) { border-bottom: 0; }
.feature-copy { min-height: 154px; position: relative; }
.feature-number { position: absolute; right: 0; top: 3px; color: #b3b6b9; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }
.feature-copy h3 { margin: 0 0 11px; padding-right: 30px; font-size: 17px; letter-spacing: -.025em; }
.feature-copy p { margin: 0; color: #6d7175; font-size: 12px; line-height: 1.55; }
.mini-ui { height: 244px; margin-top: 25px; position: relative; background: #f8f9f9; border: 1px solid #dfe2e4; border-radius: 12px; box-shadow: inset 0 1px #fff; overflow: hidden; }
.feed-mini { padding: 13px; }
.mini-search { height: 34px; padding: 0 10px; display: flex; align-items: center; gap: 7px; color: #8d9195; background: #fff; border: 1px solid #dfe2e4; border-radius: 7px; font-size: 7px; }
.mini-search b { margin-left: auto; color: #555a5d; font-size: 6px; font-weight: 600; }
.mini-search b i { display: inline-block; width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.ticker-mask { height: 184px; overflow: hidden; mask-image: linear-gradient(transparent, #000 10%, #000 86%, transparent); }
.ticker-list { animation: ticker 10s linear infinite; }
.ticker-list > div { height: 53px; padding: 7px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px; background: #fff; border: 1px solid #e1e3e5; border-radius: 7px; }
.mini-logo { width: 30px; height: 30px; font-size: 8px; }
.mini-logo.blue { color: #fff; background: #5c8df6; } .mini-logo.pink { color: #fff; background: #f06d91; } .mini-logo.cyan { color: #fff; background: #3aaad0; } .mini-logo.dark { color: #fff; background: #222; }
.ticker-list p, .matches-mini p, .apply-head p { min-width: 0; margin: 0; display: flex; flex-direction: column; }
.ticker-list b { font-size: 7.5px; } .ticker-list small { color: #919599; font-size: 6px; }
.ticker-list em { color: var(--green); font-size: 6px; font-style: normal; }
.profile-mini { padding: 17px 14px; }
.upload-file { height: 42px; padding: 0 10px; display: flex; align-items: center; gap: 7px; background: #fff; border: 1px dashed #cdd2d5; border-radius: 8px; font-size: 7px; }
.upload-file span { font-size: 13px; } .upload-file b { font-weight: 600; } .upload-file em { margin-left: auto; color: var(--green); font-size: 6px; font-style: normal; }
.upload-progress { height: 3px; margin: -2px 8px 13px; background: #e6e9eb; overflow: hidden; }
.upload-progress i { display: block; width: 100%; height: 100%; background: var(--green); animation: upload 5s ease-in-out infinite; }
.profile-result { height: 149px; padding: 13px; background: #fff; border: 1px solid #e2e4e5; border-radius: 8px; }
.profile-result > small { color: #a0a4a8; font-size: 6px; letter-spacing: .1em; }
.profile-result > div { display: flex; flex-wrap: wrap; gap: 5px; margin: 13px 0; }
.profile-result > div span { padding: 4px 6px; color: #777b7f; background: #f6f7f7; border: 1px solid #e7e9ea; border-radius: 5px; font-size: 6px; }
.profile-result p { display: flex; align-items: center; justify-content: space-between; margin: 0; color: #8c9094; font-size: 6px; }
.profile-result p::before { content: ""; width: 75%; height: 4px; background: linear-gradient(90deg, var(--accent) 92%, #e8eaeb 92%); border-radius: 3px; }
.profile-result p b { color: var(--accent); }
.apply-mini { padding: 15px; }
.apply-head { display: grid; grid-template-columns: 31px 1fr auto; align-items: center; gap: 8px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.apply-head b { font-size: 7px; } .apply-head small { color: #93979a; font-size: 6px; } .apply-head em { padding: 3px 6px; color: var(--green); background: var(--green-soft); border-radius: 8px; font-size: 6px; font-style: normal; }
.apply-mini ul { padding: 0; margin: 14px 0 12px; list-style: none; }
.apply-mini li { margin: 9px 0; display: flex; align-items: center; gap: 8px; color: #909498; font-size: 7px; }
.apply-mini li > span { width: 13px; height: 13px; display: grid; place-items: center; border: 1px solid #d6d9db; border-radius: 50%; font-size: 6px; }
.apply-mini li.done { color: #4d5256; } .apply-mini li.done > span { color: #fff; background: var(--green); border-color: var(--green); }
.apply-mini li.working > span { border: 2px solid #dce0e1; border-top-color: var(--accent); animation: spin 1s linear infinite; }
.progress-track { height: 5px; background: #e6e8e9; border-radius: 4px; overflow: hidden; }
.progress-track i { display: block; width: 67%; height: 100%; background: var(--accent); animation: progress 5s ease-in-out infinite; }
.answer-mini { height: 220px; margin-top: 35px; padding: 15px; background: #fff; }
.answer-mini > small { color: #777b7f; font-size: 7px; }
.answer-mini > p { height: 118px; margin: 12px 0 8px; color: #35393c; font-size: 9px; line-height: 1.55; }
.answer-mini > p::after { content: "|"; color: var(--accent); animation: blink .8s step-end infinite; }
.answer-mini > div { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; color: #8a8e92; border-top: 1px solid var(--line); font-size: 6px; }
.answer-mini button { padding: 3px 7px; background: #fff; border: 1px solid var(--line); border-radius: 4px; font-size: 6px; }
.matches-mini { padding: 15px; }
.matches-mini > small { color: #969a9d; font-size: 6px; letter-spacing: .1em; }
.matches-mini > div { min-height: 52px; margin-top: 6px; padding: 7px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.matches-mini > div.best { border-color: #56d99e; box-shadow: 0 0 0 2px rgba(22,184,118,.06); }
.matches-mini b { font-size: 7px; } .matches-mini small { color: #969a9d; font-size: 6px; } .matches-mini em { color: #777b7f; font-size: 6px; font-style: normal; }
.matches-mini .best em { color: var(--green); }
.review-mini { padding: 15px; }
.segmented { height: 31px; padding: 3px; display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: 7px; }
.segmented button { background: transparent; border: 0; border-radius: 5px; font-size: 6px; }
.segmented button.active { color: #fff; background: var(--dark); }
.review-job { margin-top: 14px; padding: 11px; display: flex; align-items: center; justify-content: space-between; background: #fff; border: 1px solid var(--line); border-radius: 7px 7px 0 0; }
.review-job span { display: flex; flex-direction: column; } .review-job b { font-size: 7px; } .review-job small { color: #92969a; font-size: 6px; }
.review-job em { padding: 3px 5px; color: var(--accent); background: var(--accent-soft); border-radius: 5px; font-size: 6px; font-style: normal; }
.review-actions { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 7px 7px; }
.review-actions button { height: 30px; background: #fff; border: 0; font-size: 6px; }
.review-actions button:first-child { margin: 4px; height: 22px; color: #fff; background: var(--dark); border-radius: 4px; }
.review-mini > p { margin: 13px 0 0; color: #969a9d; text-align: center; font-size: 6px; }

/* Comparison */
.comparison-heading { padding: 0 52px 56px; display: grid; grid-template-columns: 1.25fr 1fr; align-items: end; gap: 55px; }
.comparison-heading h2 { font-size: clamp(38px, 4vw, 57px); }
.big-stats { margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.big-stats div { min-width: 0; }
.big-stats dt { font-size: 27px; line-height: 1; letter-spacing: -.055em; }
.big-stats dd { margin: 8px 0 0; color: #7e8286; font-size: 8px; line-height: 1.35; }
.comparison-grid { margin: 0 52px; position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.before-card, .after-card { min-height: 356px; padding: 31px; border: 1px solid var(--line-strong); border-radius: 15px 0 0 15px; }
.after-card { color: #fff; background: var(--dark); border-color: var(--dark); border-radius: 0 15px 15px 0; }
.panel-label { margin-bottom: 25px; color: #909499; font-size: 9px; font-weight: 750; letter-spacing: .12em; }
.browser-tabs { height: 94px; position: relative; }
.browser-tabs span { position: absolute; width: 84%; height: 29px; padding: 7px 12px 7px 29px; overflow: hidden; color: #82868a; background: #fafbfb; border: 1px solid #dfe2e4; border-radius: 6px; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; box-shadow: 0 3px 8px rgba(20,25,30,.03); }
.browser-tabs span::before { content: ""; position: absolute; left: 12px; top: 11px; width: 6px; height: 6px; background: #d8dcdf; border-radius: 50%; }
.browser-tabs span:nth-child(2) { top: 23px; left: 18px; width: 88%; } .browser-tabs span:nth-child(3) { top: 46px; left: 9px; width: 89%; }
.before-card ul, .after-card ul { padding: 0; margin: 17px 0 0; list-style: none; }
.before-card li, .after-card li { display: flex; align-items: center; gap: 10px; margin: 12px 0; color: #707478; font-size: 10px; }
.before-card li i, .after-card li i { width: 17px; height: 17px; flex: 0 0 auto; display: grid; place-items: center; background: #f3f4f4; border-radius: 50%; font-size: 8px; font-style: normal; }
.after-notice { padding: 12px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; background: #242526; border: 1px solid #313335; border-radius: 9px; }
.after-notice p { margin: 0; display: flex; flex-direction: column; }
.after-notice small { color: #babdc0; font-size: 7px; } .after-notice small b { color: #52d79d; } .after-notice strong { font-size: 8px; }
.after-notice time { color: #8c9093; font-size: 6px; }
.after-count { margin: 11px 3px 0; color: #8f9397; font-size: 7px; }
.after-card li { color: #eef0f1; font-weight: 600; }
.after-card li i { color: #45d297; background: rgba(22,184,118,.15); }
.versus { position: absolute; left: 50%; top: 50%; z-index: 2; width: 45px; height: 45px; display: grid; place-items: center; color: #707478; background: #fff; border: 1px solid var(--line-strong); border-radius: 50%; box-shadow: 0 5px 20px rgba(0,0,0,.06); font-size: 8px; transform: translate(-50%,-50%); }

/* Workflow */
.steps { padding: 0 52px; margin: 0 0 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; list-style: none; }
.steps li { padding-top: 18px; border-top: 1px solid var(--line-strong); }
.steps span { color: #969a9e; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; }
.steps h3 { margin: 22px 0 11px; font-size: 17px; letter-spacing: -.025em; }
.steps p { color: #6e7276; font-size: 11px; }
.worker-demo { margin: 0 52px; padding: 18px; display: grid; grid-template-columns: 1.12fr .88fr; gap: 14px; background: #f7f8f8; border: 1px solid var(--line-strong); border-radius: 17px; }
.application-form { min-width: 0; padding: 21px; background: #fff; border: 1px solid #d9dcde; border-radius: 12px; box-shadow: 0 5px 20px rgba(20,25,30,.04); }
.form-job { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; }
.form-job p { margin: 0; display: flex; flex-direction: column; } .form-job b { font-size: 10px; } .form-job small { color: #818589; font-size: 7px; }
.form-job em { padding: 4px 7px; color: var(--green); background: var(--green-soft); border-radius: 9px; font-size: 6px; font-style: normal; }
.form-divider { height: 1px; margin: 15px 0; background: var(--line); }
.fake-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.fake-form-grid label { min-width: 0; position: relative; display: flex; flex-direction: column; gap: 4px; }
.fake-form-grid label > span { color: #74787c; font-size: 7px; }
.fake-form-grid label > b { min-height: 35px; padding: 10px; overflow: hidden; color: #696d71; background: #fff; border: 1px solid #dce0e2; border-radius: 6px; font-size: 7px; font-weight: 400; text-overflow: ellipsis; white-space: nowrap; }
.fake-form-grid label > i { position: absolute; right: 9px; bottom: 9px; color: var(--green); font-size: 8px; font-style: normal; }
.fake-form-grid label.wide { grid-column: 1/-1; }
.fake-form-grid label.wide > b { height: 68px; padding-right: 28px; white-space: normal; line-height: 1.45; }
.fake-form-grid label > i.sparkle { color: var(--accent); }
.application-form > button { width: 100%; height: 39px; margin-top: 13px; color: #fff; background: var(--dark); border: 0; border-radius: 7px; font-size: 8px; font-weight: 700; }
.worker-console { min-width: 0; padding: 20px; color: #f4f4f4; background: var(--dark); border-radius: 12px; }
.console-head { padding-bottom: 15px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #303234; font-size: 9px; }
.console-head span { padding: 4px 7px; color: #63dfa9; background: rgba(22,184,118,.14); border-radius: 10px; font-size: 6px; }
.console-head span i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: #39d392; border-radius: 50%; box-shadow: 0 0 8px #39d392; animation: pulse 1.5s infinite; }
.console-line { display: grid; grid-template-columns: 30px 14px 1fr; align-items: start; gap: 6px; padding-top: 16px; color: #a9adb0; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 7px; }
.console-line time { color: #5f6468; } .console-line > i { color: #43d29b; font-style: normal; } .console-line p { margin: 0; }
.console-line.active { color: #f0f1f2; } .console-line.active > i { width: 8px; height: 8px; border: 1px solid #4d5357; border-top-color: #48d69f; border-radius: 50%; animation: spin 1s linear infinite; }
.typing-dots { letter-spacing: 2px; animation: blink .8s step-end infinite; }
.console-result { margin-top: 24px; padding: 13px; display: flex; align-items: center; gap: 11px; background: #232526; border: 1px solid #303335; border-radius: 8px; }
.console-result > span { width: 40px; height: 40px; display: grid; place-items: center; color: #4ed6a0; background: rgba(22,184,118,.12); border-radius: 50%; font-size: 9px; font-weight: 800; }
.console-result p { margin: 0; display: flex; flex-direction: column; } .console-result b { font-size: 8px; } .console-result small { color: #858a8e; font-size: 6px; }
.workflow-details { margin: 38px 52px 0; display: grid; grid-template-columns: repeat(4,1fr); }
.workflow-details > div { padding: 0 26px; border-right: 1px solid var(--line); }
.workflow-details > div:first-child { padding-left: 0; } .workflow-details > div:last-child { padding-right: 0; border: 0; }
.workflow-details h3 { margin-bottom: 9px; font-size: 11px; }
.workflow-details p { color: #777b7f; font-size: 9px; }

/* Pricing */
.center-heading { max-width: 740px; margin: 0 auto 62px; padding: 0 24px; text-align: center; }
.center-heading .eyebrow { justify-content: center; }
.center-heading h2 { font-size: clamp(40px, 4.1vw, 58px); }
.center-heading > p:last-child { margin-inline: auto; }
.pricing-grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.price-card { min-height: 475px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line-strong); border-radius: 15px; }
.price-name { display: flex; align-items: center; justify-content: space-between; }
.price-name span { color: #7b7f83; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.price-name em { padding: 5px 8px; color: #74787c; background: #f3f4f4; border-radius: 11px; font-size: 7px; font-style: normal; }
.price { margin: 30px 0 0; font-size: 48px; line-height: 1; letter-spacing: -.06em; }
.price sup { position: relative; top: -15px; margin-right: 3px; font-size: 20px; }
.price small { margin-left: 5px; color: #8c9094; font-size: 11px; letter-spacing: 0; }
.price-desc { margin: 11px 0 21px; color: #72767a; font-size: 10px; }
.price-card ul { padding: 20px 0; margin: 0 0 25px; border-top: 1px solid var(--line); list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; margin: 12px 0; font-size: 10px; font-weight: 600; }
.price-card li i { width: 17px; height: 17px; display: grid; place-items: center; color: #555a5e; background: #f1f3f3; border-radius: 50%; font-size: 8px; font-style: normal; }
.price-card .button { width: 100%; margin-top: auto; min-height: 44px; }
.price-pro { color: #fff; background: var(--dark); border-color: var(--dark); box-shadow: 0 15px 50px rgba(20,20,20,.12); }
.price-pro .price-name span, .price-pro .price-desc, .price-pro .price small { color: #a8abad; }
.price-pro .price-name em { color: #e8e9ea; background: #343638; }
.price-pro ul { border-color: #343638; }
.price-pro li i { color: #49d49e; background: rgba(22,184,118,.14); }
.pricing-note { margin: 18px 0 0; color: #979b9e; text-align: center; font-size: 8px; }

/* FAQ */
.faq-section { padding-bottom: 130px; }
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 65px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 650; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 14px; height: 14px; flex: 0 0 auto; position: relative; }
.faq-list summary span::before, .faq-list summary span::after { content: ""; position: absolute; left: 1px; top: 6px; width: 12px; height: 1px; background: #7f8387; transition: transform .25s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -2px 0 24px; color: #676b6f; font-size: 11px; line-height: 1.7; }

/* Final CTA and footer */
.final-cta { padding: 90px 38px; border-top: 1px solid var(--line); }
.cta-panel { min-height: 390px; padding: 70px 40px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--dark); border-radius: 20px; text-align: center; overflow: hidden; }
.cta-panel::before { content: ""; position: absolute; inset: 1px; border: 1px solid rgba(255,255,255,.06); border-radius: inherit; pointer-events: none; }
.cta-panel .eyebrow { margin-bottom: 17px; color: #a7aaad; }
.cta-panel h2 { margin: 0; font-size: clamp(45px, 5.3vw, 70px); line-height: .98; letter-spacing: -.06em; }
.cta-panel > p:not(.eyebrow) { max-width: 550px; margin: 22px auto; color: #a9acae; font-size: 12px; }
.cta-panel .button { min-width: 265px; margin-top: 5px; }
.cta-panel > small { margin-top: 14px; color: #74787b; font-size: 7px; }
.cta-glow { position: absolute; width: 500px; height: 300px; left: 50%; top: -220px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(92,141,246,.28), transparent 70%); }
.cta-notification { position: absolute; right: 27px; top: 25px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; color: #dfe1e2; background: #232526; border: 1px solid #343638; border-radius: 9px; transform: rotate(2deg); }
.cta-notification > span { width: 24px; height: 24px; display: grid; place-items: center; color: #56dda8; background: rgba(22,184,118,.14); border-radius: 50%; font-size: 8px; }
.cta-notification p { margin: 0; display: flex; flex-direction: column; text-align: left; }
.cta-notification b { font-size: 7px; } .cta-notification small { color: #777b7e; font-size: 6px; }
.site-footer { padding: 65px 24px 0; overflow: hidden; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 65px; padding: 0 0 55px; }
.footer-brand p { max-width: 300px; margin: 19px 0 15px; color: #707478; font-size: 11px; }
.footer-brand > a:last-child { font-size: 10px; font-weight: 650; }
.footer-top nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-top nav h2 { margin: 0 0 7px; color: #565a5e; font-size: 8px; letter-spacing: .13em; }
.footer-top nav a { color: #74787c; font-size: 10px; }
.footer-top nav a:hover { color: var(--ink); }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; color: #8c9094; border-top: 1px solid var(--line); font-size: 8px; }
.footer-bottom i { display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: var(--green); border-radius: 50%; }
.footer-watermark { height: 220px; margin: 0 -12px -40px; color: #f1f2f2; font-size: clamp(115px, 15.2vw, 220px); font-weight: 650; line-height: .95; letter-spacing: -.075em; text-align: center; white-space: nowrap; user-select: none; }

/* Animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes notification-float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-5px); } }
@keyframes sheen { 0%,60% { transform: translateX(-120%); } 80%,100% { transform: translateX(120%); } }
@keyframes toast-in { 0%,15% { opacity: 0; transform: translateY(12px); } 22%,80% { opacity: 1; transform: translateY(0); } 90%,100% { opacity: 0; transform: translateY(-5px); } }
@keyframes ticker { from { transform: translateY(0); } to { transform: translateY(-159px); } }
@keyframes upload { 0% { width: 0; } 35%,100% { width: 100%; } }
@keyframes progress { 0%,10% { width: 20%; } 70%,100% { width: 78%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 2px #39d392; } }
@keyframes blink { 50% { opacity: 0; } }

/* Tablet */
@media (max-width: 980px) {
  body { background: #fafafa; }
  .rail { width: calc(100% - 24px); }
  .primary-nav { gap: 20px; }
  .hero { min-height: 1350px; }
  .product-demo { height: 590px; }
  .app-shell { grid-template-columns: 150px 1fr; }
  .app-sidebar { padding-inline: 10px; }
  .sidebar-plan { left: 10px; right: 10px; }
  .app-main { padding: 20px 17px 0; }
  .app-content { grid-template-columns: 1fr .85fr; height: 390px; }
  .job-row:nth-of-type(4), .job-row:nth-of-type(5) { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .feature-card:nth-child(2n) { border-right: 0; }
  .feature-card:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .feature-card:nth-child(n+5) { border-bottom: 0; }
  .comparison-heading { grid-template-columns: 1fr; }
  .big-stats { max-width: 520px; }
  .worker-demo { grid-template-columns: 1fr 1fr; }
  .workflow-details { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .workflow-details > div:nth-child(2) { border-right: 0; }
  .footer-top { gap: 35px; }
}

/* Mobile */
@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .rail { width: 100%; border-inline: 0; }
  .announcement { min-height: 36px; padding-inline: 10px; font-size: 10px; }
  .announcement-secondary { display: none; }
  .header-inner { height: 62px; padding-inline: 18px; display: flex; justify-content: space-between; }
  .menu-toggle { order: 3; width: 38px; height: 38px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; background: var(--ink); transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .primary-nav { position: absolute; left: 0; right: 0; top: 62px; padding: 12px 18px 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(20,20,20,.05); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 13px 0; border-bottom: 1px solid #eee; font-size: 13px; }
  .primary-nav a::after { display: none; }
  .header-cta { margin-left: auto; margin-right: 6px; padding: 8px 11px; font-size: 10px; }
  .hero { min-height: auto; padding: 48px 18px 60px; }
  .notification-stack { width: 100%; height: 100px; margin-bottom: 22px; }
  .notification { width: min(320px, 92%); height: 60px; grid-template-columns: 34px 1fr auto; }
  .company-avatar { width: 34px; height: 34px; }
  .notification-1 { top: 38px; }
  .hero h1 { font-size: clamp(47px, 14vw, 68px); line-height: .95; }
  .hero h1 br { display: none; }
  .hero-lede { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .product-demo { height: 530px; margin-top: 55px; border-radius: 12px; }
  .browser-bar { grid-template-columns: auto 1fr auto; }
  .browser-address { min-width: 0; width: 90%; padding-inline: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .app-shell { display: block; }
  .app-sidebar { display: none; }
  .app-main { height: 100%; padding: 18px 12px 0; }
  .app-topbar h2 { font-size: 16px; }
  .live-pill { display: none; }
  .app-stats { gap: 5px; }
  .app-stats > div { padding: 8px; }
  .app-stats span { display: none; }
  .app-content { height: 360px; grid-template-columns: 1fr; }
  .job-feed { border-right: 0; }
  .job-detail { display: none; }
  .filter-row button:nth-child(n+4) { display: none; }
  .job-row { min-height: 60px; }
  .submission-toast { right: 14px; bottom: 15px; }
  .trust { padding-bottom: 20px; }
  .trust > p { padding: 22px 18px; }
  .logo-cloud { min-height: 210px; grid-template-columns: repeat(2,1fr); padding: 26px 20px; }
  .wordmark { font-size: 14px; }
  .features-section, .comparison-section, .workflow-section, .pricing-section, .faq-section { padding: 82px 0; }
  .section-heading { padding: 0 20px 45px; }
  .section-heading h2, .comparison-heading h2, .center-heading h2 { font-size: 42px; }
  .section-heading h2 br, .comparison-heading h2 br, .center-heading h2 br { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card:nth-child(n) { min-height: 455px; padding-inline: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child { border-bottom: 0; }
  .feature-copy { min-height: 130px; }
  .mini-ui { max-width: 420px; margin-inline: auto; }
  .comparison-heading { padding: 0 20px 42px; gap: 35px; }
  .big-stats { gap: 8px; }
  .big-stats dt { font-size: 23px; }
  .comparison-grid { margin: 0 20px; grid-template-columns: 1fr; gap: 12px; }
  .before-card, .after-card { min-height: 340px; padding: 24px 20px; border-radius: 14px; }
  .versus { top: 50%; }
  .steps { padding: 0 20px; grid-template-columns: 1fr; gap: 30px; }
  .steps h3 { margin-top: 14px; }
  .worker-demo { margin: 0 12px; padding: 10px; grid-template-columns: 1fr; }
  .application-form { padding: 15px; }
  .fake-form-grid { gap: 8px; }
  .fake-form-grid label > b { padding: 9px 7px; font-size: 6px; }
  .worker-console { min-height: 340px; }
  .workflow-details { margin: 32px 20px 0; grid-template-columns: 1fr; gap: 0; }
  .workflow-details > div, .workflow-details > div:first-child, .workflow-details > div:last-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-details > div:last-child { border-bottom: 0; }
  .center-heading { margin-bottom: 45px; }
  .pricing-grid { padding: 0 20px; grid-template-columns: 1fr; }
  .price-card { min-height: 460px; }
  .faq-list { margin-inline: 20px; }
  .faq-list summary { font-size: 12px; }
  .final-cta { padding: 55px 12px; }
  .cta-panel { min-height: 460px; padding: 60px 22px 40px; border-radius: 16px; }
  .cta-panel h2 { font-size: 48px; }
  .cta-notification { top: 18px; right: 18px; }
  .site-footer { padding: 50px 20px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-top nav:last-child { display: none; }
  .footer-bottom { gap: 10px; flex-direction: column; }
  .footer-watermark { height: 120px; margin-top: 20px; font-size: 26vw; }
}

@media (max-width: 420px) {
  .header-cta { display: none; }
  .hero { padding-inline: 15px; }
  .hero h1 { font-size: 48px; }
  .eyebrow { font-size: 9px; }
  .app-stats > div:nth-child(3) { display: none; }
  .app-stats { grid-template-columns: 1fr 1fr; }
  .section-heading h2, .comparison-heading h2, .center-heading h2 { font-size: 37px; }
  .big-stats dt { font-size: 20px; }
  .big-stats dd { font-size: 7px; }
  .fake-form-grid { grid-template-columns: 1fr; }
  .fake-form-grid label.wide { grid-column: auto; }
  .fake-form-grid label:nth-child(4), .fake-form-grid label:nth-child(5) { display: none; }
  .cta-panel h2 { font-size: 43px; }
  .cta-panel .button { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}



/* Conversion, content, booking, and legal pages */
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-signin { padding: 9px 4px; color: #55595e; font-size: 12px; font-weight: 650; transition: color .2s ease; }
.header-signin:hover { color: var(--ink); }
.header-actions .header-cta { justify-self: auto; }
.primary-nav a[aria-current="page"], .footer-top a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.inner-page { background: #fafafa; }
.inner-page .site-footer { background: #fff; }
.compact-footer { border-top: 1px solid var(--line); }
.compact-footer .footer-top { padding-bottom: 45px; }
.content-button { margin-top: 10px; }

.page-hero { padding: 112px 52px 96px; border-top: 0; }
.page-hero h1 { max-width: 930px; margin: 0; font-size: clamp(54px, 6vw, 82px); font-weight: 650; line-height: .98; letter-spacing: -.064em; }
.page-hero > p:last-child { max-width: 660px; margin: 28px 0 0; color: #666a6e; font-size: 16px; line-height: 1.65; }
.content-section { padding: 0 52px 120px; border-top: 1px solid var(--line); }
.content-layout, .legal-document { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 72px; padding-top: 76px; }
.page-aside { align-self: start; position: sticky; top: 105px; display: flex; flex-direction: column; gap: 11px; }
.page-aside > p { margin: 0 0 9px; color: #969a9e; font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.page-aside > a { width: max-content; max-width: 100%; color: #777b7f; font-size: 10px; }
.page-aside > a:hover { color: var(--ink); }
.prose-content { max-width: 750px; min-width: 0; }
.prose-content > section { padding: 0 0 66px; margin: 0 0 66px; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.prose-content > section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.content-kicker { margin-bottom: 15px; color: #92969a; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.prose-content h2 { margin: 0 0 20px; font-size: clamp(30px, 3.4vw, 47px); font-weight: 640; line-height: 1.08; letter-spacing: -.052em; }
.prose-content h3 { margin: 30px 0 10px; font-size: 16px; letter-spacing: -.02em; }
.prose-content p, .prose-content li { color: #62666a; font-size: 13px; line-height: 1.78; }
.prose-content a:not(.button) { color: #254f9d; text-decoration: underline; text-decoration-color: #aebfe0; text-underline-offset: 3px; }
.prose-content ul { padding-left: 20px; margin: 20px 0; }
.prose-content li { margin: 8px 0; padding-left: 4px; }
.prose-content blockquote { margin: 34px 0; padding: 24px 28px; color: #33373a; background: #f7f8f8; border-left: 3px solid var(--accent); font-size: 18px; line-height: 1.55; letter-spacing: -.02em; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 31px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.principle-grid > div { min-height: 190px; padding: 24px; background: #fff; }
.principle-grid span { color: #a0a4a7; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 8px; }
.principle-grid h3 { margin: 33px 0 9px; font-size: 15px; }
.principle-grid p { margin: 0; font-size: 11px; line-height: 1.6; }
.principle-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.notice-box, .policy-warning { margin-top: 30px; padding: 20px 22px; background: #fff9eb; border: 1px solid #efdfb7; border-radius: 10px; }
.notice-box b, .policy-warning b { font-size: 10px; }
.notice-box p, .policy-warning p { margin: 8px 0 0; color: #746d5b; font-size: 10px; line-height: 1.6; }

.contact-section { padding: 0 52px 115px; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.contact-grid article { min-height: 285px; padding: 31px; position: relative; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-grid article:nth-child(2n) { border-right: 0; }
.contact-grid article:nth-child(n+3) { border-bottom: 0; }
.contact-grid article > span { position: absolute; right: 29px; top: 27px; width: 32px; height: 32px; display: grid; place-items: center; color: #6d7276; background: #f6f7f7; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; }
.contact-grid article > p:first-of-type { margin-bottom: 34px; color: #969a9e; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.contact-grid h2 { margin: 0 0 10px; font-size: 25px; letter-spacing: -.045em; }
.contact-grid h2 + p { max-width: 400px; color: #73777b; font-size: 11px; }
.contact-grid article > a:not(.button) { display: inline-block; margin-top: 25px; color: #28529d; font-size: 11px; font-weight: 700; }
.contact-grid .button { min-height: 42px; margin-top: 16px; padding-inline: 18px; }
.response-note { margin-top: 52px; padding: 37px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; background: #f7f8f8; border: 1px solid var(--line); border-radius: 12px; }
.response-note h2 { margin: 0; font-size: 29px; letter-spacing: -.045em; }
.response-note ul { padding: 0; margin: 0; list-style: none; }
.response-note li { padding: 8px 0; color: #686c70; border-bottom: 1px solid #e2e4e5; font-size: 10px; }
.response-note li::before { content: "✓"; margin-right: 8px; color: var(--green); }
.placeholder-note { margin: 19px 0 0; color: #8a8e92; font-size: 9px; text-align: center; }

.legal-hub { padding: 0 52px 115px; border-top: 1px solid var(--line); }
.legal-meta { min-height: 77px; display: grid; grid-template-columns: auto 1fr auto 1fr; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.legal-meta span { color: #999da1; font-size: 7px; letter-spacing: .12em; }
.legal-meta b { font-size: 10px; }
.legal-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 52px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.legal-card-grid > a { min-height: 330px; padding: 28px; display: flex; flex-direction: column; border-right: 1px solid var(--line); transition: background .2s, transform .2s; }
.legal-card-grid > a:last-child { border-right: 0; }
.legal-card-grid > a:hover { background: #f9fafb; }
.legal-card-grid > a > span { color: #aaaeb1; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 8px; }
.legal-card-grid > a > p:first-of-type { margin: 54px 0 8px; color: #95999d; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.legal-card-grid h2 { margin: 0; font-size: 27px; letter-spacing: -.045em; }
.legal-card-grid h2 + p { color: #73777b; font-size: 11px; }
.legal-card-grid a > b { margin-top: auto; font-size: 10px; }
.legal-notice { margin-top: 42px; padding: 32px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; background: #f7f8f8; border: 1px solid var(--line); border-radius: 12px; }
.legal-notice h2 { margin: 0; font-size: 25px; letter-spacing: -.04em; }
.legal-notice > p { margin: 0; color: #707478; font-size: 11px; line-height: 1.7; }
.legal-contact { padding: 55px 0 0; text-align: center; }
.legal-contact h2 { margin-bottom: 9px; font-size: 28px; letter-spacing: -.04em; }
.legal-contact p { color: #777b7f; font-size: 11px; }
.legal-contact a { color: #28529d; text-decoration: underline; text-underline-offset: 3px; }

.legal-hero { padding: 94px 52px 72px; display: grid; grid-template-columns: 1fr 270px; align-items: end; gap: 50px; border-top: 0; }
.legal-hero h1 { margin: 0; font-size: clamp(52px, 6vw, 78px); line-height: .98; letter-spacing: -.064em; }
.legal-hero > div > p:last-child { max-width: 650px; margin: 22px 0 0; color: #6a6e72; font-size: 14px; }
.legal-hero dl { margin: 0; border-top: 1px solid var(--line); }
.legal-hero dl > div { padding: 10px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.legal-hero dt { color: #999da0; font-size: 8px; }
.legal-hero dd { margin: 0; font-size: 9px; font-weight: 700; }
.legal-document { padding: 76px 52px 120px; border-top: 1px solid var(--line); }
.legal-prose { max-width: 790px; }
.legal-prose > section { padding-bottom: 48px; margin-bottom: 48px; }
.legal-prose h2 { font-size: 31px; }
.legal-prose h3 { font-size: 14px; }
.policy-warning { margin: 0 0 55px; }
.cookie-status { margin-bottom: 55px; padding: 25px; display: flex; align-items: center; gap: 18px; background: #f4fbf7; border: 1px solid #cce9dc; border-radius: 11px; }
.cookie-status > span { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-weight: 800; }
.cookie-status p { margin: 4px 0 0; font-size: 10px; }

.booking-main { min-height: 880px; padding: 84px 52px 110px; display: grid; grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr); align-items: start; gap: 75px; border-top: 0; }
.booking-intro { padding-top: 20px; }
.booking-intro h1 { margin: 0; font-size: clamp(55px, 5.5vw, 76px); font-weight: 650; line-height: .98; letter-spacing: -.063em; }
.booking-lede { max-width: 530px; margin: 25px 0 38px; color: #676b70; font-size: 14px; line-height: 1.68; }
.meeting-points { padding: 0; margin: 0; list-style: none; }
.meeting-points li { padding: 17px 0; display: grid; grid-template-columns: 43px 1fr; gap: 14px; border-top: 1px solid var(--line); }
.meeting-points li:last-child { border-bottom: 1px solid var(--line); }
.meeting-points li > span { width: 36px; height: 36px; display: grid; place-items: center; color: #5a5f63; background: #f5f6f6; border: 1px solid var(--line); border-radius: 9px; font-size: 9px; font-weight: 750; }
.meeting-points b { font-size: 11px; }
.meeting-points p { margin: 3px 0 0; color: #85898d; font-size: 9px; }
.demo-disclosure { margin-top: 30px; padding: 18px 20px; background: #f7f8f8; border: 1px solid var(--line); border-radius: 9px; }
.demo-disclosure b { font-size: 9px; }
.demo-disclosure p { margin: 6px 0 0; color: #777b7f; font-size: 9px; line-height: 1.55; }
.booking-card { min-width: 0; padding: 31px; background: #fff; border: 1px solid var(--line-strong); border-radius: 16px; box-shadow: 0 18px 55px rgba(20,25,30,.07); }
.booking-card-head { padding-bottom: 24px; display: flex; align-items: center; gap: 13px; border-bottom: 1px solid var(--line); }
.calendar-icon { width: 41px; height: 41px; display: grid; place-items: center; color: #fff; background: var(--dark); border-radius: 10px; font-size: 13px; }
.booking-card-head p { margin: 0 0 2px; color: #999da1; font-size: 7px; font-weight: 800; letter-spacing: .12em; }
.booking-card-head h2 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
#booking-form { padding-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px 14px; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { color: #606468; font-size: 9px; font-weight: 650; }
.form-field > span b { color: #d45252; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 43px; padding: 10px 12px; color: #303438; background: #fff; border: 1px solid #d9dddf; border-radius: 7px; outline: none; font-size: 10px; transition: border .2s, box-shadow .2s; }
.form-field textarea { min-height: 95px; resize: vertical; line-height: 1.5; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #a1a5a8; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: #7da3f7; box-shadow: 0 0 0 3px rgba(92,141,246,.11); }
.form-field input[type="email"]:invalid:not(:placeholder-shown), .form-field input[type="url"]:invalid:not(:placeholder-shown) { border-color: #d88686; }
.consent-field { margin: 21px 0 17px; display: grid; grid-template-columns: 16px 1fr; align-items: start; gap: 9px; color: #74787c; font-size: 8px; line-height: 1.5; cursor: pointer; }
.consent-field input { margin: 2px 0 0; accent-color: var(--dark); }
.consent-field a { color: #28529d; text-decoration: underline; text-underline-offset: 2px; }
.booking-submit { width: 100%; height: 48px; padding: 0 17px; display: flex; align-items: center; justify-content: center; gap: 18px; color: #fff; background: var(--dark); border: 0; border-radius: 8px; font-size: 11px; font-weight: 750; cursor: pointer; transition: transform .2s, background .2s; }
.booking-submit:hover { background: #2c2d2e; transform: translateY(-1px); }
.booking-submit:disabled { cursor: wait; opacity: .7; transform: none; }
.form-footnote { margin: 10px 0 0; color: #999da1; font-size: 7px; text-align: center; }
.booking-success { padding: 36px 4px 10px; text-align: center; }
.success-mark { width: 58px; height: 58px; margin: 0 auto 21px; display: grid; place-items: center; color: #fff; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 9px var(--green-soft); font-size: 21px; font-weight: 800; }
.success-kicker { margin-bottom: 8px; color: #8d9195; font-size: 8px; font-weight: 800; letter-spacing: .14em; }
.booking-success h2 { margin: 0; font-size: 34px; letter-spacing: -.045em; }
.booking-success > p:not(.success-kicker):not(.success-id) { margin: 10px auto 24px; color: #74787c; font-size: 10px; }
.success-details { margin: 26px 0 18px; display: grid; grid-template-columns: 1fr 1fr; text-align: left; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.success-details > div { min-width: 0; padding: 17px; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.success-details > div:last-child { border-right: 0; }
.success-details small { margin-bottom: 7px; color: #9a9ea1; font-size: 6px; letter-spacing: .1em; }
.success-details b { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.success-details span { color: #85898d; font-size: 8px; }
.success-id { color: #8a8e91; font-size: 8px; }
.success-id code { padding: 3px 6px; color: #4f5458; background: #f3f4f4; border-radius: 4px; }
.success-actions { display: flex; justify-content: center; gap: 9px; margin: 25px 0 17px; }
.success-actions .button { min-height: 42px; padding-inline: 17px; cursor: pointer; }
.booking-success > small { color: #9a9ea1; font-size: 7px; }
[hidden] { display: none !important; }

@media (max-width: 980px) {
  .booking-main { grid-template-columns: .85fr 1.15fr; gap: 35px; padding-inline: 34px; }
  .content-layout, .legal-document { grid-template-columns: 155px 1fr; gap: 45px; }
  .legal-card-grid > a { padding: 22px; }
}

@media (max-width: 760px) {
  .header-actions { margin-left: auto; margin-right: 2px; gap: 8px; }
  .header-actions .header-cta { margin: 0; padding: 8px 10px; }
  .header-signin { padding-inline: 3px; font-size: 10px; }
  .footer-top nav:last-child { display: flex; grid-column: 1 / -1; }
  .page-hero { padding: 76px 20px 66px; }
  .page-hero h1 { font-size: 48px; }
  .page-hero h1 br { display: none; }
  .page-hero > p:last-child { font-size: 13px; }
  .content-section, .contact-section, .legal-hub { padding: 0 20px 80px; }
  .content-layout, .legal-document { grid-template-columns: 1fr; gap: 45px; padding-top: 50px; }
  .page-aside { position: static; padding-bottom: 23px; display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--line); }
  .page-aside > p { grid-column: 1 / -1; }
  .prose-content h2 { font-size: 34px; }
  .principle-grid, .principle-grid.three-up { grid-template-columns: 1fr; }
  .principle-grid > div { min-height: 155px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid article, .contact-grid article:nth-child(n) { min-height: 255px; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-grid article:last-child { border-bottom: 0; }
  .response-note, .legal-notice { grid-template-columns: 1fr; gap: 25px; padding: 25px; }
  .legal-card-grid { grid-template-columns: 1fr; }
  .legal-card-grid > a { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .legal-card-grid > a:last-child { border-bottom: 0; }
  .legal-card-grid > a > p:first-of-type { margin-top: 35px; }
  .legal-meta { grid-template-columns: auto 1fr; }
  .legal-hero { padding: 70px 20px 50px; grid-template-columns: 1fr; gap: 40px; }
  .legal-hero h1 { font-size: 48px; }
  .legal-document { padding: 50px 20px 85px; }
  .booking-main { padding: 65px 16px 85px; grid-template-columns: 1fr; gap: 45px; }
  .booking-intro { padding-inline: 4px; }
  .booking-intro h1 { font-size: 52px; }
  .booking-intro h1 br { display: none; }
  .booking-card { padding: 23px 18px; }
}

@media (max-width: 420px) {
  .header-actions .header-cta { display: inline-flex; }
  .header-actions .header-signin { display: inline-flex; }
  .page-hero h1, .legal-hero h1, .booking-intro h1 { font-size: 43px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: auto; }
  .success-details { grid-template-columns: 1fr; }
  .success-details > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .success-details > div:last-child { border-bottom: 0; }
  .success-actions { flex-direction: column; }
  .success-actions .button { width: 100%; }
}

@media (max-width: 350px) {
  .header-actions .header-signin { display: none; }
}
