:root {
  --bg: #07100d;
  --bg-alt: #0b1612;
  --surface: #111e19;
  --surface-raised: #172720;
  --surface-soft: #f4f7f3;
  --surface-soft-2: #eaf1eb;
  --border: rgba(139, 184, 159, 0.18);
  --border-light: rgba(16, 54, 38, 0.14);
  --text: #f5f7f5;
  --text-soft: #a9b8b0;
  --ink: #0b1813;
  --ink-soft: #53645b;
  --green: #48e08b;
  --green-hover: #69f0a4;
  --green-deep: #0b3d27;
  --green-pale: #dff8e7;
  --gold: #e4b85b;
  --coral: #f36b71;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  --shadow-soft: 0 18px 55px rgba(22, 54, 39, 0.11);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--green);
  color: var(--ink);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: -0.035em;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.25vw, 3.75rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.12;
}

h3 {
  line-height: 1.25;
}

p:last-child,
ul:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(72, 224, 139, 0.72);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow .icon {
  font-size: 1rem;
}

.eyebrow--dark {
  color: #137a48;
}

.eyebrow--premium {
  color: var(--gold);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.section-heading--center h2 {
  max-width: 720px;
  margin-inline: auto;
}

.section-heading p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 0.22s var(--ease),
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

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

.button .icon {
  font-size: 1.1rem;
  transition: transform 0.22s var(--ease);
}

.button:hover .icon {
  transform: translateX(3px);
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.84rem;
}

.button--large {
  min-height: 60px;
  padding: 17px 26px;
  border-radius: 14px;
  font-size: 0.98rem;
}

.button--primary {
  background: var(--green);
  color: #06110a;
  box-shadow: 0 14px 38px rgba(72, 224, 139, 0.2);
}

.button--primary:hover {
  background: var(--green-hover);
  box-shadow: 0 18px 46px rgba(72, 224, 139, 0.28);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button--ghost:hover {
  border-color: rgba(72, 224, 139, 0.45);
  background: rgba(72, 224, 139, 0.08);
}

.button--outline {
  border-color: rgba(72, 224, 139, 0.5);
  background: transparent;
  color: var(--text);
}

.button--outline:hover {
  border-color: var(--green);
  background: rgba(72, 224, 139, 0.08);
}

.button--dark {
  background: var(--ink);
  color: var(--text);
  box-shadow: 0 15px 35px rgba(4, 24, 15, 0.18);
}

.button--dark:hover {
  background: #13281e;
}

.button--full {
  width: 100%;
}

.button--shine::after {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: -35%;
  width: 18%;
  height: 140%;
  transform: skewX(-22deg);
  background: rgba(255, 255, 255, 0.38);
  content: "";
}

.price-card.is-visible .button--shine::after {
  animation: button-shine 1.2s 0.5s ease-out 1 forwards;
}

@keyframes button-shine {
  0% {
    left: -35%;
  }
  100% {
    left: 125%;
  }
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #137a48;
  font-weight: 750;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(4px);
}

/* Announcement + header */
.responsible-bar {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(72, 224, 139, 0.12);
  background: #0b1d15;
  color: #c4d3cb;
}

.responsible-bar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
}

.responsible-bar p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.015em;
}

.responsible-bar strong {
  color: #e3eee8;
  font-weight: 650;
}

.responsible-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(72, 224, 139, 0.08);
}

