:root {
  --bg: #f7fbff;
  --bg-strong: #eef7ff;
  --surface: #ffffff;
  --ink: #111827;
  --muted: #5e6a7c;
  --soft: #d9e6f2;
  --line: rgba(27, 47, 71, 0.12);
  --blue: #1677ff;
  --blue-dark: #0954c7;
  --green: #11a676;
  --shadow: 0 24px 70px rgba(19, 61, 102, 0.12);
  --radius: 8px;
  --max: 1160px;
  --font: "Manrope", "Onest", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 58px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 48px rgba(24, 58, 92, 0.12);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.brand,
.nav,
.header-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
  padding-left: 8px;
  font-weight: 820;
  color: #0d1b2a;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.nav {
  gap: 22px;
  justify-self: center;
  color: #354256;
  font-size: 14px;
  font-weight: 680;
}

.nav a {
  opacity: 0.82;
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover {
  color: var(--blue);
  opacity: 1;
}

.connect-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-links {
  justify-self: end;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(27, 47, 71, 0.08);
  border-radius: 12px;
  background: rgba(245, 250, 255, 0.72);
}

.connect-btn {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  color: #162033;
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(19, 61, 102, 0.06);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.connect-btn:hover {
  border-color: rgba(22, 119, 255, 0.28);
  color: var(--blue);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 86svh;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.12), transparent 30%),
    linear-gradient(100deg, transparent 54%, rgba(17, 166, 118, 0.11) 78%, transparent 100%),
    linear-gradient(180deg, #fbfdff 0%, #f4faff 76%, #eef7ff 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 76%);
}

.hero-copy,
.hero-stage {
  position: relative;
}

.hero-copy {
  align-self: center;
  max-width: 670px;
  z-index: 2;
  padding-top: 8svh;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

section[id],
.channels-section,
.final-cta {
  scroll-margin-top: 96px;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7.3vw, 96px);
  line-height: 0.94;
  font-weight: 860;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 34px;
  color: #354256;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-connect-card {
  width: min(100%, 590px);
  margin-top: 30px;
  padding: 12px;
  border: 1px solid rgba(22, 119, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(19, 61, 102, 0.1);
  backdrop-filter: blur(18px);
}

.connect-card-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding: 0 2px;
}

.connect-card-title strong {
  color: #142033;
  font-size: 14px;
  font-weight: 840;
}

.connect-card-title span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.bot-choice {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  max-width: 620px;
}

.bot-choice.centered {
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}

.bot-choice.dark .bot-button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.bot-button {
  display: inline-flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  color: #122033;
  font-size: 14px;
  font-weight: 790;
  box-shadow: 0 10px 24px rgba(19, 61, 102, 0.07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.bot-button:hover {
  border-color: rgba(22, 119, 255, 0.38);
  box-shadow: 0 18px 38px rgba(22, 119, 255, 0.14);
  transform: translateY(-2px);
}

.bot-button span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 860;
}

.bot-button.vk span {
  background: #1677ff;
}

.bot-button.tg span {
  background: #1d9bf0;
}

.bot-button.max span {
  background: #111827;
}

.hero-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-size: 15px;
  font-weight: 800;
}

.hero-link::after {
  content: "↓";
  margin-left: 8px;
}

.hero-copy .free-note {
  max-width: 640px;
  margin: 10px 2px 0;
  color: #4c5b70;
  font-size: 13px;
  line-height: 1.5;
}

.hero-copy .free-note b {
  color: #172033;
  font-weight: 840;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 790;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 16px 35px rgba(22, 119, 255, 0.24);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #152235;
}

.hero-stage {
  position: absolute;
  top: 126px;
  right: max(22px, calc((100vw - var(--max)) / 2));
  z-index: 1;
  width: min(52vw, 620px);
  min-height: 560px;
  pointer-events: none;
}

.phone-shell,
.report-preview,
.wizard-preview,
.scenario-card,
.safety-panel,
.dashboard-sheet,
.report-features article,
.pain-grid article,
.channels-grid article,
details,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.phone-shell {
  width: min(390px, 82vw);
  min-height: 565px;
  margin: 0 90px 0 auto;
  padding: 15px;
}

.phone-top {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  min-height: 42px;
  color: #111827;
  font-size: 14px;
  font-weight: 790;
  text-align: center;
}

.phone-top span {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.phone-top span:last-child {
  justify-self: end;
  background: var(--green);
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 14px;
}

.bubble,
.confirm-card {
  border-radius: var(--radius);
  padding: 14px;
  font-size: 14px;
  line-height: 1.45;
}

.bubble.user {
  align-self: flex-end;
  max-width: 78%;
  background: #e8f1ff;
  color: #102033;
}

.bubble.bot,
.confirm-card {
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 70, 106, 0.08);
}

.bubble-title {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.metric-grid div {
  padding: 10px;
  border-radius: var(--radius);
  background: #f4f9ff;
}

.metric-grid b {
  display: block;
  font-size: 17px;
}

.metric-grid span,
.scenario-demo span,
.sheet-metrics span,
.report-foot span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.confirm-card {
  display: grid;
  gap: 10px;
}

.confirm-card label,
.safety-panel label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #263247;
  font-size: 13px;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.confirm-card button,
.panel-actions button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  background: #111827;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
}

.report-preview {
  position: absolute;
  top: 46px;
  right: 0;
  width: 210px;
  padding: 16px;
}

.report-head,
.report-foot,
.sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.report-head span,
.report-head strong,
.report-foot b {
  display: block;
}

.report-head span,
.wizard-preview span,
.sheet-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.report-head strong {
  font-size: 14px;
}

.report-line {
  height: 8px;
  width: 72%;
  margin-top: 14px;
  border-radius: 999px;
  background: #dfeafa;
}

.report-line.wide {
  width: 100%;
}

.mini-chart,
.week-chart {
  display: flex;
  height: 96px;
  align-items: end;
  gap: 8px;
  margin: 18px 0;
}

.mini-chart i,
.week-chart i {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--blue), #77b7ff);
}

