:root {
  --ink: #171915;
  --ink-soft: #50534a;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --lime: #c9f052;
  --lime-deep: #9fc42e;
  --coral: #ff7967;
  --blue: #6678f3;
  --line: rgba(23, 25, 21, 0.14);
  --dark: #1c211b;
  --white: #fff;
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 28px 80px rgba(35, 37, 31, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family:
    Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--dark);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  transition:
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(245, 241, 232, 0.88);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.brand-mark span {
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.brand-mark span:nth-child(1) {
  height: 9px;
}

.brand-mark span:nth-child(2) {
  height: 17px;
}

.brand-mark span:nth-child(3) {
  height: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 30px rgba(159, 196, 46, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d5fa68;
  box-shadow: 0 16px 36px rgba(159, 196, 46, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

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

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 155px 0 0;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: 90px;
  left: 50%;
  width: min(94vw, 1450px);
  height: 650px;
  border: 1px solid rgba(23, 25, 21, 0.09);
  border-radius: 70% 45% 55% 40%;
  content: "";
  transform: translateX(-50%) rotate(-2deg);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  top: 170px;
  right: -180px;
  width: 440px;
  height: 440px;
  background: rgba(255, 121, 103, 0.16);
}

.hero-orb-two {
  bottom: 30px;
  left: -110px;
  width: 330px;
  height: 330px;
  background: rgba(102, 120, 243, 0.12);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #64675e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 121, 103, 0.13);
}

.hero h1,
.section-heading h2,
.solution-copy h2,
.access-copy h2 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(64px, 6.35vw, 96px);
}

h1 em,
h2 em {
  font-weight: 500;
}

.hero h1 em {
  color: var(--blue);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-note strong {
  color: var(--ink);
}

.mini-avatars {
  display: flex;
}

.mini-avatars i {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid var(--cream);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.mini-avatars i:first-child {
  margin-left: 0;
  background: var(--lime);
}

.mini-avatars i:nth-child(2) {
  background: #f8bdad;
}

.mini-avatars i:nth-child(3) {
  background: #aeb8ff;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.phone-shell {
  position: absolute;
  top: 0;
  left: 50%;
  width: 342px;
  height: 682px;
  padding: 10px;
  border: 2px solid #12140f;
  border-radius: 48px;
  background: #151813;
  box-shadow:
    0 45px 100px rgba(36, 37, 32, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) rotate(3.5deg);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #fbfaf6;
}

.hero-app-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

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

.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 85px;
  height: 23px;
  border-radius: 20px;
  background: #111;
  transform: translateX(-50%);
}

.status-icons {
  letter-spacing: 3px;
}

.app-bar {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid #e9e6dd;
  background: rgba(255, 255, 255, 0.72);
}

.app-bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-avatar {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.app-avatar i {
  width: 3px;
  border-radius: 2px;
  background: var(--lime);
}

.app-avatar i:nth-child(1) {
  height: 8px;
}

.app-avatar i:nth-child(2) {
  height: 16px;
}

.app-avatar i:nth-child(3) {
  height: 11px;
}

.app-bar strong,
.app-bar small {
  display: block;
}

.app-bar strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.app-bar small {
  color: #777b70;
  font-size: 8px;
}

.app-bar small i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: #64b938;
}

.app-bar button {
  border: 0;
  color: #777b70;
  background: transparent;
  font-weight: 900;
  letter-spacing: 2px;
}

.chat-window {
  height: 455px;
  padding: 14px 12px 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 240, 82, 0.09), transparent 28%),
    #fbfaf6;
}

.date-pill {
  width: max-content;
  margin: 0 auto 15px;
  padding: 4px 9px;
  border-radius: 20px;
  color: #8a8d84;
  background: #efede6;
  font-size: 8px;
  font-weight: 700;
}

.chat-row {
  position: relative;
  width: max-content;
  max-width: 80%;
  margin-bottom: 9px;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 10px;
  line-height: 1.5;
}

.chat-row p {
  margin: 0;
}

.chat-row-user {
  margin-left: auto;
  border-bottom-right-radius: 4px;
  color: var(--white);
  background: var(--blue);
}

.chat-row-ai {
  border: 1px solid #e7e4da;
  border-bottom-left-radius: 4px;
  background: var(--white);
}

.chat-row-active {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  border-color: rgba(159, 196, 46, 0.8);
  background: #f5fbdc;
}

.chat-row-queued {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.52;
}

.loader-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid #adb0a8;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.sound-bars {
  display: inline-flex;
  height: 15px;
  flex: 0 0 auto;
  align-items: flex-end;
  gap: 2px;
}

.sound-bars i {
  width: 2px;
  border-radius: 3px;
  background: var(--lime-deep);
  animation: sound 700ms ease-in-out infinite alternate;
}

.sound-bars i:nth-child(1) {
  height: 5px;
}

.sound-bars i:nth-child(2) {
  height: 12px;
  animation-delay: -350ms;
}

.sound-bars i:nth-child(3) {
  height: 8px;
  animation-delay: -180ms;
}

.sound-bars i:nth-child(4) {
  height: 14px;
  animation-delay: -480ms;
}

.composer {
  display: flex;
  height: 54px;
  align-items: center;
  gap: 8px;
  margin: 0 10px;
  padding: 5px 6px;
  border: 1px solid #e1ded5;
  border-radius: 18px;
  color: #999c94;
  background: var(--white);
  font-size: 9px;
}

.round-action,
.send-action {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.round-action {
  color: var(--ink);
  background: #edf6cd;
}

.send-action {
  margin-left: auto;
  color: var(--white);
  background: var(--ink);
}

.send-action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.pause-icon {
  display: inline-block;
  width: 10px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.player {
  display: flex;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.player button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.player .player-main {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(23, 25, 21, 0.1);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 45px rgba(35, 37, 31, 0.14);
  backdrop-filter: blur(12px);
}

.floating-card-level {
  top: 95px;
  left: -8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 15px 20px;
  border-radius: 18px;
  transform: rotate(-7deg);
}

.floating-card-level span,
.floating-card-flow > span:last-child {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.floating-card-level strong {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.floating-card-flow {
  right: -10px;
  bottom: 130px;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 999px;
  transform: rotate(5deg);
}

.flow-icon {
  display: flex;
  height: 21px;
  align-items: flex-end;
  gap: 2px;
}

.flow-icon i {
  width: 3px;
  border-radius: 3px;
  background: var(--coral);
}

.flow-icon i:nth-child(1) {
  height: 8px;
}

.flow-icon i:nth-child(2) {
  height: 17px;
}

.flow-icon i:nth-child(3) {
  height: 12px;
}

.flow-icon i:nth-child(4) {
  height: 20px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  margin-top: 77px;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: #5f6259;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: 130px 0;
}

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

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) 360px;
  column-gap: 90px;
}

.section-heading-wide .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.solution-copy h2,
.access-copy h2 {
  font-size: clamp(48px, 5.3vw, 76px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading-wide > p:last-child {
  align-self: end;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.problem-section {
  background: var(--paper);
}

.problem-section h2 em {
  color: var(--coral);
}

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

.pain-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #f8f5ed;
}

.pain-card:nth-child(2) {
  background: #eef0fb;
}

.pain-card:nth-child(3) {
  background: #eef5e2;
}

.card-number {
  color: #898c83;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.pain-icon {
  position: relative;
  height: 155px;
  margin: 18px 0;
}

.pain-icon-book i {
  position: absolute;
  top: 26px;
  width: 82px;
  height: 106px;
  border: 2px solid var(--ink);
  border-radius: 7px 18px 18px 7px;
  background: var(--paper);
}

.pain-icon-book i:nth-child(1) {
  left: 54px;
  transform: rotate(-13deg);
}

.pain-icon-book i:nth-child(2) {
  left: 94px;
  background: var(--coral);
  transform: rotate(5deg);
}

.pain-icon-book i:nth-child(3) {
  top: 56px;
  left: 74px;
  width: 65px;
  height: 4px;
  border: 0;
  border-radius: 4px;
  background: var(--ink);
  transform: rotate(-2deg);
}

.pain-icon-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pain-icon-wave i {
  width: 16px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--blue);
}

.pain-icon-wave i:nth-child(1),
.pain-icon-wave i:nth-child(5) {
  height: 44px;
}

.pain-icon-wave i:nth-child(2),
.pain-icon-wave i:nth-child(4) {
  height: 92px;
}

.pain-icon-wave i:nth-child(3) {
  height: 132px;
}

.pain-icon-chat i {
  position: absolute;
  width: 150px;
  height: 86px;
  border: 2px solid var(--ink);
  border-radius: 25px 25px 25px 7px;
  background: var(--lime);
}

.pain-icon-chat i:first-child {
  top: 18px;
  left: 30px;
}

.pain-icon-chat i:last-child {
  top: 65px;
  left: 105px;
  width: 118px;
  height: 70px;
  border-radius: 22px 22px 7px 22px;
  background: var(--paper);
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.pain-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.problem-result {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  margin-top: 40px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  font-size: 17px;
}

.problem-result p {
  margin: 0;
  color: var(--ink-soft);
}

.problem-result strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.solution-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.solution-section::before {
  position: absolute;
  top: -250px;
  right: -120px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 240, 82, 0.13), transparent 67%);
  content: "";
}

.solution-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 105px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.solution-copy h2 em {
  color: var(--lime);
}

.solution-lead {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.steps-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.steps-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.55;
}

.demo-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: #f8f5ed;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #72766c;
  font-size: 9px;
}

.demo-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5eb83a;
  box-shadow: 0 0 0 4px rgba(94, 184, 58, 0.14);
}

.demo-messages {
  min-height: 278px;
}

.demo-message {
  width: max-content;
  max-width: 78%;
  margin-bottom: 10px;
  padding: 13px 15px;
  border: 1px solid #e1ded4;
  border-radius: 17px;
  background: var(--white);
  font-size: 13px;
  line-height: 1.55;
  animation: message-in 300ms ease both;
}

.demo-message-user {
  margin-left: auto;
  border-color: var(--blue);
  border-bottom-right-radius: 5px;
  color: var(--white);
  background: var(--blue);
}

.demo-message-ai {
  border-bottom-left-radius: 5px;
}

.demo-message-playing {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  border-color: var(--lime-deep);
  background: #f3fad8;
}

.demo-message-loading {
  min-width: 72px;
  color: #868980;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8e9189;
  animation: typing 700ms ease-in-out infinite alternate;
}

.typing-dots i:nth-child(2) {
  animation-delay: 140ms;
}

.typing-dots i:nth-child(3) {
  animation-delay: 280ms;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.topic-chips button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #65685f;
  background: transparent;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.topic-chips button:hover,
.topic-chips button:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--white);
}

.demo-form {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.demo-form input {
  min-width: 0;
  flex: 1;
  padding: 0 10px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 13px;
}

.demo-form button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: var(--ink);
  background: var(--lime);
  cursor: pointer;
}

.demo-form svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-caption {
  margin: 10px 5px 0;
  color: #92958d;
  font-size: 9px;
  line-height: 1.4;
}

.demo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(170px, 0.65fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.demo-shot-stack {
  display: grid;
  min-width: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: #f4f5fa;
}

.demo-shot-main {
  height: 660px;
}

.demo-shot-small {
  height: 323px;
  border-radius: 23px;
}

.demo-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.demo-shot-small:first-child img {
  object-position: center 38%;
}

.demo-shot figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(23, 24, 45, 0.88);
  font-size: 10px;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.demo-shot figcaption strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 12px;
}

.demo-proof {
  grid-column: 1 / -1;
  margin: 2px 4px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.5;
}

.features-section {
  background: var(--paper);
}

.features-section h2 em {
  color: var(--blue);
}

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

.feature-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  max-width: 430px;
  margin-bottom: 13px;
  font-size: 26px;
  letter-spacing: -0.045em;
}