.site-header {
  position: sticky;
  z-index: 35;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(7, 16, 13, 0.72);
  backdrop-filter: blur(18px);
  transition:
    height 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(130, 176, 151, 0.12);
  background: rgba(7, 16, 13, 0.97);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand strong {
  color: var(--green);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 25px;
}

.brand-mark span {
  position: absolute;
  top: 3px;
  width: 16px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 48% 48%;
}

.brand-mark span:first-child {
  left: 1px;
  transform: rotate(-27deg);
  border-color: var(--green);
}

.brand-mark span:last-child {
  right: 1px;
  transform: rotate(27deg);
  border-color: var(--gold);
}

.header-proof {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.header-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.header-proof .icon {
  color: var(--green);
}

.header-cta {
  justify-self: end;
}

/* Hero */
.hero {
  --hero-pointer-x: 68%;
  --hero-pointer-y: 34%;
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 38px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 56% at var(--hero-pointer-x) var(--hero-pointer-y), rgba(41, 170, 99, 0.18), transparent 72%),
    radial-gradient(ellipse 34% 42% at 9% 20%, rgba(228, 184, 91, 0.055), transparent 72%),
    radial-gradient(ellipse 70% 42% at 50% 108%, rgba(26, 102, 65, 0.1), transparent 72%),
    linear-gradient(122deg, #06100c 0%, #07110e 42%, #071711 72%, #050c09 100%);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(116deg, transparent 18%, rgba(153, 255, 198, 0.025) 48%, transparent 75%);
  content: "";
  mask-image: radial-gradient(ellipse 92% 82% at 66% 39%, #000 20%, transparent 84%);
  opacity: 0.8;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 92% 82% at 66% 39%, #000 20%, transparent 84%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 210px;
  background: linear-gradient(transparent, rgba(7, 16, 13, 0.78) 68%, var(--bg));
  content: "";
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-glow--one {
  top: -8%;
  right: -13%;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(72, 224, 139, 0.16), rgba(21, 87, 54, 0.07) 42%, transparent 70%);
}

.hero-glow--two {
  bottom: -20%;
  left: -14%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(228, 184, 91, 0.085), rgba(72, 224, 139, 0.025) 46%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 730px;
  padding-top: 74px;
  padding-bottom: 52px;
  grid-template-columns: minmax(0, 6.5fr) minmax(410px, 5.5fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 700px;
  padding-bottom: 20px;
}

.hero-copy h1 {
  max-width: 670px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.055;
}

.hero-copy h1 span {
  display: block;
  background: linear-gradient(120deg, var(--green) 0%, #96f4bb 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: #b9c7c0;
  font-size: clamp(1.03rem, 1.4vw, 1.17rem);
  line-height: 1.68;
}

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

.hero-microcopy {
  display: flex;
  min-width: max-content;
  max-width: none;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-microcopy .icon {
  margin-top: 2px;
  color: var(--gold);
}

.hero-microcopy strong {
  color: var(--text);
}

.hero-microcopy span {
  display: inline;
  white-space: nowrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
  color: #899a91;
  font-size: 0.74rem;
  font-weight: 600;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-trust .icon {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 660px;
  perspective: 1300px;
}

.hero-visual::before {
  position: absolute;
  top: 11%;
  right: -8%;
  bottom: 12%;
  left: 0;
  border-radius: 46%;
  background: conic-gradient(from 215deg at 54% 48%, transparent 0 20%, rgba(72, 224, 139, 0.16) 31%, transparent 44% 72%, rgba(228, 184, 91, 0.055) 84%, transparent 94%);
  content: "";
  filter: blur(42px);
  opacity: 0.65;
  pointer-events: none;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(72, 224, 139, 0.14);
  border-radius: 50%;
  box-shadow: inset 0 0 34px rgba(72, 224, 139, 0.018);
  pointer-events: none;
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(72, 224, 139, 0.65);
  content: "";
}

.visual-orbit--one {
  top: 9%;
  left: 6%;
  width: 500px;
  height: 500px;
}

.visual-orbit--one::before {
  top: 9%;
  right: 16%;
  width: 5px;
  height: 5px;
}

.visual-orbit--one::after {
  bottom: 15%;
  left: 8%;
  width: 7px;
  height: 7px;
}

.visual-orbit--two {
  top: 17%;
  left: 14%;
  width: 415px;
  height: 415px;
  opacity: 0.62;
}

.visual-orbit--two::before {
  top: 18%;
  left: 4%;
  width: 4px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(228, 184, 91, 0.65);
}

.visual-orbit--two::after {
  right: 2%;
  bottom: 28%;
  width: 5px;
  height: 5px;
}

.phone-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

.phone-wrap::before {
  position: absolute;
  z-index: -1;
  width: 440px;
  height: 500px;
  border-radius: 46%;
  background:
    radial-gradient(ellipse at 50% 43%, rgba(72, 224, 139, 0.3), rgba(72, 224, 139, 0.07) 48%, transparent 72%),
    conic-gradient(from 190deg, transparent, rgba(228, 184, 91, 0.07), transparent 31% 70%, rgba(72, 224, 139, 0.1), transparent);
  content: "";
  filter: blur(12px);
}

.phone-wrap::after {
  position: absolute;
  z-index: -1;
  bottom: 42px;
  left: 50%;
  width: 330px;
  height: 62px;
  transform: translateX(-50%) rotate(4deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.72), transparent 70%);
  content: "";
  filter: blur(9px);
  opacity: 0.72;
}

.phone {
  position: relative;
  width: 292px;
  height: 594px;
  padding: 9px;
  transform: rotateZ(2.5deg);
  transform-origin: 50% 56%;
  border: 1px solid rgba(154, 245, 190, 0.38);
  border-radius: 42px;
  background: linear-gradient(145deg, #404943 0%, #131816 22%, #030504 70%, #2e3832 100%);
  box-shadow:
    38px 50px 80px rgba(0, 0, 0, 0.42),
    -8px 0 24px rgba(121, 244, 169, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backface-visibility: hidden;
}

.phone::before,
.phone::after {
  position: absolute;
  left: -4px;
  width: 4px;
  border-radius: 3px 0 0 3px;
  background: #3a433e;
  content: "";
}

.phone::before {
  top: 114px;
  height: 58px;
}

.phone::after {
  top: 184px;
  height: 34px;
}

.phone-camera {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 84px;
  height: 23px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020403;
}

.phone-camera::after {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #132922;
  box-shadow: inset 0 0 2px #4d7866;
  content: "";
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 5%, rgba(72, 224, 139, 0.13), transparent 30%),
    #0c1914;
  color: var(--text);
  box-shadow: inset 0 0 50px rgba(72, 224, 139, 0.025);
}

.app-topbar {
  display: flex;
  height: 62px;
  align-items: flex-end;
  gap: 7px;
  padding: 0 19px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.app-symbol {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 18px;
}

.app-symbol i {
  position: absolute;
  top: 1px;
  width: 11px;
  height: 14px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
}

.app-symbol i:first-child {
  left: 1px;
  transform: rotate(-25deg);
}

.app-symbol i:last-child {
  right: 1px;
  transform: rotate(25deg);
  border-color: var(--gold);
}

.app-name {
  font-family: "Sora", sans-serif;
  font-size: 0.63rem;
  font-weight: 700;
}

.app-menu {
  margin-left: auto;
  color: #718078;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.app-content {
  padding: 22px 18px;
}

.app-greeting {
  margin-bottom: 5px;
  color: #829088;
  font-size: 0.58rem;
}

.app-content h2 {
  max-width: 210px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.app-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.app-tabs span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  color: #7e8c84;
  font-size: 0.52rem;
  font-weight: 600;
}

.app-tabs .is-active {
  border-color: rgba(72, 224, 139, 0.24);
  background: rgba(72, 224, 139, 0.1);
  color: var(--green);
}

.app-message-card {
  position: relative;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(72, 224, 139, 0.2);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(25, 49, 39, 0.96), rgba(13, 29, 22, 0.96));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.app-message-card::after {
  position: absolute;
  top: -36px;
  right: -36px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(72, 224, 139, 0.08);
  content: "";
}

.app-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #8ea198;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.app-card-label span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.app-card-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(72, 224, 139, 0.6);
}

.app-card-label small {
  font-size: inherit;
}

.app-message-card p {
  margin-bottom: 15px;
  color: #f0f5f2;
  font-family: "Sora", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.app-message-card .mock-button,
.decoder-answer .mock-button {
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
}

.app-tip {
  display: flex;
  gap: 9px;
  margin-top: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.026);
}

.app-tip .icon {
  color: var(--gold);
  font-size: 0.75rem;
}

.app-tip div {
  display: flex;
  flex-direction: column;
}

.app-tip strong {
  font-size: 0.55rem;
}

.app-tip span {
  color: #77877f;
  font-size: 0.49rem;
}

.app-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  height: 59px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 19, 14, 0.94);
}

.app-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #68776f;
  font-size: 0.44rem;
}

.app-nav i {
  width: 14px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

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

.notification {
  position: absolute;
  z-index: 6;
  top: 95px;
  right: -24px;
  display: grid;
  width: 315px;
  padding: 12px;
  grid-template-columns: 39px 1fr;
  gap: 10px;
  transform: translateZ(70px) rotate(-1deg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(249, 252, 250, 0.96), rgba(226, 237, 231, 0.93));
  color: #152119;
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(72, 224, 139, 0.035);
  backdrop-filter: blur(10px);
}

.notification-icon {
  display: flex;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #23c865;
  color: white;
}

.notification-icon .icon {
  font-size: 1.25rem;
}

.notification-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
  font-size: 0.58rem;
}

.notification-meta span {
  color: #849088;
}

.notification p {
  margin: 0;
  color: #35423a;
  font-size: 0.64rem;
  line-height: 1.35;
}

.mini-card {
  position: absolute;
  z-index: 7;
  bottom: 83px;
  left: -11px;
  display: flex;
  min-width: 200px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  transform: translateZ(80px) rotate(1deg);
  border: 1px solid rgba(72, 224, 139, 0.25);
  border-radius: 14px;
  background: rgba(12, 31, 22, 0.94);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(72, 224, 139, 0.045);
  backdrop-filter: blur(9px);
}

.mini-card__icon {
  display: flex;
  width: 33px;
  height: 33px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(72, 224, 139, 0.14);
  color: var(--green);
}

.mini-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.mini-card strong {
  font-size: 0.64rem;
}

.mini-card small {
  color: #809087;
  font-size: 0.52rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero::before {
    animation: hero-grid-breathe 9s ease-in-out infinite alternate;
  }

  .hero-glow--one {
    animation: hero-glow-one 13s var(--ease) infinite alternate;
  }

  .hero-glow--two {
    animation: hero-glow-two 15s var(--ease) infinite alternate;
  }

  .visual-orbit--one {
    animation: orbit-spin 26s linear infinite;
  }

  .visual-orbit--two {
    animation: orbit-spin-reverse 19s linear infinite;
  }

  .hero-visual.is-motion-active .phone-wrap::before {
    animation: visual-halo-pulse 6.8s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .phone-wrap::after {
    animation: phone-shadow-pulse 6.8s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .phone {
    animation:
      phone-arrive 0.9s 0.08s var(--ease) both,
      phone-float 6.8s 1s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .notification {
    animation:
      notification-arrive 0.72s 0.5s var(--ease) both,
      notification-float 5.2s 1.22s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .mini-card {
    animation:
      mini-card-arrive 0.72s 0.92s var(--ease) both,
      mini-card-float 5.8s 1.64s ease-in-out infinite;
  }

}

@keyframes hero-grid-breathe {
  from {
    opacity: 0.58;
  }
  to {
    opacity: 0.86;
  }
}

@keyframes hero-glow-one {
  from {
    transform: translate3d(-2%, -1%, 0) scale(0.94);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.06);
  }
}

@keyframes hero-glow-two {
  from {
    transform: translate3d(-3%, 2%, 0) scale(0.96);
  }
  to {
    transform: translate3d(4%, -3%, 0) scale(1.05);
  }
}

@keyframes orbit-spin {
  to {
    rotate: 1turn;
  }
}

@keyframes orbit-spin-reverse {
  to {
    rotate: -1turn;
  }
}

@keyframes visual-halo-pulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 0.96;
  }
  50% {
    opacity: 1;
    scale: 1.05;
  }
}

@keyframes phone-shadow-pulse {
  0%,
  100% {
    opacity: 0.62;
    scale: 0.9 0.86;
  }
  50% {
    opacity: 0.78;
    scale: 1.05 1;
  }
}

@keyframes phone-arrive {
  from {
    opacity: 0;
    scale: 0.965;
    translate: 0 26px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes phone-float {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 -4px;
  }
  50% {
    rotate: -0.65deg;
    translate: 0 8px;
  }
}

@keyframes notification-arrive {
  from {
    opacity: 0;
    scale: 0.96;
    translate: 30px 12px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes notification-float {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 0;
  }
  50% {
    rotate: 0.8deg;
    translate: 3px -8px;
  }
}

@keyframes mini-card-arrive {
  from {
    opacity: 0;
    scale: 0.96;
    translate: -24px 12px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes mini-card-float {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 0;
  }
  50% {
    rotate: -0.7deg;
    translate: -2px 7px;
  }
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-bottom > p {
  margin: 0;
  color: #829188;
  font-size: 0.75rem;
}

.marquee {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #b9c6bf;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.marquee i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Testimonials */
.section--soft {
  background: var(--surface-soft);
  color: var(--ink);
}

.section--soft .section-heading p {
  color: var(--ink-soft);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.chat-demo {
  position: relative;
  display: flex;
  min-height: 288px;
  flex-direction: column;
  justify-content: center;
  padding: 34px 30px 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(72, 224, 139, 0.1), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(228, 184, 91, 0.05), transparent 30%),
    #0b1712;
}

.chat-demo::before {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20px 20px, white 1px, transparent 1px),
    radial-gradient(circle at 10px 10px, white 1px, transparent 1px);
  background-size: 30px 30px;
  content: "";
}

.demo-label {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 18px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #87958e;
  font-size: 0.52rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-date {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 13px;
  padding: 4px 8px;
  border-radius: 5px;
  background: #19271f;
  color: #839087;
  font-size: 0.52rem;
}

.bubble {
  position: relative;
  z-index: 1;
  max-width: 78%;
  margin-bottom: 9px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.66rem;
  line-height: 1.45;
}

.bubble--sent {
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  background: #14532f;
  color: #eef7f1;
}

.bubble--received {
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  background: #243229;
  color: #e3e9e5;
}

.typing-indicator {
  position: absolute;
  z-index: 2;
  bottom: 43px;
  left: 30px;
  display: flex;
  width: 44px;
  height: 29px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 9px 9px 9px 2px;
  background: #243229;
  opacity: 0;
  pointer-events: none;
}

.typing-indicator i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aaaa1;
}

.audio-message {
  position: relative;
  z-index: 1;
  display: flex;
  width: 72%;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 9px 9px 9px 2px;
  background: #243229;
}

.audio-message::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: rgba(72, 224, 139, 0.72);
  content: "";
  opacity: 0;
}

.play-icon {
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #8fa097;
  color: #17221b;
  font-size: 0.48rem;
}

.audio-wave {
  display: flex;
  height: 23px;
  flex: 1;
  align-items: center;
  gap: 2px;
}

.audio-wave i {
  width: 3px;
  border-radius: 4px;
  background: #708078;
}

.audio-wave i:nth-child(1),
.audio-wave i:nth-child(5) { height: 7px; }
.audio-wave i:nth-child(2),
.audio-wave i:nth-child(7) { height: 13px; }
.audio-wave i:nth-child(3) { height: 20px; }
.audio-wave i:nth-child(4) { height: 10px; }
.audio-wave i:nth-child(6) { height: 17px; }

.audio-message small {
  color: #819087;
  font-size: 0.5rem;
}

.story-preview {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.story-ring {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbce65, #e3489f, #8d4fd8);
}

.story-ring img {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #0b1712;
  border-radius: 50%;
  object-fit: cover;
}

.story-preview > div:last-child {
  display: flex;
  flex-direction: column;
}

.story-preview strong {
  font-size: 0.68rem;
}

.story-preview small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #829088;
  font-size: 0.52rem;
}

.story-preview small::before {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(72, 224, 139, 0.08);
  content: "";
}

.testimonial-copy {
  position: relative;
  padding: 32px;
}

.quote-mark {
  position: absolute;
  top: 14px;
  right: 26px;
  color: rgba(11, 61, 39, 0.08);
  font-family: Georgia, serif;
  font-size: 5.4rem;
  line-height: 1;
}

.testimonial-copy h3 {
  position: relative;
  max-width: 390px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.12rem;
}

.testimonial-copy blockquote {
  position: relative;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.7;
}

.testimonial-copy footer {
  display: flex;
  align-items: center;
  gap: 11px;
}

.avatar {
  display: flex;
  width: 39px;
  height: 39px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: #126e43;
  font-size: 0.66rem;
  font-weight: 800;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 5px 16px rgba(15, 50, 34, 0.14);
}

.avatar--gold {
  background: #faefd7;
  color: #9f6d13;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (prefers-reduced-motion: no-preference) {
  .has-js .testimonial-card.is-visible .chat-step--profile {
    animation: chat-step-in 0.48s 0.15s var(--ease) both;
  }

  .has-js .testimonial-card.is-visible .chat-step--1 {
    animation: chat-step-in 0.5s 0.48s var(--ease) both;
  }

  .has-js .testimonial-card.is-visible .chat-step--2 {
    animation: chat-step-in 0.5s 1.05s var(--ease) both;
  }

  .has-js .testimonial-card.is-visible .chat-step--3 {
    animation: chat-step-in 0.5s 1.68s var(--ease) both;
  }

  .has-js .testimonial-card.is-visible .typing-indicator {
    animation: typing-window 1.4s 1.72s ease both;
  }

  .has-js .testimonial-card.is-visible .chat-step--4 {
    animation: chat-step-in 0.5s 3.08s var(--ease) both;
  }

  .has-js .testimonial-card.is-visible .audio-wave i {
    animation: audio-bar 0.82s ease-in-out infinite alternate;
  }

  .has-js .testimonial-card.is-visible .audio-message::after {
    animation: audio-progress 4.8s 2.25s linear infinite;
  }

  .has-js .testimonial-card.is-visible .story-preview small::before {
    animation: status-pulse 1.8s ease-in-out infinite;
  }

  .has-js .testimonial-card.is-visible .typing-indicator i {
    animation: typing-dot 0.72s ease-in-out infinite alternate;
  }

  .has-js .testimonial-card.is-visible .typing-indicator i:nth-child(2),
  .has-js .testimonial-card.is-visible .audio-wave i:nth-child(2),
  .has-js .testimonial-card.is-visible .audio-wave i:nth-child(5) {
    animation-delay: 0.14s;
  }

  .has-js .testimonial-card.is-visible .typing-indicator i:nth-child(3),
  .has-js .testimonial-card.is-visible .audio-wave i:nth-child(3),
  .has-js .testimonial-card.is-visible .audio-wave i:nth-child(6) {
    animation-delay: 0.28s;
  }
}

@keyframes chat-step-in {
  from {
    opacity: 0;
    scale: 0.975;
    translate: 0 9px;
  }
  to {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes typing-window {
  0%,
  100% {
    opacity: 0;
    scale: 0.94;
    translate: 0 6px;
  }
  15%,
  78% {
    opacity: 1;
    scale: 1;
    translate: 0 0;
  }
}

@keyframes typing-dot {
  from {
    opacity: 0.45;
    translate: 0 1px;
  }
  to {
    opacity: 1;
    translate: 0 -2px;
  }
}

@keyframes audio-bar {
  from {
    opacity: 0.58;
    scale: 1 0.55;
  }
  to {
    opacity: 1;
    scale: 1 1;
  }
}

@keyframes audio-progress {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  8%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 0.72;
    scale: 0.9;
  }
  50% {
    opacity: 1;
    scale: 1.15;
  }
}

.testimonial-copy footer > span:last-child {
  display: flex;
  flex-direction: column;
}

.testimonial-copy footer strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.testimonial-copy footer small {
  color: #7a8880;
  font-size: 0.68rem;
}

/* Pain */
.pain-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(243, 107, 113, 0.07), transparent 28%),
    var(--bg-alt);
}

.pain-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.pain-section .section-heading h2 {
  margin-inline: auto;
}

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

.pain-card {
  position: relative;
  min-height: 240px;
  padding: 30px 27px;
  overflow: hidden;
  grid-column: span 2;
  border: 1px solid rgba(243, 107, 113, 0.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(243, 107, 113, 0.25);
}

.pain-card:nth-child(4) {
  grid-column: 1 / span 3;
}

.pain-card--wide {
  grid-column: 4 / span 3;
}

.pain-number {
  position: absolute;
  top: 12px;
  right: 21px;
  color: rgba(255, 255, 255, 0.045);
  font-family: "Sora", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.pain-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  border-radius: 11px;
  background: rgba(243, 107, 113, 0.1);
  color: var(--coral);
}

.pain-icon .icon {
  font-size: 1.1rem;
}

.pain-card h3 {
  margin-bottom: 10px;
  font-size: 1.07rem;
}

.pain-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Mechanism */
.mechanism-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(72, 224, 139, 0.14), transparent 25%),
    var(--green-pale);
  color: var(--ink);
}

.mechanism-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 76px;
}

.mechanism-copy p {
  color: #44584d;
  font-size: 1rem;
}

.mechanism-copy h2 {
  font-size: clamp(1.65rem, 2.55vw, 2.3rem);
}

.mechanism-copy strong {
  color: #0a6338;
}

.message-compare {
  padding: 18px;
  border: 1px solid rgba(14, 81, 46, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.compare-card {
  padding: 19px;
  border-radius: 16px;
}

.compare-card--bad {
  border: 1px solid rgba(213, 63, 72, 0.14);
  background: #fff7f7;
}

.compare-card--good {
  border: 1px solid rgba(24, 138, 77, 0.16);
  background: #f0fbf4;
}

.compare-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.compare-top > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-card--bad .compare-top > span {
  color: #c84e54;
}

.compare-card--good .compare-top > span {
  color: #117542;
}

.compare-top small {
  color: #88978f;
  font-size: 0.62rem;
}

.compare-bubble {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 16px;
  margin-left: auto;
  padding: 11px 14px;
  border-radius: 12px 12px 3px 12px;
  background: white;
  box-shadow: 0 8px 20px rgba(28, 61, 45, 0.07);
  color: #2f3d35;
  font-size: 0.82rem;
}

.compare-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid rgba(20, 56, 38, 0.08);
}

.compare-result .status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.compare-card--bad .status-dot {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(243, 107, 113, 0.1);
}

.compare-card--good .status-dot {
  background: #28ba6b;
  box-shadow: 0 0 0 5px rgba(40, 186, 107, 0.1);
}

.compare-result > span:last-child {
  display: flex;
  flex-direction: column;
}

.compare-result strong {
  font-size: 0.72rem;
}

.compare-result small {
  color: #74857b;
  font-size: 0.62rem;
}

.compare-divider {
  display: flex;
  height: 43px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #64776c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-divider .icon {
  transform: rotate(90deg);
  color: #16884d;
}

.steps-row {
  display: grid;
  margin-top: 72px;
  padding: 24px 28px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(13, 76, 43, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.steps-row article {
  display: flex;
  align-items: center;
  gap: 13px;
}

.steps-row article > span {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-deep);
  color: var(--green);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.steps-row h3 {
  margin: 0 0 3px;
  font-size: 0.85rem;
}

.steps-row p {
  margin: 0;
  color: #65796e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.steps-arrow {
  color: rgba(22, 115, 65, 0.4);
}

/* Benefits */
.benefit-section {
  background:
    linear-gradient(90deg, rgba(72, 224, 139, 0.025) 1px, transparent 1px) 0 0 / 90px 90px,
    linear-gradient(rgba(72, 224, 139, 0.025) 1px, transparent 1px) 0 0 / 90px 90px,
    var(--bg);
}

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

.benefit-card {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(72, 224, 139, 0.32);
  background: rgba(72, 224, 139, 0.045);
}

.feature-icon {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 54px;
  border: 1px solid rgba(72, 224, 139, 0.16);
  border-radius: 14px;
  background: rgba(72, 224, 139, 0.08);
  color: var(--green);
}

.feature-icon .icon {
  font-size: 1.25rem;
}

.benefit-card h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.benefit-card p {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.65;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #7d8e85;
  font-size: 0.68rem;
  font-weight: 650;
}

.card-link .icon {
  color: var(--green);
  font-size: 0.9rem;
}

/* Product */
.product-section {
  overflow: hidden;
  background: var(--surface-soft);
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: 5.3fr 6.7fr;
  align-items: center;
  gap: 80px;
}

.product-visual {
  position: relative;
  min-height: 640px;
}

.product-visual::before {
  position: absolute;
  top: 8%;
  left: 3%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 224, 139, 0.22), transparent 68%);
  content: "";
}

.book-stack {
  position: relative;
  height: 580px;
  perspective: 1300px;
}

.book {
  position: absolute;
  overflow: hidden;
  border-radius: 7px 15px 15px 7px;
  font-family: "Sora", sans-serif;
  box-shadow: 18px 34px 55px rgba(12, 35, 24, 0.23);
  transform-style: preserve-3d;
}

.book::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.2));
  content: "";
}

.book--front {
  z-index: 3;
  top: 96px;
  left: 102px;
  width: 285px;
  height: 402px;
  padding: 28px;
  transform: rotateY(-15deg) rotateZ(2deg);
  background:
    radial-gradient(circle at 80% 20%, rgba(72, 224, 139, 0.24), transparent 30%),
    linear-gradient(145deg, #101e18, #07100d);
  color: white;
}

.book--front::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(255, 255, 255, 0.06));
  content: "";
}

.book-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 68px;
  font-size: 0.58rem;
}

.book-logo span {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  border: 1px solid var(--green);
  border-radius: 50% 50% 5px 50%;
}

.book-logo b {
  color: #dfe8e3;
}

.book--front > small {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book--front > strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.book--front em {
  color: var(--green);
  font-style: normal;
}

.book--front p {
  margin-top: 15px;
  color: #829188;
  font-family: "Inter", sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.book-art {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  height: 82px;
}

.book-art span {
  position: absolute;
  border: 1px solid rgba(72, 224, 139, 0.34);
  border-radius: 999px;
}

.book-art span:nth-child(1) {
  right: 0;
  bottom: -23px;
  width: 150px;
  height: 100px;
  transform: rotate(-18deg);
}

.book-art span:nth-child(2) {
  right: 35px;
  bottom: -35px;
  width: 130px;
  height: 90px;
  transform: rotate(-18deg);
}

.book-art span:nth-child(3) {
  right: 70px;
  bottom: -45px;
  width: 105px;
  height: 80px;
  transform: rotate(-18deg);
  border-color: rgba(228, 184, 91, 0.35);
}

.book--back,
.book--middle {
  width: 210px;
  height: 300px;
  padding: 24px;
  color: white;
}

.book--back {
  z-index: 1;
  top: 48px;
  left: 22px;
  transform: rotateY(-10deg) rotateZ(-8deg);
  background: linear-gradient(145deg, #234435, #0c2117);
}

.book--middle {
  z-index: 2;
  top: 55px;
  right: 4px;
  transform: rotateY(-12deg) rotateZ(8deg);
  background: linear-gradient(145deg, #c79234, #695021);
}

.book--back span,
.book--middle span {
  display: block;
  margin-top: 70px;
  margin-bottom: 5px;
  opacity: 0.7;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book--back strong,
.book--middle strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.book--back i,
.book--middle i {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  transform: rotate(35deg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.product-badge {
  position: absolute;
  z-index: 5;
  right: 8px;
  bottom: 82px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(17, 90, 52, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(15, 55, 34, 0.13);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.product-badge .icon {
  color: #188b50;
  font-size: 1.4rem;
}

.product-badge span {
  display: flex;
  flex-direction: column;
}

.product-badge strong {
  font-size: 0.69rem;
}

.product-badge small {
  color: #738279;
  font-size: 0.57rem;
}

.product-copy h2 {
  max-width: 620px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.product-intro {
  max-width: 580px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.content-list {
  display: grid;
  margin-bottom: 30px;
  gap: 12px;
}

.content-list article {
  display: grid;
  padding: 18px;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
}

.content-list article > span {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--green-pale);
  color: #117340;
  font-family: "Sora", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.content-list h3 {
  margin: 0 0 5px;
  font-size: 0.94rem;
}

.content-list p {
  margin: 0;
  color: #66786e;
  font-size: 0.8rem;
  line-height: 1.55;
}

/* App + bonuses */
.app-section {
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(228, 184, 91, 0.035), transparent 30%),
    var(--bg-alt);
}

.app-section-glow {
  position: absolute;
  top: -240px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 224, 139, 0.1), transparent 68%);
  pointer-events: none;
}

.app-heading {
  position: relative;
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.app-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.15vw, 2.7rem);
}

.app-heading > p {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.app-showcase {
  display: grid;
  gap: 20px;
}

.app-feature-card {
  display: grid;
  padding: 22px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  gap: 44px;
  border: 1px solid rgba(228, 184, 91, 0.2);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(228, 184, 91, 0.065), rgba(72, 224, 139, 0.035));
}

.decoder-ui {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(72, 224, 139, 0.1), transparent 28%),
    #0b1612;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.26);
}

.decoder-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.decoder-top > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.decoder-top > div span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(72, 224, 139, 0.08);
}

.decoder-top strong {
  font-size: 0.8rem;
}

.decoder-top small {
  color: #6f8077;
  font-size: 0.6rem;
}

.decoder-ui label {
  display: block;
  margin-bottom: 7px;
  color: #86968e;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decoder-input {
  min-height: 62px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #c3cec8;
  font-size: 0.72rem;
}

.decoder-loading {
  display: flex;
  height: 46px;
  align-items: center;
  gap: 4px;
  color: #718077;
}

.decoder-loading i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.decoder-loading i:nth-child(2) { opacity: 0.65; }
.decoder-loading i:nth-child(3) { opacity: 0.3; }

.decoder-loading span {
  margin-left: 4px;
  font-size: 0.55rem;
}

.decoder-answer {
  position: relative;
  padding: 15px 95px 15px 15px;
  border: 1px solid rgba(72, 224, 139, 0.16);
  border-radius: 12px;
  background: rgba(72, 224, 139, 0.055);
}

.decoder-answer > span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decoder-answer p {
  margin: 0;
  color: #d9e3de;
  font-size: 0.69rem;
  line-height: 1.5;
}

.decoder-answer .mock-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: auto;
  height: 30px;
  padding: 0 10px;
}

.app-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px 30px 0;
}

.feature-number {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.app-feature-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
}

.app-feature-copy > p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.mini-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-check-list li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #b8c6be;
  font-size: 0.62rem;
  font-weight: 600;
}

.mini-check-list .icon {
  color: var(--green);
}

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

.bonus-card {
  position: relative;
  min-height: 290px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(228, 184, 91, 0.28);
}

.bonus-card::after {
  position: absolute;
  top: -65px;
  right: -65px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(228, 184, 91, 0.1);
  border-radius: 50%;
  content: "";
}

.bonus-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bonus-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(228, 184, 91, 0.09);
  color: var(--gold);
}

.bonus-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.bonus-card p {
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.6;
}

.bonus-card small {
  position: absolute;
  right: 26px;
  bottom: 23px;
  left: 26px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #728279;
  font-size: 0.59rem;
}

/* Fit */
.fit-section {
  padding-bottom: 84px;
  background: var(--surface-soft);
  color: var(--ink);
}

.fit-grid {
  display: grid;
  grid-template-columns: 4.3fr 7.7fr;
  align-items: start;
  gap: 80px;
}

.fit-copy {
  position: sticky;
  top: 110px;
}

.fit-copy p {
  color: var(--ink-soft);
}

.fit-copy h2 {
  font-size: clamp(1.65rem, 2.45vw, 2.25rem);
}

.fit-list {
  display: grid;
  gap: 12px;
}

.fit-list article {
  display: grid;
  padding: 23px 25px;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 10px 28px rgba(26, 62, 44, 0.05);
}

.fit-list article > span {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--green-pale);
  color: #118049;
}

.fit-list p {
  margin: 0;
  color: #34483d;
  font-size: 0.91rem;
  font-weight: 500;
}

.respect-card {
  display: grid;
  margin-top: 56px;
  padding: 24px 28px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(23, 112, 64, 0.14);
  border-radius: var(--radius);
  background: var(--green-pale);
}

.respect-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #0d5a32;
  color: var(--green);
}

