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

:root {
  --paper: #080b12;
  --paper-strong: #0d1117;
  --paper-soft: #111827;
  --ink: #f4f7fb;
  --text: #d9dee8;
  --muted: #8a93a5;
  --line: rgba(255,255,255,0.1);
  --brand: #f0a500;
  --brand-light: #ffcc44;
  --brand-dark: #d78f13;
  --green: #10b981;
  --blue: #3b82f6;
  --rose: #f05f78;
  --violet: #8b5cf6;
  --charcoal: #0d1117;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(240,165,0,0.08), transparent 34rem),
    var(--paper);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 11, 18, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  color: #090b10;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff;
}

.nav a:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 3px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-quick-links {
  display: none;
}

.channel-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-color: #df9f34;
  color: #17120a;
  box-shadow: 0 12px 28px rgba(244, 178, 74, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(244, 178, 74, 0.34);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 106px 22px 72px;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(420px, 560px);
  justify-content: center;
  align-items: center;
  column-gap: 54px;
  background:
    radial-gradient(circle at 76% 34%, rgba(240,165,0,0.22), transparent 24rem),
    radial-gradient(circle at 12% 82%, rgba(59,130,246,0.12), transparent 22rem),
    linear-gradient(180deg, #0a0d14 0%, #0d1117 58%, #080b12 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.18;
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 600px;
  pointer-events: none;
  opacity: 0.92;
}

.screen {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(13, 17, 23, 0.82);
  box-shadow: 0 36px 100px rgba(0,0,0,0.38);
  backdrop-filter: blur(10px);
}

.screen-dashboard {
  width: min(100%, 520px);
  min-height: 350px;
  right: 0;
  top: 0;
  padding: 18px;
}

.screen-chat {
  width: min(62%, 320px);
  min-height: 398px;
  left: 0;
  top: 168px;
  padding: 16px;
}

.screen-report {
  width: 360px;
  min-height: 230px;
  right: 34px;
  bottom: 0;
  padding: 16px;
  opacity: 0.82;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.38);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.metric {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
}

.metric strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.metric span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
}

.chart {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 16px 4px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.chart i {
  flex: 1;
  min-width: 12px;
  border-radius: 4px 4px 0 0;
  background: var(--brand);
  opacity: 0.8;
}

.mock-bar-48 { height: 48%; }
.mock-bar-54 { height: 54%; }
.mock-bar-62 { height: 62%; }
.mock-bar-70 { height: 70%; }
.mock-bar-74 { height: 74%; }
.mock-bar-84 { height: 84%; }
.mock-bar-92 { height: 92%; }

.chat-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  margin-bottom: 14px;
}

.message {
  padding: 13px;
  border-radius: var(--radius);
  background: rgba(18, 128, 92, 0.16);
  border: 1px solid rgba(18, 128, 92, 0.34);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  margin-bottom: 10px;
}

.message.alt {
  background: rgba(47, 104, 216, 0.16);
  border-color: rgba(47, 104, 216, 0.34);
}

.message b {
  color: #fff;
}

.screen-chat .message {
  opacity: 0;
  transform: translateY(12px);
  animation: chatMessageIn 0.52s ease forwards;
}

.screen-chat .message:nth-of-type(2) {
  animation-delay: 0.55s;
}

.screen-chat .message:nth-of-type(3) {
  animation-delay: 1.1s;
}

.chart i {
  transform-origin: bottom;
  animation: barGrow 0.8s ease forwards;
}

.chart i:nth-child(2) { animation-delay: 0.08s; }
.chart i:nth-child(3) { animation-delay: 0.16s; }
.chart i:nth-child(4) { animation-delay: 0.24s; }
.chart i:nth-child(5) { animation-delay: 0.32s; }
.chart i:nth-child(6) { animation-delay: 0.4s; }
.chart i:nth-child(7) { animation-delay: 0.48s; }

@keyframes chatMessageIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes barGrow {
  from { transform: scaleY(0.18); }
  to { transform: scaleY(1); }
}

.token-security-note {
  margin-top: 14px;
}

.report-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
}

.report-row strong {
  color: #fff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  font-weight: 700;
}

