:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-soft: #0d0d10;
  --surface: #151517;
  --surface-2: #1d1d20;
  --surface-3: #242428;
  --surface-warm: #1c1713;
  --text: #f6f4f0;
  --text-soft: #a4a3aa;
  --text-faint: #8d8b92;
  --accent: #ff6f00;
  --accent-light: #ff9a45;
  --accent-pale: #ffc38f;
  --amber: #ffb928;
  --success: #45d469;
  --danger: #ff635c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent-line: rgba(255, 111, 0, 0.38);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 64px rgba(0, 0, 0, 0.28);
  --content: 1240px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 17px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 4%, rgba(255, 111, 0, 0.1), transparent 23rem),
    radial-gradient(circle at 10% 38%, rgba(255, 185, 40, 0.04), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #060607 100%);
  color: var(--text);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--accent);
  color: #160a02;
}

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.045em;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 860;
  line-height: 0.99;
}

h3 {
  margin-bottom: 13px;
  font-size: 26px;
  font-weight: 820;
  line-height: 1.08;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.42));
}

.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(--accent-light);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(21, 21, 23, 0.88);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  border-color: var(--accent-line);
  color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.button:focus-visible,
.text-link:focus-visible,
.tour-tabs button:focus-visible,
.demo-tabs button:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(255, 154, 69, 0.58);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 13px;
}

.button-outline {
  border-color: var(--accent-line);
  background: rgba(17, 17, 19, 0.76);
}

.button-primary {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  color: #190b02;
  box-shadow: 0 18px 54px rgba(255, 111, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-primary:hover {
  border-color: var(--accent-light);
  color: #190b02;
  filter: brightness(1.04);
  box-shadow: 0 24px 66px rgba(255, 111, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 19px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 111, 0, 0.12);
}

.section {
  position: relative;
  padding: 126px 24px;
}

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

.section-heading {
  max-width: 840px;
  margin-bottom: 58px;
}

.section-heading > p:last-child,
.tour-copy > p:last-child,
.pricing-copy > p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 19px;
}

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

/* Hero */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(620px, 1.1fr);
  align-items: center;
  gap: 34px;
  width: min(1400px, 100%);
  min-height: 820px;
  margin: 0 auto;
  padding: 76px 56px 64px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 4%;
  z-index: -2;
  border-right: 1px solid rgba(255, 255, 255, 0.035);
  border-left: 1px solid rgba(255, 255, 255, 0.035);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -10%;
  width: 74%;
  height: 120%;
  background:
    radial-gradient(ellipse at center, rgba(255, 111, 0, 0.16), rgba(255, 111, 0, 0.03) 42%, transparent 68%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: 650px;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(66px, 6.5vw, 102px);
  font-weight: 900;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--accent-light);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #c4c2c6;
  font-size: 20px;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--text);
}

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

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 555px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  gap: 1px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.hero-facts span {
  color: var(--text-faint);
  font-size: 11px;
}

.hero-product {
  position: relative;
  min-height: 710px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 1% -5% 3% 4%;
  z-index: -3;
  border-radius: 50%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
  transform: perspective(620px) rotateX(62deg) translateY(135px);
}

.hero-product::before,
.hero-product::after {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  content: "";
}

.hero-product::before {
  top: 17px;
  right: 0;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(255, 111, 0, 0.2);
}

.hero-product::after {
  right: 46px;
  bottom: 2px;
  width: 500px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(255, 111, 0, 0.18), rgba(0, 0, 0, 0.32) 55%, transparent 74%);
  filter: blur(8px);
}

.phone {
  position: absolute;
  z-index: 5;
  width: 330px;
  height: 672px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.43);
  border-radius: 49px;
  background: linear-gradient(145deg, #5a5b60, #17171a 35%, #303034 74%, #08080a);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.56), inset 0 0 0 2px #050506, 0 0 72px rgba(255, 111, 0, 0.08);
}

.phone-hero {
  top: 10px;
  right: 40px;
  transform: rotate(1.25deg);
}

.phone-hardware {
  position: absolute;
  z-index: 10;
  top: 17px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 14px;
  background: #020203;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: #0b0b0d;
  color: #f4f4f6;
}

.phone-screen::after {
  position: absolute;
  inset: 0;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.018);
  pointer-events: none;
  content: "";
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 10px 19px 0;
  color: #e7e7e9;
  font-size: 8px;
  font-weight: 850;
}

.app-status span:last-child {
  font-size: 6px;
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 16px;
}

.app-topbar > div {
  display: grid;
  gap: 1px;
}

.app-topbar strong {
  font-size: 13px;
}

.app-topbar span {
  color: #898990;
  font-size: 8px;
}

