/* QA Runner — Part 2: triggers / notifications / import / landing */

/* ─── Settings sections ─── */
.settings-section { background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; margin-bottom: 18px; overflow: hidden; }
.settings-section__h { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line); font-weight: 500; font-size: 13px; }

.repo-list { display: flex; flex-direction: column; }
.repo { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.repo:last-child { border-bottom: none; }
.repo__icon { width: 32px; height: 32px; border-radius: 8px; background: var(--bg-2); display: grid; place-items: center; color: var(--fg-3); flex: none; }

/* ─── Triggers ─── */
.trig-list { padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.trig { background: var(--bg); border: 1px solid var(--line); border-radius: 8px; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; }
.trig--disabled { opacity: 0.62; }
.trig__h { display: flex; align-items: center; gap: 10px; }
.trig__id { font-size: 11px; }
.trig__name { font-size: 14px; font-weight: 600; }
.trig__meta { display: flex; gap: 6px; flex-wrap: wrap; font-size: 11.5px; }
.trig__chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 7px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 4px; color: var(--fg-3); }
.ev-tag { padding: 1px 5px; background: var(--bg-3); border-radius: 3px; font-family: var(--font-mono); font-size: 10px; color: var(--fg-2); margin-right: 4px; }
.ev-tag:last-child { margin-right: 0; }
.trig__run { display: flex; align-items: center; gap: 8px; font-size: 12px; padding: 6px 8px; background: var(--bg-1); border-radius: 5px; }
.trig__last { display: flex; align-items: center; gap: 6px; font-size: 12px; padding: 6px 8px; background: var(--bg-2); border-radius: 5px; flex-wrap: wrap; }
.trig__actions { display: flex; align-items: center; gap: 4px; padding-top: 4px; border-top: 1px dashed var(--line); }

/* Switch */
.switch { position: relative; display: inline-block; width: 30px; height: 18px; cursor: pointer; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: var(--bg-3); border-radius: 999px; transition: 0.2s; }
.switch span::before { content: ''; position: absolute; left: 2px; top: 2px; width: 14px; height: 14px; background: var(--fg-2); border-radius: 50%; transition: 0.2s; }
.switch input:checked + span { background: var(--accent); }
.switch input:checked + span::before { left: 14px; background: white; }

.chip--danger { color: var(--fail); border-color: oklch(0.68 0.20 22 / 0.4); background: var(--fail-soft); }

/* Stepper */
.stepper { display: flex; align-items: center; gap: 0; }
.stepper__step { display: flex; align-items: center; gap: 8px; }
.stepper__n { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-2); border: 1px solid var(--line-2); color: var(--fg-3); display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; flex: none; }
.stepper__l { font-size: 12px; color: var(--fg-3); }
.stepper__step--cur .stepper__n { background: var(--accent); color: white; border-color: var(--accent); }
.stepper__step--cur .stepper__l { color: var(--fg); font-weight: 500; }
.stepper__step--done .stepper__n { background: var(--pass-soft); border-color: oklch(0.74 0.15 145 / 0.4); color: var(--pass); }
.stepper__step--done .stepper__l { color: var(--fg-2); }
.stepper__line { flex: 1; height: 1px; background: var(--line-2); margin: 0 12px; }
.stepper__line--done { background: oklch(0.74 0.15 145 / 0.4); }

/* Connect modal */
.modal--connect { width: min(720px, 92%); }
.connect-body { padding: 14px 18px 4px; display: flex; flex-direction: column; gap: 10px; }
.step-card { border: 1px solid var(--line); border-radius: 8px; background: var(--bg); overflow: hidden; }
.step-card--cur { border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); box-shadow: 0 0 0 1px oklch(0.66 0.19 var(--accent-h) / 0.15); }
.step-card--done { opacity: 0.85; }
.step-card__h { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); background: var(--bg-1); font-size: 13px; }
.step-card__n { width: 22px; height: 22px; border-radius: 50%; background: var(--bg-2); color: var(--fg-3); display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; font-weight: 600; flex: none; }
.step-card__n.done { background: var(--pass-soft); color: var(--pass); }
.step-card__n.cur { background: var(--accent); color: white; }
.step-card__t { font-weight: 500; }
.step-card__b { padding: 12px; display: flex; flex-direction: column; gap: 8px; }

