:root {
  --ink: #262d3d;
  --ink-2: #111111;
  --muted: #111111;
  --line: #dde2eb;
  --line-strong: #c7cfdd;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --surface-3: #edf2ff;
  --blue: #0047FF;
  --blue-dark: #0047FF;
  --blue-soft: #eaf0ff;
  --navy: #111a2f;
  --success: #157347;
  --tb-gold: #C49716;
  --tb-gold-soft: #E1C36D;
  --tb-gold-pale: #FAF7ED;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 30px rgba(27, 39, 67, 0.08);
  --shadow: 0 22px 70px rgba(27, 39, 67, 0.13);
  --container: 1180px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, video { max-width: 100%; display: block; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 94px 0; }
.section.compact { padding: 62px 0; }
.section.alt { background: var(--surface-2); }
.section.dark { background: var(--navy); color: white; }
.section-head { display: grid; gap: 12px; max-width: 760px; margin-bottom: 44px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--blue); }
.display { font-size: clamp(44px, 6vw, 76px); line-height: .98; letter-spacing: -.045em; margin: 0; font-weight: 650; }
.h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -.04em; margin: 0; font-weight: 650; }
.h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.04; letter-spacing: -.035em; margin: 0; font-weight: 650; }
.h3 { font-size: 23px; line-height: 1.2; letter-spacing: -.02em; margin: 0; font-weight: 620; }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); max-width: 720px; margin: 0; }
.dark .lead { color: rgba(255,255,255,.78); }
.small { font-size: 14px; color: var(--muted); }
.kicker { font-size: 17px; color: var(--ink-2); margin: 0; }

.site-header {
  position: sticky; top: 0; z-index: 90; height: 76px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221,226,235,.88);
}
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: baseline; gap: 0; font-weight: 760; letter-spacing: -.035em; font-size: 24px; white-space: nowrap; }
.brand .ai { color: var(--blue); }
.brand .ae { font-size: 15px; margin-left: 2px; color: var(--muted); letter-spacing: -.02em; }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-links a { padding: 10px 13px; border-radius: 9px; font-size: 15px; font-weight: 560; color: var(--ink-2); transition: .2s var(--ease); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); background: var(--surface-2); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.mobile-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: white; border-radius: 10px; }
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }
.mobile-menu { display: none; }

.btn {
  border: 1px solid transparent; border-radius: 10px; padding: 13px 19px;
  font-weight: 650; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid rgba(0,71,255,.26); outline-offset: 2px; }