.respect-card strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.86rem;
}

.respect-card p {
  margin: 0;
  color: #4e6559;
  font-size: 0.76rem;
}

/* Pricing */
.pricing-section {
  padding-top: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(72, 224, 139, 0.09), transparent 35%),
    var(--bg);
}

.pricing-halo {
  position: absolute;
  top: 220px;
  left: 50%;
  width: 920px;
  height: 600px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 224, 139, 0.08), transparent 67%);
  pointer-events: none;
}

.pricing-grid {
  position: relative;
  display: grid;
  max-width: 1050px;
  margin: 48px auto 0;
  grid-template-columns: 5fr 7fr;
  align-items: stretch;
  gap: 22px;
}

.pricing-section .section-heading h2 {
  font-size: clamp(1.9rem, 3.1vw, 2.6rem);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border-radius: 26px;
}

.price-card--essential {
  margin-block: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.032);
}

.price-card--complete {
  border: 1px solid rgba(72, 224, 139, 0.56);
  background:
    radial-gradient(circle at 100% 0, rgba(228, 184, 91, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(72, 224, 139, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 30px 85px rgba(0, 0, 0, 0.32),
    0 0 0 5px rgba(72, 224, 139, 0.035);
}

.recommended-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  display: inline-flex;
  height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(228, 184, 91, 0.35);
  border-radius: 999px;
  background: #18271f;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-card__top {
  min-height: 126px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-label {
  display: inline-block;
  margin-bottom: 13px;
  color: #91a098;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-label--premium {
  color: var(--green);
}

.price-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.38;
}

.price-card--complete h3 {
  max-width: 500px;
  font-size: 1.15rem;
}

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

.plan-list--two-columns {
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #b5c3bb;
  font-size: 0.84rem;
  line-height: 1.4;
}

.plan-list .icon {
  margin-top: 2px;
  color: var(--green);
  font-size: 0.94rem;
}

.price-block {
  margin-top: auto;
  margin-bottom: 23px;
}

.price-block > span {
  display: block;
  margin-bottom: 4px;
  color: #819087;
  font-size: 0.7rem;
}

.price-block s {
  text-decoration-color: var(--coral);
}

.price {
  display: flex;
  align-items: flex-start;
  color: var(--text);
}

.price > small {
  margin-top: 12px;
  margin-right: 5px;
  font-size: 0.83rem;
  font-weight: 700;
}

.price > strong {
  font-family: "Sora", sans-serif;
  font-size: 4.1rem;
  letter-spacing: -0.075em;
  line-height: 1;
}

.price > span {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  margin-left: 5px;
}

.price b {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.price em {
  color: #7f8e86;
  font-size: 0.58rem;
  font-style: normal;
}

.price-block--premium .price > strong {
  color: var(--green);
  font-size: 4.8rem;
}

.checkout-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 13px 0 0;
  color: #74837b;
  font-size: 0.68rem;
}

.checkout-note .icon {
  color: var(--green);
}

.payment-strip {
  display: grid;
  max-width: 1050px;
  margin: 34px auto 0;
  padding: 20px 26px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.022);
}

.payment-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 3px 18px;
}