.copyable { display: flex; align-items: center; gap: 6px; padding: 6px 9px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 5px; font-size: 11.5px; color: var(--fg); flex: 1; }
.scope-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding-top: 4px; font-size: 11.5px; }

/* Trigger form (edit modal) */
.trig-form { padding: 14px 18px; display: flex; flex-direction: column; gap: 10px; max-height: 540px; overflow: auto; }
.form-row--hint { margin-top: -6px; }

.event-cards { display: flex; gap: 8px; }
.event-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 6px; cursor: pointer; flex: 1; font-size: 12px; }
.event-card input { display: none; }
.event-card--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); }
.event-card__t { font-weight: 500; color: var(--fg); }

.radio-group { display: flex; flex-direction: column; gap: 6px; }
.radio-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; cursor: pointer; font-size: 12px; }
.radio-card input { display: none; }
.radio-card--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); }
.radio-card__dot { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; flex: none; }
.radio-card__dot span { width: 6px; height: 6px; border-radius: 50%; background: transparent; }
.radio-card--on .radio-card__dot { border-color: var(--accent); }
.radio-card--on .radio-card__dot span { background: var(--accent); }
.radio-card__t { font-weight: 500; color: var(--fg); }
.radio-card__s { font-size: 11px; }

.protect { flex: 1; }
.protect__hint { display: flex; align-items: flex-start; gap: 6px; padding: 8px 10px; margin-top: 8px; background: oklch(0.78 0.15 75 / 0.08); border: 1px solid oklch(0.78 0.15 75 / 0.25); border-radius: 5px; font-size: 11.5px; line-height: 1.5; }
.protect__hint b { color: var(--fg); }

/* History page */
.hist-filter { background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.stat-card--inline { padding: 4px 10px; display: inline-flex; flex-direction: column; gap: 0; min-width: 90px; }
.stat-card--inline .muted { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-card--inline b { font-size: 13px; }

.hist-list { display: flex; flex-direction: column; gap: 8px; }
.hist { display: flex; gap: 12px; padding: 12px 14px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; }
.hist--fail { border-left: 3px solid var(--fail); }
.hist--pass { border-left: 3px solid oklch(0.74 0.15 145 / 0.5); }
.hist--warn { border-left: 3px solid var(--warn); }
.hist__rail { flex: none; }
.hist__icon { width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; font-weight: 700; }
.hist__body { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.hist__top { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.hist__when { font-weight: 500; }
.hist__meta { color: var(--fg-3); font-size: 11px; }
.hist__verdict { font-weight: 600; font-size: 12px; }
.hist__commit { font-size: 11.5px; display: flex; gap: 6px; align-items: baseline; }
.hist__fails { display: flex; flex-direction: column; gap: 3px; padding: 6px 10px; margin-top: 4px; background: var(--fail-soft); border-radius: 5px; }
.hist__fail { display: flex; align-items: center; gap: 8px; font-size: 11.5px; }
.hist__fail-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--fail); flex: none; }
.hist__actions { display: flex; gap: 4px; padding-top: 4px; }

/* Empty cards */
.empties { display: flex; flex-direction: column; gap: 12px; }
.empty-card { display: flex; gap: 16px; padding: 18px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; align-items: flex-start; }
.empty-card__art { width: 56px; height: 56px; border-radius: 12px; background: var(--bg-2); display: grid; place-items: center; color: var(--fg-3); flex: none; }
.empty-card__art--repo { background: var(--accent-soft); color: var(--accent); }
.empty-card__body { flex: 1; }
.empty-card__t { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.empty-card__s { font-size: 12.5px; line-height: 1.55; max-width: 580px; margin-bottom: 12px; }
.empty-card__cta { display: flex; gap: 8px; }
.empty-card--inline { background: var(--bg); }

/* ─── Notifications ─── */
.notif-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }

.ch-list { display: flex; flex-direction: column; gap: 10px; }
.ch { display: flex; gap: 14px; padding: 14px 16px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; }
.ch--off { opacity: 0.62; }
.ch__icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-2); display: grid; place-items: center; flex: none; }
.ch__body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ch__top { display: flex; align-items: center; gap: 8px; }
.ch__name { font-size: 14px; font-weight: 600; }
.ch__webhook { font-size: 11px; padding: 4px 8px; background: var(--bg-2); border-radius: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ch__events { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 11.5px; }
.ch__actions { display: flex; gap: 4px; padding-top: 4px; border-top: 1px dashed var(--line); margin-top: 2px; }

/* Notif modal */
.modal--notif { width: min(960px, 95%); }
.notif-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1px; background: var(--line); }
.notif-form { background: var(--bg-1); padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.notif-preview { background: var(--bg-2); padding: 14px 16px; }
.notif-preview__h { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--fg-2); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }

.kind-pick { display: flex; gap: 8px; flex: 1; }
.kind-pick__c { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 6px; cursor: pointer; flex: 1; font-size: 13px; font-weight: 500; }
.kind-pick__c input { display: none; }
.kind-pick__c--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); }

.event-list { display: flex; flex-direction: column; gap: 5px; flex: 1; }
.ev-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 5px; cursor: pointer; font-size: 12px; }
.ev-row--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.3); }
.ev-row__t { font-weight: 500; color: var(--fg); }
.ev-row .muted { font-size: 11px; }

/* Slack mock */
.slack { background: white; color: #1d1c1d; border-radius: 6px; padding: 14px 18px; font-family: 'Lato', 'Helvetica Neue', sans-serif; }
.slack__msg { display: flex; gap: 10px; }
.slack__avatar { width: 36px; height: 36px; border-radius: 6px; background: linear-gradient(135deg, oklch(0.66 0.19 var(--accent-h)), oklch(0.55 0.22 var(--accent-h))); color: white; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex: none; }
.slack__body { flex: 1; min-width: 0; }
.slack__head { display: flex; align-items: baseline; gap: 6px; font-size: 13px; }
.slack__head b { font-weight: 900; color: #1d1c1d; }
.slack__bot { background: #e8e8e8; color: #616061; font-size: 9.5px; font-weight: 700; padding: 1px 4px; border-radius: 2px; letter-spacing: 0.04em; }
.slack__time { color: #616061; font-size: 11px; }
.slack__attach { display: flex; margin-top: 4px; border-radius: 4px; overflow: hidden; }
.slack__attach-bar { width: 4px; background: #e01e5a; flex: none; }
.slack__attach-body { padding: 8px 12px; background: #f8f8f8; flex: 1; }
.slack__title { font-weight: 700; font-size: 13.5px; color: #1d1c1d; margin-bottom: 6px; }
.slack__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 12px; margin-bottom: 6px; }
.slack__fields > div { display: flex; flex-direction: column; }
.slack__fields .muted { color: #616061; font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; }
.slack__fields b { font-weight: 500; color: #1d1c1d; font-size: 12.5px; }
.slack__list { font-size: 12px; line-height: 1.6; color: #1d1c1d; padding: 6px 0; }
.slack__list .mono { background: #f0f0f0; padding: 1px 4px; border-radius: 3px; color: #1d1c1d; }
.slack__btns { display: flex; gap: 6px; margin-top: 6px; }
.slack__btn { display: inline-flex; padding: 4px 10px; background: white; border: 1px solid #d4d4d4; border-radius: 4px; font-size: 12px; color: #1d1c1d; cursor: pointer; }

/* Discord mock */
.dc { background: #313338; color: #dbdee1; border-radius: 6px; padding: 12px 16px; font-family: 'gg sans', 'Helvetica Neue', sans-serif; }
.dc__msg { display: flex; gap: 12px; }
.dc__avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: white; font-weight: 700; font-size: 13px; flex: none; }
.dc__body { flex: 1; min-width: 0; }
.dc__head { display: flex; align-items: baseline; gap: 6px; font-size: 13px; }
.dc__head b { color: white; font-weight: 600; }
.dc__bot { background: #5865f2; color: white; font-size: 10px; font-weight: 700; padding: 1px 4px; border-radius: 3px; letter-spacing: 0.04em; }
.dc__embed { display: flex; margin-top: 6px; max-width: 520px; border-radius: 4px; overflow: hidden; }
.dc__embed-bar { width: 4px; background: #ed4245; flex: none; }
.dc__embed-body { background: #2b2d31; padding: 10px 14px; flex: 1; }
.dc__title { font-weight: 600; color: white; font-size: 14px; margin-bottom: 2px; }
.dc__sub { font-size: 11.5px; margin-bottom: 8px; color: #b5bac1; }
.dc__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; font-size: 12px; margin-bottom: 6px; }
.dc__fields > div { display: flex; flex-direction: column; }
.dc__fields .muted { color: #b5bac1; font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.04em; }
.dc__fields b { font-weight: 500; color: white; font-size: 12.5px; }
.dc__list { font-size: 12px; line-height: 1.6; color: #dbdee1; }
.dc__list .mono { background: #1e1f22; padding: 1px 4px; border-radius: 3px; }

.samples { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sample { background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.sample__h { display: flex; align-items: center; gap: 8px; font-size: 12.5px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid var(--line); }

/* ─── Import ─── */
.modal--import { width: min(880px, 94%); }
.import-body { padding: 14px 22px; max-height: 540px; overflow: auto; }

.src-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.src { display: flex; flex-direction: column; gap: 4px; padding: 16px 14px; background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 8px; cursor: pointer; }
.src input { display: none; }
.src svg { color: var(--fg-3); margin-bottom: 4px; }
.src--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); }
.src--on svg { color: var(--accent); }
.src__t { font-weight: 600; font-size: 13px; }
.src__s { font-size: 11.5px; }

.src-form { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px solid var(--line); }

.parse__file { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; margin-bottom: 14px; }
.parse__stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 14px; }
.parse-stat { padding: 10px 12px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px; text-align: center; }
.parse-stat__v { font-size: 22px; font-weight: 600; color: var(--fg); }
.parse-stat .muted { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }

.parse__diag { display: flex; flex-direction: column; gap: 6px; }
.diag-row { display: flex; gap: 10px; padding: 10px 12px; border-radius: 6px; font-size: 12.5px; align-items: center; }
.diag-row--warn { background: oklch(0.78 0.15 75 / 0.08); border: 1px solid oklch(0.78 0.15 75 / 0.25); color: var(--warn); }
.diag-row--info { background: var(--bg-1); border: 1px solid var(--line); }
.diag-row b { color: var(--fg); }

.select-bar { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.select-list { display: flex; flex-direction: column; gap: 10px; }
.sel-group { background: var(--bg-1); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.sel-group__h { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--bg-2); border-bottom: 1px solid var(--line); font-size: 12.5px; }
.sel-row { display: flex; align-items: center; gap: 8px; padding: 7px 12px; font-size: 12px; cursor: pointer; border-bottom: 1px solid var(--line); }
.sel-row:last-child { border-bottom: none; }
.sel-row--on { background: var(--accent-faint); }
.sel-row input { accent-color: var(--accent); }
.sel-row__path { color: var(--fg); min-width: 220px; }
.sel-row__name { color: var(--fg-3); }

.map { display: flex; flex-direction: column; gap: 12px; }
.map-card { background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.map-card__h { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 12.5px; font-weight: 500; }

.conflict { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.conflict:last-child { border-bottom: none; }
.conflict__h { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; }
.conflict__choices { display: flex; gap: 6px; }
.rc { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 5px; cursor: pointer; flex: 1; font-size: 12px; }
.rc input { display: none; }
.rc > span { display: flex; flex-direction: column; }
.rc > span > b { color: var(--fg); font-size: 12px; font-weight: 600; }
.rc > span > .muted { font-size: 11px; }
.rc--on { background: var(--accent-soft); border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); }

.confirm__head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.confirm__title { font-size: 14px; font-weight: 600; }
.confirm__list { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.conf-row { display: flex; align-items: center; gap: 10px; padding: 6px 8px; font-size: 12px; border-bottom: 1px solid var(--line); }
.conf-row:last-child { border-bottom: none; }
.conf-row__icon { width: 18px; display: grid; place-items: center; color: var(--fg-3); }
.conf-row--done .conf-row__icon { color: var(--pass); }
.conf-row__l { color: var(--fg); min-width: 280px; }

/* ─── Landing page ─── */
.landing { min-height: 100%; background: var(--bg); color: var(--fg); font-family: 'Inter', sans-serif; overflow-x: hidden; }
.landing-nav { display: flex; align-items: center; gap: 32px; padding: 18px 48px; position: relative; z-index: 10; }
.landing-nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.landing-nav__brand .logo { width: 28px; height: 28px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), oklch(0.55 0.22 var(--accent-h))); color: white; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.landing-nav__links { display: flex; gap: 26px; font-size: 13px; }
.landing-nav__links a { color: var(--fg-3); cursor: pointer; }
.landing-nav__links a:hover { color: var(--fg); }
.landing-nav__cta { display: flex; gap: 10px; }

.hero { padding: 60px 48px 80px; position: relative; }
.hero__grid { position: absolute; inset: 0; background-image:
  linear-gradient(var(--line) 1px, transparent 1px),
  linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 75%);
  opacity: 0.55;
}
.hero__glow { position: absolute; top: -180px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, oklch(0.66 0.19 var(--accent-h) / 0.18), transparent 70%); pointer-events: none; }

.hero__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }
.hero__pill { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px 5px 5px; background: var(--bg-1); border: 1px solid var(--line-2); border-radius: 999px; font-size: 12px; color: var(--fg-2); margin-bottom: 24px; }
.hero__pill-tag { padding: 2px 8px; background: var(--accent-soft); color: var(--accent); border-radius: 999px; font-weight: 500; font-size: 11px; }
.hero__h1 { font-size: 64px; font-weight: 700; line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 22px; }
.hero__h1 em { font-style: normal; background: linear-gradient(120deg, var(--accent), oklch(0.78 0.15 320)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 18px; line-height: 1.55; color: var(--fg-2); max-width: 680px; margin: 0 auto 32px; }
.hero__cta { display: flex; gap: 10px; justify-content: center; align-items: center; margin-bottom: 14px; }
.btn--lg { height: 42px; padding: 0 18px; font-size: 14px; font-weight: 500; border-radius: 8px; }
.hero__hint { font-size: 12px; color: var(--fg-4); display: inline-flex; align-items: center; gap: 14px; }
.hero__hint span { display: inline-flex; align-items: center; gap: 5px; }

.hero__shot { position: relative; max-width: 1180px; margin: 60px auto 0; border-radius: 14px; border: 1px solid var(--line-2); overflow: hidden; box-shadow: 0 60px 120px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03); background: var(--bg-1); }
.hero__shot::before { content: ''; position: absolute; inset: -1px; border-radius: 14px; padding: 1px; background: linear-gradient(180deg, oklch(0.66 0.19 var(--accent-h) / 0.5), transparent 40%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* Logos */
.logos { padding: 40px 48px; display: flex; flex-direction: column; gap: 16px; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos__label { font-size: 11px; color: var(--fg-4); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
.logos__row { display: flex; gap: 56px; align-items: center; opacity: 0.55; flex-wrap: wrap; justify-content: center; }
.logos__row span { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg-2); }

/* Sections */
.section { padding: 100px 48px; max-width: 1280px; margin: 0 auto; }
.section__eyebrow { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-bottom: 14px; }
.section__title { font-size: 44px; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; margin: 0 0 14px; max-width: 760px; }
.section__sub { font-size: 17px; color: var(--fg-2); line-height: 1.55; max-width: 640px; margin: 0 0 48px; }

/* Problem -> Solution split */
.prob { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.prob__col { padding: 28px; border-radius: 12px; border: 1px solid var(--line); }
.prob__col--bad { background: oklch(0.68 0.20 22 / 0.05); border-color: oklch(0.68 0.20 22 / 0.25); }
.prob__col--good { background: var(--accent-faint); border-color: oklch(0.66 0.19 var(--accent-h) / 0.3); }
.prob__h { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.prob__col--bad .prob__h { color: var(--fail); }
.prob__col--good .prob__h { color: var(--accent); }
.prob__list { display: flex; flex-direction: column; gap: 10px; }
.prob__item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.55; }
.prob__item-icon { width: 20px; height: 20px; border-radius: 5px; display: grid; place-items: center; flex: none; margin-top: 1px; }
.prob__col--bad .prob__item-icon { background: oklch(0.68 0.20 22 / 0.15); color: var(--fail); }
.prob__col--good .prob__item-icon { background: var(--accent-soft); color: var(--accent); }
.prob__item b { color: var(--fg); font-weight: 600; }

/* Feature grid (bento) */
.bento { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px; }
.bento__cell { background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.bento__cell:nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.bento__cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.bento__cell:nth-child(3) { grid-column: 3; grid-row: 1; }
.bento__cell:nth-child(4) { grid-column: 2 / span 2; grid-row: 2; }
.bento__icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 12px; }
.bento__t { font-size: 17px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.bento__s { font-size: 13px; color: var(--fg-3); line-height: 1.55; flex: 1; }
.bento__viz { margin-top: 14px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.bento__viz-pill { padding: 4px 8px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 4px; font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-2); }

/* How it works */
.how { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.how__step { padding: 22px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 10px; }
.how__n { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.how__t { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.how__s { font-size: 12.5px; color: var(--fg-3); line-height: 1.55; margin: 0; }

/* Code preview band */
.codeband { padding: 80px 48px; background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.codeband__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.codeband .section__title { font-size: 36px; }
.codeband__demo { background: var(--code-bg); border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.codeband__bar { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--bg); font-size: 11px; }
.codeband__pre { margin: 0; padding: 14px 16px; font-family: var(--font-mono); font-size: 12px; line-height: 1.7; max-height: 320px; overflow: auto; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.price { padding: 28px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; display: flex; flex-direction: column; gap: 8px; }
.price--feat { border-color: oklch(0.66 0.19 var(--accent-h) / 0.4); background: var(--accent-faint); position: relative; }
.price--feat::before { content: 'Most popular'; position: absolute; top: -10px; left: 28px; padding: 3px 10px; background: var(--accent); color: white; font-size: 10.5px; font-weight: 600; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }
.price__t { font-size: 15px; font-weight: 600; }
.price__p { font-size: 38px; font-weight: 700; letter-spacing: -0.025em; line-height: 1; margin: 4px 0 4px; }
.price__p span { font-size: 14px; font-weight: 400; color: var(--fg-3); margin-left: 4px; }
.price__s { font-size: 12.5px; color: var(--fg-3); margin-bottom: 14px; }
.price__list { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 18px; flex: 1; }
.price__list div { display: flex; gap: 8px; align-items: flex-start; font-size: 13px; }
.price__list svg { color: var(--accent); flex: none; margin-top: 2px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 8px; max-width: 760px; }
.faq__item { padding: 16px 20px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; }
.faq__q { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; font-weight: 500; cursor: pointer; }
.faq__a { font-size: 13px; color: var(--fg-3); line-height: 1.6; margin-top: 8px; }
.faq__item--open .faq__q { color: var(--fg); }

/* CTA band */
.ctaband { padding: 100px 48px; text-align: center; background: radial-gradient(ellipse at 50% 50%, oklch(0.66 0.19 var(--accent-h) / 0.12), transparent 60%); border-top: 1px solid var(--line); }
.ctaband h2 { font-size: 48px; font-weight: 700; letter-spacing: -0.025em; margin: 0 0 14px; line-height: 1.1; }
.ctaband p { font-size: 17px; color: var(--fg-2); margin: 0 0 30px; }

/* Footer */
.foot { padding: 48px 48px 32px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 32px; }
.foot__brand { font-size: 13px; color: var(--fg-3); max-width: 260px; line-height: 1.6; margin-top: 10px; }
.foot__col h4 { font-size: 12px; font-weight: 600; color: var(--fg); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.foot__col a { display: block; font-size: 13px; color: var(--fg-3); margin-bottom: 8px; cursor: pointer; }
.foot__col a:hover { color: var(--fg); }
.foot__btm { padding: 24px 48px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; font-size: 11.5px; color: var(--fg-4); }