.app-topbar img {
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255, 111, 0, 0.34);
  border-radius: 50%;
  background: #1d1d20;
  object-fit: contain;
}

.app-scroll {
  padding: 4px 14px 68px;
}

.mini-balance {
  position: relative;
  padding: 18px 16px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 111, 0, 0.2), transparent 40%),
    linear-gradient(145deg, #1e1e22, #151517);
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.2);
}

.mini-balance__label {
  display: block;
  margin-bottom: 1px;
  color: #85858c;
  font-size: 8px;
}

.mini-balance > strong {
  display: block;
  font-size: 31px;
  font-weight: 860;
  letter-spacing: -0.055em;
}

.mini-balance > small {
  display: block;
  margin-top: -2px;
  color: #8d8d94;
  font-size: 7px;
}

.mini-balance > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 15px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-balance > div span {
  display: grid;
  gap: 1px;
  color: #77777e;
  font-size: 7px;
}

.mini-balance b {
  font-size: 9px;
}

.is-positive,
.positive {
  color: var(--success) !important;
}

.is-negative {
  color: #f3f2ef;
}

.mini-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 38px;
  margin: 9px 0;
  border-radius: 13px;
  background: linear-gradient(180deg, #ff872d, #ff6f00);
  color: #1c0b02;
  font-size: 10px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.18);
}

.mini-lem-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 106px;
  align-items: center;
  min-height: 116px;
  padding: 12px 8px 9px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 18px;
  background: linear-gradient(135deg, #171719, #202023);
}

.mini-lem-card p {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.28;
}

.mini-lem-card small {
  color: #77777e;
  font-size: 7px;
}

.mini-lem-card img {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 113px;
}

.mini-section-head {
  display: flex;
  justify-content: space-between;
  padding: 13px 3px 6px;
  font-size: 9px;
}

.mini-section-head span {
  color: var(--accent-light);
}

.mini-transaction {
  display: grid;
  grid-template-columns: 29px 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 45px;
  margin-top: 5px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: #171719;
}

.mini-transaction i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: #252529;
  color: var(--accent-light);
  font-size: 10px;
  font-style: normal;
}

.mini-transaction div {
  display: grid;
}

.mini-transaction strong,
.mini-transaction > b {
  font-size: 8px;
}

.mini-transaction span {
  color: #77777e;
  font-size: 6px;
}

.app-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  height: 61px;
  padding: 4px 8px 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 15, 17, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.app-nav span {
  display: grid;
  justify-items: center;
  gap: 1px;
  color: #77777e;
  font-size: 5px;
  font-weight: 700;
}

.app-nav b {
  font-size: 11px;
}

.app-nav .is-active {
  color: var(--accent-light);
}

.chat-float {
  position: absolute;
  z-index: 8;
  top: 118px;
  left: 0;
  width: 280px;
  padding: 13px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(22, 22, 25, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transform: rotate(-2.1deg);
}

.chat-float__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1px 2px 10px;
}

.chat-float__head img {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 111, 0, 0.3);
  border-radius: 50%;
  background: #232326;
}

.chat-float__head div {
  display: grid;
}

.chat-float__head strong {
  font-size: 11px;
}

.chat-float__head span {
  color: var(--text-faint);
  font-size: 7px;
}

.chat-float__body {
  display: grid;
  gap: 7px;
}

.message-user,
.message-bot {
  position: relative;
  width: 81%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 13px;
  font-size: 9px;
  line-height: 1.35;
}

.message-user {
  justify-self: end;
  border-bottom-right-radius: 4px;
  background: #bd5a12;
}

.message-user small {
  float: right;
  margin: 4px 0 -4px 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 6px;
}

.message-bot {
  display: grid;
  gap: 2px;
  border-bottom-left-radius: 4px;
  background: #2a2a2e;
}

.message-bot span,
.message-bot small {
  color: #aaaab0;
  font-size: 7px;
}

.message-bot strong {
  font-size: 11px;
}

.sync-pill {
  position: absolute;
  z-index: 12;
  top: 334px;
  left: 177px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(69, 212, 105, 0.26);
  border-radius: 999px;
  background: rgba(14, 25, 17, 0.94);
  color: #bfeac9;
  font-size: 9px;
  font-weight: 780;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.sync-pill span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: #061108;
  font-size: 10px;
}

.hero-lem {
  position: absolute;
  z-index: 10;
  bottom: -24px;
  left: -20px;
  width: 330px;
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.flow-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 82px;
  padding: 18px 24px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101012;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.flow-rail span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.flow-rail b {
  color: var(--accent);
  font-size: 17px;
}

/* Two modes */

.two-modes {
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 111, 0, 0.06), transparent 26rem),
    var(--bg-soft);
}

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

