:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --bg-elevated: #111317;
  --panel: #15181d;
  --panel-strong: #1a1f25;
  --panel-soft: #12151a;
  --text: #f5f5f3;
  --text-soft: #b0b4bb;
  --text-faint: #777d86;
  --amber: #f2b93b;
  --amber-light: #f7ca64;
  --green: #8bcf74;
  --red: #f06f65;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --amber-line: rgba(242, 185, 59, 0.34);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --amber-shadow: 0 18px 58px rgba(242, 185, 59, 0.11);
  --content: 1240px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--amber);
  color: #16120a;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  font-size: 58px;
  font-weight: 800;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.08;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 70px;
  padding: 10px max(24px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--text-soft);
  font-size: 14px;
}

.desktop-nav a,
footer nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
footer nav a:hover {
  color: var(--amber-light);
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--amber-line);
  background: var(--panel-strong);
  color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: var(--amber-shadow);
}

.button-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 13px;
}

.button-outline {
  border-color: var(--amber-line);
  background: rgba(21, 24, 29, 0.72);
  color: var(--amber-light);
}

.button-primary {
  border-color: var(--amber);
  background: var(--amber);
  color: #15120b;
  box-shadow: 0 12px 35px rgba(242, 185, 59, 0.16);
}

.button-primary:hover {
  border-color: var(--amber-light);
  background: var(--amber-light);
  color: #15120b;
  box-shadow: 0 18px 46px rgba(242, 185, 59, 0.24);
}

.button-full {
  width: 100%;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: 48px;
  width: min(1380px, 100%);
  min-height: calc(100svh - 138px);
  margin: 0 auto;
  padding: 58px 56px 38px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.025);
  border-left: 1px solid rgba(255, 255, 255, 0.025);
}

.hero::before,
.hero::after {
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.hero::before {
  left: 4.5%;
}

.hero::after {
  right: 4.5%;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 610px;
}

.hero h1 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 110px;
  font-weight: 900;
}

.hero-tagline {
  margin-bottom: 28px;
  color: #d2d4d7;
  font-size: 29px;
  font-weight: 650;
  line-height: 1.15;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  margin-bottom: 20px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text-faint);
  font-size: 12px;
}

.hero-note i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
}

.product-stage {
  position: relative;
  z-index: 2;
  min-height: 650px;
}

