:root {
  --bg: #ffffff; --alt: #f6f6f4; --ink: #1b1d21; --ink-2: #3d4148; --body: #4b4f57; --muted: #6b7079; --faint: #8a8f98;
  --line: #e6e6e2; --line-soft: #f0f0ee; --accent: #3454d1; --accent-dark: #2a44b0; --accent-soft: #eef1fb;
  --ok: #1d7a45; --ok-soft: #e7f5ec; --warn: #a35a12; --warn-soft: #fdf1e3; --bad: #b3261e; --bad-soft: #fdecec;
  --r: 8px; --r-md: 10px; --r-lg: 14px; --r-xl: 16px;
  --shadow-product: 0 30px 80px rgba(20, 22, 26, 0.14);
  --ease: cubic-bezier(.2,.7,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.55 "Instrument Sans", "Helvetica Neue", Arial, system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.12; }
h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; }
h2.h2-sm { font-size: clamp(24px, 2.4vw, 30px); }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
b { font-weight: 700; }
code { font-family: ui-monospace, Menlo, monospace; font-size: 13px; }
.grow { flex: 1; }
.muted { color: var(--muted); font-size: 15px; }
.label { font-size: 14px; font-weight: 600; color: var(--accent); margin-bottom: 10px; }
.lead { font-size: 18px; line-height: 1.55; color: var(--body); }
.fine { font-size: 14px; color: var(--muted); }
.center { text-align: center; }
.kicker { font-size: 10px; font-weight: 700; letter-spacing: .08em; color: var(--faint); }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--r-md); font-weight: 600; text-decoration: none; transition: transform .18s var(--ease), background .18s, box-shadow .18s; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(52, 84, 209, .25); }
.btn-lg { font-size: 18px; padding: 16px 32px; }
.btn-sm { font-size: 15px; padding: 10px 18px; border-radius: 9px; }
.btn.block { display: flex; width: 100%; }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 28px; padding: 16px 80px; background: rgba(255,255,255,.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line-soft); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.brand.small { font-size: 15px; }
.mark { width: 32px; height: 32px; border-radius: 9px; background: var(--accent); display: grid; place-items: center; transition: transform .25s var(--ease); }
.brand:hover .mark { transform: rotate(-6deg) scale(1.05); }
.brand.small .mark { width: 22px; height: 22px; border-radius: 6px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 15px; color: var(--ink-2); position: relative; }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: #fff; }
.nav-links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.tilt { transform: translateY(14px) perspective(1200px) rotateX(4deg); }
.tilt.in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .tilt { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- hero ---- */
.hero { padding: 96px 80px 40px; background: var(--alt); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.eyebrow { font-size: 15px; font-weight: 600; color: var(--accent); }
.headline { font-size: clamp(40px, 5.6vw, 76px); font-weight: 700; line-height: 1.02; letter-spacing: -0.025em; max-width: 1000px; }
.headline .w { display: inline-block; opacity: 0; transform: translateY(18px); animation: word .8s var(--ease) forwards; }
.headline .w:nth-child(1) { animation-delay: .05s } .headline .w:nth-child(2) { animation-delay: .13s } .headline .w:nth-child(3) { animation-delay: .21s } .headline .w:nth-child(4) { animation-delay: .29s } .headline .w:nth-child(5) { animation-delay: .37s } .headline .w:nth-child(6) { animation-delay: .45s }
@keyframes word { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .headline .w { opacity: 1; transform: none; animation: none; } }
.sub { font-size: 21px; line-height: 1.5; color: var(--body); max-width: 760px; }
.cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 6px; }

/* ---- product frames ---- */
.product { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-product); overflow: hidden; text-align: left; font-size: 12px; position: relative; }
.hero-product { width: min(1120px, 100%); margin-top: 32px; }
.app-bar { height: 44px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px; padding: 0 14px; }
.app-mark { width: 24px; height: 24px; border-radius: 7px; background: var(--accent); flex: none; }
.crumb { color: var(--muted); font-size: 12px; }
.crumb.strong { color: var(--ink); font-weight: 600; font-size: 13px; }
.pill { display: inline-flex; align-items: center; font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.pill-ok { background: var(--ok-soft); color: var(--ok); }
.pill-warn { background: var(--warn-soft); color: var(--warn); border: 1px solid #f3d9b5; }
.pill-accent { background: var(--accent-soft); color: var(--accent); }
.pill-bad { background: var(--bad-soft); color: var(--bad); }
.save { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); min-width: 84px; }
.save.dirty { color: var(--warn); } .save.dirty svg { display: none; }
.btn-mini { background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 7px; transition: transform .15s, box-shadow .15s; display: inline-block; }
.btn-mini.pressed { transform: scale(.96); box-shadow: 0 0 0 4px var(--accent-soft); }
.btn-ghost { border: 1px solid #dcdcd8; font-size: 11px; font-weight: 500; padding: 5px 9px; border-radius: 6px; display: inline-block; }
.app-body { display: flex; height: 440px; }
.inspector { width: 300px; flex: none; border-right: 1px solid var(--line); padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.navi { display: flex; flex-direction: column; gap: 2px; font-size: 12px; color: var(--ink-2); }
.navi div { padding: 6px 8px; border-radius: 6px; }
.navi .active { background: #f1f2f0; color: var(--ink); font-weight: 600; }
.form { border-top: 1px solid #ececea; padding-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.form label { font-size: 11px; font-weight: 600; color: var(--ink-2); margin-top: 6px; }
.input { border: 1px solid #dcdcd8; border-radius: 7px; padding: 7px 10px; font-size: 12px; background: #fff; min-height: 30px; }
.input.focus { border: 1.5px solid var(--accent); box-shadow: 0 0 0 3px #e4e9fb; }
.input.area { min-height: 62px; line-height: 1.45; }
.photo-row { display: flex; align-items: center; gap: 8px; }
.photo { width: 64px; height: 42px; border-radius: 5px; background: linear-gradient(135deg, #6b6f78, #23262d); }
.stage { flex: 1; background: #e9eaee; padding: 14px; position: relative; overflow: hidden; }
.site { background: #fff; border-radius: 8px; height: 100%; overflow: hidden; font-family: "Helvetica Neue", Arial, sans-serif; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.site-nav { display: flex; align-items: center; gap: 16px; padding: 14px 24px; font-size: 11px; color: #1f2937; }
.site-nav b { font-size: 13px; }
.site-btn { background: #1d4ed8; color: #fff; font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 6px; display: inline-block; }
.site-btn.ghost { background: transparent; border: 2px solid #1d4ed8; color: #1d4ed8; padding: 4px 12px; }
.site-hero { background: #eaf1fe; padding: 34px 24px; display: flex; gap: 24px; align-items: center; }
.site-hero > div:first-child { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.site-hero p { font-size: 12px; color: #4b5563; max-width: 300px; line-height: 1.5; }
.site-btns { display: flex; gap: 8px; }
.site-img { width: 200px; height: 140px; border-radius: 10px; background: linear-gradient(135deg, #6b6f78, #23262d); flex: none; }
.site-h1-wrap { position: relative; align-self: flex-start; }
.site-h1 { font-size: 30px; font-weight: 800; line-height: 1.08; color: #1f2937; letter-spacing: 0; border-radius: 2px; outline: 2px solid transparent; outline-offset: 4px; transition: outline-color .2s; }
.site-h1.hot { outline-color: var(--accent); }
.tag { position: absolute; top: -20px; left: 0; background: var(--accent); color: #fff; font-family: "Instrument Sans", sans-serif; font-size: 9px; font-weight: 600; padding: 3px 6px; border-radius: 4px; opacity: 0; transition: opacity .2s; }
.tag.show { opacity: 1; }
.site-cards { padding: 22px 24px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.site-cards div { border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px; font-size: 11px; display: flex; flex-direction: column; gap: 3px; }
.site-cards b { color: #1f2937; } .site-cards span { color: #6b7280; }
.cursor { position: absolute; left: 60%; top: 70%; pointer-events: none; transition: left .9s var(--ease), top .9s var(--ease), transform .12s; z-index: 3; filter: drop-shadow(0 2px 3px rgba(0,0,0,.3)); opacity: 0; }
.cursor.show { opacity: 1; } .cursor.click { transform: scale(.85); }
.toast { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%) translateY(20px); background: var(--ink); color: #fff; font-family: "Instrument Sans", sans-serif; font-size: 12px; padding: 8px 14px; border-radius: 999px; opacity: 0; transition: opacity .3s, transform .3s var(--ease); z-index: 4; white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%); }
.caret { display: inline-block; width: 1.5px; height: 12px; background: var(--ink); margin-left: 1px; vertical-align: -2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0 } }
.flash { animation: flash .8s var(--ease); }
@keyframes flash { 0% { box-shadow: 0 0 0 0 rgba(52,84,209,.35) } 100% { box-shadow: 0 0 0 18px rgba(52,84,209,0) } }

/* ---- strip ---- */
.strip { padding: 28px 80px 36px; background: var(--alt); display: flex; justify-content: center; align-items: center; gap: 28px; flex-wrap: wrap; font-size: 14px; color: var(--muted); text-align: center; }
.strip b { color: var(--ink-2); font-weight: 600; }
.strip .dot { width: 4px; height: 4px; border-radius: 2px; background: #cfd0cb; }

/* ---- sections ---- */
.section { padding: 96px 80px; }
.section.alt { background: var(--alt); }
.intro { max-width: 760px; margin-bottom: 40px; }
.intro .lead { margin-top: 12px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.q { background: var(--alt); border-radius: var(--r-lg); padding: 28px 30px; display: flex; flex-direction: column; gap: 8px; transition: transform .2s var(--ease); }
.q p, .feature p, .how p { font-size: 16px; line-height: 1.5; color: var(--body); }
.feature { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column; gap: 10px; background: #fff; transition: transform .2s var(--ease), box-shadow .2s; }
.feature:hover, .how:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,22,26,.08); }
.ico { width: 40px; height: 40px; border-radius: 10px; background: var(--accent-soft); display: grid; place-items: center; }
.ico svg { width: 20px; height: 20px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.safe { display: flex; gap: 14px; align-items: center; margin-top: 24px; font-size: 15px; color: var(--body); }
.safe b { color: var(--ink); }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; margin-top: 72px; }
.split-text { display: flex; flex-direction: column; gap: 14px; }
.split-text .label { margin-bottom: 0; }
.split.pricing { grid-template-columns: 1fr 1.15fr; align-items: start; }
.split.faq { grid-template-columns: 360px 1fr; align-items: start; }
.steps { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 12px; }
.steps li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink-2); }
.steps b { color: var(--ink); }
.n { width: 26px; height: 26px; border-radius: 13px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; flex: none; }
.how { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: transform .2s var(--ease), box-shadow .2s; }
.how .n { width: 30px; height: 30px; border-radius: 15px; font-size: 14px; }
.how h3 { font-size: 19px; }
.how code { background: var(--ink); color: #e8e8e6; padding: 10px 14px; border-radius: 8px; margin-top: 4px; }

/* ---- google product ---- */
.google-body { padding: 16px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 14px; }
.connected { font-size: 11px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.gdot { width: 7px; height: 7px; border-radius: 4px; background: var(--ok); }
.checklist { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.ck-head { padding: 12px 14px 8px; display: flex; align-items: center; gap: 8px; }
.ck { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-top: 1px solid var(--line-soft); font-size: 12px; font-weight: 600; }
.ck > span:nth-child(2) { flex: 1; }
.ck em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--ok); opacity: 0; transition: opacity .3s; }
.ck em.muted { color: var(--faint); font-weight: 400; opacity: 1; }
.ck.done em { opacity: 1; }
.ck-n { width: 22px; height: 22px; border-radius: 11px; border: 2px solid #d3d3ce; color: var(--faint); font-size: 11px; font-weight: 700; display: grid; place-items: center; flex: none; transition: background .3s, border-color .3s, color .3s, transform .3s var(--ease); }
.ck.next .ck-n { border-color: var(--accent); color: var(--accent); }
.ck.done .ck-n { background: var(--ok); border-color: var(--ok); color: #fff; transform: scale(1.08); }
.ck .btn-mini { font-size: 11px; padding: 5px 10px; }
.numbers { display: flex; flex-direction: column; gap: 10px; }
.stat-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.stat { background: var(--alt); border-radius: 8px; padding: 10px; display: flex; flex-direction: column; }
.stat span { font-size: 10px; color: var(--muted); }
.stat b { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.stat small { font-size: 11px; color: var(--faint); font-weight: 500; }
.stat i { font-style: normal; font-size: 10px; font-weight: 600; }
.up { color: var(--ok); } .warn { color: var(--warn); }
.chart { border: 1px solid var(--line); border-radius: var(--r-md); padding: 10px 12px 6px; }
.chart-head { display: flex; align-items: baseline; gap: 6px; font-size: 11px; margin-bottom: 4px; }
.chart-head span { color: var(--faint); }
.chart svg { display: block; width: 100%; height: auto; }
.chart .line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.chart .area { fill: var(--accent); fill-opacity: .08; }
.chart .grid { stroke: #ececea; } .chart .base { stroke: #d3d3ce; }
.chart text { font-family: "Instrument Sans", sans-serif; }
.queries { display: flex; flex-direction: column; gap: 3px; }
.q-head { font-size: 10px; font-weight: 600; color: var(--muted); }
.q-row { display: flex; justify-content: space-between; font-size: 11px; padding: 3px 0; border-bottom: 1px solid var(--line-soft); opacity: 0; transform: translateX(-6px); transition: opacity .4s, transform .4s var(--ease); }
.q-row:last-child { border-bottom: none; }
.q-row.in { opacity: 1; transform: none; }
.q-row span:last-child { color: var(--muted); }

/* ---- editor product (google page editor) ---- */
.editor-product { display: flex; }
.serp-form { width: 46%; flex: none; padding: 18px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.serp-form-title { font-size: 14px; }
.fld { display: flex; flex-direction: column; gap: 4px; }
.fld-top { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; }
.fld-top i { font-style: normal; color: var(--faint); font-weight: 400; }
.cnt { font-size: 10px; font-weight: 600; color: var(--faint); }
.cnt.ok { color: var(--ok); }
.hint { font-size: 10px; color: var(--faint); }
.suggest { background: var(--alt); border-radius: 7px; padding: 8px 10px; font-size: 11px; }
.suggest span { color: var(--accent); }
.serp-form .btn-mini { align-self: flex-start; }
.serp-side { flex: 1; padding: 18px; background: var(--alt); display: flex; flex-direction: column; gap: 10px; }
.serp { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; font-family: Arial, sans-serif; }
.serp.phone { width: 260px; padding: 12px 14px; }
.serp-site { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.serp-site > span:last-child { display: flex; flex-direction: column; }
.serp-site b { font-size: 12px; color: #202124; font-weight: 400; }
.serp-site i { font-style: normal; font-size: 11px; color: #4d5156; }
.serp-fav { width: 22px; height: 22px; border-radius: 11px; background: #f1f3f4; flex: none; }
.serp-h { font-size: 17px; color: #1a0dab; line-height: 1.3; margin-bottom: 3px; }
.serp-p { font-size: 12px; color: #4d5156; line-height: 1.5; }
.serp.phone .serp-h { font-size: 14px; } .serp.phone .serp-p { font-size: 11px; }

/* ---- inbox product ---- */
.inbox-product { display: flex; height: 320px; }
.inbox { width: 46%; flex: none; border-right: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; }
.inbox-head { padding: 12px 14px 8px; display: flex; align-items: center; gap: 8px; font-size: 13px; }
.inbox-list { display: flex; flex-direction: column; }
.msg { display: flex; gap: 10px; padding: 10px 14px; border-bottom: 1px solid var(--line-soft); border-left: 3px solid transparent; }
.msg.open { background: #f1f2f0; border-left-color: var(--accent); }
.msg > span:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.mdot { width: 7px; height: 7px; border-radius: 4px; background: transparent; margin-top: 6px; flex: none; }
.msg.unread .mdot, .msg.open .mdot { background: var(--accent); }
.mtop { display: flex; justify-content: space-between; gap: 8px; }
.mtop b { font-size: 12px; font-weight: 500; } .msg.unread .mtop b, .msg.open .mtop b { font-weight: 700; }
.mtop i { font-style: normal; font-size: 10px; color: var(--faint); }
.msnip { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg.unread .msnip, .msg.open .msnip { color: var(--ink-2); }
.msg.arrive { animation: arrive .5s var(--ease); }
@keyframes arrive { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.reading { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.rname { font-size: 16px; display: block; }
.rmeta { font-style: normal; font-size: 11px; color: var(--muted); display: block; }
.rfields { display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 6px 10px; font-size: 12px; }
.rfields span:nth-child(odd) { color: var(--faint); }
.rfields .link { color: var(--accent); }
.ractions { display: flex; gap: 8px; margin-top: auto; }
.reading.swap { animation: fadein .4s var(--ease); }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* ---- pricing ---- */
.plan { border: 1.5px solid var(--accent); border-radius: 18px; padding: 36px; display: flex; flex-direction: column; gap: 20px; box-shadow: 0 20px 50px rgba(52, 84, 209, .10); background: #fff; }
.plan-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.plan-price b { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan-price span { font-size: 18px; color: var(--muted); }
.plan-price i { font-style: normal; margin-left: auto; font-size: 14px; color: var(--muted); }
.plan-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 24px; font-size: 15px; color: var(--ink-2); }
.plan-list li { display: flex; gap: 10px; align-items: center; }
.plan-list li::before { content: ""; width: 16px; height: 16px; flex: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d7a45' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") no-repeat center / contain; }

/* ---- faq ---- */
.faq-list { display: flex; flex-direction: column; }
details { border-bottom: 1px solid #e0e0dc; padding: 4px 0; }
summary { cursor: pointer; list-style: none; font-size: 18px; font-weight: 600; padding: 16px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--faint); transition: transform .2s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { font-size: 16px; line-height: 1.55; color: var(--body); padding: 0 0 18px; max-width: 720px; }

/* ---- final, footer ---- */
.final { padding: 110px 80px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.final h2 { font-size: clamp(32px, 4vw, 48px); max-width: 820px; letter-spacing: -0.025em; }
.final .lead { max-width: 640px; }
.footer { padding: 32px 80px; border-top: 1px solid #ececea; display: flex; align-items: center; gap: 24px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
.footer nav { display: flex; gap: 20px; }
.footer nav a { color: var(--muted); }
.footer nav a:hover { color: var(--ink); }

/* ---- responsive ---- */
@media (max-width: 1100px) {
  .nav, .hero, .strip, .section, .final, .footer { padding-left: 40px; padding-right: 40px; }
  .split, .split.reverse, .split.pricing, .split.faq { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-text { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav { padding: 12px 20px; gap: 12px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 40px 20px 28px; text-align: left; align-items: flex-start; gap: 16px; }
  .headline { font-size: 42px; }
  .sub { font-size: 17px; }
  .cta { align-items: flex-start; }
  .btn-lg { width: 100%; font-size: 17px; padding: 15px 20px; }
  .hero-product { margin-top: 12px; }
  .app-bar { gap: 8px; padding: 0 10px; }
  .app-bar .crumb:not(.strong), .app-bar .pill-warn { display: none; }
  .app-bar .save { min-width: 0; }
  .app-body { height: auto; flex-direction: column; }
  .inspector { width: 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .stage { min-height: 300px; }
  .site-hero { flex-direction: column; align-items: flex-start; }
  .site-img { width: 100%; height: 110px; }
  .site-cards { grid-template-columns: 1fr; }
  .strip { padding: 22px 20px; flex-direction: column; gap: 10px; align-items: flex-start; text-align: left; }
  .strip .dot { display: none; }
  .section, .final { padding: 56px 20px; }
  .grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .q, .feature { padding: 20px; }
  .google-body { grid-template-columns: 1fr; }
  .editor-product, .inbox-product { flex-direction: column; height: auto; }
  .serp-form, .inbox { width: 100%; border-right: none; border-bottom: 1px solid var(--line); }
  .serp.phone { width: 100%; }
  .plan { padding: 24px; }
  .plan-list { grid-template-columns: 1fr; }
  .plan-price i { margin-left: 0; width: 100%; }
  .footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer .grow { display: none; }
  .footer nav { flex-wrap: wrap; gap: 12px; }
}