.feature-card p {
  max-width: 450px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.feature-label {
  display: block;
  margin-bottom: 55px;
  color: #70736a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card-audio {
  grid-column: span 7;
  background: #edf4d9;
}

.feature-card-levels {
  grid-column: span 5;
  background: #eeeefa;
}

.feature-card-control {
  grid-column: span 5;
  background: #f8ebe4;
}

.feature-card-deeper {
  grid-column: span 7;
  background: #f2f0e9;
}

.feature-card-memory {
  grid-column: 4 / span 6;
  min-height: 305px;
  background: #e8eff4;
}

.audio-visual {
  position: absolute;
  right: -28px;
  bottom: -38px;
  left: 45%;
  height: 205px;
  padding: 28px;
  border: 1px solid rgba(23, 25, 21, 0.12);
  border-radius: 35px 0 0 0;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(23, 25, 21, 0.12);
}

.audio-visual > span {
  display: block;
  margin-bottom: 26px;
  color: #85887f;
  font-size: 11px;
  font-weight: 800;
}

.audio-visual button {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}

.audio-wave {
  display: flex;
  height: 67px;
  align-items: center;
  gap: 4px;
}

.audio-wave i {
  width: 3px;
  height: calc(12px + var(--h, 10) * 1px);
  border-radius: 4px;
  background: var(--lime-deep);
}

.audio-wave i:nth-child(3n + 1) {
  --h: 16;
}

.audio-wave i:nth-child(4n + 2) {
  --h: 34;
}

.audio-wave i:nth-child(5n + 3) {
  --h: 48;
}

.audio-wave i:nth-child(7n + 4) {
  --h: 22;
}

.level-selector {
  position: absolute;
  right: 27px;
  bottom: 28px;
  left: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.level-selector span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #73766d;
  font-size: 11px;
  font-weight: 850;
}

.level-selector .active {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(102, 120, 243, 0.26);
}

.control-panel {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
}

.control-panel button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  font-size: 28px;
}