.payment-strip > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.payment-strip .icon {
  color: var(--green);
  font-size: 1.2rem;
}

.payment-strip span {
  display: flex;
  flex-direction: column;
}

.payment-strip strong {
  font-size: 0.74rem;
}

.payment-strip small {
  color: #718078;
  font-size: 0.63rem;
}

/* Choice */
.choice-section {
  background: var(--surface-soft-2);
  color: var(--ink);
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.choice-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
}

.choice-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.08;
}

.choice-card--negative {
  border: 1px solid rgba(196, 67, 75, 0.15);
  background: #fff8f8;
}

.choice-card--positive {
  border: 1px solid rgba(20, 116, 65, 0.15);
  background: #f4fff7;
}

.choice-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 58px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.choice-card--negative .choice-label {
  color: #c84d54;
}

.choice-card--positive .choice-label {
  color: #168249;
}

.choice-card h3 {
  max-width: 480px;
  margin-bottom: 10px;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
}

.choice-card p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
}

/* Guarantee */
.guarantee-section {
  padding: 88px 0;
  background: var(--bg-alt);
}

.guarantee-card {
  display: grid;
  padding: 44px 48px;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 38px;
  border: 1px solid rgba(72, 224, 139, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.34), transparent 25%),
    linear-gradient(135deg, #c8f3d6, #e9f9ee);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.guarantee-seal {
  display: flex;
  width: 126px;
  height: 126px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 91, 48, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  color: #0a6739;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.33);
}

