:root {
  --bg: #070504;
  --bg-brown: #17100c;
  --text: #f7efe5;
  --muted: #b7a796;
  --gold: #d7ad62;
  --gold-light: #f4d28b;
  --gold-dark: #8e6730;
  --line: rgba(244, 210, 139, 0.18);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Noto Sans", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 82% 47%, rgba(244, 210, 139, 0.16), transparent 16rem),
    radial-gradient(circle at 88% 52%, rgba(128, 71, 29, 0.3), transparent 27rem),
    radial-gradient(circle at 96% 60%, rgba(91, 48, 22, 0.38), transparent 34rem),
    radial-gradient(circle at 16% 20%, rgba(215, 173, 98, 0.08), transparent 28rem),
    linear-gradient(135deg, #020202 0%, var(--bg) 45%, #120b08 100%);
  animation: pageFadeIn 700ms ease both;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(244, 210, 139, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 210, 139, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 78%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 33%, rgba(244, 210, 139, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 57%, rgba(244, 210, 139, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 94% 47%, rgba(255, 239, 191, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 71%, rgba(244, 210, 139, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.34) 64%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.28) 52%, transparent 74%, rgba(0, 0, 0, 0.34));
}

.hero__glow {
  position: absolute;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.46;
}

.hero__glow--left {
  top: 16%;
  left: -12rem;
  background: rgba(215, 173, 98, 0.22);
}

.hero__glow--right {
  right: -2rem;
  bottom: 27%;
  width: 24rem;
  height: 24rem;
  background: rgba(189, 126, 54, 0.22);
  animation: ambientGlow 12s ease-in-out infinite alternate;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(34rem, 1.18fr);
  align-items: center;
  gap: clamp(0.25rem, 1.1vw, 1.5rem);
  width: min(1280px, calc(100% - 56px));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.hero__content {
  max-width: 625px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2.25rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 2.15rem;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light));
}

h1 {
  max-width: 610px;
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.28rem, 4.7vw, 4.55rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 22px 56px rgba(0, 0, 0, 0.46);
}

h1 span,
.hero__subtitle span {
  display: block;
}

.hero__subtitle {
  max-width: 575px;
  margin: 2.35rem 0 0;
  color: #d0c0ad;
  font-size: clamp(1.04rem, 1.4vw, 1.28rem);
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3.35rem;
  max-width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 3.5rem;
  padding: 0 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.018);
}

.button--primary {
  color: #130d08;
  min-width: 16rem;
  min-height: 3.85rem;
  padding: 0 1.8rem;
  font-size: 1.04rem;
  background:
    linear-gradient(135deg, #fff5c8 0%, #f7d991 24%, var(--gold) 58%, #b77b2f 100%);
  box-shadow:
    0 24px 62px rgba(215, 173, 98, 0.42),
    0 0 58px rgba(244, 210, 139, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
  animation: buttonGlowPulse 4.8s ease-in-out infinite;
}

.button--primary:hover {
  box-shadow:
    0 24px 58px rgba(215, 173, 98, 0.34),
    0 0 46px rgba(244, 210, 139, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.button--secondary {
  color: rgba(247, 239, 229, 0.82);
  border-color: rgba(244, 210, 139, 0.13);
  background: rgba(255, 255, 255, 0.022);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button--secondary:hover {
  border-color: rgba(244, 210, 139, 0.36);
  background: rgba(244, 210, 139, 0.07);
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  perspective: 1200px;
}

.hero__visual::before {
  position: absolute;
  top: 45%;
  left: 56%;
  width: min(37rem, 70vw);
  height: min(32rem, 62vw);
  content: "";
  background:
    radial-gradient(ellipse at 60% 42%, rgba(255, 226, 165, 0.25), transparent 16%),
    radial-gradient(ellipse at 50% 54%, rgba(215, 173, 98, 0.15), transparent 31%),
    radial-gradient(ellipse at 66% 35%, rgba(104, 56, 23, 0.18), transparent 50%),
    radial-gradient(ellipse at 38% 66%, rgba(79, 42, 19, 0.12), transparent 54%);
  filter: blur(11px);
  transform: translate(-72%, -50%) rotate(-7deg);
  animation: heroHaloDrift 14s ease-in-out infinite alternate;
}

.hero__visual::after {
  position: absolute;
  bottom: 6%;
  left: 47%;
  width: min(32rem, 62vw);
  height: 7.5rem;
  content: "";
  background:
    radial-gradient(ellipse at 64% 50%, rgba(0, 0, 0, 0.78), transparent 64%),
    radial-gradient(ellipse at 58% 42%, rgba(215, 173, 98, 0.1), transparent 54%);
  filter: blur(12px);
  transform: translateX(-68%);
}

.hero__product {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  width: min(76rem, 84vw);
  max-height: min(92vh, 1180px);
  object-fit: contain;
  border-radius: 1.8rem;
  filter:
    contrast(1.06)
    brightness(1.03)
    drop-shadow(0 64px 104px rgba(0, 0, 0, 0.72))
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 54px rgba(244, 210, 139, 0.12));
  transform: translate(-9.2rem, -0.9rem) rotateY(-2deg) rotateZ(0.5deg);
  animation: premiumFloat 6s ease-in-out infinite alternate;
}

.direction {
  position: relative;
  overflow: hidden;
  padding: clamp(4.25rem, 7vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 98, 0.08), transparent 28rem),
    linear-gradient(180deg, rgba(7, 5, 4, 0.96), #050403);
}

.direction__inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
}

.direction h2 {
  max-width: 760px;
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.2rem, 4.2vw, 4.25rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.direction h2 span {
  display: block;
  color: var(--gold-light);
}

.direction__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3.25rem);
  margin-top: clamp(2.7rem, 4.8vw, 4.2rem);
}

.direction__block {
  position: relative;
  min-height: 12.75rem;
  padding: clamp(1.55rem, 2.8vw, 2.45rem) 0;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.direction__block + .direction__block::before {
  position: absolute;
  top: clamp(1.9rem, 3.5vw, 3rem);
  bottom: clamp(1.9rem, 3.5vw, 3rem);
  left: calc(clamp(1.5rem, 3vw, 3.25rem) / -2);
  width: 1px;
  content: "";
  background: rgba(247, 239, 229, 0.09);
}

.direction__block h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 600;
  line-height: 1.28;
}

.direction__block p {
  max-width: 20rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.shift {
  position: relative;
  overflow: hidden;
  padding: clamp(4.6rem, 8vw, 7.8rem) 0;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(215, 173, 98, 0.09), transparent 30rem),
    radial-gradient(ellipse at 50% 72%, rgba(89, 47, 20, 0.18), transparent 34rem),
    linear-gradient(180deg, #050403, #080504 48%, #040303);
}

.shift__inner {
  width: min(980px, calc(100% - 56px));
  margin: 0 auto;
}

.shift__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.shift__header h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.shift__header p {
  max-width: 620px;
  margin: 1.6rem auto 0;
  color: #c9b9a7;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.75;
}

.shift__header p span,
.shift__text span {
  display: block;
}

.shift__flow {
  position: relative;
  display: grid;
  gap: clamp(3.6rem, 6vw, 5.5rem);
  max-width: 860px;
  margin: clamp(3.5rem, 6vw, 5.2rem) auto 0;
}

.shift__step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.shift__label {
  margin: 0 0 1.05rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.shift__text {
  max-width: 720px;
  margin: 0;
  color: #f7efe5;
  font-size: clamp(1.45rem, 2.25vw, 2.12rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-wrap: balance;
}

.shift__step:first-child .shift__text {
  color: rgba(247, 239, 229, 0.72);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.shift__step:nth-child(2) .shift__text {
  color: #d8cbbc;
}

.shift__step:nth-child(4)::before,
.shift__step--payoff::before {
  position: absolute;
  inset: -2.2rem 8% -2.2rem;
  z-index: -1;
  content: "";
  background: radial-gradient(ellipse, rgba(215, 173, 98, 0.1), transparent 62%);
  filter: blur(6px);
}

.shift__step:nth-child(3) .shift__text,
.shift__step:nth-child(4) .shift__text {
  color: #f3e7d8;
}

.shift__step--payoff {
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.shift__step--payoff .shift__text {
  color: #fff4d4;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.45;
  text-shadow:
    0 20px 56px rgba(0, 0, 0, 0.46),
    0 0 34px rgba(215, 173, 98, 0.14);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(4.6rem, 7.6vw, 7.2rem) 0 clamp(4.8rem, 8vw, 7.8rem);
  background:
    radial-gradient(ellipse at 50% 38%, rgba(215, 173, 98, 0.12), transparent 24rem),
    radial-gradient(ellipse at 50% 100%, rgba(84, 43, 18, 0.18), transparent 32rem),
    linear-gradient(180deg, #040303, #080504 52%, #030202);
}

.final-cta__inner {
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
  animation: finalCtaFade 700ms ease-out both;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto;
  color: #fff7ed;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 24px 62px rgba(0, 0, 0, 0.52);
}

.final-cta__inner > p:not(.final-cta__note):not(.final-cta__bridge) {
  max-width: 600px;
  margin: 2.35rem auto 0;
  color: #cdbda9;
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.75;
  text-align: center;
}

.final-cta__inner > p span {
  display: block;
}

.final-cta__bridge {
  max-width: 520px;
  margin: clamp(2.7rem, 4.6vw, 3.6rem) auto 0;
  color: rgba(244, 210, 139, 0.84);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}

.final-cta__button {
  margin-top: clamp(2.75rem, 4.5vw, 3.7rem);
  box-shadow:
    0 16px 38px rgba(215, 173, 98, 0.25),
    0 0 28px rgba(244, 210, 139, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.final-cta__button:hover {
  box-shadow:
    0 18px 40px rgba(215, 173, 98, 0.25),
    0 0 26px rgba(244, 210, 139, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.final-cta__note {
  margin: 2rem 0 0;
  color: rgba(247, 239, 229, 0.56);
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: center;
}

@keyframes finalCtaFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.credibility {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.6rem) 0 clamp(3.7rem, 6vw, 5.4rem);
  background:
    radial-gradient(ellipse at 50% 12%, rgba(215, 173, 98, 0.08), transparent 28rem),
    radial-gradient(ellipse at 18% 64%, rgba(82, 42, 18, 0.16), transparent 30rem),
    linear-gradient(180deg, #030202, #070504 42%, #040303);
}

.credibility__inner {
  width: min(920px, calc(100% - 56px));
  margin: 0 auto;
  animation: finalCtaFade 900ms ease-out both;
}

.credibility__header {
  text-align: center;
}

.credibility__header h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff7ed;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}

.credibility__header p {
  max-width: 720px;
  margin: clamp(2.1rem, 3.6vw, 3rem) auto 0;
  color: #cdbda9;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
  line-height: 1.86;
}

.credibility span {
  display: block;
}

.credibility__body {
  display: grid;
  gap: clamp(2rem, 3.8vw, 3.4rem);
  max-width: 720px;
  margin: clamp(2.8rem, 4.6vw, 4.2rem) auto 0;
}

.credibility__body p {
  margin: 0;
  color: #d8cbbc;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.credibility__identity {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  text-align: center;
}

.credibility__identity p {
  color: #fff7ed;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.credibility__identity p:last-child {
  color: var(--gold-light);
}

.credibility__story {
  display: grid;
  gap: 0.8rem;
  max-width: 660px;
  margin: 0 auto;
}

.credibility__story p {
  color: #d8cbbc;
  line-height: 1.78;
}

.credibility__story p:last-child {
  color: #efe4d5;
}

.credibility__photo {
  width: min(620px, 92vw);
  margin: 0 auto;
}

.credibility__photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  box-shadow:
    0 28px 54px rgba(0, 0, 0, 0.42),
    0 0 24px rgba(215, 173, 98, 0.08);
}

.credibility__experience {
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
  margin: 0 auto;
}

.credibility__experience p:last-child {
  margin-top: 0.45rem;
  color: #efe4d5;
}

.credibility__experience--practice {
  gap: 0.8rem;
}

.credibility__closing {
  display: grid;
  gap: clamp(1.25rem, 2.2vw, 1.9rem);
  max-width: 680px;
  margin: 0 auto;
  padding-top: clamp(0.15rem, 0.8vw, 0.55rem);
}

.credibility__proof {
  color: rgba(244, 210, 139, 0.88);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.75;
  text-align: center;
}

.credibility__book {
  color: #efe4d5;
  text-align: center;
}

.credibility__book-block {
  display: grid;
  justify-items: center;
  max-width: 680px;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  text-align: center;
}

.credibility__book-image {
  display: block;
  width: min(340px, 72vw);
  max-height: 470px;
  object-fit: contain;
  border-radius: 1.25rem;
  filter: drop-shadow(0 34px 58px rgba(0, 0, 0, 0.52));
}

.credibility__book-main {
  max-width: 620px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  color: #fff7ed;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  text-wrap: balance;
}

.credibility__book-sub {
  max-width: 560px;
  margin: 1.35rem auto 0;
  color: rgba(244, 210, 139, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  text-align: center;
}

.meet-althea {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(215, 173, 98, 0.1), transparent 26rem),
    linear-gradient(180deg, #040303, #080504 52%, #0b0b0f);
}

.meet-althea__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
}

.meet-althea__content {
  max-width: 620px;
}

.meet-althea__content h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.25rem, 4.5vw, 4.45rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.meet-althea__content p {
  margin: 1.65rem 0 0;
  color: #d8cbbc;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.78;
}

.meet-althea__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.meet-althea__visual img {
  display: block;
  width: min(360px, 72vw);
  height: auto;
  border-radius: 8px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(215, 173, 98, 0.08);
}

.app-features {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8.5vw, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(212, 175, 55, 0.08), transparent 30rem),
    linear-gradient(180deg, #0b0b0f, #070504 58%, #040303);
}

.app-features__inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.app-features__header {
  max-width: 800px;
  margin: 0 auto;
}

.app-features__header h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.app-features__header p {
  max-width: 720px;
  margin: 1.55rem auto 0;
  color: #cdbda9;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.75;
}

.app-features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 920px;
  margin: clamp(3rem, 5.4vw, 4.6rem) auto 0;
}

.app-features__card {
  min-height: 15rem;
  padding: clamp(1.55rem, 2.8vw, 2.25rem);
  text-align: left;
  border: 1px solid rgba(244, 210, 139, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(7, 5, 4, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.app-features__card h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.28;
}

.app-features__card p {
  margin: 1rem 0 0;
  color: #d8cbbc;
  font-size: 0.98rem;
  line-height: 1.72;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(212, 175, 55, 0.12), transparent 28rem),
    linear-gradient(180deg, #040303, #080504 54%, #0b0b0f);
}

.closing-cta__inner {
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.closing-cta h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 680;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.closing-cta h2 span {
  display: block;
}

.closing-cta__inner > p:not(.closing-cta__note) {
  max-width: 700px;
  margin: clamp(1.65rem, 3vw, 2.3rem) auto 0;
  color: #d8cbbc;
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.78;
}

.closing-cta__button {
  margin-top: clamp(2.3rem, 4.2vw, 3.3rem);
}

.closing-cta__note {
  margin: 1.25rem 0 0;
  color: rgba(247, 239, 229, 0.58);
  font-size: clamp(0.92rem, 1.1vw, 1rem);
  line-height: 1.6;
}

.visual-proof {
  position: relative;
  overflow: hidden;
  padding: 64px 0 84px;
  background:
    radial-gradient(ellipse at 50% 36%, rgba(212, 175, 55, 0.16), transparent 24rem),
    #0b0b0f;
}

.visual-proof__inner {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.book-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0 24px 0;
}

.book-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation:
    visualProofFloat 6s ease-in-out infinite,
    premiumFloat 6.4s ease-in-out infinite alternate;
}

.visual-proof__copy {
  max-width: 660px;
  margin-top: clamp(1.35rem, 2.8vw, 2.2rem);
}

.visual-proof h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.visual-proof p {
  max-width: 620px;
  margin: 1.35rem auto 0;
  color: #f7efe5;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.75;
}

.visual-proof__bridge {
  color: #d4af37;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.practical-help {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8.5vw, 8rem) 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(212, 175, 55, 0.1), transparent 30rem),
    linear-gradient(180deg, #0b0b0f, #070504 58%, #040303);
}

.practical-help__inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.practical-help__header {
  max-width: 780px;
  margin: 0 auto;
}

.practical-help__header h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.practical-help__header p {
  max-width: 680px;
  margin: 1.55rem auto 0;
  color: #cdbda9;
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.75;
}

.practical-help__header span,
.practical-help__card span,
.practical-help__cta span {
  display: block;
}

.practical-help__image {
  display: block;
  width: min(330px, 70vw);
  height: auto;
  margin: clamp(2.7rem, 5vw, 4rem) auto clamp(3rem, 5.6vw, 4.5rem);
  object-fit: contain;
  filter:
    drop-shadow(0 34px 64px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(212, 175, 55, 0.14));
}

.practical-help__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 900px;
  margin: 0 auto;
}

.practical-help__card {
  min-height: 13.5rem;
  padding: clamp(1.55rem, 2.8vw, 2.25rem);
  text-align: left;
  border: 1px solid rgba(244, 210, 139, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(7, 5, 4, 0.82);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.practical-help__card h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.28;
}

.practical-help__card p {
  margin: 1rem 0 0;
  color: #d8cbbc;
  font-size: 0.98rem;
  line-height: 1.72;
}

.practical-help__cta {
  display: grid;
  justify-items: center;
  gap: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: clamp(3rem, 5.4vw, 4.5rem);
}

.practical-help__cta p {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.55;
  text-wrap: balance;
}

.difference {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(215, 173, 98, 0.08), transparent 28rem),
    linear-gradient(180deg, #040303, #080504 54%, #030202);
}

.difference__inner {
  width: min(1040px, calc(100% - 56px));
  margin: 0 auto;
  text-align: center;
}

.difference__header {
  max-width: 780px;
  margin: 0 auto;
}

.difference__header h2 {
  margin: 0;
  color: #fff7ed;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.difference__header p {
  max-width: 680px;
  margin: 1.6rem auto 0;
  color: #cdbda9;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.difference__header span,
.difference__block span,
.difference__closing span {
  display: block;
}

.difference__positioning {
  max-width: 720px;
  margin: clamp(2.5rem, 4.5vw, 3.6rem) auto 0;
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

.difference__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 900px;
  margin: clamp(3rem, 5.4vw, 4.5rem) auto 0;
}

.difference__block {
  min-height: 13rem;
  padding: clamp(1.55rem, 2.8vw, 2.2rem);
  text-align: left;
  border: 1px solid rgba(244, 210, 139, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    rgba(7, 5, 4, 0.84);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.difference__block h3 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(1.12rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.28;
}

.difference__block p {
  margin: 1rem 0 0;
  color: #d8cbbc;
  font-size: 0.98rem;
  line-height: 1.72;
}

.difference__closing {
  max-width: 760px;
  margin: clamp(3rem, 5.2vw, 4.4rem) auto 0;
  color: #fff7ed;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.58;
  text-wrap: balance;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms ease,
    transform 800ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@media (hover: hover) and (pointer: fine) {
  .direction__block:hover,
  .app-features__card:hover,
  .practical-help__card:hover,
  .difference__block:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 210, 139, 0.24);
    box-shadow:
      0 28px 56px rgba(0, 0, 0, 0.28),
      0 0 26px rgba(215, 173, 98, 0.08);
  }
}

@keyframes visualProofFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes premiumFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes buttonGlowPulse {
  0%,
  100% {
    box-shadow:
      0 24px 62px rgba(215, 173, 98, 0.42),
      0 0 58px rgba(244, 210, 139, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }

  50% {
    box-shadow:
      0 24px 62px rgba(215, 173, 98, 0.46),
      0 0 68px rgba(244, 210, 139, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.56);
  }
}

@keyframes ambientGlow {
  from {
    opacity: 0.38;
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    opacity: 0.52;
    transform: scale(1.06) translate3d(-8px, 4px, 0);
  }
}

@keyframes heroHaloDrift {
  from {
    transform: translate(-72%, -50%) rotate(-7deg) scale(1);
  }

  to {
    transform: translate(-70%, -51%) rotate(-5deg) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .hero__glow--right,
  .hero__visual::before,
  .hero__product,
  .book-visual img,
  .button--primary {
    animation: none !important;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: min(100% - 36px, 680px);
    padding: clamp(3.5rem, 9vw, 4.5rem) 0 3.5rem;
  }

  .hero__content {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
  }

  .hero__actions {
    justify-content: center;
    margin-top: 2.4rem;
  }

  .hero__visual {
    min-height: clamp(25rem, 72vw, 36rem);
  }

  .hero__visual::before {
    width: min(36rem, 80vw);
    height: min(31rem, 70vw);
    transform: translate(-50%, -50%) rotate(-6deg);
  }

  .hero__visual::after {
    width: min(30rem, 68vw);
    transform: translateX(-50%);
  }

  .hero__product {
    width: min(54rem, 100vw);
    max-height: 820px;
    transform: translateY(-0.4rem);
  }

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

  .direction__block {
    min-height: auto;
  }

  .direction__block + .direction__block::before {
    display: none;
  }

  .shift__inner {
    width: min(100% - 36px, 680px);
  }

  .final-cta__inner {
    width: min(100% - 36px, 680px);
  }

  .credibility__inner {
    width: min(100% - 36px, 680px);
  }

  .meet-althea__inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 680px);
    text-align: center;
  }

  .meet-althea__content {
    max-width: none;
  }

  .app-features__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 560px) {
  .hero__inner {
    width: min(100% - 28px, 420px);
    gap: 2.2rem;
    padding-top: 2.6rem;
  }

  h1 {
    font-size: clamp(1.92rem, 8.8vw, 2.7rem);
    line-height: 1.16;
  }

  .hero__subtitle {
    margin-top: 1.35rem;
    font-size: clamp(0.98rem, 4vw, 1.04rem);
    line-height: 1.62;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.9rem;
  }

  .button {
    width: 100%;
    min-height: 3.6rem;
  }

  .button--primary {
    min-width: 0;
    font-size: 1rem;
  }

  .hero__visual {
    min-height: clamp(20rem, 78vw, 28rem);
  }

  .hero__visual::before {
    width: min(30rem, 86vw);
    height: min(26rem, 76vw);
    transform: translate(-52%, -50%) rotate(-5deg);
  }

  .hero__product {
    width: min(36rem, 96vw);
    max-height: 620px;
    border-radius: 1.25rem;
    animation-duration: 7s;
  }

  .direction {
    padding: 3.6rem 0;
  }

  .direction__inner {
    width: min(100% - 28px, 420px);
  }

  .direction h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .shift {
    padding: 4rem 0;
  }

  .shift__inner {
    width: min(100% - 28px, 420px);
  }

  .shift__header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .shift__flow {
    gap: 3.2rem;
    margin-top: 3.2rem;
  }

  .shift__text {
    font-size: clamp(1.22rem, 6vw, 1.65rem);
    line-height: 1.58;
  }

  .shift__step--payoff .shift__text {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .final-cta {
    padding: 4.3rem 0 4.8rem;
  }

  .final-cta__inner {
    width: min(100% - 28px, 420px);
  }

  .final-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .credibility {
    padding: 4.2rem 0 3.8rem;
  }

  .credibility__inner {
    width: min(100% - 28px, 420px);
  }

  .credibility__header h2 {
    font-size: clamp(2.05rem, 10vw, 3.1rem);
  }

  .credibility__header p {
    margin-top: 2rem;
    line-height: 1.78;
  }

  .credibility__body {
    gap: 2.55rem;
    margin-top: 3rem;
  }

  .credibility__identity {
    gap: 0.5rem;
  }

  .credibility__photo {
    width: min(360px, 92vw);
  }

  .credibility__story {
    gap: 0.75rem;
  }

  .credibility__experience {
    gap: 0.78rem;
  }

  .credibility__book-image {
    width: min(280px, 76vw);
    max-height: 390px;
  }

  .credibility__book-main {
    margin-top: 2rem;
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .meet-althea {
    padding: 4.5rem 0;
  }

  .meet-althea__inner {
    width: min(100% - 28px, 420px);
    gap: 2.5rem;
  }

  .meet-althea__content h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .meet-althea__content p {
    margin-top: 1.35rem;
    line-height: 1.72;
  }

  .meet-althea__visual img {
    width: min(280px, 76vw);
  }

  .app-features {
    padding: 4.5rem 0;
  }

  .app-features__inner {
    width: min(100% - 28px, 420px);
  }

  .app-features__header h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .app-features__grid {
    gap: 1rem;
    margin-top: 2.7rem;
  }

  .app-features__card {
    min-height: auto;
    padding: 1.45rem;
  }

  .closing-cta {
    padding: 4.8rem 0;
  }

  .closing-cta__inner {
    width: min(100% - 28px, 420px);
  }

  .closing-cta__button {
    width: 100%;
  }

  .book-visual img {
    animation-duration: 7.2s, 7.2s;
  }

  .closing-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
    line-height: 1.16;
  }

  .closing-cta__inner > p:not(.closing-cta__note) {
    line-height: 1.72;
  }

  .visual-proof {
    padding: 56px 0 76px;
  }

  .visual-proof__inner {
    width: min(100% - 28px, 420px);
  }

  .book-visual {
    margin: 8px 0 22px 0;
  }

  .book-visual img {
    max-width: 260px;
  }

  .visual-proof__copy {
    margin-top: 1.8rem;
  }

  .practical-help {
    padding: 4.5rem 0;
  }

  .practical-help__inner {
    width: min(100% - 28px, 420px);
  }

  .practical-help__header h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .practical-help__image {
    width: min(250px, 72vw);
    margin: 2.4rem auto 2.8rem;
  }

  .practical-help__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .practical-help__card {
    min-height: auto;
    padding: 1.45rem;
  }

  .practical-help__cta {
    margin-top: 2.8rem;
  }

  .difference {
    padding: 4.5rem 0;
  }

  .difference__inner {
    width: min(100% - 28px, 420px);
  }

  .difference__header h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .difference__positioning {
    margin-top: 2.3rem;
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .difference__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.7rem;
  }

  .difference__block {
    min-height: auto;
    padding: 1.45rem;
  }

  .difference__closing {
    margin-top: 2.7rem;
    font-size: clamp(1.18rem, 5.8vw, 1.55rem);
  }
}
