:root {
  --bg: #f4f6f9;
  --bg-alt: #e9eef5;
  --ink: #0b1220;
  --muted: #5b6577;
  --line: rgba(11, 18, 32, 0.1);
  --blue: #007aff;
  --blue-deep: #0056b8;
  --surface: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 80px rgba(11, 18, 32, 0.12);
  --radius: 28px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(0, 122, 255, 0.16), transparent 60%),
    radial-gradient(800px 520px at 90% 8%, rgba(52, 199, 89, 0.08), transparent 55%),
    linear-gradient(180deg, #eef2f7 0%, var(--bg) 28%, #f7f8fb 100%);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2rem, 760px); }

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244, 246, 249, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.top.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}
.top-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(27, 143, 212, 0.38);
  flex-shrink: 0;
}
.brand-name { font-size: 1.02rem; font-weight: 750; letter-spacing: -0.03em; }
.nav {
  margin-left: auto;
  display: flex;
  gap: 1.25rem;
}
.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-weight: 650;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(0, 122, 255, 0.28);
}
.btn:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.btn-sm {
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.7);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  padding: 2.5rem 0 3.5rem;
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 70% 40%, rgba(0,122,255,0.18), transparent 70%),
    linear-gradient(180deg, transparent 60%, rgba(244,246,249,0.9));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}
