:root {
  --ink: #18261f;
  --paper: #f7f3e9;
  --green: #c4ff4d;
  --green-dark: #244a38;
  --purple: #aa8cff;
  --orange: #ff7657;
  --white: #fffefa;
  --line: rgba(24, 38, 31, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.site-header {
  width: min(1400px, calc(100% - 64px));
  height: 94px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; letter-spacing: -.8px; }
.brand-mark { width: 39px; height: 39px; display: inline-grid; place-items:center; transition:transform .2s ease; }
.brand:hover .brand-mark { transform:translateY(-1px); }
.brand-mark svg { width:100%; height:100%; overflow:visible; }
.brand-mark .charm-loop { fill:none; stroke:var(--ink); stroke-width:2.2; stroke-linecap:round; }
.brand-mark .charm-body { fill:var(--green); stroke:var(--ink); stroke-width:2.2; stroke-linejoin:round; }
.brand-mark .charm-h { fill:var(--ink); }
.brand-mark .charm-knot { fill:var(--orange); stroke:var(--ink); stroke-width:1.4; stroke-linejoin:round; }
.brand-type { display:flex; align-items:center; gap:9px; }
.brand-type small { padding:5px 7px 6px; color:var(--green); background:var(--ink); border-radius:4px; font-size:9px; line-height:1; letter-spacing:.08em; font-weight:800; transform:rotate(-3deg); }
nav { display: flex; gap: 38px; font-size: 14px; font-weight: 650; }
nav a { opacity: .72; transition: opacity .2s; }
nav a:hover { opacity: 1; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 750; }
.button-small { padding: 13px 20px; font-size: 13px; }
.button-dark { color: var(--white); background: var(--ink); }
.menu-button { display: none; background: none; border: 0; color: var(--ink); font-weight: 700; }

.hero {
  width: min(1400px, calc(100% - 64px));
  min-height: 700px;
  margin: auto;
  padding: 80px 0 90px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}
.eyebrow, .section-number { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 24px; height: 8px; border-radius: 10px; background: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 22px 0 26px; font-size: clamp(66px, 7vw, 112px); line-height: .86; letter-spacing: -.075em; max-width: 800px; }
h1 em, h2 em { font-family:inherit; font-weight:inherit; font-style:normal; letter-spacing:inherit; }
h1 em { position:relative; color:var(--green-dark); z-index:0; }
h1 em:after { content:""; position:absolute; z-index:-1; left:-.02em; right:-.04em; bottom:.06em; height:.18em; border-radius:999px; background:var(--green); transform:rotate(-1deg); opacity:.82; }
h2 mark { position:relative; z-index:0; padding:0 .05em; color:inherit; background:transparent; white-space:nowrap; }
h2 mark:after { content:""; position:absolute; z-index:-1; left:-.02em; right:-.02em; bottom:.04em; height:.36em; border-radius:5px; background:var(--green); transform:rotate(-1.5deg); }
.hero-lead { max-width: 650px; font-size: 19px; line-height: 1.55; color: rgba(24,38,31,.72); }

.rental-paths{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:26px 0 14px}.rental-paths button{display:flex;align-items:center;gap:10px;padding:12px;border:1.5px solid var(--ink);border-radius:5px;background:var(--white);color:var(--ink);text-align:left;cursor:pointer}.rental-paths button.active{background:var(--green);box-shadow:3px 3px 0 var(--ink);transform:translate(-1px,-1px)}.rental-paths b{display:grid;width:30px;height:30px;place-items:center;border:1px solid var(--ink);border-radius:50%;font-size:16px}.rental-paths span{font-size:12px;font-weight:900}.rental-paths small{display:block;margin-top:2px;font-size:8px;font-weight:650;opacity:.65}

.search-bar {
  max-width: 680px;
  background: var(--white);
  margin-top: 40px;
  padding: 9px 10px 9px 22px;
  border: 1px solid rgba(24,38,31,.09);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(30,44,35,.09);
  display: grid;
  grid-template-columns: 1.15fr .75fr 54px;
  align-items: stretch;
}
.search-bar label { display: flex; flex-direction: column; gap: 2px; padding: 3px 22px 3px 0; }
.search-bar label + label { border-left: 1px solid var(--line); padding-left: 22px; }
.search-bar label > span:first-child { font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.input-row { display: flex; gap: 6px; align-items: center; }
.input-row svg { width: 17px; height: 17px; fill: var(--ink); opacity: .55; }
.input-row input { min-width: 0; width: 100%; border: 0; padding: 3px 0 0; outline: 0; color: var(--ink); background: transparent; font-weight: 650; }
.search-button { border: 0; border-radius: 14px; background: var(--green); cursor: pointer; transition: transform .2s, background .2s; }
.search-button:hover { transform: scale(1.04); background: #c6fa72; }
.search-button svg { width: 22px; fill: var(--ink); }
.vibe-row { display:flex; flex-wrap:nowrap; gap:6px; margin-top:20px; max-width:720px; overflow:visible; }
.vibe-row span { flex:none; padding:7px 9px; border:1px solid var(--line); border-radius:999px; background:rgba(255,255,255,.52); font-size:9px; font-weight:750; transform:rotate(-1deg); }
.vibe-row span:nth-child(2) { transform:rotate(1.5deg); background:#ede6ff; }
.vibe-row span:nth-child(3) { transform:rotate(-.5deg); background:#efffcf; }
.vibe-row span:nth-child(4) { transform:rotate(.7deg); background:#ffe7de; }
.vibe-row span:nth-child(5) { transform:rotate(-.6deg); background:#fff; }
.vibe-row span:nth-child(6) { transform:rotate(.8deg); background:#ede6ff; }

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  border-radius: 48% 48% 42% 48%;
  background: var(--purple);
  overflow: hidden;
}
.orbit { position: absolute; width: 610px; height: 320px; border: 1px solid rgba(24,38,31,.18); border-radius: 50%; transform: rotate(-28deg); }
.orbit-two { width: 750px; height: 410px; transform: rotate(31deg); }
.listing-card { position: relative; z-index: 3; width: 340px; background: var(--white); padding: 9px; border-radius: 22px; box-shadow: 0 30px 60px rgba(42,26,70,.2); transform: rotate(-2.5deg); }
.listing-image { height: 225px; position: relative; overflow: hidden; border-radius: 15px; background: #eab59c; }
.room-illustration { position: absolute; inset: 0; background: linear-gradient(#e8b69f 0 66%, #bd8a67 66%); }
.window { position: absolute; width: 110px; height: 110px; top: 25px; left: 24px; background: linear-gradient(135deg,#d9edff,#c8d3ff); border: 9px solid #f6e9df; box-shadow: inset 0 0 0 2px #af8b78; }
.window:after { content:""; position:absolute; inset: 44px -2px auto; height: 2px; background: #af8b78; transform: rotate(90deg); }
.sofa { position: absolute; width: 166px; height: 64px; bottom: 27px; right: 18px; border-radius: 19px 19px 7px 7px; background: #718473; box-shadow: inset 0 -10px rgba(0,0,0,.08); }
.sofa:before { content:""; position:absolute; width:70px; height:55px; left:5px; top:-13px; border-radius:12px; background:#879888; box-shadow: 75px 2px #829183; }
.table { position: absolute; width: 75px; height: 16px; bottom: 28px; left: 30px; background: #573e32; border-radius: 50%; }
.table:before { content:""; position:absolute; width:6px; height:40px; left:35px; top:8px; background:#573e32; }
.plant { position: absolute; width: 29px; height: 43px; right: 11px; top: 31px; background: #3e6848; border-radius: 70% 10% 70% 20%; transform: rotate(20deg); box-shadow: -18px 5px #517a53; }
.source-count { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; border-radius: 10px; background: rgba(255,255,255,.9); font-size: 10px; font-weight: 800; }
.heart { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); font-size: 20px; }
.listing-body { padding: 15px 9px 8px; }
.match-line { display:flex; justify-content:space-between; font-size:10px; font-weight:800; text-transform:uppercase; letter-spacing:.04em; color:#42724f; }
.match-line span:last-child { color:#8b664c; }
.listing-body h2 { margin: 9px 0 5px; font-size: 17px; line-height: 1.2; letter-spacing: -.025em; }
.listing-body > p { color: rgba(24,38,31,.58); font-size: 11px; }
.listing-footer { border-top: 1px solid var(--line); padding-top: 12px; display:flex; justify-content:space-between; align-items:center; }
.listing-footer strong { font-size: 18px; }
.listing-footer small, .listing-footer span { font-size: 10px; color: rgba(24,38,31,.56); }
.float-pill { position:absolute; z-index:5; display:flex; align-items:center; gap:10px; border-radius:14px; background:var(--white); padding:11px 14px; box-shadow:0 14px 30px rgba(42,26,70,.16); font-size:11px; font-weight:750; }
.float-pill > span { width:24px; height:24px; display:grid; place-items:center; background:var(--green); border-radius:50%; }
.float-pill small { display:block; margin-top:2px; font-weight:500; color:rgba(24,38,31,.55); }
.pill-top { top: 38px; right: 42px; transform: rotate(2deg); }
.pill-bottom { bottom: 34px; left: 42px; transform: rotate(-1deg); }

.source-strip { padding: 27px max(32px, calc((100% - 1400px)/2)); background: var(--ink); color: var(--white); display:flex; align-items:center; justify-content:space-between; gap:40px; }
.results-section { padding:72px max(32px,calc((100% - 1400px)/2)); background:var(--white); }
.results-heading { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:34px; }
.results-heading h2 { margin:12px 0 0; font-size:clamp(34px,4vw,56px); letter-spacing:-.05em; }
.results-heading p { color:rgba(24,38,31,.58); font-size:13px; }
.results-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.result-card { overflow:hidden; border:1px solid var(--line); border-radius:20px; background:var(--paper); }
.result-card > img,.result-placeholder { width:100%; height:210px; object-fit:cover; background:#ded4ff; }
.result-placeholder { display:grid; place-items:center; font-size:70px; font-weight:850; color:var(--green-dark); }
.result-card > div:last-child { padding:20px; }
.result-source { font-size:9px; font-weight:850; letter-spacing:.12em; text-transform:uppercase; color:#587264; }
.result-card h3 { min-height:46px; margin:8px 0; font-size:18px; line-height:1.25; letter-spacing:-.025em; }
.result-card p { min-height:18px; color:rgba(24,38,31,.58); font-size:11px; }
.result-meta { display:flex; justify-content:space-between; gap:12px; align-items:center; padding-top:14px; border-top:1px solid var(--line); }
.result-meta strong { font-size:19px; }.result-meta small,.result-meta span { font-size:10px; color:rgba(24,38,31,.58); }
.result-card a { display:inline-block; margin-top:17px; font-size:12px; font-weight:800; }
.result-warning { min-height:0 !important; margin:14px 0 0; padding:8px 10px; border-radius:8px; background:#fff0e9; color:#7a3c2f !important; }
.source-links { display:flex; gap:10px; flex-wrap:wrap; }.source-links a { margin-top:12px; text-transform:capitalize; }
.source-strip p { margin:0; font-size:11px; opacity:.55; text-transform:uppercase; letter-spacing:.08em; }
.source-logos { flex:1; display:flex; justify-content:flex-end; gap:clamp(24px,4vw,70px); align-items:center; font-weight:750; font-size:15px; opacity:.82; }
.source-logos span:last-child { color: var(--green); }

.problem-section { width:min(1400px,calc(100% - 64px)); margin:auto; padding:92px 0; display:grid; grid-template-columns:220px 1fr; column-gap:72px; row-gap:48px; align-items:start; }
.section-number { color:rgba(24,38,31,.48); }
.kicker { margin-bottom:14px; font-size:15px; font-weight:750; letter-spacing:-.01em; }
.problem-copy h2, .section-intro h2, .ai-heading h2, .early-access h2 { font-size:clamp(42px,5vw,72px); line-height:.97; letter-spacing:-.055em; }
.problem-copy { display:grid; grid-template-columns:180px 1fr; gap:40px; align-items:start; }
.problem-copy h2 { max-width:780px; margin:0; }
.problem-stats { grid-column:2; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.problem-stats div { min-height:185px; display:flex; flex-direction:column; align-items:flex-start; padding:24px; border:1px solid var(--line); border-radius:20px; background:rgba(255,255,255,.5); }
.problem-icon { width:35px; height:35px; display:grid; place-items:center; margin-bottom:30px; border-radius:10px; background:var(--green); color:var(--ink) !important; font-size:17px !important; font-weight:850; }
.problem-stats strong { margin-bottom:8px; font-size:21px; font-weight:850; letter-spacing:-.035em; }
.problem-stats span { max-width:260px; font-size:12px; line-height:1.5; color:rgba(24,38,31,.62); }

.how-section { background:var(--white); padding:92px max(32px,calc((100% - 1400px)/2)); }
.section-intro { max-width:none; display:grid; grid-template-columns:220px 1fr; column-gap:72px; }
.section-intro .section-number { grid-row:span 2; }
.section-intro .kicker { margin:0 0 12px; }
.section-intro h2 { margin:0; }
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin:62px 0 0 292px; border-top:1px solid var(--line); }
.steps article { position:relative; padding:38px 38px 0 0; min-height:300px; border-right:1px solid var(--line); }
.steps article + article { padding-left:50px; }
.steps article:last-child { border:0; }
.step-number { position:absolute; top:-10px; left:0; padding-right:12px; background:var(--white); font-size:11px; font-weight:800; }
.steps article + article .step-number { left:50px; }
.step-icon { height:90px; position:relative; margin:10px 0 32px; transform:scale(.82); transform-origin:left center; }
.search-lines { width:120px; display:flex; flex-direction:column; justify-content:center; gap:9px; }
.search-lines i { height:11px; border-radius:20px; background:var(--purple); }
.search-lines i:nth-child(2) { width:86px; background:var(--green); margin-left:22px; }
.search-lines i:nth-child(3) { width:65px; background:var(--orange); margin-left:8px; }
.merge-icon i { position:absolute; width:70px; height:70px; border-radius:14px; border:2px solid var(--ink); background:#dfd4ff; transform:rotate(-8deg); }
.merge-icon i:nth-child(2) { left:38px; top:19px; background:var(--green); transform:rotate(7deg); }
.merge-icon b { position:absolute; left:77px; top:62px; z-index:2; width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--ink); color:white; }
.key-icon i { position:absolute; width:66px; height:66px; border:13px solid var(--orange); border-radius:50%; }
.key-icon b { position:absolute; left:56px; top:49px; width:76px; height:14px; background:var(--orange); transform:rotate(28deg); border-radius:3px; }
.key-icon b:after { content:""; position:absolute; width:13px; height:25px; right:10px; top:6px; background:var(--orange); }
.steps h3 { font-size:22px; letter-spacing:-.03em; }
.steps p { max-width:300px; font-size:14px; line-height:1.65; color:rgba(24,38,31,.63); }

.ai-section { padding:96px max(32px,calc((100% - 1400px)/2)); background:var(--green-dark); color:var(--white); }
.section-number.light { color:rgba(255,255,255,.5); }
.ai-heading { display:grid; grid-template-columns:220px 1.25fr .75fr; gap:72px; align-items:end; }
.ai-title .kicker { margin-bottom:12px; color:var(--green); }
.ai-heading h2 { margin:0; }
.ai-heading h2 em { color:var(--green); }
.ai-heading > p { margin:0 0 6px; font-size:14px; line-height:1.7; color:rgba(255,255,255,.65); }
.ai-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:62px; }
.ai-card { min-height:410px; padding:36px; border-radius:var(--radius); background:#f1eee4; color:var(--ink); position:relative; overflow:hidden; }
.ai-card:nth-child(2) { transform:rotate(-.6deg); }
.ai-card:nth-child(3) { transform:rotate(.6deg); }
.ai-card.featured { grid-column:span 2; min-height:430px; display:grid; grid-template-columns:1fr 1fr; gap:50px; background:var(--purple); }
.feature-tag { font-size:10px; font-weight:850; letter-spacing:.14em; }
.ai-card h3 { margin:55px 0 16px; font-size:38px; line-height:1.02; letter-spacing:-.05em; }
.ai-card p { max-width:410px; color:rgba(24,38,31,.64); font-size:14px; line-height:1.65; }
.match-demo { align-self:center; display:flex; align-items:center; gap:35px; background:rgba(255,255,255,.66); padding:32px; border-radius:22px; transform:rotate(2deg); }
.match-score { width:135px; height:135px; flex:none; border:10px solid var(--green-dark); border-right-color:rgba(36,74,56,.2); border-radius:50%; display:flex; flex-direction:column; align-items:center; justify-content:center; transform:rotate(-20deg); }
.match-score span,.match-score small { transform:rotate(20deg); }
.match-score span { font-size:48px; font-weight:850; letter-spacing:-.06em; line-height:.8; }
.match-score small { margin-top:8px; font-size:9px; font-weight:800; text-transform:uppercase; }
.match-bars { flex:1; }
.match-bars p { margin:13px 0; }
.match-bars p span { display:block; color:var(--ink); font-size:11px; font-weight:750; }
.match-bars b { display:block; height:7px; margin-top:6px; background:rgba(24,38,31,.12); border-radius:8px; overflow:hidden; }
.match-bars i { display:block; height:100%; width:var(--width); background:var(--green-dark); border-radius:8px; }
.mini-icon { position:absolute; right:36px; top:30px; font-size:42px; }
.duplicate-stack { position:absolute; bottom:0; left:50%; width:220px; height:130px; transform:translateX(-50%); }
.duplicate-stack i { position:absolute; left:20px; bottom:-35px; width:180px; height:120px; background:#d3c5ff; border:1px solid rgba(24,38,31,.3); border-radius:16px; transform:rotate(-8deg); }
.duplicate-stack i:nth-child(2) { transform:rotate(7deg); background:#fed0bf; }
.duplicate-stack i:nth-child(3) { bottom:-15px; transform:rotate(0); background:var(--white); box-shadow:0 10px 30px rgba(24,38,31,.1); }
.duplicate-stack span { position:absolute; top:26px; left:30px; padding:8px 12px; background:var(--green); border-radius:20px; font-style:normal; font-size:10px; font-weight:800; }
.warning-card { background:#f1ad8d; }
.clarity-list { position:absolute; left:36px; right:36px; bottom:30px; display:flex; flex-wrap:wrap; gap:7px; }
.clarity-list span { padding:9px 12px; border-radius:10px; background:rgba(255,255,255,.72); font-size:10px; font-weight:700; }
.clarity-list .warn { background:var(--ink); color:var(--white); }
.ai-card.full-card { grid-column:span 2; min-height:270px; display:grid; grid-template-columns:.85fr 1.15fr; align-items:center; gap:60px; background:var(--green); }
.full-card h3 { margin-top:35px; }
.notification-demo { padding:20px; display:flex; gap:16px; align-items:center; border-radius:18px; background:rgba(255,255,255,.8); box-shadow:0 18px 35px rgba(24,38,31,.12); transform:rotate(-1deg); }
.notification-mark { width:48px; height:48px; flex:none; display:grid; place-items:center; border-radius:13px; background:var(--ink); color:white; font-weight:850; font-size:25px; }
.notification-demo small { display:block; font-size:8px; letter-spacing:.1em; color:rgba(24,38,31,.5); }
.notification-demo strong { display:block; margin:4px 0; font-size:15px; }
.notification-demo p { margin:0; font-size:11px; }

.early-access { padding:82px max(32px,calc((100% - 1400px)/2)); display:grid; grid-template-columns:1.1fr .9fr; gap:90px; align-items:center; background:var(--green); }
.early-access h2 { margin:34px 0 20px; }
.early-access > div > p { color:rgba(24,38,31,.65); }
.email-form label { display:block; margin-bottom:13px; font-size:12px; font-weight:800; }
.email-form > div { padding:7px; display:flex; background:var(--white); border-radius:15px; }
.email-form input { flex:1; min-width:0; padding:14px; border:0; outline:0; background:transparent; }
.email-form button { border:0; padding:0 18px; border-radius:11px; background:var(--ink); color:var(--white); font-weight:750; cursor:pointer; }
.email-form button span { margin-left:12px; }
.form-note { margin:10px 0 0; font-size:10px; color:rgba(24,38,31,.55); }
.form-success { display:none; margin:12px 0 0; font-size:12px; font-weight:800; }
.email-form.submitted .form-success { display:block; }

footer { padding:42px max(32px,calc((100% - 1400px)/2)); display:grid; grid-template-columns:1fr 1fr 1fr; align-items:center; background:var(--ink); color:var(--white); }
.footer-brand .brand-mark .charm-body { fill:var(--green); }
.footer-brand .brand-mark .charm-loop { stroke:var(--white); }
.footer-brand .brand-mark .charm-body, .footer-brand .brand-mark .charm-knot { stroke:var(--white); }
.footer-brand .brand-type small { color:var(--ink); background:var(--green); }
footer > p { margin:0; text-align:center; font-weight:650; color:rgba(255,255,255,.58); }
footer > div { display:flex; justify-content:flex-end; gap:24px; font-size:11px; color:rgba(255,255,255,.55); }
.toast { position:fixed; left:50%; bottom:24px; z-index:30; padding:13px 20px; border-radius:12px; background:var(--ink); color:white; font-size:12px; font-weight:700; box-shadow:0 10px 30px rgba(0,0,0,.25); transform:translate(-50%,100px); opacity:0; transition:.35s ease; }
.toast.visible { transform:translate(-50%,0); opacity:1; }

@media (max-width: 1000px) {
  .hero { grid-template-columns:1fr; padding-top:65px; }
  .hero-copy { text-align:center; }
  .eyebrow,.vibe-row { justify-content:center; }
  .hero-lead,.search-bar { margin-left:auto; margin-right:auto; }
  .hero-visual { width:min(620px,100%); margin:auto; }
  .problem-section { grid-template-columns:1fr; }
  .problem-copy,.section-intro { grid-template-columns:1fr; }
  .problem-stats { grid-column:auto; }
  .steps { margin-left:0; }
  .ai-heading { grid-template-columns:1fr 1fr; }
  .ai-heading .section-number { grid-column:span 2; }
  .source-logos { overflow:hidden; white-space:nowrap; }
}

@media (max-width: 720px) {
  .results-grid { grid-template-columns:1fr; }
  .site-header,.hero,.problem-section { width:calc(100% - 36px); }
  .site-header { height:74px; }
  nav,.site-header > .button { display:none; }
  .menu-button { display:block; }
  h1 { font-size:64px; }
  .hero { padding:55px 0 60px; gap:55px; }
  .vibe-row { justify-content:flex-start; max-width:100%; padding:4px 0 8px; overflow-x:auto; scrollbar-width:none; }
  .vibe-row::-webkit-scrollbar { display:none; }
  .search-bar { grid-template-columns:1fr 50px; padding-left:17px; }
  .search-bar label:nth-child(2) { display:none; }
  .hero-visual { min-height:450px; }
  .listing-card { width:295px; }
  .listing-image { height:190px; }
  .pill-top { right:10px; top:30px; }
  .pill-bottom { left:10px; bottom:25px; }
  .source-strip { display:block; overflow:hidden; }
  .source-logos { justify-content:flex-start; margin-top:18px; }
  .problem-section { padding:72px 0; display:block; }
  .problem-copy { display:block; margin:35px 0 42px; }
  .problem-stats { grid-template-columns:1fr; }
  .problem-stats div { min-height:145px; }
  .how-section,.ai-section,.early-access { padding-top:90px; padding-bottom:90px; }
  .steps { grid-template-columns:1fr; }
  .steps article,.steps article + article { min-height:310px; padding:45px 0; border-right:0; border-bottom:1px solid var(--line); }
  .steps article + article .step-number { left:0; }
  .ai-heading { display:block; }
  .ai-heading h2 { margin:45px 0 25px; }
  .ai-grid { grid-template-columns:1fr; margin-top:55px; }
  .ai-card.featured,.ai-card.full-card { grid-column:auto; grid-template-columns:1fr; }
  .ai-card.featured { min-height:620px; }
  .match-demo { align-self:end; gap:18px; padding:22px; }
  .match-score { width:105px; height:105px; }
  .ai-card.full-card { padding-bottom:45px; }
  .early-access { grid-template-columns:1fr; gap:55px; }
  .email-form > div { flex-direction:column; }
  .email-form button { padding:14px; }
  footer { grid-template-columns:1fr; gap:22px; text-align:center; }
  footer > div { justify-content:center; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior:auto; } * { transition:none !important; } }