.mode-card {
  position: relative;
  min-height: 580px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #19191c, #121214);
  box-shadow: var(--shadow-soft);
}

.mode-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.08);
  filter: blur(5px);
  content: "";
}

.mode-card__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 65px;
}

.mode-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.mode-badge {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
}

.mode-card > h3,
.mode-card > p {
  position: relative;
  max-width: 530px;
}

.mode-card > h3 {
  font-size: 42px;
}

.mode-card > p {
  color: var(--text-soft);
}

.chat-demo {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 21px;
  background: #0e0e10;
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: #1a1a1d;
}

.demo-tabs button {
  min-height: 34px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.demo-tabs button.is-active {
  background: var(--surface-3);
  color: var(--accent-light);
}

.demo-thread {
  display: grid;
  gap: 9px;
  min-height: 155px;
  padding: 20px 4px 4px;
}

.demo-user,
.demo-bot {
  max-width: 72%;
  padding: 11px 13px;
  border-radius: 15px;
  font-size: 12px;
}

.demo-user {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: #b75410;
}

.demo-bot {
  display: grid;
  gap: 2px;
  border-bottom-left-radius: 5px;
  background: #242427;
}

.demo-bot span,
.demo-bot small {
  color: var(--text-soft);
  font-size: 9px;
}

.demo-bot strong {
  font-size: 13px;
}

.app-feature-list {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--line);
}

.app-feature-list div {
  display: grid;
  gap: 2px;
  min-height: 104px;
  padding: 20px;
  background: #131315;
}

.app-feature-list span {
  color: var(--text);
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.app-feature-list div:first-child span,
.app-feature-list div:nth-child(3) span {
  color: var(--accent-light);
}

.app-feature-list small {
  color: var(--text-faint);
  font-size: 10px;
}

/* Product tour */

.miniapp-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 111, 0, 0.035), transparent 24rem),
    #080809;
}

.tour-copy {
  max-width: 820px;
  margin-bottom: 58px;
}

.product-tour {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 14px;
  min-height: 720px;
}

.tour-tabs {
  display: grid;
  align-content: start;
  gap: 10px;
}

.tour-tabs button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 10px;
  width: 100%;
  min-height: 112px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(21, 21, 23, 0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.tour-tabs button:hover {
  border-color: var(--line-strong);
  transform: translateX(3px);
}

.tour-tabs button.is-active {
  border-color: var(--accent-line);
  background: linear-gradient(145deg, rgba(255, 111, 0, 0.13), rgba(21, 21, 23, 0.96));
}

.tour-tabs button > span {
  grid-row: 1 / span 2;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.tour-tabs b {
  font-size: 17px;
}

.tour-tabs small {
  color: var(--text-faint);
  font-size: 10px;
  line-height: 1.35;
}

.tour-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 111, 0, 0.09), transparent 25rem),
    #111113;
  box-shadow: var(--shadow);
}

.tour-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 43px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.tour-window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #36363b;
}

.tour-window-bar i:first-child {
  background: var(--accent);
}

.tour-window-bar span {
  margin-left: 8px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(390px, 1.08fr);
  align-items: center;
  gap: 48px;
  min-height: 675px;
  padding: 48px;
  animation: panel-in 360ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tour-panel__copy {
  max-width: 440px;
}

.tour-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 11px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-panel__copy h3 {
  margin-bottom: 20px;
  font-size: clamp(36px, 3.2vw, 52px);
  line-height: 0.99;
}

.tour-panel__copy > p {
  margin-bottom: 28px;
  color: var(--text-soft);
}

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

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #d0cfd2;
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 0.07em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 111, 0, 0.14);
  color: var(--accent-light);
  font-size: 9px;
  font-weight: 900;
  content: "✓";
}

.screen-mock {
  width: 100%;
  max-width: 410px;
  min-height: 575px;
  justify-self: end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 31px;
  background: #0b0b0d;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.48), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.mock-top,
.mock-page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 53px;
}

.mock-top > div,
.mock-page-title > div {
  display: grid;
  gap: 1px;
}

.mock-top strong,
.mock-page-title strong {
  font-size: 16px;
}

.mock-top small,
.mock-page-title small {
  color: var(--text-faint);
  font-size: 9px;
}

.mock-top img {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 111, 0, 0.32);
  border-radius: 50%;
  background: #202024;
}