.wizard-preview {
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 245px;
  padding: 16px;
}

.wizard-preview ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.wizard-preview li {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #f4f8fd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.wizard-preview li.done {
  color: #0a7f5f;
}

.wizard-preview li.active {
  background: #e8f1ff;
  color: var(--blue-dark);
}

.float-slow {
  animation: floatSlow 8s ease-in-out infinite;
}

.float-fast {
  animation: floatFast 6.5s ease-in-out infinite;
}

.float-medium {
  animation: floatMedium 7.5s ease-in-out infinite;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  color: rgba(53, 66, 86, 0.62);
  font-size: 12px;
  font-weight: 760;
  transform: translateX(-50%);
}

.section-pad {
  padding: 108px max(24px, calc((100vw - var(--max)) / 2));
}

.section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title.align-left {
  margin-left: 0;
  text-align: left;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 820;
}

.section-title p,
.pain-grid p,
.scenario-card p,
.safety-copy p,
.safety-copy li,
.report-features p,
.launch-copy p,
.step p,
.channels-section p,
details p,
.final-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pain-section {
  background: #fff;
}

.pain-section.section-pad {
  padding-top: 80px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.free-section {
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 108px;
  background: #fff;
}

.free-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(22, 119, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(100deg, rgba(22, 119, 255, 0.08), transparent 45%),
    #f7fbff;
  box-shadow: 0 24px 60px rgba(19, 61, 102, 0.08);
}

.free-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 52px);
}

.free-panel p,
.credit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.credit-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 40px rgba(19, 61, 102, 0.08);
}

.credit-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.credit-card b {
  display: block;
  margin: 9px 0 10px;
  font-size: 24px;
  line-height: 1.14;
}

.pain-grid article {
  padding: 24px;
  box-shadow: none;
}

.line-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius);
  background: #eef7ff;
  color: var(--blue);
}

.line-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scenario-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.scenario-board {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.scenario-card {
  min-height: 220px;
  padding: 24px;
  box-shadow: none;
}

.scenario-card.large {
  display: flex;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
}

.scenario-demo {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: #f3f9ff;
}

.scenario-demo b {
  text-align: right;
}

.safety-section,
.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: center;
  background: #0f172a;
  color: #fff;
}

.safety-copy p,
.safety-copy li,
.launch-copy p {
  color: #b8c4d6;
}

.safety-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding-left: 18px;
}

.safety-panel {
  padding: 26px;
  background: #fff;
  color: var(--ink);
}

.panel-toolbar {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

.panel-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dce7f5;
}

