:root {
  --ink: #1d1d1f;
  --muted: rgba(29, 29, 31, .66);
  --purple: #0066cc;
  --purple-dark: #0055aa;
  --lime: #ffffff;
  --mint: #f5f5f7;
  --cream: #f5f5f7;
  --paper: #ffffff;
  --line: rgba(29, 29, 31, .13);
  --orange: #0066cc;
  --blue: #f5f5f7;
  --sans: "DM Sans", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 clamp(22px, 5vw, 76px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-family: var(--display); font-size: 21px; font-weight: 800; letter-spacing: -.04em; }
.brand-icon { width: 30px; height: 30px; display: inline-block; position: relative; }
.brand-icon span { width: 19px; height: 12px; position: absolute; border: 3px solid var(--purple); border-radius: 14px 3px 14px 3px; transform: rotate(-38deg); }
.brand-icon span:first-child { top: 2px; left: 1px; }
.brand-icon span:last-child { right: 0; bottom: 2px; transform: rotate(142deg); }
.header-search { max-width: 390px; height: 44px; display: flex; align-items: center; gap: 10px; flex: 1; margin-left: auto; padding: 0 15px; border: 1px solid var(--line); border-radius: 99px; background: var(--cream); color: var(--muted); }
.header-search input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 25px; flex: 0 0 auto; font-size: 12px; font-weight: 700; }
.link-button { padding: 0; border: 0; background: transparent; font-weight: 700; cursor: pointer; }
.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(28,25,62,.13); }
.button-small { min-height: 42px; padding: 0 17px; }
.button-primary { color: white; background: var(--purple); }
.button-primary:hover { background: var(--purple-dark); }
.button-dark { color: white; background: var(--ink); }
.button-ghost { border-color: var(--line); background: white; }
.button-light { color: var(--ink); background: white; }
.menu-button { display: none; margin-left: auto; padding: 6px; border: 0; background: transparent; }
.menu-button span { display: block; width: 23px; height: 2px; margin: 5px; background: var(--ink); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: 80px clamp(24px, 8vw, 125px) 92px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-grid { position: absolute; inset: 0; opacity: .4; background-image: linear-gradient(rgba(29,29,31,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(29,29,31,.08) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-copy { max-width: 680px; position: relative; z-index: 2; }
.badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; background: rgba(255,255,255,.82); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.badge span { color: var(--purple); }
.hero h1, .section-heading h2, .final-cta h2, .handoff-copy h2 { margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: -.055em; }
.hero h1 { font-size: clamp(52px, 5.2vw, 82px); line-height: .99; }
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-copy > p { max-width: 600px; margin: 25px 0 31px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; gap: 10px; }
.hero-proof { display: flex; align-items: center; gap: 13px; margin-top: 35px; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.hero-proof strong { color: var(--ink); }
.avatar-stack { display: flex; }
.avatar-stack span { width: 31px; height: 31px; display: grid; place-items: center; margin-left: -7px; border: 2px solid var(--cream); border-radius: 50%; color: white; background: var(--purple); font-size: 8px; font-weight: 700; }
.avatar-stack span:first-child { margin-left: 0; background: #0066cc; }
.avatar-stack span:nth-child(2) { background: rgba(0,102,204,.82); }
.avatar-stack span:nth-child(3) { background: rgba(0,102,204,.64); }
.avatar-stack span:last-child { color: var(--ink); background: var(--paper); }
.hero-card-wrap { max-width: 490px; width: 100%; justify-self: center; position: relative; z-index: 2; }
.featured-listing { overflow: hidden; border: 1px solid var(--line); border-radius: 15px; background: white; box-shadow: 0 28px 70px rgba(29,29,31,.14); transform: rotate(1.2deg); }
.listing-cover { height: 195px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.cover-food { background: #0066cc; }
.listing-cover::before, .market-cover::before { content: ""; width: 240px; height: 240px; position: absolute; left: -55px; bottom: -140px; border-radius: 50%; background: rgba(255,255,255,.24); }
.listing-cover::after, .market-cover::after { content: ""; width: 190px; height: 190px; position: absolute; right: -55px; top: -115px; border: 2px solid rgba(255,255,255,.34); border-radius: 50%; }
.status-pill { position: absolute; top: 15px; left: 15px; z-index: 2; padding: 7px 10px; border-radius: 99px; color: var(--purple); background: var(--paper); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.cover-mark, .cover-symbol { width: 82px; height: 82px; display: grid; place-items: center; position: relative; z-index: 2; border: 3px solid var(--ink); border-radius: 24px 8px 24px 8px; color: var(--ink); background: rgba(255,255,255,.85); font-family: var(--display); font-size: 27px; font-weight: 800; transform: rotate(-5deg); }
.listing-body { padding: 22px 25px 20px; }
.listing-meta, .cause-row { display: flex; justify-content: space-between; color: var(--purple); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.listing-meta span:last-child, .cause-row span:last-child { color: var(--muted); }
.listing-body h2 { margin: 10px 0 7px; font-family: var(--display); font-size: 24px; letter-spacing: -.04em; }
.listing-body > p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.listing-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin: 20px 0; }
.listing-stats div { padding: 11px 8px; border-radius: 6px; background: var(--cream); }
.listing-stats strong, .listing-stats span { display: block; }
.listing-stats strong { font-family: var(--display); font-size: 14px; }
.listing-stats span { margin-top: 2px; color: var(--muted); font-size: 7px; }
.listing-owner { display: flex; align-items: center; gap: 9px; padding-top: 15px; border-top: 1px solid var(--line); }
.owner-avatar { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--purple); font-size: 8px; font-weight: 700; }
.listing-owner div { flex: 1; }
.listing-owner small, .listing-owner strong { display: block; font-size: 8px; }
.listing-owner small { color: var(--muted); }
.listing-owner strong { margin-top: 2px; }
.circle-button { width: 32px; height: 32px; border: 0; border-radius: 50%; color: white; background: var(--ink); cursor: pointer; }
.float-note { position: absolute; z-index: 3; padding: 11px 14px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: 0 10px 28px rgba(20,30,25,.12); font-size: 9px; font-weight: 700; }
.float-note span { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 6px; border-radius: 50%; color: white; background: var(--purple); }
.float-note strong { color: var(--purple); font-size: 16px; }
.note-one { top: 35px; right: -50px; }
.note-two { bottom: 75px; left: -55px; }

.logo-strip { padding: 28px clamp(24px, 7vw, 110px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; text-align: center; }
.logo-strip p { margin: 0 0 18px; color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.logo-strip div { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(28px, 5vw, 70px); color: var(--muted); font-family: var(--display); font-size: 15px; font-weight: 800; }

.split-section, .marketplace-section { padding: 105px clamp(24px, 7vw, 110px); }
.section-heading { margin-bottom: 50px; }
.centered { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--purple); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-heading h2 { font-size: clamp(40px, 4vw, 59px); line-height: 1.05; }
.section-heading > p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.audience-grid { max-width: 1170px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { min-height: 610px; padding: clamp(30px, 4vw, 54px); border-radius: 14px; }
.audience-card.listers { color: white; background: var(--purple); }
.audience-card.successors { border: 1px solid var(--line); background: var(--cream); }
.audience-label { display: inline-block; margin-bottom: 30px; padding: 7px 10px; border: 1px solid currentColor; border-radius: 99px; font-size: 8px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; opacity: .8; }
.audience-card h3 { max-width: 470px; margin: 0; font-family: var(--display); font-size: clamp(31px, 3vw, 43px); line-height: 1.05; letter-spacing: -.045em; }
.audience-card > p { max-width: 440px; margin: 18px 0 33px; color: inherit; font-size: 12px; line-height: 1.65; opacity: .75; }
.audience-card ol { margin: 0 0 35px; padding: 0; list-style: none; }
.audience-card li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid currentColor; border-color: rgba(255,255,255,.18); }
.successors li { border-color: var(--line); }
.audience-card li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: var(--purple); background: var(--paper); font-size: 8px; font-weight: 800; }
.successors li > span { color: white; background: var(--purple); }
.audience-card li strong, .audience-card li small { display: block; }
.audience-card li strong { font-size: 11px; }
.audience-card li small { margin-top: 2px; opacity: .66; font-size: 9px; }

.core-features { padding: 105px clamp(24px, 7vw, 110px); color: white; background: var(--ink); }
.light-heading .eyebrow { color: #5ca7f2; }
.feature-grid { max-width: 1170px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 0 auto; }
.feature-grid article { min-height: 360px; padding: 29px; position: relative; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.04); }
.feature-grid article.featured-feature { color: white; background: var(--purple); transform: translateY(-11px); }
.feature-number { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.4); font-family: var(--display); font-size: 17px; }
.featured-feature .feature-number { color: rgba(255,255,255,.55); }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 37px 0 42px; border-radius: 12px; color: white; background: rgba(255,255,255,.1); font-size: 21px; }
.featured-feature .feature-icon { color: white; background: var(--purple); }
.feature-grid h3 { margin: 0 0 13px; font-family: var(--display); font-size: 24px; letter-spacing: -.035em; }
.feature-grid p { min-height: 66px; margin: 0 0 28px; color: rgba(255,255,255,.63); font-size: 11px; line-height: 1.7; }
.featured-feature p { color: rgba(255,255,255,.75); }
.feature-grid button, .feature-grid a { padding: 0 0 4px; border: 0; border-bottom: 1px solid currentColor; color: inherit; background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }

.marketplace-section { background: var(--cream); }
.marketplace-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.marketplace-heading > div { max-width: 750px; }
.marketplace-heading > p { max-width: 260px; margin: 0 0 6px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.marketplace-tools { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.market-search { width: min(390px, 100%); height: 46px; display: flex; align-items: center; gap: 9px; padding: 0 15px; border: 1px solid var(--line); border-radius: 7px; background: white; color: var(--muted); }
.market-search input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 11px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; justify-content: flex-end; }
.filter { min-height: 35px; padding: 0 13px; border: 1px solid var(--line); border-radius: 99px; background: white; font-size: 9px; font-weight: 700; cursor: pointer; }
.filter.active { color: white; border-color: var(--ink); background: var(--ink); }
.listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.market-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: white; transition: transform .2s, box-shadow .2s; }
.market-card:hover { transform: translateY(-4px); box-shadow: 0 17px 40px rgba(25,34,29,.09); }
.market-card[hidden] { display: none; }
.market-cover { height: 185px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.cover-books { background: #0066cc; }
.cover-refill { background: rgba(0,102,204,.82); }
.cover-mindful { background: rgba(0,102,204,.68); }
.cover-tech { background: rgba(0,102,204,.88); }
.cover-green { background: rgba(0,102,204,.58); }
.cover-forward { background: rgba(0,102,204,.74); }
.school-tag { position: absolute; top: 17px; right: 15px; z-index: 2; padding: 6px 8px; border-radius: 4px; background: rgba(255,255,255,.72); font-size: 7px; font-weight: 800; }
.cover-symbol { width: 68px; height: 68px; font-size: 21px; }
.market-body { padding: 22px; }
.market-body h3 { margin: 10px 0 7px; font-family: var(--display); font-size: 22px; letter-spacing: -.035em; }
.market-body > p { min-height: 49px; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.mini-stats { display: flex; gap: 20px; margin: 20px 0; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 8px; }
.mini-stats strong { color: var(--ink); font-size: 10px; }
.card-action { width: 100%; display: flex; justify-content: space-between; padding: 0; border: 0; background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.empty-state { display: none; padding: 60px 20px; text-align: center; color: var(--muted); font-size: 12px; }
.empty-state.visible { display: block; }

.handoff-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 620px; }
.handoff-art { height: 100%; min-height: 620px; display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; overflow: hidden; background: var(--blue); }
.handoff-person { width: 125px; height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; border: 1px solid rgba(16,21,19,.13); border-radius: 14px; background: white; box-shadow: 0 20px 45px rgba(40,65,90,.11); }
.handoff-person strong { width: 63px; height: 63px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--purple); }
.handoff-person span { order: 2; margin-top: 12px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.person-two strong { background: rgba(0,102,204,.66); }
.handoff-line { display: flex; align-items: center; position: relative; z-index: 1; color: var(--purple); font-size: 8px; font-weight: 800; }
.handoff-line i { width: 37px; height: 1px; background: var(--purple); }
.handoff-line span { padding: 8px; border-radius: 99px; background: white; white-space: nowrap; }
.handoff-doc { position: absolute; padding: 10px 13px; border-radius: 6px; background: white; box-shadow: 0 8px 24px rgba(46,70,92,.1); font-size: 8px; font-weight: 700; }
.doc-one { top: 115px; left: 18%; transform: rotate(-4deg); }
.doc-two { right: 13%; top: 155px; transform: rotate(3deg); }
.doc-three { bottom: 120px; left: 40%; transform: rotate(-2deg); }
.handoff-copy { max-width: 640px; padding: 90px clamp(35px, 8vw, 120px); }
.handoff-copy h2 { font-size: clamp(40px, 4vw, 58px); line-height: 1.06; }
.handoff-copy > p { margin: 22px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.handoff-copy ul { display: grid; gap: 12px; margin: 0 0 31px; padding: 0; list-style: none; font-size: 10px; font-weight: 700; }
.handoff-copy li span { width: 20px; height: 20px; display: inline-grid; place-items: center; margin-right: 9px; border-radius: 50%; color: var(--purple); background: var(--cream); }
.text-button { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }

.waitlist-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 9vw, 130px); padding: 105px clamp(24px, 9vw, 140px); background: var(--cream); }
.waitlist-copy { max-width: 570px; }
.waitlist-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 4.2vw, 62px); line-height: 1.03; letter-spacing: -.055em; }
.waitlist-copy > p { max-width: 500px; margin: 22px 0 28px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.waitlist-proof { display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 9px; }
.waitlist-proof strong { color: var(--ink); }
.waitlist-proof .avatar-stack span { border-color: var(--cream); }
.waitlist-card { min-height: 470px; display: flex; align-items: center; padding: clamp(27px, 4vw, 45px); border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 24px 65px rgba(29,29,31,.09); }
.waitlist-card > div { width: 100%; }
.form-label { color: var(--purple); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.waitlist-card h3 { margin: 10px 0 23px; font-family: var(--display); font-size: 29px; letter-spacing: -.04em; }
.waitlist-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.role-options { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.role-options label { min-height: 77px; display: flex; align-items: center; gap: 11px; padding: 13px; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; transition: border-color .2s, background .2s; }
.role-options label:has(input:checked) { border-color: var(--purple); background: rgba(0,102,204,.06); }
.role-options input { width: 15px; height: 15px; margin: 0; accent-color: var(--purple); }
.role-options strong, .role-options small { display: block; }
.role-options strong { font-size: 10px; }
.role-options small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.waitlist-field { display: grid; gap: 7px; color: var(--muted); font-size: 8px; font-weight: 700; }
.waitlist-field input { width: 100%; min-width: 0; height: 47px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; outline: 0; background: white; font-size: 10px; }
.waitlist-field input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(0,102,204,.08); }
.waitlist-form .button { grid-column: 1 / -1; margin-top: 3px; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: 7px; text-align: center; }
.waitlist-success { text-align: center; }
.waitlist-success .success-icon { margin-bottom: 20px; }
.waitlist-success h3 { margin-bottom: 10px; }
.waitlist-success p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }

.final-cta { padding: 110px 24px; color: white; background: var(--purple); text-align: center; }
.final-cta .eyebrow { color: white; }
.final-cta h2 { font-size: clamp(48px, 5vw, 74px); line-height: 1; }
.final-cta p { margin: 22px 0 30px; color: rgba(255,255,255,.76); font-size: 13px; }
.final-cta > div { display: flex; justify-content: center; gap: 10px; }
.final-cta .button-primary { color: var(--purple); background: white; }

footer { padding: 65px clamp(24px, 7vw, 110px) 25px; color: white; background: var(--ink); }
.footer-top { display: flex; justify-content: space-between; gap: 60px; padding-bottom: 60px; }
.footer-brand { color: white; }
.footer-brand .brand-icon span { border-color: #5ca7f2; }
.footer-top > div:first-child p { color: rgba(255,255,255,.5); font-size: 10px; }
.footer-links { display: flex; gap: 85px; }
.footer-links > div { display: grid; align-content: start; gap: 12px; min-width: 130px; }
.footer-links strong { margin-bottom: 5px; color: #5ca7f2; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a, .footer-links button { padding: 0; border: 0; color: rgba(255,255,255,.58); background: transparent; text-align: left; font-size: 9px; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 8px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; background: rgba(6,10,8,.64); backdrop-filter: blur(5px); }
.modal-backdrop[hidden] { display: none; }
.modal { width: min(570px, 100%); max-height: 90vh; overflow-y: auto; position: relative; padding: 35px; border-radius: 13px; background: white; box-shadow: 0 30px 100px rgba(0,0,0,.28); }
.modal-close { width: 32px; height: 32px; position: absolute; top: 18px; right: 18px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 19px; cursor: pointer; }
.modal-kicker { color: var(--purple); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.modal h2 { margin: 10px 35px 10px 0; font-family: var(--display); font-size: 33px; letter-spacing: -.045em; }
.modal > div > p { margin: 0 0 25px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.modal-form label { display: grid; gap: 7px; color: var(--muted); font-size: 9px; font-weight: 700; }
.modal-form label.full { grid-column: 1 / -1; }
.modal-form input, .modal-form select, .modal-form textarea { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px; outline: none; background: white; font-size: 11px; }
.modal-form textarea { min-height: 82px; resize: vertical; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { border-color: var(--purple); }
.modal-form .button { grid-column: 1 / -1; margin-top: 5px; }
.modal-success { padding: 25px 0 5px; text-align: center; }
.success-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; color: white; background: var(--purple); font-size: 25px; }
.detail-banner { min-height: 130px; display: grid; place-items: center; margin: -35px -35px 28px; border-radius: 13px 13px 0 0; color: white; background: var(--purple); font-family: var(--display); font-size: 32px; font-weight: 800; }
.detail-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 22px 0; }
.detail-facts span { padding: 12px 8px; border-radius: 6px; background: var(--cream); font-size: 8px; text-align: center; }
.detail-facts strong { display: block; margin-bottom: 3px; font-size: 11px; }
.handoff-steps { display: grid; gap: 9px; margin: 20px 0 25px; }
.handoff-steps div { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 7px; font-size: 10px; font-weight: 700; }
.handoff-steps span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--purple); font-size: 8px; }

@media (max-width: 1050px) {
  .header-search { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-card-wrap { margin-top: 10px; }
  .listing-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 20px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .site-header.menu-open .desktop-nav {
    display: grid;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    gap: 0;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: white;
  }
  .site-header.menu-open .desktop-nav a, .site-header.menu-open .desktop-nav .link-button { padding: 13px 0; text-align: left; }
  .site-header.menu-open .desktop-nav .button { margin-top: 8px; }
  .hero { min-height: auto; padding: 65px 22px 70px; }
  .hero h1 { font-size: 48px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-card-wrap { width: 94%; margin-top: 20px; }
  .featured-listing { transform: none; }
  .float-note { display: none; }
  .listing-cover { height: 165px; }
  .listing-stats { gap: 4px; }
  .logo-strip div { gap: 18px 28px; }
  .split-section, .marketplace-section, .core-features { padding: 80px 22px; }
  .audience-grid, .feature-grid, .listing-grid, .handoff-section, .waitlist-section { grid-template-columns: 1fr; }
  .feature-grid article.featured-feature { transform: none; }
  .marketplace-heading { display: block; }
  .marketplace-heading > p { margin-top: 15px; }
  .marketplace-tools { align-items: stretch; flex-direction: column; }
  .filter-row { justify-content: flex-start; }
  .handoff-art { min-height: 450px; }
  .handoff-copy { padding: 75px 24px; }
  .waitlist-section { gap: 42px; padding: 80px 22px; }
  .waitlist-card { min-height: 0; }
  .waitlist-form, .role-options { grid-template-columns: 1fr; }
  .role-options { grid-column: auto; }
  .waitlist-form .button, .form-note { grid-column: auto; }
  .final-cta { padding: 85px 22px; }
  .final-cta > div { flex-direction: column; }
  .footer-top { display: block; }
  .footer-links { margin-top: 40px; gap: 30px; }
  .footer-bottom { gap: 20px; }
  .modal { padding: 27px 20px; }
  .modal-form { grid-template-columns: 1fr; }
  .modal-form label.full, .modal-form .button { grid-column: auto; }
  .detail-banner { margin: -27px -20px 25px; }
}

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