.stage-contour {
  position: absolute;
  border: 1px solid rgba(242, 185, 59, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.stage-contour-one {
  top: 12px;
  right: -88px;
  width: 650px;
  height: 650px;
}

.stage-contour-two {
  top: 92px;
  right: -8px;
  width: 490px;
  height: 490px;
}

.phone-shell {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 12%;
  width: 318px;
  height: 636px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 45px;
  background: #303238;
  box-shadow: 0 36px 72px rgba(0, 0, 0, 0.54), inset 0 0 0 2px #0a0b0d, 0 0 60px rgba(242, 185, 59, 0.07);
}

.phone-side {
  position: absolute;
  width: 4px;
  border-radius: 3px;
  background: #595b60;
}

.phone-side-left {
  top: 128px;
  left: -5px;
  height: 76px;
}

.phone-side-right {
  top: 164px;
  right: -5px;
  height: 108px;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #0e1115;
  color: #f6f6f4;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.phone-island {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 88px;
  height: 23px;
  border-radius: 14px;
  background: #030405;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 10px 20px 0;
  font-size: 8px;
  font-weight: 800;
}

.phone-status span:last-child {
  color: #d9dbdf;
  font-size: 6px;
}

.phone-chat-head {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.phone-chat-head > div:nth-child(2) {
  display: grid;
}

.phone-chat-head strong {
  font-size: 12px;
}

.phone-chat-head small {
  color: var(--text-faint);
  font-size: 8px;
}

.phone-chat-head button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #1b1f24;
  color: var(--text);
  font-size: 9px;
}

.phone-avatar,
.chat-avatar {
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 185, 59, 0.34);
  border-radius: 50%;
  background: #22262c;
  color: var(--amber);
  font-weight: 850;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.phone-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 13px;
}

.phone-menu span {
  display: grid;
  min-height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 4px;
  background: #1a1e23;
  color: #e6e7e8;
  font-size: 8px;
  font-weight: 700;
}

.phone-menu .phone-menu-wide {
  grid-column: 1 / -1;
}

.phone-report {
  margin: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #15191e;
}

.phone-report-title {
  display: grid;
  gap: 2px;
  padding: 11px 12px 9px;
  border-bottom: 1px solid var(--line);
}

.phone-report-title span,
.phone-report-numbers span,
.phone-report-total span {
  color: var(--text-faint);
  font-size: 8px;
}

.phone-report-title strong {
  font-size: 13px;
}

.phone-report-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.phone-report-numbers div {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
}

.phone-report-numbers div + div {
  border-left: 1px solid var(--line);
}

.phone-report-numbers b {
  font-size: 10px;
}

.phone-report-total {
  display: grid;
  gap: 4px;
  padding: 10px 11px 12px;
}

.phone-report-total strong {
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 48px;
  padding: 0 10px;
  border-top: 1px solid var(--line);
  background: #101318;
  color: var(--text-faint);
  font-size: 7px;
  text-align: center;
}

.phone-nav b {
  color: var(--amber);
  font-size: 15px;
}

.hero-lem {
  position: absolute;
  z-index: 5;
  right: -22px;
  bottom: 12px;
  width: 285px;
  filter: drop-shadow(0 28px 32px rgba(0, 0, 0, 0.44));
}

.floating-message,
.floating-stat {
  position: absolute;
  z-index: 7;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.floating-message {
  top: 84px;
  right: -8px;
  padding: 16px 18px;
  background: var(--amber);
  color: #17130b;
  font-size: 14px;
  font-weight: 800;
}

.floating-message span {
  margin-left: 10px;
  color: #765612;
  font-size: 9px;
}

.floating-stat {
  bottom: 42px;
  left: 0;
  display: grid;
  gap: 3px;
  width: 190px;
  padding: 16px 18px;
  background: rgba(21, 24, 29, 0.96);
}

.floating-stat span,
.floating-stat small {
  color: var(--text-faint);
  font-size: 9px;
}

.floating-stat strong {
  font-size: 20px;
}

.floating-stat small {
  color: var(--green);
}

.capability-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 68px;
  padding: 16px 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0f12;
  color: #d2d4d7;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.capability-strip i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
}

.section-inner {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.product-panel {
  position: relative;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 68px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.product-panel::before {
  position: absolute;
  top: 0;
  left: 68px;
  width: 118px;
  height: 1px;
  background: var(--amber);
  content: "";
}

.section-heading {
  max-width: 640px;
}

.section-heading > p:last-child,
.report-copy > p,
.personality-copy > p,
.pricing-copy > p:last-child {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.how {
  padding: 80px 0 30px;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: 76px;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  color: #d3d5d8;
  font-size: 14px;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
}

.compact-list li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "✓";
}

.chat-demo {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0e1115;
  color: var(--text);
  box-shadow: var(--shadow), 18px 18px 50px rgba(242, 185, 59, 0.04);
}

.chat-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #11151a;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.chat-topbar div:nth-child(2) {
  display: grid;
}

.chat-topbar strong {
  font-size: 15px;
}

.chat-topbar div span {
  color: var(--text-faint);
  font-size: 11px;
}

.chat-status {
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
}

.chat-body {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 30px 18px 20px;
}

.bubble {
  max-width: 82%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
}

.bubble-user {
  align-self: flex-end;
  margin-bottom: 16px;
  border-color: var(--amber);
  background: var(--amber);
  color: #17120a;
  font-weight: 700;
}

.bubble-bot {
  display: grid;
  align-self: flex-start;
  gap: 4px;
  background: #1b2026;
}

.bubble-bot span {
  margin-bottom: 4px;
  color: var(--text-soft);
}

.bubble-bot small {
  margin-bottom: 6px;
  color: var(--amber);
}

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  margin: 0 14px 14px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-faint);
  font-size: 13px;
}

