/* ============================================================
   Прихожу — landing styles
   Warm, natural, clarity-first (Notion/Linear tone)
   ============================================================ */

:root {
  --bg:        #f7f1e8;
  --bg-2:      #f2e9da;
  --card:      #ffffff;
  --ink:       #2a2624;
  --soft:      #6b5f57;
  --softer:    #9a8d82;
  --accent:    #c4694e;
  --accent-ink: color-mix(in srgb, var(--accent) 80%, #3a1408);
  --accent-soft: color-mix(in srgb, var(--accent) 34%, white);
  --accent-wash: color-mix(in srgb, var(--accent) 11%, white);
  --line:      #e8ddd0;
  --line-2:    #f0e7da;
  --ok:        #5f7d52;
  --ok-soft:   #e6ecdd;

  --maxw: 1080px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --font-head: "PT Sans", system-ui, sans-serif;
  --font-body: "PT Sans", system-ui, sans-serif;
  --font-ui:   "Inter", system-ui, sans-serif;

  --sp-section: 104px;     /* density-driven */
  --shadow-sm: 0 1px 2px rgba(42,38,36,.04), 0 1px 1px rgba(42,38,36,.04);
  --shadow:    0 2px 4px rgba(42,38,36,.04), 0 8px 24px rgba(42,38,36,.06);
  --shadow-lg: 0 8px 18px rgba(42,38,36,.06), 0 24px 60px rgba(42,38,36,.10);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--accent-soft); color: var(--accent-ink); }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--sp-section) 0; }
.section--tight { padding: calc(var(--sp-section) * .62) 0; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); margin: 0; line-height: 1.08; letter-spacing: -0.018em; font-weight: 700; }
.eyebrow {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.eyebrow::before { content:""; width: 18px; height: 1.5px; background: var(--accent); display:inline-block; }
.h-sec { font-size: clamp(30px, 4.4vw, 46px); max-width: 18ch; }
.lede { font-size: clamp(17px, 2vw, 20px); color: var(--soft); max-width: 56ch; line-height: 1.55; text-wrap: pretty; }
.dim { color: var(--soft); }
.fine { font-size: 14px; color: var(--softer); }
.mono { font-family: var(--font-ui); font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-ui); font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 1px 0 rgba(168,72,47,.6) inset, var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent-wash); }
.btn--lg { padding: 17px 30px; font-size: 17px; }
.link-cta { font-family: var(--font-ui); font-weight: 600; color: var(--accent-ink); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.link-cta:hover { gap: 9px; }
.link-cta svg { transition: transform .15s ease; }
.link-cta:hover svg { transform: translateX(2px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .25s, background .25s;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -.02em; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; overflow: hidden; display: grid; place-items: center; flex: none; }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.42); display: block; }
.nav__links { display: flex; align-items: center; gap: 26px; margin-left: 14px; }
.nav__links a { font-family: var(--font-ui); font-size: 15px; font-weight: 500; color: var(--soft); text-decoration: none; transition: color .15s; }
.nav__links a:hover { color: var(--ink); }
.nav__links a { white-space: nowrap; }
.nav__spacer { flex: 1; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
@media (max-width: 1000px) { .nav__cta .btn--ghost { display: none; } }
@media (max-width: 920px) { .nav__links { display: none; } }
@media (max-width: 440px) { .nav .btn--primary { padding: 11px 16px; font-size: 15px; } }

/* ---------- hero ---------- */
.hero { padding-top: 56px; padding-bottom: var(--sp-section); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); letter-spacing: -.028em; text-wrap: balance; }
.hero h1 .accent { color: var(--accent); }
.hero__sub { margin-top: 24px; }
.hero__cta { display: flex; align-items: center; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
.hero__chips { display: flex; gap: 18px; margin-top: 30px; flex-wrap: wrap; color: var(--soft); font-family: var(--font-ui); font-size: 14px; }
.hero__chips span { display: inline-flex; align-items: center; gap: 7px; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding-top: 40px; } }

/* ---------- generic card ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}

/* ---------- built-for strip ---------- */
.builtfor { text-align: center; }
.builtfor__tags { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 22px 0 20px; }
.tag { font-family: var(--font-ui); font-size: 15px; font-weight: 500; color: var(--ink); background: var(--card); border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; display: inline-flex; gap: 8px; align-items: center; }