.mock-balance {
  margin-top: 8px;
  padding: 24px 21px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 23px;
  background:
    radial-gradient(circle at 90% 0, rgba(255, 111, 0, 0.18), transparent 44%),
    linear-gradient(145deg, #1e1e21, #151517);
}

.mock-balance > small,
.mock-balance > span {
  display: block;
  color: var(--text-faint);
  font-size: 9px;
}

.mock-balance > strong {
  display: block;
  margin: 1px 0 -2px;
  font-size: 43px;
  font-weight: 880;
  letter-spacing: -0.06em;
}

.mock-balance > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.mock-balance > div b {
  display: grid;
  gap: 2px;
  color: var(--success);
  font-size: 12px;
}

.mock-balance > div b:last-child {
  color: #f1efed;
}

.mock-balance > div small {
  color: var(--text-faint);
  font-size: 8px;
  font-weight: 500;
}

.mock-action {
  display: grid;
  min-height: 48px;
  margin: 11px 0;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(180deg, #ff8730, #ff6f00);
  color: #180a02;
  font-size: 12px;
  font-weight: 850;
}

.mock-operations > span,
.mock-ranking > span {
  display: flex;
  justify-content: space-between;
  margin: 17px 0 8px;
  font-size: 11px;
  font-weight: 800;
}

.mock-operations > span b {
  color: var(--accent-light);
  font-size: 9px;
}

.mock-operations > div {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 57px;
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #161618;
}

.mock-operations i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 12px;
  background: #252529;
  color: var(--accent-light);
  font-size: 13px;
  font-style: normal;
}

.mock-operations p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.mock-operations strong,
.mock-operations > div > b {
  font-size: 10px;
}

.mock-operations small {
  color: var(--text-faint);
  font-size: 8px;
}

.mock-page-title > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--accent-light);
  font-size: 12px;
}

.mock-segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 10px;
  padding: 4px;
  border-radius: 13px;
  background: #1a1a1d;
}

.mock-segment span {
  padding: 8px 3px;
  border-radius: 10px;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 780;
  text-align: center;
}

.mock-segment .is-active {
  background: #2a2a2e;
  color: var(--text);
}

.mock-periods {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.mock-periods span {
  flex: 1;
  padding: 7px 2px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-faint);
  font-size: 7px;
  font-weight: 750;
  text-align: center;
}

.mock-periods .is-active {
  border-color: var(--accent-line);
  background: rgba(255, 111, 0, 0.12);
  color: var(--accent-light);
}

.mock-report-total {
  display: grid;
  gap: 2px;
  margin-top: 19px;
}

.mock-report-total small,
.mock-report-total span {
  color: var(--text-faint);
  font-size: 9px;
}

.mock-report-total strong {
  color: #f1efed;
  font-size: 36px;
  letter-spacing: -0.055em;
}

.mock-report-total span {
  color: var(--success);
}

.mock-chart {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 112px;
  margin-top: 19px;
  padding: 13px 10px 0;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to top, transparent 0 27px, rgba(255, 255, 255, 0.035) 28px);
}

.mock-chart i {
  flex: 1;
  height: var(--h);
  min-height: 4px;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, var(--accent-light), rgba(255, 111, 0, 0.36));
  opacity: 0.85;
}

.mock-chart i:nth-child(10) {
  background: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(255, 111, 0, 0.12);
}

.mock-ranking > div {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.mock-ranking > div > b {
  color: var(--text-faint);
  font-size: 8px;
}

.mock-ranking p {
  position: relative;
  display: grid;
  gap: 5px;
  margin: 0;
  color: #c8c7ca;
  font-size: 9px;
}

.mock-ranking p i {
  display: block;
  width: var(--w);
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  font-style: normal;
}

.mock-ranking strong {
  font-size: 9px;
}

.plan-summary {
  display: grid;
  gap: 4px;
  margin: 11px 0 16px;
  padding: 18px;
  border: 1px solid var(--accent-line);
  border-radius: 18px;
  background: rgba(255, 111, 0, 0.085);
}

.plan-summary strong {
  font-size: 20px;
}

.plan-summary span {
  color: var(--text-soft);
  font-size: 9px;
}

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

.plan-grid > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 76px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #171719;
}

.plan-grid i {
  grid-row: 1 / span 2;
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 11px;
  background: #252529;
  color: var(--accent-light);
  font-size: 13px;
  font-style: normal;
}

.plan-grid strong {
  font-size: 10px;
}

.plan-grid span {
  color: var(--text-faint);
  font-size: 8px;
}

.plan-grid .plan-wide {
  grid-column: 1 / -1;
}

/* Steps */

.steps-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101012;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #131315;
  list-style: none;
}