.btn.primary { border-color: var(--blue); background: var(--blue); color: white; box-shadow: 0 9px 24px rgba(0,71,255,.22); }
.btn.primary:hover { background: var(--blue-dark); box-shadow: 0 14px 32px rgba(0,71,255,.28); }
.btn.secondary { border-color: var(--line-strong); background: white; color: var(--ink); }
.btn.secondary:hover { border-color: #9ca8bc; background: var(--surface-2); }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.28); color: white; }
.btn.text { padding-left: 0; padding-right: 0; color: var(--blue); }
.btn.small { padding: 10px 14px; font-size: 14px; }

.hero { padding: 78px 0 74px; overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  right: -190px; top: -200px; background: radial-gradient(circle, rgba(0,71,255,.15), rgba(0,71,255,0) 69%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); gap: 70px; align-items: center; }
.hero-copy { display: grid; gap: 24px; position: relative; z-index: 1; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(21,115,71,.12); }

.hero-stage { min-height: 520px; position: relative; display: grid; place-items: center; }
.hero-stage::before {
  content: ""; position: absolute; inset: 28px 10px 10px 45px; border-radius: 40px;
  background: linear-gradient(145deg, #edf2ff, #f9fbff 55%, #eef2f7); border: 1px solid #dbe3f5;
  transform: rotate(-2deg);
}
.proof-card {
  position: relative; z-index: 2; width: min(100%, 455px); border-radius: 26px; background: white;
  border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden;
}
.proof-card-top { padding: 26px 28px 22px; background: linear-gradient(135deg, var(--navy), #26365e); color: white; }
.proof-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: #dce5ff; }
.proof-badge::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; background: var(--tb-gold); border-radius: 50%; color: white; box-shadow: 0 0 0 2px rgba(240,223,170,.82) inset; }
.proof-card-top h3 { margin: 16px 0 7px; font-size: 27px; letter-spacing: -.025em; }
.proof-card-top p { margin: 0; color: rgba(255,255,255,.75); font-size: 15px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.metric { padding: 22px 24px; border-top: 1px solid var(--line); min-height: 96px; }
.metric:nth-child(odd) { border-right: 1px solid var(--line); }
.metric strong { display: block; font-size: 20px; letter-spacing: -.02em; }
.metric span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }
.proof-card-foot { border-top: 1px solid var(--line); padding: 18px 24px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.rotator { color: var(--blue); font-weight: 650; transition: opacity .18s var(--ease), transform .18s var(--ease); }
.rotator.out { opacity: 0; transform: translateY(5px); }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.proof-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-item { padding: 27px 28px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; font-size: 20px; letter-spacing: -.02em; margin-bottom: 4px; }
.proof-item span { font-size: 13px; color: var(--muted); }

.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.choice-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; background: white; box-shadow: var(--shadow-sm); transition: .25s var(--ease); position: relative; overflow: hidden; }
.choice-card::after { content: "→"; position: absolute; right: 28px; bottom: 24px; font-size: 24px; color: var(--blue); transition: transform .25s var(--ease); }
.choice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #b8c5df; }
.choice-card:hover::after { transform: translateX(5px); }
.choice-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue); font-size: 23px; margin-bottom: 22px; }
.choice-card p { color: var(--ink-2); max-width: 480px; margin-bottom: 34px; }

.grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; align-items: stretch; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card { display: block; height: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 25px; background: white; min-height: 220px; transition: .22s var(--ease); }
.feature-card:hover { border-color: #b9c5db; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-num { font-size: 12px; font-weight: 700; color: var(--blue); letter-spacing: .12em; text-transform: uppercase; }
.feature-card h3 { margin-top: 24px; margin-bottom: 10px; }
.feature-card p { color: var(--muted); margin: 0; }

.assessment-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.process { display: grid; gap: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; overflow: hidden; }
.process-row { padding: 18px 21px; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-row:last-child { border-bottom: 0; }
.process-row b { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.10); display: grid; place-items: center; color: #dce5ff; }
.process-row strong { display: block; font-size: 15px; }
.process-row span { color: rgba(255,255,255,.62); font-size: 13px; }

.expert-toolbar { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 26px; flex-wrap: wrap; }
.filters { display: flex; gap: 9px; flex-wrap: wrap; }
.filter { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 9px 13px; color: var(--ink-2); }
.expert-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.expert-card { border: 1px solid var(--line); border-radius: 22px; background: white; overflow: hidden; transition: .24s var(--ease); }
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bdc8dc; }
.expert-head { padding: 24px 24px 19px; display: grid; grid-template-columns: 64px 1fr; gap: 15px; align-items: center; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(145deg,#dfe7fa,#f4f6fb); overflow: hidden; display: grid; place-items: center; color: var(--blue); font-weight: 750; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.verified { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: var(--blue); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

.tb-verified-badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: #84620d; font-size: 11px; font-weight: 760;
  text-transform: uppercase; letter-spacing: .075em; line-height: 1.15;
}
.tb-verified-seal {
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  display: grid; place-items: center; background: var(--tb-gold); color: #fff;
  font-size: 13px; font-weight: 900; line-height: 1;
  box-shadow: 0 0 0 2px #f0dfaa inset, 0 3px 10px rgba(196,151,22,.22);
}
.tb-verified-badge.compact .tb-verified-seal { width: 20px; height: 20px; flex-basis: 20px; font-size: 12px; }
@media (max-width: 700px) {
  .tb-verified-badge { gap: 7px; font-size: 10px; letter-spacing: .065em; }
  .tb-verified-seal { width: 20px; height: 20px; flex-basis: 20px; font-size: 12px; }
}
.expert-role { color: var(--muted); font-size: 13px; margin-top: 3px; }
.expert-body { padding: 0 24px 24px; }
.expert-body p { color: var(--ink-2); min-height: 66px; }
.score-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.score { background: var(--surface-2); border-radius: 10px; padding: 10px 11px; }
.score strong { display: block; font-size: 17px; }
.score span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag { font-size: 12px; color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 9px; }
.expert-foot { border-top: 1px solid var(--line); padding: 15px 24px; display: flex; gap: 10px; justify-content: space-between; align-items: center; }
.inventory-empty { border: 1px dashed #acb8cf; border-radius: 22px; padding: 34px; background: linear-gradient(145deg,#f8faff,#f3f6fc); text-align: center; }
.inventory-empty .h3 { margin-bottom: 10px; }

.chat-shell { border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); background: white; overflow: hidden; }
.chat-top { padding: 22px 26px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.chat-body { padding: 30px; min-height: 340px; background: #fbfcff; }
.message { max-width: 760px; background: white; border: 1px solid var(--line); border-radius: 18px 18px 18px 5px; padding: 17px 19px; box-shadow: var(--shadow-sm); }
.option-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.option-card { border: 1px solid var(--line); background: white; text-align: left; border-radius: 14px; padding: 16px; transition: .2s var(--ease); }
.option-card:hover { border-color: #aebbd1; transform: translateY(-2px); }
.option-card b { display: block; margin-bottom: 3px; }
.option-card span { color: var(--muted); font-size: 12px; }
.composer { padding: 16px; border-top: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr auto auto; gap: 9px; align-items: end; }
.composer textarea { resize: none; min-height: 48px; max-height: 130px; border: 0; outline: 0; background: transparent; padding: 12px 6px; color: var(--ink); }
.icon-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: white; color: var(--ink-2); display: grid; place-items: center; }
.icon-btn.send { background: var(--ink); color: white; border-color: var(--ink); }

.folder-hero { background: linear-gradient(140deg, #111a2f 0%, #17264f 62%, #0047FF 145%); color: white; }
.folder-hero .lead { color: rgba(255,255,255,.78); }
.system-visual { border: 1px solid rgba(255,255,255,.16); border-radius: 26px; background: rgba(255,255,255,.06); padding: 22px; box-shadow: 0 32px 90px rgba(0,0,0,.24); }
.system-bar { display: flex; align-items: center; gap: 7px; padding: 0 0 18px; border-bottom: 1px solid rgba(255,255,255,.12); }
.system-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }
.system-map { display: grid; grid-template-columns: .8fr 1.2fr; gap: 12px; padding-top: 16px; min-height: 330px; }
.system-sidebar { display: grid; align-content: start; gap: 8px; }
.system-sidebar span { padding: 10px 12px; border-radius: 9px; background: rgba(255,255,255,.07); color: rgba(255,255,255,.74); font-size: 12px; }
.system-sidebar span.active { background: rgba(67,109,227,.36); color: white; }
.system-canvas { border-radius: 16px; background: white; color: var(--ink); padding: 16px; display: grid; align-content: start; gap: 10px; }
.system-card { border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.system-card b { font-size: 12px; }
.system-card span { display: block; font-size: 10px; color: var(--muted); margin-top: 4px; }

.demo-frame { border-radius: 28px; background: var(--navy); color: white; padding: 38px; min-height: 420px; display: grid; place-items: center; position: relative; overflow: hidden; }
.demo-frame::before { content:""; position:absolute; inset:auto -10% -45% 15%; height: 360px; background: radial-gradient(circle, rgba(0,71,255,.65), transparent 67%); }
.demo-center { position: relative; z-index: 1; text-align: center; max-width: 560px; }
.play { width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px; font-size: 28px; color: white; transition: .2s var(--ease); }
.play:hover { transform: scale(1.04); background: rgba(255,255,255,.18); }

.modal { position: fixed; inset: 0; background: rgba(8,13,25,.72); z-index: 120; display: none; place-items: center; padding: 22px; }
.modal.open { display: grid; }
.modal-dialog { width: min(980px,100%); max-height: 92vh; overflow: auto; background: white; border-radius: 24px; box-shadow: 0 40px 120px rgba(0,0,0,.34); }
.modal-head { padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.modal-body { padding: 24px; }
.modal-close { border: 1px solid var(--line); background: white; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; }
.demo-video { width: 100%; border-radius: 16px; background: #0b1020; aspect-ratio: 16/9; }
.demo-fallback { display: none; padding: 44px; background: var(--surface-2); border-radius: 16px; text-align: center; }
.demo-fallback.show { display: block; }

.insight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.insight-card { border: 1px solid var(--line); border-radius: 20px; background: white; overflow: hidden; transition: .22s var(--ease); }
.insight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.insight-art { min-height: 180px; background: linear-gradient(135deg,#eaf0ff,#f7f9fd); display: grid; place-items: center; padding: 26px; color: var(--blue); font-size: 54px; }
.insight-body { padding: 23px; }
.insight-body .small { margin-bottom: 9px; }
.insight-body p { color: var(--ink-2); }

.content { max-width: 780px; }
.content h2 { margin-top: 44px; font-size: 31px; letter-spacing: -.025em; }
.content h3 { margin-top: 30px; }
.content p, .content li { color: var(--ink-2); }
.content ul { padding-left: 20px; }
.content .callout { border-left: 4px solid var(--blue); background: var(--surface-2); padding: 18px 21px; margin: 26px 0; }

.form-card { border: 1px solid var(--line); border-radius: 22px; padding: 28px; background: white; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 13px; font-weight: 650; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line-strong); background: white; border-radius: 10px; padding: 12px 13px; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,71,255,.11); }
.form-status { margin-top: 13px; font-size: 13px; min-height: 20px; }

.cta-band { background: #f4f7ff; color: var(--ink); border: 1px solid #d7e1ff; border-radius: 30px; padding: 48px; display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.cta-band p { color: var(--ink); margin: 8px 0 0; }
.cta-band .btn.secondary:not([data-whatsapp]), .cta-band .btn.ghost:not([data-whatsapp]) { border-color: var(--blue); background: #fff; color: var(--blue); }
.cta-band .btn.primary { box-shadow: 0 3px 10px rgba(0,71,255,.12); }
.cta-band .btn:hover { box-shadow: 0 4px 14px rgba(0,71,255,.16); }

.site-footer { background: #0f172b; color: white; padding: 62px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 38px; }
.footer-grid h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin: 0 0 14px; }
.footer-grid a { display: block; color: rgba(255,255,255,.78); margin: 9px 0; font-size: 14px; }
.footer-grid a:hover { color: white; }
.footer-brand p { color: rgba(255,255,255,.56); max-width: 360px; font-size: 14px; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.5); font-size: 12px; }

.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .nav-actions .btn.secondary { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu { position: fixed; inset: 76px 0 auto; padding: 18px 20px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); z-index: 89; }
  .mobile-menu.open { display: grid; }
  .mobile-menu a { padding: 13px 8px; border-bottom: 1px solid var(--line); font-weight: 600; }
  .mobile-menu .btn { margin-top: 12px; }
  .hero-grid, .assessment-panel { grid-template-columns: 1fr; gap: 46px; }
  .hero-stage { min-height: 460px; }
  .proof-strip-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3, .expert-grid, .insight-grid { grid-template-columns: 1fr 1fr; }
  .option-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 70px 0; }
  .site-header { height: 68px; }
  .mobile-menu { top: 68px; }
  .nav-actions .btn.primary { display: none; }
  .hero { padding: 54px 0 60px; }
  .hero-grid { gap: 34px; }
  .hero-stage { min-height: 390px; }
  .hero-stage::before { inset: 12px 0 0 12px; border-radius: 28px; }
  .proof-card { width: calc(100% - 10px); }
  .proof-card-top { padding: 22px; }
  .metric { padding: 17px; }
  .proof-strip-grid, .choice-grid, .grid-2, .grid-3, .grid-4, .expert-grid, .insight-grid, .form-grid { grid-template-columns: 1fr; }
  .proof-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }
  .choice-card { padding: 27px; }
  .score-grid { grid-template-columns: 1fr 1fr; }
  .chat-body { padding: 20px; }
  .composer { grid-template-columns: auto minmax(0,1fr) auto auto; }
  .composer .mic { display: grid; }
  .system-map { grid-template-columns: 1fr; }
  .system-sidebar { grid-template-columns: repeat(3,1fr); }
  .system-sidebar span:nth-child(n+4) { display: none; }
  .cta-band { padding: 34px 26px; display: grid; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { display: grid; }
}

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


/* Live Jobs + same-page application */
.jobs-hero { padding-bottom: 54px; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.job-card { display: flex; flex-direction: column; min-height: 100%; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; transition: .24s var(--ease); }
.job-card:hover { transform: translateY(-3px); border-color: #b8c5df; box-shadow: var(--shadow); }
.job-card-top { padding: 28px 28px 20px; }
.job-card-top h2 { margin-top: 10px; }
.job-card-top p { color: var(--ink-2); margin: 14px 0 0; }
.job-meta { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 28px 24px; }
.job-meta span, .job-chips span { border: 1px solid var(--line); background: var(--surface-2); color: var(--ink-2); border-radius: 999px; padding: 7px 10px; font-size: 12px; }
.job-card-foot { margin-top: auto; border-top: 1px solid var(--line); padding: 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.job-hero { padding: 72px 0 66px; position: relative; overflow: hidden; background: linear-gradient(180deg,#fff 0%,#f8faff 100%); }
.job-hero::after { content:""; position:absolute; width:520px; height:520px; right:-220px; top:-250px; border-radius:50%; background:radial-gradient(circle,rgba(0,71,255,.13),rgba(0,71,255,0) 70%); pointer-events:none; }
.job-hero-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(340px,.8fr); gap: 64px; align-items: start; position:relative; z-index:1; }
.job-hero-copy { display: grid; gap: 21px; }
.job-back { color: var(--blue); font-weight: 650; width: fit-content; }
.job-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.job-summary-card { border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow); padding: 28px; position: sticky; top: 100px; }
.job-summary-card dl { margin: 18px 0 24px; display: grid; }
.job-summary-card dl div { display:grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.job-summary-card dt { color: var(--muted); font-size: 13px; }
.job-summary-card dd { margin:0; font-size:14px; font-weight:600; }
.job-summary-card .btn { width:100%; }
.job-content-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 54px; align-items:start; }
.job-copy .h2 { margin-top: 10px; font-size: clamp(30px,3.3vw,44px); }
.job-list { list-style:none; margin: 28px 0 0; padding:0; display:grid; gap:14px; }
.job-list li { position:relative; padding: 0 0 14px 28px; color:var(--ink-2); border-bottom:1px solid var(--line); }
.job-list li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--blue); font-weight:750; }
.job-help-card { border:1px solid var(--line); border-radius:22px; padding:28px; background:var(--surface-2); }
.job-help-card h2 { margin-top:10px; }
.job-help-card p { color:var(--ink-2); }
.job-help-actions { display:flex; gap:9px; flex-wrap:wrap; margin-top:18px; }
.apply-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(420px,1.1fr); gap:62px; align-items:start; }
.apply-copy { display:grid; gap:18px; position:sticky; top:108px; }
.apply-points { display:grid; gap:10px; margin-top:8px; font-weight:620; color:var(--ink-2); }
.application-card { border:1px solid var(--line); border-radius:24px; background:#fff; padding:30px; box-shadow:var(--shadow); }
.application-card form { display:grid; gap:20px; }
.file-drop { min-height:112px; display:grid; place-items:center; gap:4px; padding:22px; border:1.5px dashed var(--line-strong); border-radius:16px; background:var(--surface-2); text-align:center; cursor:pointer; transition:.2s var(--ease); }
.file-drop:hover, .file-drop.has-file { border-color:var(--blue); background:var(--blue-soft); }
.file-drop span { color:var(--muted); font-size:13px; }
.visually-hidden-file { position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important; overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important; }
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.application-note { margin:0; font-size:12px; line-height:1.55; color:var(--muted); }
.application-note a { color:var(--blue); text-decoration:underline; text-underline-offset:2px; }
.application-submit { width:100%; min-height:50px; }
.application-submit[disabled] { opacity:.65; cursor:wait; transform:none; }
.application-status { min-height:24px; font-size:14px; font-weight:600; }
.application-status.success { color:var(--success); }
.application-status.error { color:#b42318; }

@media (max-width: 900px) {
  .jobs-grid, .job-content-grid, .apply-grid, .job-hero-grid { grid-template-columns:1fr; }
  .job-summary-card, .apply-copy { position:static; }
  .job-hero-grid { gap:34px; }
  .apply-grid { gap:32px; }
}
@media (max-width: 700px) {
  .job-card-top, .job-card-foot { padding-left:22px; padding-right:22px; }
  .job-meta { padding-left:22px; padding-right:22px; }
  .job-card-foot { align-items:flex-start; flex-direction:column; }
  .job-summary-card, .application-card { padding:22px; }
  .job-summary-card dl div { grid-template-columns:1fr; gap:3px; }
  .job-hero { padding-top:48px; }
}

/* V8 input-mode rule: touch is first-class across phone, tablet and touch desktop. */
@media (pointer: coarse) {
  .btn,
  .icon-btn,
  .mobile-toggle,
  .filter,
  select,
  input:not([type="hidden"]),
  textarea {
    min-height: 44px;
  }

  a,
  button,
  .choice-card,
  .option-card,
  .expert-card,
  .marketplace-card {
    -webkit-tap-highlight-color: rgba(0,71,255,.09);
  }

  .btn:active,
  .choice-card:active,
  .option-card:active,
  .expert-card:active,
  .marketplace-card:active {
    transform: scale(.985);
  }
}

@media (hover: none) {
  .choice-card:hover,
  .feature-card:hover,
  .expert-card:hover,
  .marketplace-card:hover,
  .btn:hover {
    transform: none;
  }
}


/* Phase 2 founder UX corrections */
:root {
  --ink: #111111;
  --muted: #111111;
  --muted-2: #111111;
}

@media (min-width: 901px) {
  .site-header .nav {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    min-height: 70px;
    gap: 24px;
  }
  .site-header .nav > .brand { justify-self: start; }
  .site-header .nav-links {
    justify-self: center;
    margin-left: 0;
    min-width: 210px;
    justify-content: center;
  }
  .site-header .nav-actions {
    justify-self: end;
    min-width: 220px;
    justify-content: flex-end;
  }
}

.nav-more { position: relative; }
.nav-more > summary {
  list-style: none;
  cursor: pointer;
  min-height: 44px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  border-radius: 8px;
}
.nav-more > summary::-webkit-details-marker { display: none; }
.nav-more > summary::after { content: '⌄'; margin-left: 6px; font-size: 12px; }
.nav-more > summary:hover,
.nav-more > summary:focus-visible { background: var(--surface-2); outline: none; }
.nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 190px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 120;
}
.nav-more-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}
.nav-more-menu a:hover,
.nav-more-menu a:focus-visible { background: var(--surface-2); outline: none; }
.nav-primary-cta { min-width: 104px; justify-content: center; }

.tb-verified-mark {
  width: 24px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
  display: inline-block;
}
.tb-verified-badge {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  color: var(--ink) !important;
  gap: 7px !important;
}
.tb-verified-seal { display: none !important; }
.proof-badge::before { content: none !important; }
.verification-freshness {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: var(--ink) !important;
  font-weight: 700;
}
.verification-freshness .tb-verified-mark { width: 20px; height: 18px; }

.choice-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.choice-heading .choice-icon { margin: 0; width: 44px; height: 44px; flex: 0 0 44px; }
.choice-heading .h3 { margin: 0; }
.choice-card p { color: var(--ink) !important; }

/* Founder contrast rule: readable dark-on-light and white-on-dark; no weak-grey body copy. */
.lead, .kicker, .small, .hero-note, .feature-card p, .expert-role, .score span,
.option-card span, .job-summary-card dt, .file-drop span, .application-note,
.marketplace-summary, .marketplace-card-foot span, .profile-evidence-card p,
.profile-experience-item p, .profile-summary-list dt { color: var(--ink); }
.dark .lead, .dark .kicker, .dark .small, .dark p,
.folder-hero .lead, .proof-card-top p, .process-row span,
.site-footer, .site-footer p, .footer-grid h4,
.footer-grid a, .footer-brand p, .footer-bottom,
.system-sidebar span { color: #fff !important; }
.dark .eyebrow, .proof-badge { color: #fff !important; }
.site-footer .brand .ae { color: #fff !important; }

.marketplace-card { position: relative; cursor: pointer; }
.marketplace-card-link { color: inherit; text-decoration: none; }
.marketplace-card-link::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.marketplace-card-link { position: static !important; z-index: auto !important; }
.marketplace-card .marketplace-actions a, .marketplace-card .marketplace-actions button { position: relative; z-index: 3; }
.marketplace-card-link:focus-visible { outline: 3px solid rgba(0,71,255,.30); outline-offset: 4px; }

@media (max-width: 900px) {
  .nav-more { display: none; }
}


/* Anonymous hiring brief continuity across site navigation. */
.hiring-resume-pill {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 78;
  display: grid;
  gap: 2px;
  width: min(330px, calc(100vw - 40px));
  padding: 12px 15px;
  border: 1px solid rgba(0,71,255,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(15,31,66,.16);
  color: var(--ink);
  text-decoration: none;
  backdrop-filter: blur(14px);
}
.hiring-resume-pill span { color: var(--blue); font-size: 12px; font-weight: 760; }
.hiring-resume-pill strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.hiring-resume-pill:hover { transform: translateY(-2px); box-shadow: 0 19px 46px rgba(15,31,66,.2); }
.hiring-resume-pill:focus-visible { outline: 3px solid rgba(0,71,255,.28); outline-offset: 3px; }
@media (max-width: 700px) {
  .hiring-resume-pill { right: 14px; bottom: 14px; width: min(362px, calc(100vw - 28px)); }
}
@media (prefers-reduced-motion: reduce) {
  .hiring-resume-pill { transition: none; }
}

/* Explicit secondary context; ordinary content uses dark text. */
:root{--text-secondary-note:#667085}
.text-secondary-note,.article-meta,.insight-meta{color:var(--text-secondary-note)}

.case-company-link{color:var(--blue);text-decoration:underline;text-underline-offset:3px}
