.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 160px 0 46px;
  color: white;
  background:
    radial-gradient(circle at 72% 34%, rgba(142, 104, 244, 0.22), transparent 30%),
    linear-gradient(145deg, #191229 0%, #100c1b 66%, #181126 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -260px;
  left: 0;
  height: 520px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 15% 15% 0 0;
  content: "";
  transform: scaleX(1.35);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.orbit-one {
  top: 120px;
  right: -210px;
  width: 680px;
  height: 680px;
}

.orbit-two {
  top: 250px;
  right: -40px;
  width: 360px;
  height: 360px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: 1.08fr 0.92fr;
}

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

.hero-copy h1 em {
  display: inline-block;
  color: var(--violet-light);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.06rem, 1.65vw, 1.35rem);
}

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

.text-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.text-link span {
  margin-left: 8px;
  color: var(--violet-light);
}

.hero-notes {
  display: flex;
  gap: 26px;
  margin: 35px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  list-style: none;
}

.hero-notes span {
  margin-right: 6px;
  color: var(--mint);
}

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

.phone {
  position: relative;
  container-type: inline-size;
  overflow: hidden;
  padding: 7px;
  background: #09070e;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13%;
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

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

/* Home indicator overlays the app instead of creating a separate empty strip. */
.phone::before {
  position: absolute;
  z-index: 4;
  bottom: 2.7cqw;
  left: 50%;
  width: 34.36cqw;
  height: 1.28cqw;
  min-height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.88);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.phone img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.phone-screen {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 11.8cqw;
  border-radius: 9.23cqw;
  background: #241734;
}

.phone-status-bar {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 11.8cqw;
  align-items: center;
  justify-content: space-between;
  padding: 0 5.1cqw;
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(180deg, #20142f 0%, #2b1b40 100%);
  pointer-events: none;
}

.phone-status-time {
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 3.72cqw;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.02em;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 1.55cqw;
}

.phone-status-signal {
  width: 4.62cqw;
  height: 3.08cqw;
  fill: currentColor;
}

.phone-status-wifi {
  width: 4.62cqw;
  height: 3.59cqw;
  overflow: visible;
  fill: currentColor;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.55;
}

.phone-status-wifi circle {
  stroke: none;
}

.phone-status-battery {
  position: relative;
  display: block;
  width: 6.15cqw;
  height: 3.08cqw;
  border: 0.42cqw solid currentColor;
  border-radius: 0.85cqw;
}

.phone-status-battery::after {
  position: absolute;
  top: 50%;
  right: -1.1cqw;
  width: 0.68cqw;
  height: 1.54cqw;
  border-radius: 0 0.5cqw 0.5cqw 0;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
}

.phone-status-battery > span {
  position: absolute;
  inset: 0.42cqw;
  border-radius: 0.35cqw;
  background: currentColor;
}

:root[data-theme="light"] .phone-screen {
  background: #6d5a94;
}

:root[data-theme="light"] .phone-status-bar {
  color: rgba(255, 255, 255, 0.97);
  background: linear-gradient(180deg, #665188 0%, #7865a2 100%);
}

:root[data-theme="light"] .phone::before {
  background: rgba(28, 24, 32, 0.76);
}

.phone-screen-rounded {
  border-radius: 9.23cqw;
}

.theme-screen-light {
  display: none;
}

:root[data-theme="light"] .theme-screen-dark {
  display: none;
}

:root[data-theme="light"] .theme-screen-light {
  display: block;
}

.phone-main {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 58px;
  width: 284px;
  transform: rotate(3deg);
}

.phone-back {
  position: absolute;
  z-index: 1;
  top: 135px;
  right: 294px;
  width: 220px;
  opacity: 0.72;
  transform: rotate(-8deg);
}

.insight-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 13px 16px;
  color: #282131;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.insight-chip span:last-child {
  display: flex;
  flex-direction: column;
  color: #766f7b;
  font-size: 0.7rem;
}

.insight-chip strong {
  color: #29232d;
  font-size: 0.78rem;
}

.chip-one {
  top: 108px;
  right: -12px;
}

.chip-two {
  right: 222px;
  bottom: 78px;
}

.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  gap: 22px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}

.proof-strip p {
  margin: 0;
  padding: 14px 18px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-style: italic;
}

.proof-strip div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recognition {
  position: relative;
  z-index: 2;
  padding-top: 115px;
}

.recognition-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
}

.recognition .section-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.recognition .section-heading h2 {
  max-width: 540px;
}