.safety-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.safety-panel label {
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel-actions {
  margin-top: 18px;
}

.panel-actions button {
  padding: 0 16px;
}

.panel-actions button:last-child {
  border: 1px solid var(--line);
  background: #fff;
  color: #263247;
}

.reports-section {
  background: #fff;
}

.reports-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.8fr);
  gap: 26px;
  align-items: stretch;
}

.dashboard-sheet {
  padding: 28px;
  box-shadow: 0 28px 80px rgba(19, 61, 102, 0.14);
}

.sheet-head strong,
.sheet-head b {
  display: block;
  font-size: 22px;
}

.sheet-head b {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: #eef7ff;
  color: var(--blue);
  font-size: 13px;
}

.sheet-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.sheet-metrics div {
  padding: 16px;
  border-radius: var(--radius);
  background: #f5faff;
}

.sheet-metrics b {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.week-chart {
  height: 220px;
  margin-bottom: 0;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f6fbff, #eef7ff);
}

.report-features {
  display: grid;
  gap: 16px;
}

.report-features article {
  padding: 24px;
  box-shadow: none;
}

.launch-section {
  background:
    linear-gradient(135deg, rgba(22, 119, 255, 0.24), transparent 38%),
    #111827;
}

.launch-copy .button {
  margin-top: 14px;
}

.launch-copy .bot-choice {
  width: min(100%, 590px);
  margin-top: 24px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.launch-copy .bot-button,
.channels-section .bot-button,
.final-cta .bot-button {
  justify-content: center;
}

.steps-rail {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 0 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.step span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #b8d7ff;
  font-size: 13px;
  font-weight: 820;
}

.step p {
  margin-bottom: 0;
  color: #b8c4d6;
}

.step.done span {
  background: rgba(17, 166, 118, 0.18);
  color: #87f1d1;
}

.step.active {
  border-color: rgba(120, 180, 255, 0.5);
  background: rgba(22, 119, 255, 0.18);
}

.channels-section {
  background: #fff;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.channels-section .bot-choice {
  width: min(100%, 620px);
}

.channels-grid article {
  display: grid;
  gap: 8px;
  min-height: 130px;
  align-content: center;
  padding: 24px;
  box-shadow: none;
}

.channels-grid b {
  font-size: 24px;
}

.channels-grid span {
  color: var(--muted);
}

.faq-section {
  background: var(--bg);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 22px 24px;
  box-shadow: none;
}

summary {
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 820;
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 780px;
  margin: 14px 0 0;
}

.final-cta {
  padding: 120px 24px;
  background: #fff;
  text-align: center;
}

.final-cta div {
  width: min(760px, 100%);
  margin: 0 auto;
}

.final-cta .button {
  margin-top: 18px;
}

.final-cta .bot-choice {
  margin-top: 22px;
  width: min(100%, 620px);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes floatFast {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes floatMedium {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(12px) rotate(1deg); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .safety-section,
  .launch-section,
  .reports-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-stage {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 620px;
    margin-top: 42px;
  }

  .free-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }

  .phone-shell {
    margin: 0 auto;
  }

  .pain-grid,
  .scenario-board,
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card.large {
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
  }

  .header-links {
    gap: 5px;
    padding: 3px;
  }

  .connect-btn {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 112px 18px 20px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .hero-copy p {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .hero-connect-card {
    margin-top: 26px;
    padding: 10px;
  }

  .connect-card-title {
    display: grid;
    gap: 2px;
  }

  .bot-choice {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .bot-button {
    width: 100%;
    justify-content: flex-start;
  }

  .header-links .connect-btn {
    width: auto;
  }

  .hero-stage {
    min-height: 185px;
    max-height: 185px;
    margin-top: 28px;
    overflow: hidden;
  }

  .phone-shell {
    width: min(320px, 100%);
    min-height: 430px;
  }

  .report-preview {
    display: none;
  }

  .wizard-preview {
    display: none;
  }

  .section-pad {
    padding: 76px 18px;
  }

  .free-section {
    padding: 0 18px 76px;
  }

  .free-panel {
    padding: 24px;
  }

  .pain-section.section-pad {
    padding-top: 16px;
  }

  .scroll-cue {
    display: none;
  }

  .section-title {
    margin-bottom: 28px;
    text-align: left;
  }

  h2 {
    font-size: clamp(32px, 11vw, 42px);
  }

  .sheet-metrics {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    padding: 24px 18px;
  }

  section[id],
  .channels-section,
  .final-cta {
    scroll-margin-top: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