.control-panel .control-main {
  width: 68px;
  height: 68px;
  color: var(--white);
  background: var(--coral);
}

.feature-card-deeper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
}

.action-menu {
  align-self: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(23, 25, 21, 0.09);
  transform: rotate(2deg);
}

.action-menu > span {
  display: block;
  margin-bottom: 10px;
  color: #8b8e86;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.action-menu p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.action-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: #edf4d9;
  font-size: 10px;
  font-style: normal;
}

.memory-thread {
  position: absolute;
  right: 32px;
  bottom: 31px;
  left: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.memory-thread span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 750;
}

.memory-thread i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.outcome-section {
  color: var(--white);
  background: var(--blue);
}

.outcome-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
}

.quote-mark {
  display: block;
  height: 55px;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  line-height: 1;
}

.outcome-quote blockquote {
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.outcome-quote > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
}

.outcome-list .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.outcome-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  display: flex;
  gap: 22px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.outcome-list li > span {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.outcome-list strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.outcome-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.access-section {
  background: var(--cream);
}

.access-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: var(--dark);
  box-shadow: var(--shadow);
}

.access-copy {
  padding: 75px;
}

.access-copy h2 {
  margin-bottom: 22px;
}

.access-copy > p {
  max-width: 560px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.65;
}

.access-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.access-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.access-form {
  display: flex;
  max-width: 570px;
  gap: 9px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.access-form input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  outline: none;
  color: var(--white);
  background: transparent;
}

