:root {
  --ink: #17201f;
  --muted: #66706d;
  --paper: #f7f6f1;
  --card: #ffffff;
  --line: #dfe3dc;
  --coral: #ff5c35;
  --acid: #daf45b;
  --mint: #baf4df;
  --blue: #b9d8ff;
  --shadow: 0 20px 60px rgba(27, 38, 35, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.5 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.nav { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; letter-spacing: -.04em; font-size: 21px; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; background: var(--ink); display: grid; place-items: center; color: var(--acid); font-size: 15px; transform: rotate(-3deg); }
.nav-links { display: flex; align-items: center; gap: 28px; color: #515b58; font-size: 14px; font-weight: 650; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { min-height: 44px; border: 1px solid var(--ink); border-radius: 999px; padding: 11px 18px; background: transparent; cursor: pointer; font-weight: 750; transition: transform .18s, box-shadow .18s, background .18s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: white; box-shadow: 0 5px 0 rgba(23, 32, 31, .16); }
.btn-coral { background: var(--coral); color: white; border-color: var(--coral); box-shadow: 0 6px 0 #d83e1b; }
.btn-soft { background: white; border-color: var(--line); }
.btn-danger { border-color: #f2b4a5; color: #b53619; background: #fff7f4; }
.btn-small { padding: 8px 12px; font-size: 13px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 850; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

.hero { padding: 54px 0 64px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { margin: 22px 0; font-size: clamp(54px, 5.8vw, 76px); line-height: .93; letter-spacing: -.072em; max-width: 780px; }
.hero h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--coral); }
.hero-copy > p { color: var(--muted); font-size: 19px; line-height: 1.65; max-width: 590px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; align-items: center; }
.microcopy { font-size: 12px; color: #78817e; }
.proof-stack { position: relative; min-height: 520px; }
.demo-card { position: absolute; background: white; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); padding: 27px; width: min(390px, 88%); }
.demo-card:nth-child(1) { top: 54px; right: 0; transform: rotate(3deg); }
.demo-card:nth-child(2) { top: 236px; left: 0; transform: rotate(-4deg); z-index: 2; }
.demo-card:nth-child(3) { bottom: 0; right: 22px; transform: rotate(1.5deg); }
.demo-card .result { font-size: 25px; letter-spacing: -.03em; line-height: 1.2; font-weight: 850; margin: 12px 0; }
.demo-card p { color: var(--muted); line-height: 1.5; }
.person { display: grid; grid-template-columns: 42px 1fr; column-gap: 11px; align-items: center; margin-top: 20px; }
.avatar { grid-row: 1 / 3; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--acid); font-weight: 850; }
.person small { color: var(--muted); }
.stars { color: var(--coral); letter-spacing: 2px; font-size: 12px; }
.float-label { position: absolute; z-index: 4; background: var(--ink); color: white; border-radius: 999px; padding: 10px 14px; font-size: 12px; font-weight: 800; }
.float-label.top { right: -16px; top: 160px; transform: rotate(6deg); }
.float-label.bottom { left: 30px; bottom: -6px; background: var(--acid); color: var(--ink); transform: rotate(-4deg); }

.trust-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; display: flex; gap: 40px; align-items: center; overflow: hidden; color: #727c78; font-size: 13px; }
.trust-row b { color: var(--ink); white-space: nowrap; }
.trust-row span { font-weight: 800; white-space: nowrap; letter-spacing: -.02em; }
.section { padding: 110px 0; }
.section-title { display: grid; grid-template-columns: .65fr 1.35fr; gap: 60px; align-items: start; margin-bottom: 54px; }
.section-title h2 { margin: 0; font-size: clamp(42px, 5vw, 70px); line-height: .99; letter-spacing: -.06em; }
.section-title p { margin: 8px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 540px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { min-height: 340px; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: white; display: flex; flex-direction: column; }
.step:nth-child(2) { background: var(--mint); transform: translateY(22px); }
.step:nth-child(3) { background: var(--blue); }
.step-number { font-family: Georgia, serif; font-style: italic; font-size: 50px; }
.step h3 { font-size: 25px; letter-spacing: -.035em; margin: auto 0 8px; }
.step p { color: #4c5955; line-height: 1.55; }
.prompt-pill { display: inline-block; background: rgba(255,255,255,.7); border: 1px solid rgba(23,32,31,.1); padding: 9px 12px; border-radius: 12px; font-size: 13px; margin: 6px 4px 0 0; }

.compare { background: var(--ink); color: white; border-radius: 34px; padding: 62px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; overflow: hidden; position: relative; }
.compare::after { content: ''; width: 340px; height: 340px; border-radius: 50%; background: var(--coral); filter: blur(0); position: absolute; right: -220px; top: -180px; }
.compare h2 { font-size: 52px; line-height: 1; letter-spacing: -.055em; margin: 0 0 18px; }
.compare p { color: #bac2bf; line-height: 1.65; }
.compare-list { display: grid; gap: 14px; }
.compare-item { padding: 18px 20px; border: 1px solid #39413f; border-radius: 16px; display: grid; grid-template-columns: 24px 1fr; gap: 12px; }
.compare-item.good { border-color: var(--acid); background: rgba(218,244,91,.08); }
.compare-item b { display: block; margin-bottom: 4px; }
.compare-item small { color: #aeb8b4; line-height: 1.5; }
.check { color: var(--acid); font-weight: 900; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; width: min(880px, 100%); margin: 0 auto; align-items: stretch; }
.plan-card-landing { background: white; border: 1px solid var(--line); border-radius: 30px; padding: 38px; display: flex; flex-direction: column; }
.plan-card-landing.featured { background: var(--ink); color: white; box-shadow: var(--shadow); }
.plan-card-landing.featured .price small { color: #aeb8b4; }
.plan-card-landing .feature-list { flex: 1; }
.plan-card-landing .btn { align-self: flex-start; }
.price { font-size: 60px; font-weight: 900; letter-spacing: -.06em; }
.price small { font-size: 15px; letter-spacing: 0; color: var(--muted); }
.feature-list { display: grid; gap: 12px; margin: 24px 0; font-size: 14px; }
.feature-list span::before { content: '✓'; color: #3a831f; font-weight: 900; margin-right: 9px; }
.founding { background: var(--acid); border-radius: 20px; padding: 26px; transform: rotate(1deg); }
.founding h3 { font-size: 25px; margin: 0 0 8px; }
.founding p { font-size: 14px; line-height: 1.6; }
.cta-band { margin-bottom: 60px; border-radius: 30px; padding: 70px 30px; text-align: center; background: var(--coral); color: white; }
.cta-band h2 { margin: 0 auto 26px; font-size: clamp(44px, 6vw, 74px); line-height: .98; letter-spacing: -.06em; max-width: 760px; }
.site-footer { display: flex; justify-content: space-between; padding: 30px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.auth-layout { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-story { padding: 58px; background: var(--ink); color: white; display: flex; flex-direction: column; }
.auth-story .brand { color: white; }
.auth-quote { margin: auto 0; }
.auth-quote blockquote { font-family: Georgia, serif; font-style: italic; font-size: clamp(36px, 4vw, 60px); line-height: 1.13; margin: 0; }
.auth-quote p { color: #aeb8b4; max-width: 520px; line-height: 1.6; }
.auth-panel { display: grid; place-items: center; padding: 36px; }
.auth-card { width: min(440px, 100%); }
.auth-card h1 { font-size: 40px; letter-spacing: -.05em; margin-bottom: 8px; }
.auth-card > p { color: var(--muted); margin-bottom: 30px; }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 750; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); background: white; border-radius: 13px; padding: 13px 14px; outline: none; transition: border .15s, box-shadow .15s; }
.field textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(23,32,31,.08); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-card .btn { width: 100%; margin-top: 8px; }
.form-switch { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
.form-switch button, .form-switch a { border: 0; background: none; color: inherit; text-decoration: underline; cursor: pointer; font: inherit; font-weight: 750; }
.development-login { border-top: 1px solid var(--line); margin-top: 24px; padding-top: 20px; }
.development-login > p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.provider-unavailable, .otp-delivery { background: #f2f4ef; border: 1px solid var(--line); border-radius: 13px; padding: 13px 14px; margin-bottom: 16px; }
.provider-unavailable p { color: var(--muted); margin: 5px 0 0; }
.otp-delivery { display: grid; gap: 4px; font-size: 13px; }
.otp-delivery span { color: var(--muted); }
.otp-actions { display: flex; justify-content: space-between; gap: 12px; margin: 4px 0 12px; }
.otp-actions button { min-height: 44px; border: 0; background: none; padding: 8px 0; color: var(--ink); text-decoration: underline; cursor: pointer; font: inherit; font-weight: 750; }
.otp-actions button:disabled { color: var(--muted); cursor: wait; }
.error { background: #fff0eb; color: #a5331a; border: 1px solid #f5c1b5; border-radius: 12px; padding: 11px 13px; font-size: 13px; margin-bottom: 14px; }

.onboarding-page { min-height: 100vh; padding: 28px 20px 70px; background: linear-gradient(145deg, var(--paper) 60%, var(--mint)); }
.onboarding-nav { width: min(920px, 100%); margin: 0 auto 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.onboarding-nav > span { color: var(--muted); font-size: 13px; }
.onboarding-card { width: min(760px, 100%); margin: 0 auto; background: white; border: 1px solid var(--line); border-radius: 30px; padding: clamp(28px, 6vw, 56px); box-shadow: var(--shadow); }
.onboarding-card > h1 { margin: 16px 0 12px; max-width: 620px; font-size: clamp(40px, 7vw, 64px); line-height: 1; letter-spacing: -.06em; }
.onboarding-intro { color: var(--muted); max-width: 600px; font-size: 17px; }
.onboarding-steps { list-style: none; padding: 0; margin: 38px 0; display: grid; gap: 14px; }
.onboarding-step { display: grid; grid-template-columns: 38px 1fr; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; min-width: 0; }
.onboarding-step > span { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--acid); font-weight: 850; }
.onboarding-step > div { min-width: 0; }
.onboarding-step h2 { margin: 4px 0 8px; font-size: 19px; }
.onboarding-step p { margin: 0; color: #44504d; line-height: 1.55; }
.onboarding-step small { display: block; color: var(--muted); margin-top: 5px; }
.collection-url, .invitation-message { overflow-wrap: anywhere; background: #f7f8f5; border-radius: 11px; padding: 12px; font-size: 13px; }
.onboarding-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 12px; }
.copy-status { min-height: 20px; margin-top: 7px !important; color: #337020 !important; font-size: 13px; }
.onboarding-primary { width: 100%; }

.app-layout { min-height: 100vh; display: grid; grid-template-columns: 230px 1fr; background: #f8f8f5; }
.sidebar { background: var(--ink); color: white; padding: 25px 18px; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.sidebar .brand { padding: 0 9px 30px; }
.side-nav { display: grid; gap: 4px; }
.side-link { border: 0; color: #b5bfbc; background: transparent; border-radius: 11px; padding: 11px 12px; text-align: left; cursor: pointer; font-weight: 650; display: flex; align-items: center; gap: 11px; }
.side-link:hover, .side-link.active { background: #2a3432; color: white; }
.side-link .icon { width: 20px; text-align: center; }
.icon-button { border: 0; background: transparent; cursor: pointer; color: inherit; padding: 5px; }
.app-main { padding: 34px 40px 70px; min-width: 0; }
.app-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.app-top h1 { margin: 0 0 5px; font-size: 31px; letter-spacing: -.045em; }
.app-top p { margin: 0; color: var(--muted); font-size: 13px; }
.project-name { display: block; margin-bottom: 4px; color: var(--muted); font-size: 12px; font-weight: 750; }
.app-account { display: flex; align-items: center; gap: 10px; min-width: 0; }
.app-account .avatar { width: 34px; height: 34px; font-size: 12px; flex: 0 0 auto; }
.app-account b { max-width: 180px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.usage-banner { max-width: 900px; margin: -10px 0 18px; padding: 12px 14px; border: 1px solid #d7df9b; border-radius: 15px; background: #f8fbdc; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.usage-banner strong { font-size: 13px; }
.embed-preview { display:block; width:100%; min-height:420px; margin-top:16px; border:1px solid #e6e8e3; border-radius:18px; }
.panel { background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; min-width: 0; }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.panel-head h2 { font-size: 17px; margin: 0; letter-spacing: -.025em; }
.panel-head span { color: var(--muted); font-size: 11px; }
.submission-list { display: grid; gap: 10px; }
.submission { border: 1px solid var(--line); border-radius: 15px; padding: 15px; }
.submission-top { display: flex; justify-content: space-between; gap: 16px; }
.submission blockquote { margin: 10px 0 8px; font-size: 15px; line-height: 1.45; font-weight: 750; }
.submission p { font-size: 12px; line-height: 1.5; color: var(--muted); margin: 0; }
.submission-actions { display: flex; gap: 7px; margin-top: 13px; }
.inbox-panel { max-width: 900px; }
.inbox-card { padding: 20px; }
.submission-meta { display: grid; justify-items: end; gap: 5px; color: var(--muted); font-size: 11px; }
.submission-meta .stars { color: var(--coral); font-size: 14px; letter-spacing: .04em; }
.outcome-story { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 14px; }
.outcome-story > div { min-width: 0; background: #f7f8f5; border-radius: 12px; padding: 13px; }
.outcome-story dt { margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.outcome-story dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; line-height: 1.5; }
.customer-detail { color: var(--muted); font-size: 12px; }
.customer-detail summary { width: fit-content; cursor: pointer; font-weight: 750; }
.customer-detail a { display: inline-block; margin-top: 8px; color: var(--ink); }
.moderation-error { min-height: 0; margin-top: 10px !important; color: #a5331a !important; font-weight: 700; }
.moderation-error:empty { display: none; }
.inbox-tabs { max-width: 900px; display: flex; gap: 8px; margin-bottom: 14px; }
.inbox-tab { min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; background: white; color: var(--muted); cursor: pointer; font: inherit; font-size: 13px; font-weight: 750; }
.inbox-tab:hover { border-color: #aeb6ae; color: var(--ink); }
.inbox-tab.active { border-color: var(--ink); background: var(--ink); color: white; }
.inbox-tab:focus-visible { outline: 3px solid rgba(23,32,31,.2); outline-offset: 2px; }
.inbox-empty .quick-link { width: min(560px, 100%); margin: 18px auto 0; }
.badge { display: inline-flex; align-items: center; border-radius: 99px; padding: 5px 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.badge.pending { background: #fff3c4; color: #796012; }
.badge.approved { background: #ddf5d3; color: #337020; }
.badge.archived { background: #eee; color: #666; }
.empty-state { border: 1px dashed #cfd5ce; border-radius: 16px; padding: 36px 20px; text-align: center; color: var(--muted); }
.empty-state b { display: block; color: var(--ink); margin-bottom: 6px; }
.quick-link { display: flex; gap: 8px; margin-top: 8px; }
.quick-link input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 10px; color: var(--muted); background: #fafbf9; font-size: 11px; }

.toolbar { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.filter { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 8px 13px; cursor: pointer; font-size: 12px; font-weight: 700; }
.filter.active { background: var(--ink); color: white; border-color: var(--ink); }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.proof-card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.proof-card h3 { font-size: 18px; line-height: 1.35; letter-spacing: -.025em; }
.proof-card .story { border-left: 2px solid var(--acid); padding-left: 13px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.proof-card footer { display: flex; align-items: center; justify-content: space-between; margin-top: 17px; }

.share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.share-center { width: min(800px, 100%); display: grid; gap: 18px; }
.share-section > p:not(.copy-status) { margin: 0 0 16px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.share-section .quick-link { margin-top: 0; }
.share-section .invitation-message { color: var(--ink); overflow-wrap: anywhere; }
.share-section > .btn { margin-top: 12px; }
.code-box { background: #17201f; color: #d8e4df; border-radius: 13px; padding: 16px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; line-height: 1.6; overflow: auto; white-space: pre-wrap; word-break: break-all; }
.preview-frame { width: 100%; height: 330px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.settings-form { max-width: 700px; }
.color-row { display: flex; gap: 10px; align-items: center; }
.color-row input[type=color] { width: 50px; height: 44px; padding: 3px; }
.color-row output { min-width: 72px; font: 700 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: lowercase; }
.color-swatches { display: flex; gap: 7px; }
.swatch { width: 27px; height: 27px; border-radius: 50%; border: 2px solid white; box-shadow: 0 0 0 1px var(--line); cursor: pointer; }
.settings-message { display: none; margin: 0 0 16px; }
.settings-message:not(:empty) { display: block; }
.settings-message.success-message { color: #337020; background: #effae9; border: 1px solid #baddab; border-radius: 12px; padding: 11px 13px; font-size: 13px; }
.billing-notice { margin: 12px 0; padding: 11px 13px; border: 1px solid #cfd8cf; border-radius: 12px; background: #f7faf6; font-size: 13px; }
.billing-notice.warning { border-color: #e4c86a; background: #fff9df; color: #6f5700; }
.collect-page { min-height: 100vh; display: grid; grid-template-columns: .78fr 1.22fr; }
.collect-aside { background: var(--ink); color: white; padding: 54px; position: sticky; height: 100vh; top: 0; display: flex; flex-direction: column; }
.collect-aside h1 { font-size: clamp(42px, 5vw, 68px); line-height: 1; letter-spacing: -.06em; margin: auto 0 20px; }
.collect-aside p { color: #b1bbb8; line-height: 1.6; }
.collect-aside .tiny { font-size: 11px; margin-top: auto; }
.collect-main { display: grid; place-items: center; padding: 60px 7%; }
.collect-form { width: min(650px, 100%); }
.progress { display: flex; gap: 6px; margin-bottom: 36px; }
.progress i { height: 5px; flex: 1; background: #e0e4de; border-radius: 9px; }
.progress i.active { background: var(--coral); }
.question-step { display: none; animation: rise .25s ease; }
.question-step.active { display: block; }
.question-step .number { color: var(--coral); font-weight: 850; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.question-step h2 { font-size: clamp(31px, 4vw, 46px); line-height: 1.1; letter-spacing: -.05em; margin: 12px 0 8px; }
.question-step > p { color: var(--muted); line-height: 1.6; }
.question-step textarea { width: 100%; min-height: 150px; background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px; margin: 18px 0; resize: vertical; outline: none; font-size: 17px; line-height: 1.5; }
.question-step textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 4px rgba(23,32,31,.07); }
.question-step textarea[aria-invalid="true"] { border-color: #a82e24; }
.answer-meta { min-height: 24px; margin-top: -10px; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.field-error { margin: 0; color: #a82e24; font-size: 13px; font-weight: 700; }
.character-count { margin-left: auto; color: var(--muted); font-size: 13px; white-space: nowrap; }
.step-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.attribution-choice { border: 0; padding: 0; margin: 18px 0 0; }
.attribution-choice legend { font-size: 13px; font-weight: 750; margin-bottom: 6px; }
.attribution-choice[aria-invalid="true"] legend { color: #a82e24; }
.rating { display: flex; justify-content: flex-start; gap: 12px; }
.rating-option { display: inline-flex; min-width: 48px; height: 42px; align-items: center; gap: 5px; border-radius: 6px; cursor: pointer; }
.rating-option input { position: static; flex: 0 0 22px; width: 22px; height: 22px; margin: 0; accent-color: var(--coral); cursor: pointer; }
.rating-option span { color: #d5d9d3; font-size: 32px; line-height: 1.2; }
.rating-option:has(input:focus-visible) { outline: 3px solid var(--ink); outline-offset: 2px; }
.rating-option.selected span, .rating-option:hover span { color: var(--coral); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; line-height: 1.5; color: var(--muted); margin: 18px 0; }
.checkbox input { flex: 0 0 auto; margin-top: 2px; }
.checkbox input[aria-invalid="true"] { outline: 2px solid #a82e24; outline-offset: 2px; }
.consent-field .field-error { margin-top: -12px; }
.success { text-align: center; padding: 50px 0; }
.success-icon { width: 72px; height: 72px; border-radius: 24px; background: var(--acid); display: grid; place-items: center; font-size: 32px; margin: 0 auto 22px; transform: rotate(-5deg); }
.collection-unavailable p { color: var(--muted); }

.wall-page { padding: 28px 0 80px; min-height: 100vh; }
.wall-head { text-align: center; padding: 86px 0 55px; }
.wall-head h1 { font-size: clamp(46px, 7vw, 82px); letter-spacing: -.065em; line-height: 1; margin: 16px auto; max-width: 800px; overflow-wrap: anywhere; }
.wall-head p { color: var(--muted); }
.wall-grid { columns: 3 280px; column-gap: 15px; }
.wall-card { min-width: 0; break-inside: avoid; background: white; border: 1px solid var(--line); border-radius: 20px; padding: 22px; margin-bottom: 15px; overflow-wrap: anywhere; }
.wall-card h2 { font-size: 20px; line-height: 1.35; }
.wall-card p { color: var(--muted); line-height: 1.55; font-size: 14px; }
.wall-cta { text-align: center; margin: 50px 0; }

.policy-page { min-height: 100vh; padding: 24px 0 64px; }
.policy-document { width: min(100% - 40px, 760px); margin-top: 64px; }
.policy-document h1 { margin: 14px 0 20px; font-size: clamp(44px, 8vw, 72px); line-height: 1; letter-spacing: -.06em; }
.policy-intro { color: var(--muted); font-size: 18px; line-height: 1.65; }
.policy-document section { padding: 24px 0; border-top: 1px solid var(--line); }
.policy-document section h2 { margin: 0 0 10px; font-size: 22px; }
.policy-document section p { margin: 0; color: var(--muted); line-height: 1.7; }
.policy-document footer { padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.policy-document footer nav, .site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.policy-document a, .site-footer a, .checkbox a { color: inherit; text-underline-offset: 3px; }

.modal-backdrop { position: fixed; inset: 0; background: rgba(10,20,18,.5); display: grid; place-items: center; padding: 20px; z-index: 20; }
.modal { background: white; border-radius: 22px; padding: 26px; width: min(520px, 100%); box-shadow: var(--shadow); }
.modal h2 { margin-top: 0; letter-spacing: -.035em; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.toast { position: fixed; right: 24px; bottom: 24px; background: var(--ink); color: white; border-radius: 13px; padding: 13px 17px; font-size: 13px; transform: translateY(80px); opacity: 0; transition: .25s; z-index: 50; box-shadow: var(--shadow); }
.toast.show { transform: translateY(0); opacity: 1; }
.mobile-menu { display: none; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .proof-stack { min-height: 480px; width: min(520px, 100%); margin: 0 auto; }
  .section-title { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; }
  .step:nth-child(2) { transform: none; }
  .compare { grid-template-columns: 1fr; padding: 34px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .auth-layout { grid-template-columns: 1fr; }
  .auth-story { display: none; }
  .app-layout { grid-template-columns: 1fr; padding-bottom: 70px; }
  .sidebar { position: fixed; z-index: 10; height: 64px; width: 100%; bottom: 0; top: auto; padding: 8px 14px; flex-direction: row; align-items: center; }
  .sidebar .brand, .side-link span:not(.icon) { display: none; }
  .side-nav { display: flex; justify-content: space-around; width: 100%; }
  .side-link { min-width: 44px; min-height: 44px; padding: 10px 15px; justify-content: center; }
  .app-main { padding: 24px 18px; }
  .share-grid { grid-template-columns: 1fr; }
  .collect-page { grid-template-columns: 1fr; }
  .collect-aside { position: static; height: auto; padding: 28px 24px; }
  .collect-aside h1 { font-size: 36px; margin: 50px 0 10px; }
  .collect-aside .tiny { margin-top: 20px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-actions .btn-soft { display: none; }
  .hero > *, .section-title > *, .pricing-grid > * { min-width: 0; }
  .hero h1 { font-size: clamp(44px, 13vw, 54px); overflow-wrap: break-word; }
  .proof-stack { min-height: 510px; }
  .demo-card { padding: 20px; }
  .float-label { display: none; }
  .section { padding: 75px 0; }
  .compare { padding: 28px 22px; }
  .compare h2 { font-size: 40px; }
  .plan-card-landing { padding: 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .auth-panel { padding: 24px 18px; }
  .auth-card h1 { font-size: 36px; }
  .onboarding-page { padding-inline: 14px; }
  .onboarding-nav { margin-bottom: 24px; }
  .onboarding-nav > span { display: none; }
  .onboarding-card { padding: 28px 20px; border-radius: 24px; }
  .onboarding-step { grid-template-columns: 1fr; }
  .onboarding-actions .btn { width: 100%; }
  .app-top { align-items: flex-start; flex-direction: column; }
  .app-account { width: 100%; }
  .app-account .btn { margin-left: auto; }
  .outcome-story { grid-template-columns: 1fr; }
  .inbox-empty .quick-link { flex-direction: column; }
  .share-section .quick-link { flex-direction: column; }
  .share-section .quick-link .btn { width: 100%; }
  .collect-main { padding: 42px 20px; }
  .wall-head { padding: 58px 0 40px; }
  .wall-head h1 { font-size: clamp(40px, 13vw, 54px); }
  .wall-grid { column-count: 1; }
}