.chat-input b {
  color: var(--amber);
  font-size: 22px;
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.demo-tabs button {
  min-height: 50px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition: background-color 160ms ease, color 160ms ease;
}

.demo-tabs button:last-child {
  border-right: 0;
}

.demo-tabs button.is-active,
.demo-tabs button:hover {
  background: var(--amber);
  color: #17120a;
}

.reports {
  padding: 30px 0 50px;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(560px, 1.35fr);
  align-items: center;
  gap: 64px;
}

.report-copy h2 {
  font-size: 52px;
}

.report-copy > p {
  margin-bottom: 30px;
}

.report-tool {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #12161b;
  box-shadow: var(--shadow);
}

.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.report-head > div {
  display: grid;
  gap: 2px;
}

.report-head span {
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.report-head button {
  min-width: 84px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #1b2026;
  color: var(--text-soft);
  font-size: 11px;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.report-summary > div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.report-summary > div:last-child {
  border-right: 0;
}

.report-summary dt {
  color: var(--text-faint);
  font-size: 10px;
  text-transform: uppercase;
}

.report-summary dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.positive {
  color: var(--green);
}

.negative {
  color: var(--red);
}

.accent-value {
  color: var(--amber-light);
}

.report-bars {
  display: grid;
  gap: 18px;
  padding: 26px 24px;
}

.report-bars > div {
  display: grid;
  grid-template-columns: 132px 1fr 72px 34px;
  align-items: center;
  gap: 12px;
}

.report-bars span,
.report-bars b,
.report-bars small {
  font-size: 11px;
}

.report-bars span i {
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  place-items: center;
  border: 1px solid var(--amber-line);
  border-radius: 50%;
  color: var(--amber);
  font-size: 8px;
  font-style: normal;
}

.report-bars b {
  grid-column: 3;
  text-align: right;
}

.report-bars small {
  grid-column: 4;
  color: var(--text-faint);
  text-align: right;
}

.report-bars em {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  height: 5px;
  overflow: hidden;
  border-radius: 2px;
  background: #2a3037;
}

.report-bars em::after {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--amber);
  content: "";
}

.report-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 10px;
}

.report-footer strong {
  color: var(--amber);
  font-size: 10px;
}

.features {
  padding: 44px 0 70px;
}

.section-heading-wide {
  max-width: 820px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.feature-card {
  min-height: 270px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.16);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: var(--amber-line);
  background: var(--panel-strong);
  transform: translateY(-5px);
  box-shadow: var(--amber-shadow);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  place-items: center;
  border: 1px solid var(--amber-line);
  border-radius: 50%;
  background: #1a1e22;
  color: var(--amber);
  font-size: 23px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.personality-section {
  padding: 24px 0 40px;
}

.personality-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 58px;
  min-height: 310px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.personality-visual {
  position: relative;
  align-self: end;
  height: 240px;
}

.personality-visual img {
  position: absolute;
  z-index: 2;
  bottom: -44px;
  left: -10px;
  width: 230px;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.4));
}

.personality-line {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--amber-line);
}

.personality-copy h2 {
  margin-bottom: 18px;
  font-size: 42px;
}

.personality-copy p:last-child {
  margin-bottom: 0;
}

.personality-layout blockquote {
  position: relative;
  margin: 0;
  padding-left: 48px;
  color: #d7d9dc;
  font-size: 17px;
  font-weight: 620;
  line-height: 1.55;
}

.personality-layout blockquote > span {
  position: absolute;
  top: -24px;
  left: 0;
  color: var(--amber);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.pricing {
  padding: 24px 0 40px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.9fr);
  align-items: center;
  gap: 86px;
}

.pricing-copy {
  max-width: 610px;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1.2fr);
  gap: 0 26px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.price-main {
  display: grid;
  align-content: start;
  gap: 2px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.price-main span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 750;
}

.price-main strong {
  margin-top: 6px;
  font-size: 58px;
  line-height: 1;
}

.price-main small {
  color: var(--text-faint);
  font-size: 10px;
}

.price-panel ul {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 2px 0 22px;
  color: #d6d8db;
  font-size: 12px;
  list-style: none;
}

.price-panel li::before {
  margin-right: 8px;
  color: var(--amber);
  content: "✓";
}

.price-panel .button {
  grid-column: 1 / -1;
}

.price-panel > p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: var(--text-faint);
  font-size: 10px;
  text-align: center;
}

.faq {
  padding: 24px 0 40px;
}

.faq-layout {
  padding-top: 44px;
  padding-bottom: 44px;
}

.faq-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}

.faq-heading h2 {
  margin-bottom: 0;
  font-size: 46px;
}

.faq-heading .eyebrow {
  margin-bottom: 8px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101318;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 18px 48px 16px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 15px;
  right: 18px;
  color: var(--amber);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  content: "+";
}