.access-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.access-form .button {
  min-height: 48px;
  flex: 0 0 auto;
}

.access-copy small {
  display: block;
  margin: 13px 8px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.form-status {
  min-height: 20px;
  margin: 12px 8px 0 !important;
  color: var(--lime) !important;
  font-size: 13px !important;
}

.price-note {
  margin: 18px;
  padding: 55px 48px;
  border-radius: 32px;
  color: var(--ink);
  background: var(--lime);
}

.price-note > span {
  display: block;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-note > strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 65px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.price-note sup {
  position: relative;
  top: -22px;
  margin-right: 3px;
  font-size: 24px;
}

.price-note strong small {
  margin-left: 5px;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.price-note > strong small {
  display: inline-block;
  max-width: 110px;
  line-height: 1.2;
}

.price-note > p {
  margin-bottom: 26px;
  font-size: 14px;
  line-height: 1.6;
}

.price-note ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-note li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-top: 1px solid rgba(23, 25, 21, 0.16);
  font-size: 13px;
  font-weight: 750;
}

.price-note li::before {
  position: absolute;
  top: 12px;
  left: 2px;
  content: "✓";
  font-weight: 900;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.faq-section h2 em {
  color: var(--coral);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -7px 60px 26px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer {
  padding: 35px 0;
  color: rgba(255, 255, 255, 0.62);
  background: var(--dark);
  font-size: 12px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  background: rgba(255, 255, 255, 0.1);
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-two {
  transition-delay: 200ms;
}

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

@keyframes sound {
  from {
    transform: scaleY(0.45);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes typing {
  from {
    opacity: 0.35;
    transform: translateY(1px);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

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

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

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 25px;
  }

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

  .floating-card-level {
    left: -2px;
  }

  .floating-card-flow {
    right: -5px;
  }

  .solution-grid {
    gap: 55px;
  }

  .section-heading-wide {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 45px;
  }

  .outcome-grid,
  .faq-grid {
    gap: 65px;
  }

  .access-copy {
    padding: 60px 45px;
  }

  .price-note {
    padding: 46px 34px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 95px 0;
  }

  .hero {
    padding-top: 130px;
  }

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

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

  .hero-visual {
    min-height: 700px;
    margin-top: 35px;
  }

  .phone-shell {
    top: 0;
  }

  .floating-card-level {
    left: calc(50% - 260px);
  }

  .floating-card-flow {
    right: calc(50% - 265px);
  }

  .trust-strip {
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading-wide > p:last-child {
    max-width: 600px;
    margin-top: 24px;
  }

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

  .pain-card {
    min-height: 300px;
  }

  .pain-icon {
    position: absolute;
    top: 70px;
    right: 25px;
    width: 260px;
    opacity: 0.85;
    transform: scale(0.8);
  }

  .pain-card h3,
  .pain-card p {
    position: relative;
    z-index: 2;
    max-width: 48%;
  }

  .solution-grid,
  .outcome-grid,
  .access-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .demo-card {
    max-width: 650px;
    width: 100%;
  }

  .demo-showcase {
    width: 100%;
    max-width: 650px;
  }

  .feature-card-audio,
  .feature-card-levels,
  .feature-card-control,
  .feature-card-deeper,
  .feature-card-memory {
    grid-column: 1 / -1;
  }

  .feature-card-memory {
    min-height: 300px;
  }

  .outcome-grid {
    gap: 70px;
  }

  .access-card {
    max-width: 700px;
  }

  .price-note {
    margin: 0 18px 18px;
  }

  .faq-grid {
    gap: 15px;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .brand {
    font-size: 17px;
  }

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

  .header-inner > .button {
    min-height: 38px;
    padding: 0 14px;
  }

  .header-inner > .button svg {
    display: none;
  }

  .hero {
    padding-top: 115px;
  }

  .hero::before {
    top: 80px;
    height: 610px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 15vw, 67px);
    line-height: 0.94;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .header-inner > .button {
    width: auto;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-visual {
    min-height: 610px;
    margin-top: 25px;
  }

  .phone-shell {
    width: 300px;
    height: 597px;
    border-radius: 42px;
  }

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

  .chat-window {
    height: 388px;
  }

  .chat-row {
    font-size: 8.6px;
  }

  .composer {
    height: 48px;
  }

  .player {
    height: 51px;
  }

  .floating-card {
    display: none;
  }

  .trust-strip {
    justify-content: flex-start;
    gap: 14px;
    margin-top: 20px;
    padding-inline: 0;
    font-size: 9px;
  }

  .trust-strip i:nth-of-type(2) {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .solution-copy h2,
  .access-copy h2 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .pain-card {
    min-height: 350px;
    padding: 23px;
  }

  .pain-icon {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    opacity: 1;
    transform: scale(0.92);
  }

  .pain-card h3,
  .pain-card p {
    max-width: none;
  }

  .problem-result {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .solution-grid {
    gap: 55px;
  }

  .demo-card {
    padding: 19px;
    border-radius: 29px;
  }

  .demo-messages {
    min-height: 300px;
  }

  .demo-message {
    max-width: 88%;
    font-size: 12px;
  }

  .feature-card {
    min-height: 390px;
    padding: 24px;
  }

  .feature-label {
    margin-bottom: 38px;
  }

  .feature-card-audio {
    min-height: 440px;
  }

  .audio-visual {
    right: -15px;
    bottom: -20px;
    left: 18px;
  }

  .level-selector {
    right: 18px;
    left: 18px;
    padding: 7px;
  }

  .level-selector span {
    width: 34px;
    height: 34px;
  }

  .feature-card-deeper {
    display: block;
    min-height: 515px;
  }

  .action-menu {
    position: absolute;
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .memory-thread {
    right: 22px;
    left: 22px;
  }

  .outcome-grid {
    gap: 55px;
  }

  .access-card {
    border-radius: 30px;
  }

  .access-copy {
    padding: 48px 24px;
  }

  .access-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .access-link {
    align-self: center;
  }

  .access-form {
    align-items: stretch;
    flex-direction: column;
    padding: 6px;
    border-radius: 20px;
  }

  .access-form input {
    min-height: 49px;
  }

  .price-note {
    margin: 0 10px 10px;
    padding: 42px 28px;
    border-radius: 25px;
  }

  .demo-showcase {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 30px;
  }

  .demo-shot-main {
    height: 620px;
  }

  .demo-shot-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .demo-shot-small {
    height: 285px;
  }

  .demo-shot figcaption {
    right: 7px;
    bottom: 7px;
    left: 7px;
    padding: 10px;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header {
    position: absolute;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