.steps-grid li {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.steps-grid li:first-child {
  border-left: 0;
}

.steps-grid li::after {
  position: absolute;
  right: -35px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 190px;
  font-weight: 900;
  line-height: 1;
  content: attr(data-number);
}

.steps-grid li > span {
  display: inline-flex;
  margin-bottom: 74px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.steps-grid h3 {
  font-size: 31px;
}

.steps-grid p {
  max-width: 310px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
}

/* Features */

.features-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 111, 0, 0.05), transparent 24rem),
    var(--bg-soft);
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: linear-gradient(145deg, #19191c, #121214);
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.feature-card--accent {
  border-color: var(--accent-line);
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 111, 0, 0.18), transparent 56%),
    linear-gradient(145deg, #211813, #121214);
}

.feature-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(255, 111, 0, 0.2);
  border-radius: 14px;
  background: rgba(255, 111, 0, 0.09);
  color: var(--accent-light);
  font-size: 19px;
  font-weight: 700;
}

.feature-card h3 {
  font-size: 25px;
}

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

.feature-card small {
  margin-top: auto;
  color: var(--text-faint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card--image {
  display: grid;
  grid-template-columns: 1fr 120px;
  align-items: end;
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 111, 0, 0.11), transparent 45%),
    linear-gradient(145deg, #19191c, #121214);
}

.feature-card--image .feature-icon {
  margin-bottom: 25px;
}

.feature-card--image img {
  position: absolute;
  right: -3px;
  bottom: -6px;
  width: 185px;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.4));
}

.feature-card--image > div {
  position: relative;
  z-index: 2;
  max-width: 310px;
}

/* Personality */

.personality-section {
  overflow: hidden;
  background: #080809;
}

.personality-frame {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 650px;
  padding: 58px 70px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(122deg, rgba(255, 111, 0, 0.08), transparent 36%),
    #131315;
}

.personality-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
}

.personality-copy h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.personality-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--text-soft);
}

.personality-copy blockquote {
  max-width: 570px;
  margin: 38px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.035);
  color: #d4d2d5;
  font-size: 14px;
}

.personality-visual {
  position: relative;
  align-self: stretch;
}

.personality-visual::before {
  position: absolute;
  top: 10%;
  right: -16%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 111, 0, 0.2);
  border-radius: 50%;
  content: "";
}

.personality-visual img {
  position: absolute;
  z-index: 2;
  right: -58px;
  bottom: -150px;
  width: 580px;
  filter: drop-shadow(0 44px 46px rgba(0, 0, 0, 0.48));
}

.personality-visual span {
  position: absolute;
  z-index: 4;
  top: 96px;
  right: 0;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(22, 22, 25, 0.88);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: rotate(3deg);
}

/* Pricing */

.pricing-section {
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 111, 0, 0.07), transparent 28rem),
    #101012;
}

.pricing-frame {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.pricing-copy h2 {
  max-width: 650px;
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: #cfced1;
  font-size: 13px;
  font-weight: 750;
}

.pricing-note span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(69, 212, 105, 0.13);
  color: var(--success);
  font-size: 10px;
}

.price-card {
  position: relative;
  max-width: 500px;
  justify-self: end;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--accent-line);
  border-radius: 29px;
  background:
    radial-gradient(circle at 86% 5%, rgba(255, 111, 0, 0.18), transparent 45%),
    linear-gradient(150deg, #1c1816, #141416);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.price-card__top {
  display: grid;
  gap: 2px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

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

.price-card__top strong {
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price-card__top small {
  color: var(--accent-light);
  font-size: 11px;
}

.price-card .check-list {
  margin: 27px 0;
}

.price-card > p {
  margin: 13px 0 0;
  color: var(--text-faint);
  font-size: 10px;
  text-align: center;
}

/* FAQ */

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.faq-heading {
  position: relative;
  min-height: 620px;
}

.faq-heading h2 {
  font-size: clamp(48px, 5vw, 66px);
}

.faq-heading img {
  position: absolute;
  bottom: -70px;
  left: -30px;
  width: 340px;
  filter: drop-shadow(0 34px 36px rgba(0, 0, 0, 0.45));
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 18px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-list details[open] summary span {
  background: rgba(255, 111, 0, 0.11);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 58px 28px 0;
  color: var(--text-soft);
  font-size: 15px;
}

/* Final CTA and footer */

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  min-height: 670px;
  padding: 82px max(40px, calc((100vw - var(--content)) / 2));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 111, 0, 0.19), transparent 28rem),
    #080809;
  isolation: isolate;
}

.final-copy {
  position: relative;
  z-index: 5;
  max-width: 780px;
}

.final-copy h2 {
  margin-bottom: 25px;
  font-size: clamp(62px, 7vw, 94px);
  line-height: 0.91;
}

.final-copy > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: var(--text-soft);
  font-size: 18px;
}