h1 {
  margin: 24px 0 18px;
  max-width: 700px;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.82);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-proof {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.proof-pill {
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

section {
  padding: 86px 22px;
}

.band {
  background: #0b0f17;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.label {
  display: block;
  color: var(--brand-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 10px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.product-shot {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d1117;
}

.demo-panel h3 {
  margin-bottom: 12px;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.demo-tab {
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.demo-tab.is-active,
.demo-tab:focus-visible {
  color: #17120a;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-color: #df9f34;
  outline: none;
}

.demo-chat {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #172033, #0b1020);
}

.demo-chat-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #eef3ff;
  font-weight: 800;
}

.demo-chat-head span:last-child {
  color: #9da8bb;
  font-size: 13px;
  font-weight: 700;
}

.demo-bubble {
  display: grid;
  gap: 7px;
  margin: 18px;
  padding: 16px;
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 18px 18px 18px 6px;
  background: rgba(16,185,129,0.14);
  color: rgba(238,243,255,0.9);
  animation: demoBubbleIn 0.32s ease;
}

.demo-bubble b {
  color: #fff;
  font-size: 18px;
}

.demo-bubble small {
  color: #a8b2c6;
}

@keyframes demoBubbleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02);
}

.card.dark {
  background: var(--charcoal);
  color: rgba(255,255,255,0.82);
  border-color: #333943;
}

.card.dark h3 {
  color: #fff;
}

.card-more {
  margin-top: 16px;
}

.card-more a,
.section-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.card-more a:hover,
.section-link:hover {
  text-decoration: underline;
}

.icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background: var(--blue);
}

.icon.green { background: var(--green); }
.icon.rose { background: var(--rose); }
.icon.violet { background: var(--violet); }
.icon.gold { background: var(--brand-dark); }
.icon.ink { background: #303948; }

.feature-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--green);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper-strong);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #090b10;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  font-weight: 900;
}

.instruction-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  padding: 14px 14px 14px 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: rgba(16, 185, 129, 0.16);
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.plan:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.plan.is-selected {
  background: linear-gradient(180deg, rgba(240, 165, 0, 0.16), rgba(13, 17, 23, 0.96));
  border-color: #d49a33;
  box-shadow: var(--shadow);
  position: relative;
}

.plan:focus-visible {
  outline: 2px solid var(--brand-light);
  outline-offset: 3px;
}

.plan.is-selected .btn {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-color: #df9f34;
  color: #17120a;
  box-shadow: 0 12px 28px rgba(244, 178, 74, 0.24);
}

.plan-kicker {
  min-height: 24px;
  color: var(--brand-light);
  font-size: 12px;
  font-weight: 800;
}

.plan h3 {
  margin-bottom: 4px;
}

.price {
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
  margin: 12px 0 8px;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.plan ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

.plan .btn {
  margin-top: auto;
  width: 100%;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: table;
  font-size: 15px;
}

.comparison th,
.comparison td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #141a24;
  color: var(--ink);
  font-size: 13px;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  list-style: none;
}

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

details p,
details ul {
  padding: 0 20px 18px;
  color: var(--muted);
}

details ul {
  margin: 0;
  padding-left: 38px;
}

.cta-band {
  padding: 72px 22px;
  background: #05070b;
  color: #fff;
}

.cta-box {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.cta-box h2 {
  color: #fff;
}

.cta-box p {
  color: rgba(255,255,255,0.72);
  max-width: 690px;
  margin-top: 12px;
}

footer {
  padding: 34px 22px;
  background: #05070b;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.06);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px 16px;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-quick-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 720px;
    margin: -18px auto 0;
    padding: 0 16px 18px;
  }

  .mobile-quick-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .hero {
    grid-template-columns: minmax(0, 720px);
    justify-content: center;
    row-gap: 36px;
    min-height: auto;
  }

  .hero-inner {
    order: 1;
    min-height: auto;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    max-width: 720px;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-stage {
    order: 2;
    width: min(100%, 620px);
    height: 520px;
    margin: 0 auto;
  }

  .screen-dashboard {
    right: 0;
  }

  .screen-chat {
    left: 0;
  }

  .screen-report {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .grid-3,
  .shot-grid,
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 62px;
    padding: 0 16px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions .btn-primary[href*="max.ru"] {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: 1fr 1fr;
    padding: 0 16px 14px;
  }

  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    min-height: auto;
    padding: 88px 16px 58px;
  }

  .hero-stage {
    inset: auto;
    width: 100%;
    max-width: 390px;
    height: 430px;
    opacity: 0.86;
  }

  .screen-dashboard {
    width: 100%;
    min-height: 285px;
    right: 0;
    top: 0;
  }

  .screen-chat {
    width: 78%;
    min-height: 295px;
    left: 0;
    top: 128px;
  }

  .hero-inner {
    min-height: auto;
    justify-content: flex-start;
  }

  h1 {
    font-size: 30px;
    line-height: 1.16;
  }

  .hero-lead {
    font-size: 16.5px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    font-size: 13px;
  }

  section {
    padding: 64px 18px;
  }

  .section-head,
  .instruction-panel,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .shot-grid,
  .pricing,
  .workflow,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