/* ---------- problem ---------- */
.prob__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 14px; }
.prob {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prob:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.prob__emoji { font-size: 26px; line-height: 1; margin-bottom: 16px; display: block; }
.prob p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--ink); }
.prob b { color: var(--accent-ink); font-weight: 700; }
.prob__cap { margin-top: 34px; text-align: center; font-size: 19px; color: var(--soft); max-width: 60ch; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.prob__cap b { color: var(--ink); }
@media (max-width: 820px) { .prob__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .prob__grid { grid-template-columns: 1fr; } }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 10px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__n { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--accent); width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--accent-soft); display: grid; place-items: center; margin-bottom: 18px; background: var(--accent-wash); }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { margin: 0; color: var(--soft); font-size: 16px; line-height: 1.55; }
.step::before { content:""; position: absolute; top: 35px; left: 46px; right: -22px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px); }
.step:last-child::before { display: none; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 28px; } .step::before { display: none; } }

/* ---------- free plan ---------- */
.free { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.free__col { padding: 36px 38px; }
.free__col + .free__col { border-left: 1px solid var(--line); }
.free__label { font-family: var(--font-ui); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--softer); margin-bottom: 22px; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 16.5px; line-height: 1.45; }
.checklist li .ck { flex: none; margin-top: 2px; width: 21px; height: 21px; border-radius: 50%; background: var(--ok-soft); color: var(--ok); display: grid; place-items: center; }
.free__note { text-align: center; margin-top: 24px; }
@media (max-width: 720px) { .free { grid-template-columns: 1fr; } .free__col + .free__col { border-left: none; border-top: 1px solid var(--line); } }

/* ---------- add-ons ---------- */
.addons__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 12px; }
.addons__promise { font-size: 20px; color: var(--soft); max-width: 40ch; text-wrap: pretty; }
.addons__promise b { color: var(--ink); }
.addon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 800px) { .addon-grid { grid-template-columns: 1fr; } }

.addon {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 30px 28px; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s; position: relative;
}
.addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }
.addon__top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.addon__icon { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--accent-wash); border: 1px solid var(--accent-soft); display: grid; place-items: center; font-size: 23px; }
.addon__titles { flex: 1; min-width: 0; }
.addon__name { font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: -.01em; line-height: 1.2; }
.addon__price { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--accent-ink); margin-top: 5px; display: inline-flex; align-items: baseline; gap: 6px; background: var(--accent-wash); padding: 4px 11px; border-radius: 999px; }
.addon__body { color: var(--soft); font-size: 16px; line-height: 1.55; }
.addon__body p { margin: 0 0 14px; }
.addon__body p:last-child { margin-bottom: 0; }
.addon__body strong { color: var(--ink); font-weight: 700; }

/* ---- module card visuals ---- */
.addon__visual { margin: 2px 0 18px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.av-strip { display: flex; }
.av-cell { flex: 1; position: relative; aspect-ratio: 1 / 1; }
.av-cell + .av-cell { border-left: 2px solid var(--card); }
.av-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; display: block; }
.av-tag { position: absolute; bottom: 7px; left: 7px; font-family: var(--font-ui); font-size: 10.5px; font-weight: 600; color: #fff; background: rgba(28,22,18,.62); backdrop-filter: blur(3px); padding: 3px 8px; border-radius: 999px; }
.av-tag--after { background: var(--accent); }

/* chat mock (admin) */
.av-chat { padding: 16px; display: flex; flex-direction: column; gap: 9px; background: var(--bg-2); }
.av-chat .b { font-family: var(--font-ui); font-size: 13px; padding: 9px 12px; border-radius: 13px; max-width: 88%; line-height: 1.35; }
.av-chat .b--me { background: var(--accent); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.av-chat .b--bot { background: var(--card); border: 1px solid var(--line); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--ink); }
.av-chat .b--bot .ok { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-weight: 600; color: var(--ok); background: var(--ok-soft); padding: 6px 11px; border-radius: 8px; }

/* receipt mock (checks) */
.av-receipt { padding: 16px; background: var(--bg-2); }
.av-receipt .r { background: var(--card); border: 1px solid var(--line); border-radius: 11px; padding: 14px; font-family: var(--font-ui); position: relative; }
.av-receipt .r__h { font-size: 11px; color: var(--softer); text-transform: uppercase; letter-spacing: .05em; display: flex; justify-content: space-between; align-items: center; }
.av-receipt .r__amt { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); margin: 7px 0 4px; }
.av-receipt .r__svc { font-size: 12.5px; color: var(--soft); }
.av-receipt .r__ok { font-size: 12.5px; color: var(--ok); font-weight: 600; display: flex; align-items: center; gap: 6px; margin-top: 11px; padding-top: 11px; border-top: 1px dashed var(--line); }