.guarantee-seal .icon {
  margin-bottom: 1px;
  font-size: 1.3rem;
}

.guarantee-seal strong {
  font-family: "Sora", sans-serif;
  font-size: 2.35rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.guarantee-seal span {
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guarantee-copy h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.guarantee-copy p {
  max-width: 680px;
  margin-bottom: 9px;
  color: #40584b;
  font-size: 0.87rem;
}

.guarantee-copy small {
  color: #667d70;
  font-size: 0.63rem;
}

/* FAQ */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
}

.faq-intro p {
  margin-bottom: 26px;
  color: var(--text-soft);
}

.faq-intro .text-link {
  color: var(--green);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #e8eeea;
  font-family: "Sora", sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}

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

.faq-list summary i {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--green);
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s ease;
}

.faq-list details[open] summary i {
  transform: rotate(180deg);
  background: rgba(72, 224, 139, 0.07);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 710px;
  margin-bottom: 28px;
  padding-right: 56px;
  color: var(--text-soft);
  font-size: 0.86rem;
}

/* Final CTA */
.final-cta {
  position: relative;
  padding: 108px 0 116px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(72, 224, 139, 0.035) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(72, 224, 139, 0.035) 1px, transparent 1px) 0 0 / 70px 70px,
    #0a1711;
  text-align: center;
}