.recognition-list article {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.recognition-list article:first-child {
  border-top: 1px solid var(--line);
}

.recognition-list h3 {
  margin-bottom: 10px;
}

.recognition-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.how {
  background: var(--white);
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

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

.step-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 650px;
  padding: 36px;
  background: #f0edf7;
  border-radius: var(--radius-lg);
  flex-direction: column;
}

.step-copy {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.step-card-analysis {
  color: white;
  background: var(--night);
}

.step-card-action {
  background: #ebe5fb;
}

.step-card h3 {
  margin: 0 0 14px;
}

.step-card p {
  color: var(--ink-soft);
}

.step-card-analysis p {
  color: rgba(255, 255, 255, 0.64);
}

.step-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.step-card li {
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 99px;
  font-size: 0.72rem;
}

:root[data-theme="dark"] .step-card li {
  color: var(--ink);
  background: rgba(142, 104, 244, 0.24);
  border: 1px solid rgba(199, 181, 255, 0.2);
}

.step-phone {
  position: relative;
  width: 250px;
  height: auto;
  flex: 0 0 auto;
  margin: 30px auto -44px;
  transform: none;
}

.step-card:hover .step-phone {
  transform: none;
}

.mini-result {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
}

.mini-result p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.75rem;
}

.mini-result strong {
  color: white;
  font-size: 0.82rem;
}

.step-card blockquote {
  margin: 18px 0 0;
  padding-left: 15px;
  border-left: 2px solid var(--violet);
  color: #554181;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.product-story {
  overflow: hidden;
  color: white;
  background: var(--night);
}

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

.story-visual {
  position: relative;
  min-height: 690px;
}

.story-glow {
  position: absolute;
  top: 90px;
  left: 30px;
  width: 430px;
  height: 430px;
  background: rgba(142, 104, 244, 0.22);
  border-radius: 50%;
  filter: blur(50px);
}

.story-phone-one,
.story-phone-two {
  position: absolute;
  width: 275px;
}

.story-phone-one {
  z-index: 1;
  top: 0;
  left: 28px;
  transform: rotate(-7deg);
}

.story-phone-two {
  z-index: 2;
  right: 8px;
  bottom: -30px;
  transform: rotate(7deg);
}

.story-copy h2 {
  max-width: 690px;
}

.story-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
}

.comparison {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  grid-template-columns: 1fr 1fr;
}

.comparison > div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.comparison .comparison-melya {
  background: rgba(142, 104, 244, 0.13);
  border-color: rgba(199, 181, 255, 0.25);
}

.comparison-label {
  margin-bottom: 14px;
  color: var(--violet-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison ul {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  list-style: none;
}

.comparison li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison li:last-child {
  border: 0;
}

.week {
  background: #f0edf7;
}

.week-grid {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 1fr 1fr;
}

.week-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.week-signals {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr;
}

.week-signals > div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
}

.week-signals p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.week-signals strong {
  color: var(--ink);
  font-size: 0.88rem;
}

:root[data-theme="dark"] .week-signals > div {
  background: #241936;
  border-color: rgba(199, 181, 255, 0.2);
}

:root[data-theme="dark"] .week-signals p {
  color: #d5cbe0;
}

:root[data-theme="dark"] .week-signals strong {
  color: var(--violet-light);
}

.week-visual {
  position: relative;
  min-height: 690px;
}

.week-phone {
  position: absolute;
  top: 0;
  right: 45px;
  width: 290px;
  transform: rotate(4deg);
}

.calendar-card {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: 0;
  width: 330px;
  padding: 24px;
  color: white;
  background: var(--night-soft);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.calendar-card > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.days {
  display: grid;
  gap: 5px;
  margin-bottom: 23px;
  grid-template-columns: repeat(7, 1fr);
}

.days span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.62rem;
}

.days .done {
  color: var(--night);
  background: var(--mint);
  border-color: transparent;
}

.days .today {
  color: white;
  border-color: var(--violet-light);
}

.calendar-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
}

.trust {
  background: var(--white);
}

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

.trust-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid rgba(28, 24, 32, 0.06);
  border-radius: var(--radius-md);
}

.trust-card h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.trust-card p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq .section-heading > p:last-child {
  max-width: 390px;
}

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

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

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 680;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  background: #e9e5f2;
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.accordion details[open] summary span {
  color: white;
  background: var(--violet);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 670px;
  margin: -4px 0 28px;
  color: var(--ink-soft);
}

.start {
  padding-top: 40px;
}

.start-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 55px;
  padding: 76px;
  color: white;
  background: var(--night);
  border-radius: 48px;
  grid-template-columns: 1fr 0.8fr;
}

.start-orbit {
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(199, 181, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(142, 104, 244, 0.04), 0 0 0 140px rgba(142, 104, 244, 0.03);
}

.start-copy,
.signup-form,
.start-actions {
  position: relative;
  z-index: 2;
}

.start-copy h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.start-copy p:last-child {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.start-actions {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.store-button {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.store-button:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.store-button > span:last-child {
  display: grid;
  gap: 1px;
}

.store-button small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.66rem;
}

.store-button strong {
  font-size: 1rem;
  line-height: 1.1;
}

.signup-form input {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
}

.signup-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.signup-form .button {
  width: 100%;
  border-radius: 16px;
}

.form-note,
.form-success {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.74rem;
  text-align: center;
}

.form-success {
  color: var(--mint);
}