.brand-lockup {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 18ch;
}
.lede {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38ch;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.center-row { justify-content: center; }

.hero-visual {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
}

/* Desktop software window (matches Telegram Auto app UI) */
.soft-window {
  width: min(100%, 560px);
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow:
    0 28px 80px rgba(11, 18, 32, 0.18),
    0 2px 8px rgba(0,0,0,0.06);
  animation: floatIn 0.9s ease both;
  /* Lock overall size so scrape/add states never reflow the hero */
  contain: layout;
}
.soft-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px 0 72px;
  position: relative;
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  font-size: 0.78rem;
  font-weight: 650;
  color: #6e6e73;
}
.soft-dots {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 12px;
  background:
    radial-gradient(circle closest-side at 6px 6px, #ff5f57 0 5.2px, transparent 5.5px),
    radial-gradient(circle closest-side at 26px 6px, #febc2e 0 5.2px, transparent 5.5px),
    radial-gradient(circle closest-side at 46px 6px, #28c840 0 5.2px, transparent 5.5px);
}
.soft-title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1d1d1f;
  letter-spacing: -0.01em;
}
.soft-badge {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,122,255,0.1);
  color: #007aff;
  font-size: 0.7rem;
  font-weight: 700;
}
.soft-toolbar {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(246,246,246,0.92);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.soft-tool {
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 650;
  color: #6e6e73;
  transition: background 0.2s ease, color 0.2s ease;
}
.soft-tool.is-on {
  background: #fff;
  color: #1d1d1f;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.08);
}
.soft-body {
  display: grid;
  grid-template-columns: 168px 1fr;
  height: 420px;
  min-height: 420px;
  max-height: 420px;
  overflow: hidden;
  background: #fff;
}
.soft-side {
  padding: 14px 12px;
  background: #f7f7f8;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.soft-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.soft-side-brand img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(27,143,212,0.35);
}
.soft-side-brand strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  color: #1d1d1f;
}
.soft-side-brand small {
  display: block;
  font-size: 0.68rem;
  color: #6e6e73;
}
.soft-nav {
  display: grid;
  gap: 4px;
}
.soft-nav span {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 650;
  color: #6e6e73;
  transition: background 0.2s ease, color 0.2s ease;
}
.soft-nav span.is-on {
  background: rgba(0,122,255,0.12);
  color: #007aff;
}
.soft-main {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(0,122,255,0.06), transparent 60%),
    #fff;
}
.soft-chat {
  background: #f5f5f7;
  border-radius: 14px;
  padding: 12px 14px;
  flex: 0 0 auto;
  height: 78px;
  max-height: 78px;
  overflow: hidden;
}
.soft-label {
  margin: 0 0 4px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6e6e73;
}
.soft-bubble {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.soft-bubble.is-swap {
  opacity: 0;
  transform: translateY(4px);
}
.soft-chat-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  min-width: 0;
  flex: 0 0 auto;
  max-height: 88px;
  overflow: hidden;
}
.soft-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #5bc8f5, #178bcf);
  box-shadow: 0 8px 20px rgba(34,158,217,0.28);
}
.soft-chat-meta {
  min-width: 0;
  flex: 1;
}
.soft-chat-meta strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.soft-chat-meta > span {
  display: block;
  margin-top: 2px;
  font-size: 0.8rem;
  font-weight: 650;
  color: #007aff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.soft-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.soft-pills i {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 650;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f2f2f7;
  border: 1px solid rgba(0,0,0,0.06);
  color: #1d1d1f;
}
.demo-panel {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fafafa;
  padding: 10px;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.demo-panel.is-idle {
  opacity: 0.72;
}
.demo-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6e6e73;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.demo-track {
  height: 8px;
  border-radius: 999px;
  background: #e8e8ed;
  overflow: hidden;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.demo-track i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5bc8f5, #007aff);
  transition: width 0.25s ease;
}
.demo-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.demo-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  flex: 0 0 34px;
  height: 34px;
  box-sizing: border-box;
  overflow: hidden;
  animation: rowIn 0.22s ease both;
}
.demo-list .id { color: #1d1d1f; font-weight: 650; }
.demo-list .st { font-weight: 700; font-size: 0.72rem; }
.demo-list .st.ok { color: #1a7f37; }
.demo-list .st.wait { color: #007aff; }
.demo-list .st.fail { color: #c62828; }
.demo-list li.is-ok { background: #eaf7ee; }
.demo-list li.is-fail { background: #fdecee; }
.soft-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  flex-shrink: 0;
}
.soft-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  background: #007aff;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.45;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.soft-action.is-on {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,122,255,0.28);
}
.soft-action-ghost {
  background: #f2f2f7;
  color: #1d1d1f;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none !important;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes rowIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.trust {
  padding: 0.5rem 0 1.25rem;
}
.trust-block {
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.review-badge {
  display: block;
  width: min(100%, 420px);
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  box-shadow: 0 12px 36px rgba(11, 18, 32, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}
.review-badge-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.review-score {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #00b67a;
}
.review-meta { display: grid; gap: 0.25rem; }
.review-stars {
  display: inline-flex;
  gap: 3px;
}
.review-stars i {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #00b67a;
  position: relative;
  display: inline-block;
}
.review-stars i::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}
.review-stars i.half {
  background: linear-gradient(90deg, #00b67a 70%, #dcdce6 70%);
}
.review-count {
  font-size: 0.88rem;
  color: var(--muted);
}
.review-count strong { color: var(--ink); }
.review-badge-bottom {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
}
.review-badge-bottom > span:first-child { color: #00b67a; }
.review-source {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.82rem;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  width: 100%;
}
.trust-row-mini {
  grid-template-columns: repeat(3, 1fr);
  border: none;
  padding: 0.25rem 0 0;
  text-align: center;
}
.trust-row strong { color: var(--ink); }

.section {
  padding: 4.5rem 0;
}
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(233,238,245,0.65));
}
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 600;
}
.section-lede {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.05rem;
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feature {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
  counter-reset: step;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
}
.steps li::before {
  content: counter(step);
  grid-row: span 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.steps strong { font-size: 1.05rem; }
.steps span { color: var(--muted); grid-column: 2; }

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.checklist li {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--blue);
  background: rgba(255,255,255,0.65);
  border-radius: 0 16px 16px 0;
  color: var(--muted);
}
.checklist strong { color: var(--ink); }

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.plan {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
}
.plan-featured {
  background: linear-gradient(165deg, #0b1220, #163056);
  color: #fff;
  border: none;
}
.plan-featured p { color: rgba(255,255,255,0.78); }
.plan h3 { margin: 0; font-size: 1.15rem; }
.price {
  margin: 0.6rem 0 0.75rem;
  font-size: 1rem;
}
.price span {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: inherit;
}
.plan .btn { margin-top: 1rem; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
blockquote {
  margin: 0;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
}
blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
blockquote footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 650;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin: 0.65rem 0 0.2rem;
  color: var(--muted);
}

.cta-band {
  text-align: center;
  padding-bottom: 5rem;
}
.cta-band p { color: var(--muted); }

.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: #0b1220;
  color: rgba(255,255,255,0.86);
}
.footer a { color: #8ec5ff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer .muted,
.legal {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.legal { margin: 0; }

.path-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
}
.path-tab {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.path-tab.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.path-panel {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  animation: rise 0.35s ease both;
}
.path-panel[hidden] { display: none !important; }
.path-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.path-panel p {
  margin: 0;
  color: var(--muted);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.compare-col {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
}
.compare-win {
  background: linear-gradient(165deg, #0b1220, #163056);
  color: #fff;
  border: none;
}
.compare-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
}
.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.compare-col li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}
.compare-win li { color: rgba(255,255,255,0.82); }
.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line);
}
.compare-win li::before { background: #5BC8F5; }

.guide-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}
.guide-copy strong { color: var(--ink); }
.insight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.insight {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: 20px;
  background: rgba(0,122,255,0.08);
  border: 1px solid rgba(0,122,255,0.12);
}
.insight strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--blue-deep);
}
.insight span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid,
  .feature-stack,
  .plans,
  .quotes,
  .trust-row,
  .trust-row-mini,
  .footer-grid,
  .compare,
  .insight-row {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }
  .hero h1 { max-width: none; }
  .brand-lockup { font-size: 1.7rem; }
  .soft-body {
    grid-template-columns: 1fr;
    height: 400px;
    min-height: 400px;
    max-height: 400px;
  }
  .soft-side { display: none; }
  .soft-window { width: 100%; max-width: 100%; }
  .soft-titlebar {
    padding: 0 10px 0 78px;
    gap: 8px;
    min-height: 40px;
  }
  .soft-dots {
    left: 12px;
    width: 52px;
  }
  .soft-title {
    font-size: 0.7rem;
    margin-right: 4px;
  }
  .soft-badge {
    font-size: 0.62rem;
    padding: 2px 6px;
    max-width: 4.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .soft-main { padding: 12px; gap: 8px; }
  .soft-chat { height: 70px; max-height: 70px; padding: 10px 12px; }
  .soft-bubble { font-size: 0.84rem; }
  .soft-chat-card { padding: 10px; max-height: 80px; }
  .soft-avatar { width: 42px; height: 42px; border-radius: 12px; }
}

@media (max-width: 560px) {
  .hero-visual { width: 100%; }
  .soft-window { border-radius: 12px; }
  .soft-body {
    height: 380px;
    min-height: 380px;
    max-height: 380px;
  }
  .soft-titlebar {
    padding: 0 8px 0 70px;
    gap: 6px;
  }
  .soft-dots {
    left: 10px;
    width: 48px;
    background:
      radial-gradient(circle closest-side at 5px 6px, #ff5f57 0 4.6px, transparent 4.9px),
      radial-gradient(circle closest-side at 23px 6px, #febc2e 0 4.6px, transparent 4.9px),
      radial-gradient(circle closest-side at 41px 6px, #28c840 0 4.6px, transparent 4.9px);
  }
  .soft-title {
    font-size: 0.66rem;
    letter-spacing: -0.02em;
  }
  .soft-badge {
    font-size: 0.58rem;
    padding: 2px 5px;
    max-width: 4.2rem;
  }
  .soft-toolbar { padding: 6px 10px; gap: 4px; overflow-x: auto; }
  .soft-tool { padding: 5px 9px; font-size: 0.74rem; white-space: nowrap; }
  .demo-list li { font-size: 0.76rem; }
}