.final-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 820px;
  height: 500px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(72, 224, 139, 0.16), transparent 65%);
}

.final-cta__inner {
  position: relative;
  max-width: 870px;
}

.final-cta__icon {
  position: relative;
  width: 62px;
  height: 55px;
  margin: 0 auto 25px;
}

.final-cta__icon span {
  position: absolute;
  top: 4px;
  width: 36px;
  height: 44px;
  border: 2px solid;
  border-radius: 50%;
}

.final-cta__icon span:first-child {
  left: 4px;
  transform: rotate(-28deg);
  border-color: var(--green);
}

.final-cta__icon span:last-child {
  right: 4px;
  transform: rotate(28deg);
  border-color: var(--gold);
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
}

.final-cta p {
  margin-bottom: 28px;
  color: var(--text-soft);
  font-size: 1rem;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.final-cta__inner > small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 17px;
  color: #74837b;
  font-size: 0.63rem;
}

.final-cta__inner > small .icon {
  color: var(--green);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #050b09;
}

.footer-main {
  display: grid;
  padding-top: 58px;
  padding-bottom: 48px;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 50px;
}

.footer-brand p {
  max-width: 350px;
  margin: 16px 0 0;
  color: #74837b;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #74837b;
  font-size: 0.72rem;
}

.footer-links strong {
  margin-bottom: 4px;
  color: #e0e8e3;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #596860;
  font-size: 0.61rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 590px;
  text-align: right;
}