/* reactivation mock */
.av-react { padding: 16px; background: var(--bg-2); }
.av-react .head { display: flex; align-items: center; gap: 11px; }
.av-react .avas { display: flex; }
.av-react .avas i { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg-2); margin-left: -9px; background: var(--accent-soft); display: grid; place-items: center; font-family: var(--font-ui); font-size: 12px; font-weight: 600; color: var(--accent-ink); }
.av-react .avas i:first-child { margin-left: 0; }
.av-react .cnt { font-family: var(--font-ui); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.av-react .cnt span { display: block; font-weight: 400; font-size: 12px; color: var(--soft); }
.av-react .promo { margin-top: 11px; background: var(--card); border: 1px dashed var(--accent-soft); border-radius: 9px; padding: 9px 12px; font-family: var(--font-ui); font-size: 12.5px; color: var(--accent-ink); display: flex; align-items: center; gap: 8px; }
.addon__quotes { list-style: none; margin: 4px 0 16px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.addon__quotes li { font-family: var(--font-ui); font-size: 14.5px; color: var(--ink); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 9px 13px; line-height: 1.35; }
.addon__who { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); font-size: 14.5px; color: var(--softer); line-height: 1.45; }
.addon__who b { color: var(--soft); font-weight: 600; }
.price-rows { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 9px; }
.price-rows li { display: flex; gap: 10px; align-items: baseline; font-size: 15px; color: var(--soft); }
.price-rows .amt { font-family: var(--font-ui); font-weight: 700; color: var(--accent-ink); white-space: nowrap; min-width: 96px; }
.modes { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 14px; }
.mode { border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px; background: var(--bg-2); }
.mode__h { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.mode__h b { font-family: var(--font-ui); font-size: 14.5px; color: var(--ink); }
.mode__amt { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--accent-ink); white-space: nowrap; }
.mode--free .mode__amt { color: var(--ok); }
.mode p { margin: 0; font-size: 14px; color: var(--soft); line-height: 1.45; }
.mode p strong { color: var(--ink); }
.bonus { margin-top: 14px; background: var(--ok-soft); border: 1px solid color-mix(in srgb, var(--ok) 22%, white); border-radius: 12px; padding: 12px 14px; font-size: 14.5px; color: #46603b; line-height: 1.45; }
.bonus b { color: #33492a; }

/* voting card */
.addon--vote { border-style: dashed; border-color: var(--accent-soft); background: linear-gradient(180deg, var(--accent-wash), var(--card) 70%); }
.vote-opts { list-style: none; padding: 0; margin: 6px 0 18px; display: flex; flex-direction: column; gap: 8px; }
.vote-opt { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; background: var(--card); transition: border-color .15s, background .15s; font-size: 15.5px; }
.vote-opt:hover { border-color: var(--accent); }
.vote-opt.is-on { border-color: var(--accent); background: var(--accent-wash); }
.vote-opt__radio { flex: none; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--softer); display: grid; place-items: center; transition: border-color .15s; }
.vote-opt.is-on .vote-opt__radio { border-color: var(--accent); }
.vote-opt.is-on .vote-opt__radio::after { content:""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.vote-opt input { all: unset; flex: 1; font-family: var(--font-ui); font-size: 15px; }
.vote-bar { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; margin-left: auto; width: 64px; flex: none; }
.vote-bar > i { display: block; height: 100%; background: var(--accent); border-radius: 3px; transition: width .5s ease; }
.vote-thanks { text-align: center; padding: 14px; font-family: var(--font-ui); color: var(--accent-ink); font-weight: 600; }

.addons__foot { margin-top: 28px; text-align: center; font-size: 18px; color: var(--soft); text-wrap: pretty; }
.addons__foot b { color: var(--ink); }
.addon__more { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.addon__more .link-cta { font-size: 15px; }

/* ---------- AI categories (visual center) ---------- */
.cats__head { text-align: center; max-width: 640px; margin: 0 auto 36px; }

/* before / after showcase */
.ba { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); box-shadow: var(--shadow); max-width: 560px; margin: 0 auto 14px; }
.ba__half { position: relative; aspect-ratio: 1 / 1; }
.ba__half img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; display: block; }
.ba__half--before { border-right: 2px solid var(--card); }
.ba__tag { position: absolute; top: 12px; left: 12px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; letter-spacing: .02em; }
.ba__tag--before { background: rgba(28,22,18,.6); color: #fff; backdrop-filter: blur(4px); }
.ba__tag--after { background: var(--accent); color: #fff; }
.ba__arrow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; border-radius: 50%; background: var(--card); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); box-shadow: var(--shadow-sm); z-index: 2; }
.ba-cap { text-align: center; font-family: var(--font-ui); font-size: 14px; color: var(--softer); margin: 0 auto 36px; }

.cats__sub { text-align: center; font-family: var(--font-ui); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--softer); margin: 0 0 18px; }
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4;
  background: var(--bg-2); border: 1px solid var(--line); cursor: default;
  transition: transform .22s ease, box-shadow .22s ease;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transition: transform .4s ease; }