.final-cta > img {
  position: absolute;
  z-index: 2;
  right: max(-90px, calc((100vw - var(--content)) / 2 - 120px));
  bottom: -150px;
  width: 690px;
  filter: drop-shadow(0 42px 48px rgba(0, 0, 0, 0.48));
}

.final-orbit {
  position: absolute;
  z-index: -1;
  right: max(-50px, calc((100vw - var(--content)) / 2 - 90px));
  bottom: 30px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 111, 0, 0.22);
  border-radius: 50%;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 44px;
  padding: 50px max(24px, calc((100vw - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: #060607;
}

.footer-main p {
  max-width: 400px;
  margin: 17px 0 0;
  color: var(--text-faint);
  font-size: 12px;
}

footer nav {
  display: grid;
  gap: 7px;
  color: var(--text-soft);
  font-size: 11px;
}

footer > small {
  color: var(--text-faint);
  font-size: 10px;
  white-space: nowrap;
}

.mobile-cta {
  display: none;
}

/* Scroll reveal */

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

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

/* Responsive */

@media (max-width: 1240px) {
  .hero {
    grid-template-columns: minmax(400px, 0.9fr) minmax(540px, 1.1fr);
    gap: 18px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .hero h1 {
    font-size: clamp(64px, 7vw, 88px);
  }

  .phone-hero {
    right: 6px;
  }

  .chat-float {
    left: -18px;
  }

  .hero-lem {
    left: -36px;
    width: 305px;
  }

  .product-tour {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .tour-panel {
    gap: 34px;
    padding: 38px;
  }

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

  .feature-card--image {
    grid-column: span 1;
  }

  .feature-card--image img {
    width: 150px;
    opacity: 0.78;
  }
}

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

  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
  }

  .hero-copy {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }

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

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-facts {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-product {
    width: 650px;
    max-width: 100%;
    margin: 28px auto 0;
  }

  .phone-hero {
    right: 46px;
  }

  .chat-float {
    left: 6px;
  }

  .hero-lem {
    left: -4px;
  }

  .product-tour {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tour-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .tour-tabs button {
    min-height: 100px;
  }

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

  .tour-panel {
    min-height: 660px;
  }

  .mode-card > h3 {
    font-size: 36px;
  }

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

  .feature-card--image {
    grid-column: span 2;
  }

  .personality-frame {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .personality-visual {
    min-height: 430px;
  }

  .personality-visual img {
    right: 4%;
    bottom: -155px;
  }

  .personality-visual span {
    right: 8%;
  }

  .pricing-frame {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .price-card {
    width: min(560px, 100%);
    max-width: none;
    justify-self: start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-heading {
    min-height: auto;
  }

  .faq-heading img {
    display: none;
  }
}

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

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

  .section {
    padding: 92px 18px;
  }

  .section-heading,
  .tour-copy {
    margin-bottom: 42px;
  }

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

  .site-header {
    min-height: 68px;
    padding: 8px 15px;
  }

  .brand {
    font-size: 19px;
  }

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

  .hero {
    padding: 66px 18px 44px;
  }

  .hero h1 {
    font-size: clamp(53px, 14.5vw, 74px);
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .hero-actions .button {
    width: min(420px, 100%);
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 13px;
    max-width: 360px;
    margin-top: 35px;
    padding-top: 17px;
  }

  .hero-facts div {
    grid-template-columns: 92px 1fr;
    align-items: center;
    padding: 0;
    border-left: 0;
  }

  .hero-product {
    width: min(430px, 100%);
    min-height: 620px;
  }

  .hero-product::before {
    top: 45px;
    right: -90px;
    width: 470px;
    height: 470px;
  }

  .phone {
    width: 285px;
    height: 580px;
    border-radius: 42px;
  }

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

  .phone-hero {
    top: 16px;
    right: 4px;
  }

  .phone-hardware {
    top: 15px;
    width: 80px;
    height: 21px;
  }

  .app-status {
    height: 36px;
  }

  .app-topbar {
    height: 45px;
  }

  .app-scroll {
    padding: 3px 11px 62px;
  }

  .mini-balance {
    padding: 14px 14px 11px;
  }

  .mini-balance > strong {
    font-size: 27px;
  }

  .mini-lem-card {
    min-height: 96px;
  }

  .mini-lem-card img {
    width: 96px;
  }

  .mini-transaction {
    min-height: 39px;
  }

  .chat-float {
    top: 88px;
    left: -4px;
    width: 210px;
    padding: 10px;
  }

  .message-user,
  .message-bot {
    font-size: 7px;
  }

  .sync-pill {
    top: 282px;
    left: 92px;
  }

  .hero-lem {
    bottom: -10px;
    left: -50px;
    width: 255px;
  }

  .flow-rail {
    justify-content: flex-start;
    gap: 13px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .flow-rail::-webkit-scrollbar {
    display: none;
  }

  .mode-grid {
    grid-template-columns: 1fr;
  }

  .mode-card {
    min-height: 550px;
    padding: 27px;
  }

  .mode-card__head {
    margin-bottom: 48px;
  }

  .mode-card > h3 {
    font-size: 36px;
  }

  .chat-demo,
  .app-feature-list {
    right: 27px;
    bottom: 27px;
    left: 27px;
  }

  .tour-tabs {
    display: flex;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .tour-tabs::-webkit-scrollbar {
    display: none;
  }

  .tour-tabs button {
    min-width: 195px;
    min-height: 94px;
    scroll-snap-align: start;
  }

  .tour-panel {
    grid-template-columns: 1fr;
    gap: 35px;
    min-height: auto;
    padding: 34px 25px 25px;
  }

  .tour-panel__copy {
    max-width: 620px;
  }

  .screen-mock {
    max-width: 460px;
    justify-self: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid li {
    min-height: 250px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-grid li:first-child {
    border-top: 0;
  }

  .steps-grid li > span {
    margin-bottom: 48px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--image {
    grid-column: auto;
    min-height: 280px;
  }

  .feature-card--image {
    grid-template-columns: 1fr 100px;
  }

  .personality-frame {
    padding: 37px 26px 0;
    border-radius: 28px;
  }

  .personality-copy h2 {
    font-size: clamp(43px, 11vw, 57px);
  }

  .personality-visual {
    min-height: 390px;
  }

  .personality-visual img {
    right: 50%;
    width: 480px;
    max-width: none;
    transform: translateX(50%);
  }

  .personality-visual span {
    top: 48px;
    right: 2%;
  }

  .pricing-frame {
    gap: 38px;
  }

  .price-card {
    padding: 27px;
  }

  .price-card__top strong {
    font-size: 58px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 16px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 760px;
    padding: 78px 20px 330px;
    text-align: center;
  }

  .final-copy .eyebrow {
    justify-content: center;
  }

  .final-copy h2 {
    font-size: clamp(52px, 14vw, 76px);
  }

  .final-cta > img {
    right: 50%;
    bottom: -110px;
    width: 520px;
    max-width: none;
    transform: translateX(50%);
  }

  .final-orbit {
    right: 50%;
    bottom: -20px;
    width: 450px;
    height: 450px;
    transform: translateX(50%);
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 32px;
    padding: 44px 22px 48px;
  }
}

@media (max-width: 440px) {
  h2,
  .personality-copy h2,
  .faq-heading h2 {
    font-size: clamp(36px, 9.5vw, 42px);
    line-height: 1;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading,
  .tour-copy {
    margin-bottom: 32px;
  }

  .cta-desktop {
    display: none;
  }

  .cta-mobile {
    display: inline;
  }

  .site-header .button-small {
    min-height: 44px;
    padding: 0 13px;
  }

  .brand {
    min-height: 44px;
  }

  .text-link {
    min-height: 44px;
    padding: 8px 0;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 54px);
    line-height: 0.94;
  }

  .hero {
    padding: 48px 18px 32px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero-note {
    flex-wrap: wrap;
    row-gap: 3px;
  }

  .hero-product {
    --hero-mobile-scale: 1;
    left: auto;
    width: 100%;
    max-width: 390px;
    min-height: clamp(500px, 154vw, 600px);
    transform: none;
  }

  .hero-product::before {
    top: 34px;
    right: -55px;
    width: min(430px, 118vw);
    height: min(430px, 118vw);
  }

  .hero-product::after {
    right: -10px;
    width: min(390px, 110vw);
  }

  .phone-hero {
    right: 0;
    transform: scale(var(--hero-mobile-scale)) rotate(1.25deg);
    transform-origin: top right;
  }

  .chat-float {
    left: 0;
    width: 190px;
    transform: scale(var(--hero-mobile-scale)) rotate(-2.1deg);
    transform-origin: top left;
  }

  .sync-pill {
    left: clamp(58px, 20vw, 78px);
    transform: scale(var(--hero-mobile-scale));
    transform-origin: top left;
  }

  .hero-lem {
    bottom: 0;
    left: 0;
    width: 235px;
    transform: scale(var(--hero-mobile-scale));
    transform-origin: bottom left;
  }

  .hero-facts {
    gap: 10px;
    margin-top: 27px;
  }

  .flow-rail {
    display: grid;
    gap: 7px;
    min-height: 0;
    padding: 15px 18px;
    overflow: visible;
    white-space: normal;
  }

  .flow-rail span {
    width: 100%;
    padding: 7px 12px;
    text-align: center;
  }

  .flow-rail b {
    justify-self: center;
    line-height: 1;
    transform: rotate(90deg);
  }

  .mode-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 23px;
  }

  .mode-card__head {
    margin-bottom: 32px;
  }

  .mode-card > h3 {
    font-size: 29px;
  }

  .mode-card > p {
    margin-bottom: 0;
  }

  .chat-demo,
  .app-feature-list {
    position: static;
    margin-top: 24px;
  }

  .demo-tabs button {
    min-height: 44px;
  }

  .app-feature-list div {
    min-height: 84px;
    padding: 13px;
  }

  .app-feature-list span {
    font-size: 18px;
  }

  .tour-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
    overflow: visible;
  }

  .tour-tabs button {
    grid-template-columns: 1fr;
    justify-items: center;
    min-width: 0;
    min-height: 76px;
    padding: 11px 7px;
    text-align: center;
  }

  .tour-tabs button > span {
    grid-row: auto;
    font-size: 9px;
  }

  .tour-tabs b {
    font-size: 15px;
  }

  .tour-tabs small {
    display: none;
  }

  .tour-screen {
    margin-right: -8px;
    margin-left: -8px;
  }

  .tour-panel {
    gap: 27px;
    padding: 27px 17px 17px;
  }

  .tour-kicker {
    margin-bottom: 17px;
  }

  .tour-panel__copy h3 {
    margin-bottom: 16px;
    font-size: clamp(30px, 8.2vw, 35px);
  }

  .tour-panel__copy > p {
    margin-bottom: 21px;
  }

  .screen-mock {
    min-height: 545px;
    padding: 17px;
    border-radius: 25px;
  }

  .mock-balance > strong {
    font-size: 38px;
  }

  .plan-grid > div {
    padding: 9px;
  }

  .steps-grid li {
    min-height: 0;
    padding: 28px;
  }

  .steps-grid li > span {
    margin-bottom: 26px;
  }

  .steps-grid h3 {
    font-size: 27px;
  }

  .feature-card,
  .feature-card--image {
    min-height: 0;
    padding: 20px;
  }

  .feature-card:not(.feature-card--image) {
    display: grid;
    grid-template-columns: 43px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 16px;
  }

  .feature-card:not(.feature-card--image) .feature-icon {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .feature-card:not(.feature-card--image) h3,
  .feature-card:not(.feature-card--image) p,
  .feature-card:not(.feature-card--image) small {
    grid-column: 2;
  }

  .feature-card:not(.feature-card--image) h3 {
    margin-bottom: 8px;
  }

  .feature-card:not(.feature-card--image) p {
    margin-bottom: 12px;
  }

  .feature-card:not(.feature-card--image) small {
    margin-top: 0;
  }

  .feature-card--image {
    display: flex;
    min-height: 230px;
    padding-right: 90px;
  }

  .feature-card--image .feature-icon {
    margin-bottom: 22px;
  }

  .feature-card--image > div {
    max-width: none;
  }

  .feature-card--image img {
    right: 0;
    bottom: 0;
    width: 86px;
    opacity: 1;
  }

  .personality-frame {
    padding: 29px 18px 0;
  }

  .personality-copy blockquote {
    margin-top: 27px;
    padding: 18px;
  }

  .personality-visual {
    min-height: 290px;
  }

  .personality-visual img {
    bottom: -112px;
    width: min(400px, 122vw);
  }

  .personality-visual span {
    top: 24px;
    right: 0;
  }

  .price-card {
    padding: 23px;
  }

  .faq-list details p {
    margin-right: 0;
  }

  .final-cta {
    min-height: 700px;
    padding: 64px 18px 270px;
  }

  .final-copy h2 {
    font-size: clamp(44px, 12vw, 52px);
  }

  .final-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .final-cta > img {
    bottom: -88px;
    width: min(440px, 132vw);
  }

  .final-orbit {
    bottom: -12px;
    width: min(400px, 118vw);
    height: min(400px, 118vw);
  }

  footer nav {
    gap: 0;
  }

  footer nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 375px) {
  .hero-product {
    --hero-mobile-scale: 0.92;
    min-height: 555px;
  }
}

@media (max-width: 350px) {
  .hero-product {
    --hero-mobile-scale: 0.86;
    min-height: 525px;
  }
}

@media (max-width: 330px) {
  .hero-product {
    --hero-mobile-scale: 0.8;
    min-height: 500px;
  }
}

@media (min-width: 441px) {
  .cta-mobile {
    display: none;
  }
}

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

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

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