/* Toast + sticky mobile CTA */
.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: min(390px, calc(100% - 32px));
  padding: 14px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 11px;
  transform: translateY(22px);
  border: 1px solid rgba(72, 224, 139, 0.22);
  border-radius: 15px;
  background: rgba(13, 30, 23, 0.96);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease);
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(72, 224, 139, 0.1);
  color: var(--green);
}

.toast > div {
  display: flex;
  flex-direction: column;
}

.toast strong {
  font-size: 0.75rem;
}

.toast [data-toast-message] {
  color: var(--text-soft);
  font-size: 0.66rem;
  line-height: 1.4;
}

.toast button {
  border: 0;
  background: transparent;
  color: #7e8d85;
  cursor: pointer;
  font-size: 1.3rem;
}

.mobile-cta {
  display: none;
}

.noscript-message {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Reveal */
.has-js .reveal {
  transform: translateY(24px);
  opacity: 0;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* Responsive */
@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 6fr) minmax(380px, 5fr);
    gap: 20px;
  }

  .notification {
    right: -5px;
    width: 285px;
  }

  .mini-card {
    left: 4px;
  }

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

  .hero-microcopy {
    min-width: 0;
    max-width: none;
  }

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

  .benefit-card {
    min-height: 280px;
  }

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

  .product-grid {
    gap: 45px;
  }

  .book--front {
    left: 75px;
  }

  .book--middle {
    right: 0;
  }

  .guarantee-card {
    grid-template-columns: 126px 1fr;
  }

  .guarantee-card .button {
    grid-column: 2;
    width: fit-content;
  }
}