.cat:hover img { transform: scale(1.05); }
.cat__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(28,22,18,.72) 100%); }
.cat__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-family: var(--font-ui); font-weight: 600; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.cat__label .e { font-size: 18px; }
.cat__hint { position: absolute; inset: 0; display: grid; place-items: center; padding: 18px; text-align: center; background: color-mix(in srgb, var(--accent) 92%, black); color: #fff; font-family: var(--font-ui); font-size: 14.5px; line-height: 1.45; opacity: 0; transition: opacity .2s ease; }
.cat:hover .cat__hint { opacity: 1; }
.cat--ph { background: repeating-linear-gradient(45deg, var(--bg-2) 0 10px, var(--bg) 10px 20px); display: grid; place-items: center; }
.cat--ph .cat__ph-txt { font-family: var(--font-ui); font-size: 12.5px; color: var(--softer); background: color-mix(in srgb, var(--card) 82%, transparent); padding: 4px 10px; border-radius: 7px; position: relative; z-index: 2; }

/* describe-in-words callout */
.cats__words { max-width: 640px; margin: 34px auto 0; background: var(--accent-wash); border: 1px solid var(--accent-soft); border-radius: var(--radius); padding: 22px 26px; text-align: center; }
.cats__words h3 { font-family: var(--font-head); font-size: 19px; letter-spacing: -.01em; margin: 0 0 14px; color: var(--ink); }
.cats__words .says { display: flex; flex-direction: column; gap: 8px; max-width: 460px; margin: 0 auto; }
.cats__words .say { font-family: var(--font-ui); font-size: 14.5px; color: var(--ink); background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; text-align: left; }
.cats__words .say b { color: var(--accent-ink); font-weight: 600; }
.cats__foot { text-align: center; margin-top: 32px; }
@media (max-width: 760px) { .cats__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* designer benefit banner inside addon */
.ai-benefit { background: var(--accent-wash); border: 1px solid var(--accent-soft); border-radius: 12px; padding: 13px 15px; font-size: 15px; color: var(--ink); line-height: 1.45; margin-bottom: 14px; }
.ai-benefit b { color: var(--accent-ink); }
.ai-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 4px 0 14px; }
.ai-mini span { font-family: var(--font-ui); font-size: 12px; color: var(--soft); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 9px; padding: 8px 6px; text-align: center; line-height: 1.25; }
.ai-mini span b { display: block; font-size: 15px; margin-bottom: 2px; }
@media (max-width: 380px) { .ai-mini { grid-template-columns: repeat(2, 1fr); } }

/* ---------- comparison ---------- */
.cmp { width: 100%; border-collapse: separate; border-spacing: 0; font-family: var(--font-ui); margin-top: 14px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.cmp th, .cmp td { padding: 16px 18px; text-align: left; font-size: 15.5px; border-bottom: 1px solid var(--line-2); }
.cmp thead th { font-size: 14px; font-weight: 600; color: var(--soft); background: var(--bg-2); letter-spacing: -.01em; }
.cmp thead th.us { color: var(--accent-ink); background: var(--accent-wash); }
.cmp tbody td:first-child { color: var(--ink); font-weight: 500; }
.cmp td { color: var(--soft); }
.cmp td.us { color: var(--ink); font-weight: 700; background: color-mix(in srgb, var(--accent-wash) 55%, white); border-left: 1px solid var(--accent-soft); border-right: 1px solid var(--accent-soft); }
.cmp tr:last-child td { border-bottom: none; }
.cmp tr.is-foot td.us { border-bottom: 2px solid var(--accent); }
.cmp .dash { color: var(--softer); }
.cmp-note { margin-top: 14px; font-size: 13.5px; }
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (max-width: 720px) { .cmp th, .cmp td { padding: 13px 14px; font-size: 14px; white-space: nowrap; } }

/* ---------- manifesto ---------- */
.manifesto { background: var(--bg-2); border-radius: var(--radius-lg); border: 1px solid var(--line); padding: 56px clamp(28px, 6vw, 72px); position: relative; }
.manifesto__q { font-family: var(--font-head); font-size: clamp(21px, 2.6vw, 27px); line-height: 1.42; letter-spacing: -.01em; color: var(--ink); }
.manifesto__q p { margin: 0 0 20px; text-wrap: pretty; }
.manifesto__q p:last-of-type { margin-bottom: 0; }
.manifesto__sign { margin-top: 30px; display: flex; align-items: center; gap: 13px; font-family: var(--font-ui); }
.manifesto__ava { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-ink); display: grid; place-items: center; font-weight: 700; font-size: 17px; }
.manifesto__sign b { font-weight: 600; }
.manifesto__sign span { color: var(--softer); font-size: 14px; display: block; }

/* ---------- faq ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 0; display: flex; gap: 18px; align-items: flex-start; font-family: var(--font-head); font-weight: 700; font-size: 19px; letter-spacing: -.01em; color: var(--ink); }
.faq__q:hover { color: var(--accent-ink); }
.faq__ico { flex: none; margin-left: auto; color: var(--accent); transition: transform .25s ease; margin-top: 2px; }
.faq__item.is-open .faq__ico { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 0 24px 0; color: var(--soft); font-size: 16.5px; line-height: 1.6; max-width: 64ch; }
.faq__a-inner b { color: var(--ink); }

/* ---------- final CTA ---------- */
.final { text-align: center; }
.final__card { background: var(--ink); color: #f5ece2; border-radius: var(--radius-lg); padding: clamp(44px, 7vw, 80px) 32px; position: relative; overflow: hidden; }
.final__card::before { content:""; position: absolute; inset: 0; background: radial-gradient(120% 120% at 50% -20%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 60%); pointer-events: none; }
.final h2 { font-size: clamp(30px, 4.6vw, 48px); color: #fff; position: relative; max-width: 20ch; margin: 0 auto; }
.final__sub { color: #d6c8ba; font-size: 19px; margin: 20px auto 0; max-width: 52ch; position: relative; }
.final .btn--primary { margin-top: 34px; position: relative; }
.final__sec { margin-top: 18px; color: #c3b3a4; font-size: 14.5px; position: relative; }
.final__rr { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin-top: 30px; position: relative; }
.final__rr span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 14.5px; color: #e7dccf; }
.final__rr svg { color: #d99a82; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 50px 0 60px; }
.footer__grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer__col h5 { font-family: var(--font-ui); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--softer); margin: 0 0 14px; font-weight: 600; }
.footer__col a { display: block; font-family: var(--font-ui); font-size: 15px; color: var(--soft); text-decoration: none; margin-bottom: 10px; }
.footer__col a:hover { color: var(--accent-ink); }
.footer__legal { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--font-ui); font-size: 13.5px; color: var(--softer); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } * { scroll-behavior: auto !important; } }