.faq-list details[open] {
  border-color: var(--amber-line);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 600px;
  margin: 0;
  padding: 0 18px 20px;
  color: var(--text-soft);
  font-size: 13px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 180px;
  align-items: center;
  gap: 40px;
  width: min(var(--content), calc(100% - 48px));
  min-height: 210px;
  margin: 42px auto 22px;
  padding: 38px 46px;
  overflow: hidden;
  border: 1px solid var(--amber-line);
  border-radius: var(--radius);
  background: #14171b;
  box-shadow: var(--amber-shadow);
}

.final-cta::after {
  position: absolute;
  right: 70px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  border: 1px solid var(--amber-line);
  border-radius: 50%;
  content: "";
}

.final-cta-copy {
  position: relative;
  z-index: 2;
}

.final-cta .eyebrow {
  margin-bottom: 10px;
}

.final-cta h2 {
  margin-bottom: 8px;
  font-size: 44px;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 14px;
}

.final-cta .button {
  position: relative;
  z-index: 3;
  min-width: 270px;
}

.final-cta img {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: -42px;
  width: 190px;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.36));
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(var(--content), calc(100% - 48px));
  min-height: 126px;
  margin: 0 auto;
  color: var(--text-faint);
  font-size: 11px;
}

.footer-brand {
  color: var(--text);
  font-size: 17px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

footer p {
  margin: 0;
}

footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

footer small {
  grid-column: 1 / -1;
  margin-top: -28px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  h2 {
    font-size: 50px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 20px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero h1 {
    font-size: 92px;
  }

  .phone-shell {
    left: 7%;
  }

  .hero-lem {
    right: -40px;
    width: 250px;
  }

  .floating-message {
    right: -28px;
  }

  .how-layout,
  .report-layout,
  .pricing-layout {
    gap: 48px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .personality-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .personality-layout blockquote {
    grid-column: 2;
  }
}

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

  .site-header {
    grid-template-columns: 1fr auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 28px 20px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .product-stage {
    min-height: 660px;
  }

  .phone-shell {
    left: calc(50% - 230px);
  }

  .hero-lem {
    right: calc(50% - 310px);
  }

  .floating-message {
    right: calc(50% - 330px);
  }

  .floating-stat {
    left: calc(50% - 330px);
  }

  .stage-contour-one {
    right: calc(50% - 380px);
  }

  .stage-contour-two {
    right: calc(50% - 300px);
  }

  .product-panel {
    padding: 52px;
  }

  .how-layout,
  .report-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chat-demo,
  .report-tool,
  .price-panel {
    width: min(650px, 100%);
    justify-self: center;
  }

  .personality-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 36px;
  }

  .personality-visual img {
    width: 205px;
  }

  .personality-copy h2 {
    font-size: 38px;
  }

  .final-cta {
    grid-template-columns: 1fr auto;
    padding-right: 180px;
  }

  .final-cta img {
    right: -6px;
  }

  footer {
    grid-template-columns: auto 1fr;
    padding: 26px 0 50px;
  }

  footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  footer small {
    margin-top: 0;
  }
}

@media (max-width: 660px) {
  body {
    font-size: 16px;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 38px;
  }

  h3 {
    font-size: 21px;
  }

  .site-header {
    min-height: 62px;
  }

  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .site-header > .button {
    min-height: 38px;
    padding: 0 11px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero {
    padding: 34px 18px 0;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero-tagline {
    margin-bottom: 18px;
    font-size: 23px;
  }

  .hero-text {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .hero-actions {
    margin-bottom: 14px;
  }

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

  .hero-note {
    justify-content: center;
  }

  .product-stage {
    min-height: 278px;
    margin-top: 14px;
    overflow: hidden;
  }

  .phone-shell {
    top: 0;
    left: calc(50% - 108px);
    width: 216px;
    height: 430px;
    padding: 7px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 25px;
  }

  .phone-menu {
    gap: 3px;
    padding: 9px;
  }

  .phone-menu span {
    min-height: 29px;
    font-size: 7px;
  }

  .phone-report {
    margin: 0 9px;
  }

  .phone-report-title {
    padding: 8px 9px 7px;
  }

  .phone-report-numbers div,
  .phone-report-total {
    padding: 7px 8px;
  }

  .phone-nav {
    height: 40px;
  }

  .hero-lem {
    right: -22px;
    bottom: -2px;
    width: 138px;
  }

  .floating-message {
    top: 52px;
    right: 0;
    max-width: 184px;
    padding: 11px 12px;
    font-size: 10px;
  }

  .floating-message span {
    display: none;
  }

  .floating-stat {
    bottom: 14px;
    left: 0;
    width: 138px;
    padding: 12px;
  }

  .floating-stat strong {
    font-size: 16px;
  }

  .stage-contour-one {
    top: -20px;
    right: calc(50% - 215px);
    width: 390px;
    height: 390px;
  }

  .stage-contour-two {
    top: 42px;
    right: calc(50% - 160px);
    width: 280px;
    height: 280px;
  }

  .capability-strip {
    justify-content: flex-start;
    gap: 18px;
    min-height: 58px;
    padding-right: 18px;
    padding-left: 18px;
    overflow-x: auto;
    font-size: 12px;
    scrollbar-width: none;
  }

  .capability-strip::-webkit-scrollbar {
    display: none;
  }

  .section-inner {
    width: min(100% - 30px, var(--content));
    padding: 72px 0;
  }

  .product-panel {
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 38px 22px;
  }

  .product-panel::before {
    left: 22px;
    width: 86px;
  }

  .section-heading > p:last-child,
  .report-copy > p,
  .personality-copy > p,
  .pricing-copy > p:last-child {
    font-size: 16px;
  }

  .how {
    padding: 52px 0 14px;
  }

  .how-layout,
  .report-layout,
  .pricing-layout {
    gap: 38px;
  }

  .chat-body {
    min-height: 330px;
    padding: 24px 13px 17px;
  }

  .bubble {
    max-width: 91%;
    font-size: 13px;
  }

  .demo-tabs button {
    min-height: 48px;
    font-size: 12px;
  }

  .reports {
    padding: 10px 0 20px;
  }

  .report-copy h2 {
    font-size: 38px;
  }

  .report-head {
    min-height: 80px;
    padding: 16px;
  }

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

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

  .report-summary > div {
    padding: 15px;
  }

  .report-summary > div:nth-child(2) {
    border-right: 0;
  }

  .report-summary > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .report-bars {
    gap: 21px;
    padding: 22px 16px;
  }

  .report-bars > div {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .report-bars span {
    grid-column: 1;
  }

  .report-bars b {
    grid-column: 2;
  }

  .report-bars em {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .report-bars small {
    display: none;
  }

  .features {
    padding: 30px 0 46px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .feature-card {
    min-height: 190px;
    padding: 22px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 28px;
    font-size: 20px;
  }

  .personality-section {
    padding: 8px 0 18px;
  }

  .personality-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 34px;
  }

  .personality-visual {
    order: 2;
    height: 190px;
  }

  .personality-visual img {
    right: 0;
    bottom: -34px;
    left: auto;
    width: 195px;
  }

  .personality-copy h2 {
    font-size: 36px;
  }

  .personality-layout blockquote {
    grid-column: auto;
    grid-row: 2;
    padding-left: 40px;
    font-size: 16px;
  }

  .pricing {
    padding: 8px 0 18px;
  }

  .price-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .price-main {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .price-main strong {
    font-size: 54px;
  }

  .price-panel ul {
    padding-top: 20px;
  }

  .faq {
    padding: 8px 0 18px;
  }

  .faq-heading {
    display: block;
  }

  .faq-heading h2 {
    font-size: 36px;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 30px);
    min-height: 410px;
    margin-top: 28px;
    padding: 36px 22px 185px;
    text-align: left;
  }

  .final-cta h2 {
    font-size: 38px;
  }

  .final-cta .button {
    width: 100%;
    min-width: 0;
  }

  .final-cta img {
    right: 18px;
    bottom: -35px;
    width: 195px;
  }

  footer {
    grid-template-columns: 1fr;
    width: calc(100% - 34px);
    gap: 16px;
    padding: 34px 0 42px;
  }

  footer nav {
    display: grid;
    grid-column: auto;
    gap: 10px;
  }

  footer small {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .site-header > .button {
    width: 86px;
    padding: 0 8px;
    font-size: 0;
  }

  .site-header > .button::after {
    font-size: 11px;
    content: "Открыть";
  }

  .site-header > .button span {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .hero-tagline {
    font-size: 21px;
  }

  .floating-message {
    right: 0;
  }

  .floating-stat {
    left: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