@media (min-width: 961px) {
  .hero-actions .button {
    flex-shrink: 0;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .hero {
    --hero-pointer-x: 50%;
    --hero-pointer-y: 69%;
  }

  .hero::before {
    mask-image: radial-gradient(ellipse 110% 78% at 50% 62%, #000 18%, transparent 88%);
    -webkit-mask-image: radial-gradient(ellipse 110% 78% at 50% 62%, #000 18%, transparent 88%);
  }

  .hero-glow--one {
    top: 35%;
    right: -30%;
  }

  .hero-glow--two {
    bottom: 24%;
    left: -34%;
  }

  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .header-proof {
    display: none;
  }

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

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

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

  .hero-visual {
    min-height: 630px;
  }

  .phone-wrap {
    min-height: 620px;
  }

  .visual-orbit--one {
    left: 50%;
    transform: translateX(-50%);
  }

  .visual-orbit--two {
    left: 50%;
    transform: translateX(-50%);
  }

  .notification {
    right: 12%;
  }

  .mini-card {
    left: 15%;
  }

  .hero-bottom {
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 32px;
  }

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

  .testimonial-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .chat-demo {
    min-height: 100%;
  }

  .pain-card,
  .pain-card:nth-child(4),
  .pain-card--wide {
    grid-column: span 3;
  }

  .pain-card--wide {
    grid-column: 2 / span 4;
  }

  .mechanism-grid,
  .product-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .mechanism-copy {
    max-width: 760px;
  }

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

  .steps-arrow {
    margin-left: 12px;
    transform: rotate(90deg);
  }

  .product-visual {
    min-height: 570px;
  }

  .book-stack {
    width: 550px;
    max-width: 100%;
    height: 540px;
    margin-inline: auto;
  }

  .product-badge {
    right: 18%;
    bottom: 32px;
  }

  .app-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .app-heading > p {
    max-width: 650px;
  }

  .app-feature-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-feature-copy {
    padding: 28px 10px 16px;
  }

  .fit-copy,
  .faq-intro {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .price-card {
    padding: 29px;
  }

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

  .payment-strip {
    padding-inline: 12px;
  }
}

@media (min-width: 761px) and (max-width: 860px) {
  .pricing-grid {
    max-width: 640px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .price-card--complete {
    grid-row: 1;
  }

  .price-card--essential {
    margin: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    --hero-pointer-x: 50%;
    --hero-pointer-y: 72%;
  }

  .hero-glow--one {
    top: 42%;
    right: -70%;
    width: 700px;
    height: 700px;
  }

  .hero-glow--two {
    bottom: 32%;
    left: -75%;
  }

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

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.1rem, 8.8vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }

  .responsible-bar__inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .responsible-bar p {
    font-size: 0.64rem;
    line-height: 1.4;
  }

  .responsible-bar p strong {
    display: none;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 64px;
  }

  .header-cta {
    min-height: 44px;
    padding: 8px 12px;
  }

  .header-cta .icon {
    display: none;
  }

  .hero-grid {
    padding-top: 44px;
    padding-bottom: 0;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

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

  .hero-microcopy {
    max-width: none;
    justify-content: center;
  }

  .hero-trust {
    gap: 12px 18px;
  }

  .hero-visual {
    min-height: 580px;
    margin-top: -24px;
  }

  .phone-wrap {
    min-height: 570px;
    transform: scale(0.9);
  }

  .notification {
    top: 85px;
    right: -2%;
    backdrop-filter: none;
  }

  .mini-card {
    bottom: 70px;
    left: 2%;
    backdrop-filter: none;
  }

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

  .hero-bottom > p {
    width: 100%;
    text-align: center;
  }

  .marquee {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .section-heading p {
    font-size: 1rem;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .chat-demo {
    min-height: 290px;
  }

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

  .pain-card,
  .pain-card:nth-child(4),
  .pain-card--wide {
    min-height: 230px;
    grid-column: auto;
  }

  .mechanism-grid {
    gap: 40px;
  }

  .message-compare {
    padding: 12px;
  }

  .steps-row {
    margin-top: 48px;
    padding: 22px;
  }

  .benefit-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 275px;
  }

  .product-visual {
    min-height: 510px;
  }

  .book-stack {
    left: 50%;
    width: 520px;
    height: 480px;
    transform: translateX(-50%) scale(0.84);
    transform-origin: top center;
  }

  .product-badge {
    right: 5%;
    bottom: 5px;
  }

  .decoder-ui {
    padding: 19px;
  }

  .app-feature-card {
    padding: 14px;
  }

  .bonus-card {
    min-height: 275px;
  }

  .fit-grid {
    gap: 36px;
  }

  .fit-list article {
    padding: 20px;
  }

  .respect-card {
    grid-template-columns: 1fr;
  }

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

  .pricing-section {
    padding-top: 64px;
  }

  .pricing-grid {
    margin-top: 34px;
  }

  .price-card--complete {
    grid-row: 1;
  }

  .price-card--essential {
    margin: 0;
  }

  .price-card__top {
    min-height: 0;
    order: 1;
  }

  .price-block {
    margin-top: 24px;
    order: 2;
  }

  .plan-list {
    margin-top: 0;
    order: 3;
  }

  .price-card > .button {
    order: 4;
  }

  .checkout-note {
    order: 5;
  }

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

  .payment-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .payment-strip > div {
    justify-content: flex-start;
    padding: 13px 8px;
  }

  .payment-strip > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 0;
  }

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

  .choice-card {
    min-height: 260px;
  }

  .guarantee-card {
    padding: 34px 28px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-seal {
    margin-inline: auto;
  }

  .guarantee-card .button {
    width: 100%;
    grid-column: 1;
  }

  .faq-grid {
    gap: 36px;
  }

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

  .faq-answer p {
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0 104px;
    gap: 10px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 9px 9px 16px;
    transform: translateY(calc(130% + env(safe-area-inset-bottom)));
    border: 1px solid rgba(72, 224, 139, 0.25);
    border-radius: 16px;
    background: rgba(8, 21, 15, 0.95);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(16px);
    transition:
      transform 0.3s var(--ease),
      opacity 0.3s ease;
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-cta > div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .mobile-cta small {
    color: #819188;
    font-size: 0.56rem;
  }

  .mobile-cta strong {
    color: var(--green);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
  }

  .mobile-cta .button {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.78rem;
  }

  .toast {
    right: 16px;
    bottom: 94px;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .hero-visual.is-motion-active .phone {
    animation:
      phone-arrive 0.9s 0.08s var(--ease) both,
      phone-float-mobile 6.8s 1s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .notification {
    animation:
      notification-arrive 0.72s 0.5s var(--ease) both,
      notification-float-mobile 5.2s 1.22s ease-in-out infinite;
  }

  .hero-visual.is-motion-active .mini-card {
    animation:
      mini-card-arrive 0.72s 0.92s var(--ease) both,
      mini-card-float-mobile 5.8s 1.64s ease-in-out infinite;
  }

  @keyframes phone-float-mobile {
    0%,
    100% {
      rotate: 0deg;
      translate: 0 -3px;
    }
    50% {
      rotate: -0.4deg;
      translate: 0 5px;
    }
  }

  @keyframes notification-float-mobile {
    0%,
    100% {
      rotate: 0deg;
      translate: 0 0;
    }
    50% {
      rotate: 0.55deg;
      translate: 0 -6px;
    }
  }

  @keyframes mini-card-float-mobile {
    0%,
    100% {
      rotate: 0deg;
      translate: 0 0;
    }
    50% {
      rotate: -0.5deg;
      translate: 0 5px;
    }
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 24px;
    height: 22px;
  }

  .brand-mark span {
    width: 14px;
    height: 17px;
  }

  .hero-copy .eyebrow {
    font-size: 0.65rem;
  }

  .hero-trust {
    display: flex;
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: -78px;
    margin-right: -16px;
    margin-left: -16px;
  }

  .phone-wrap {
    min-height: 525px;
    transform: scale(0.79);
  }

  .notification {
    right: -10%;
  }

  .mini-card {
    left: -5%;
  }

  .marquee {
    gap: 10px;
    font-size: 0.56rem;
  }

  .testimonial-copy,
  .choice-card {
    padding: 27px 24px;
  }

  .chat-demo {
    padding-inline: 22px;
  }

  .pain-card {
    padding: 26px 23px;
  }

  .compare-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .compare-bubble {
    max-width: 100%;
  }

  .steps-row article {
    align-items: flex-start;
  }

  .product-visual {
    min-height: 440px;
  }

  .book-stack {
    transform: translateX(-50%) scale(0.7);
  }

  .product-badge {
    right: 0;
    bottom: -4px;
  }

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

  .decoder-answer {
    padding-right: 15px;
    padding-bottom: 54px;
  }

  .decoder-answer .mock-button {
    right: 15px;
    bottom: 12px;
    left: 15px;
    width: calc(100% - 30px);
  }

  .app-feature-copy {
    padding: 26px 5px 12px;
  }

  .mini-check-list {
    align-items: stretch;
    flex-direction: column;
  }

  .fit-list article {
    grid-template-columns: 40px 1fr;
    gap: 13px;
  }

  .fit-list article > span {
    width: 40px;
    height: 40px;
  }

  .price-card {
    padding: 28px 23px;
  }

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

  .price > strong,
  .price-block--premium .price > strong {
    font-size: 4rem;
  }

  .choice-label {
    margin-bottom: 40px;
  }

  .guarantee-card {
    width: min(calc(100% - 24px), var(--container));
  }

  .final-cta {
    padding: 86px 0 94px;
  }

  .final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__actions .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .mobile-cta {
    padding-left: 13px;
  }

  .mobile-cta .button {
    padding-inline: 14px;
  }
}

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

  .has-js .reveal {
    transform: none;
    opacity: 1;
  }
}
