@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --ink-950: #06110a;
  --ink-900: #0b1810;
  --ink-800: #16271c;
  --ink-700: #2b3d31;
  --ink-600: #46584c;
  --ink-500: #6b7a70;
  --ink-400: #93a097;
  --ink-300: #bdc6c0;
  --ink-200: #dce2de;
  --ink-100: #eef2ef;
  --ink-50: #f7f9f7;
  --paper: #fdfefd;
  --white: #fff;
  --green-800: #05662e;
  --green-700: #087b38;
  --green-600: #0b9d48;
  --green-500: #14bd59;
  --green-400: #30d977;
  --green-300: #76eba7;
  --green-200: #b1f3ca;
  --green-100: #e0f9e9;
  --green-50: #f1fcf5;
  --blue-100: #e7f0ff;
  --blue-700: #215da9;
  --violet-100: #f0ebff;
  --violet-700: #6844c5;
  --amber-100: #fff1d5;
  --amber-700: #a85f06;
  --red-100: #ffe9e4;
  --red-700: #bd4233;
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1240px;
  --header-height: 72px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 34px rgba(6, 17, 10, .08);
  --shadow-md: 0 24px 68px rgba(6, 17, 10, .13);
  --shadow-dark: 0 34px 90px rgba(0, 0, 0, .3);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-700);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  font-family: var(--font);
}

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

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

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

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink-950);
  letter-spacing: -.04em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 5.4vw, 5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  font-weight: 780;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 750;
}

:focus-visible {
  outline: 3px solid rgba(48, 217, 119, .6);
  outline-offset: 4px;
}

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

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

.section {
  padding-block: clamp(88px, 10vw, 144px);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink-950);
  background: var(--white);
  font-size: .82rem;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(6, 17, 10, .8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.045em;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  font-weight: 650;
  transition: color .2s var(--ease);
}

.site-nav a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 12px 30px rgba(11, 157, 72, .23);
  font-size: .9rem;
  font-weight: 780;
  line-height: 1.2;
  transition:
    background .2s var(--ease),
    box-shadow .2s var(--ease),
    transform .2s var(--ease);
}

.button:hover {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 16px 38px rgba(11, 157, 72, .3);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button__arrow {
  font-size: 1.1em;
  transition: transform .2s var(--ease);
}

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

.button--small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: .78rem;
}

.button--hero {
  min-height: 60px;
  padding-inline: 27px;
  border-color: var(--green-400);
  color: var(--ink-950);
  background: var(--green-400);
  box-shadow: 0 16px 40px rgba(48, 217, 119, .25);
  font-size: 1rem;
}

.button--hero:hover {
  color: var(--ink-950);
  background: var(--green-300);
}

.button--white {
  color: var(--ink-950);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.button--white:hover {
  color: var(--ink-950);
  background: var(--green-50);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .88rem;
  font-weight: 700;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(52px, 7vw, 88px));
  padding-bottom: clamp(28px, 4vw, 48px);
  color: rgba(255, 255, 255, .7);
  background:
    radial-gradient(circle at 12% 18%, rgba(48, 217, 119, .17), transparent 33%),
    radial-gradient(circle at 88% 82%, rgba(48, 217, 119, .11), transparent 36%),
    var(--ink-950);
}

.hero::before,
.dark-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
  text-align: center;
}

.hero-intro,
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-intro {
  max-width: 920px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  padding: 8px 12px;
  border: 1px solid rgba(118, 235, 167, .23);
  border-radius: 999px;
  color: var(--green-300);
  background: rgba(48, 217, 119, .07);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-400);
  box-shadow: 0 0 0 5px rgba(48, 217, 119, .1);
  content: "";
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.75rem, 4.6vw, 4.4rem);
}

.hero h1 span {
  display: block;
  color: var(--green-300);
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 25px;
  padding: 0;
  list-style: none;
}

.assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: .95rem;
  font-weight: 650;
}

.assurances li::before {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(118, 235, 167, .3);
  border-radius: 50%;
  color: var(--green-300);
  background: rgba(48, 217, 119, .08);
  content: "✓";
  font-size: .7rem;
  font-weight: 800;
}

.microcopy {
  margin-top: 14px;
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
}

.hero-visual {
  width: min(100%, 1040px);
}

.browser {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hero .browser {
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}

.browser-bar {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-bottom: 1px solid #e8ebe9;
  color: var(--ink-400);
  background: var(--white);
  font-size: .58rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-200);
}

.browser-url {
  min-width: 0;
  max-width: 260px;
  margin-inline: auto;
  overflow: hidden;
  padding: 5px 13px;
  border: 1px solid var(--ink-100);
  border-radius: 999px;
  background: var(--ink-50);
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-status {
  color: var(--green-700);
  font-weight: 750;
  text-align: right;
}

.browser-shot {
  position: relative;
  overflow: hidden;
  background: #f8f9f8;
}

.browser-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(52px, 7vw, 86px);
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.hero-proof > div {
  padding-inline: 25px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof strong {
  display: block;
  color: rgba(255, 255, 255, .94);
  font-size: 1.05rem;
  font-weight: 750;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem;
  line-height: 1.45;
}

.section-heading {
  max-width: 800px;
}

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

.kicker {
  margin-bottom: 17px;
  color: var(--green-700);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 19px;
  color: var(--ink-500);
  font-size: clamp(.96rem, 1.3vw, 1.08rem);
}

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

.value-section {
  border-bottom: 1px solid var(--ink-100);
  background:
    radial-gradient(circle at 50% 0%, rgba(177, 243, 202, .38), transparent 30%),
    var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.value-card,
.pain-card,
.step-card {
  padding: 28px;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(6, 17, 10, .045);
}

.value-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 13px;
  color: var(--green-700);
  background: var(--green-100);
  font-size: 1rem;
  font-weight: 800;
}

.value-card:nth-child(2) .value-icon {
  color: var(--blue-700);
  background: var(--blue-100);
}

.value-card:nth-child(3) .value-icon {
  color: var(--amber-700);
  background: var(--amber-100);
}

.value-card:nth-child(4) .value-icon {
  color: var(--violet-700);
  background: var(--violet-100);
}

.value-card h3 {
  font-size: 1rem;
}

.value-card p {
  margin-top: 9px;
  color: var(--ink-500);
  font-size: .8rem;
}

.pain-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 209, 140, .28), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(177, 243, 202, .36), transparent 34%),
    var(--ink-50);
}

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

.pain-card {
  position: relative;
  min-height: 255px;
  border-left-width: 3px;
  border-left-color: var(--amber-700);
  transition:
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
}

.pain-card:nth-child(2) {
  border-left-color: var(--red-700);
}

.pain-card:nth-child(3) {
  border-left-color: var(--violet-700);
}

.pain-card:hover {
  border-color: var(--ink-200);
  border-left-color: var(--amber-700);
  box-shadow: var(--shadow-sm);
}

.pain-card:nth-child(2):hover {
  border-left-color: var(--red-700);
}

.pain-card:nth-child(3):hover {
  border-left-color: var(--violet-700);
}

.pain-index {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--amber-700);
  background: var(--amber-100);
  font-size: .58rem;
  font-weight: 800;
}

.pain-card:nth-child(2) .pain-index {
  color: var(--red-700);
  background: var(--red-100);
}

.pain-card:nth-child(3) .pain-index {
  color: var(--violet-700);
  background: var(--violet-100);
}

.pain-card h3 {
  font-size: 1.05rem;
}

.pain-card p {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: .84rem;
}

.product-tour {
  padding-bottom: clamp(96px, 11vw, 160px);
  background: var(--white);
}

.tour-intro {
  padding-block: clamp(90px, 10vw, 145px) 42px;
}

.product-story {
  padding-block: clamp(56px, 7vw, 92px);
  border-top: 1px solid var(--ink-100);
}

.product-story:nth-of-type(even) {
  background: var(--ink-50);
}

.story-copy {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(300px, .55fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 34px;
}

.story-number {
  display: block;
  margin-bottom: 13px;
  color: var(--green-700);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.story-copy p {
  color: var(--ink-500);
  font-size: .95rem;
}

.story-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.story-proof li {
  padding: 7px 10px;
  border: 1px solid var(--green-200);
  border-radius: 999px;
  color: var(--green-800);
  background: var(--green-50);
  font-size: .66rem;
  font-weight: 700;
}

.product-story .browser {
  width: min(100%, 1440px);
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}

.story-caption {
  margin-top: 15px;
  color: var(--ink-400);
  font-size: .68rem;
  text-align: center;
}

.inline-cta {
  padding-block: 18px;
  background: var(--white);
}

.inline-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 28px 32px;
  border: 1px solid var(--green-200);
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(48, 217, 119, .13), transparent 36%),
    var(--green-50);
}

.inline-cta-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.inline-cta-card p {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: .8rem;
}

.inline-cta-card .button {
  flex: 0 0 auto;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, .62);
  background:
    radial-gradient(circle at 50% 20%, rgba(48, 217, 119, .12), transparent 34%),
    var(--ink-950);
}

.dark-section .shell {
  position: relative;
  z-index: 1;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .kicker {
  color: var(--green-300);
}

.dark-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, .5);
}

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

.step-card {
  min-height: 275px;
  border-color: rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .04);
}

.step-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 62px;
  place-items: center;
  border: 1px solid rgba(118, 235, 167, .22);
  border-radius: 14px;
  color: var(--green-300);
  background: rgba(48, 217, 119, .08);
  font-size: .85rem;
  font-weight: 800;
}

.step-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
}

.steps-cta {
  display: grid;
  justify-items: center;
  margin-top: 44px;
}

.steps-cta p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .4);
  font-size: .7rem;
}

.offer-section {
  background: var(--white);
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, .65);
  background:
    radial-gradient(circle at 86% 18%, rgba(48, 217, 119, .18), transparent 34%),
    var(--ink-950);
  box-shadow: var(--shadow-md);
}

.offer-card h2 {
  color: var(--white);
}

.offer-card .kicker {
  color: var(--green-300);
}

.offer-lead {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .58);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 22px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .82);
  font-size: .76rem;
  font-weight: 650;
}

.offer-list li::before {
  color: var(--green-300);
  content: "✓";
  font-weight: 800;
}

.trial-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
}

.trial-card > span {
  color: var(--green-300);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trial-card > strong {
  display: block;
  margin-top: 20px;
  color: var(--white);
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .85;
}

.trial-card > small {
  color: var(--green-300);
  font-size: .95rem;
  font-weight: 700;
}

.trial-details {
  display: grid;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.trial-details div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .45);
  font-size: .67rem;
}

.trial-details strong {
  color: rgba(255, 255, 255, .9);
}

.faq-section {
  border-top: 1px solid var(--ink-100);
  background:
    radial-gradient(circle at 8% 18%, rgba(177, 243, 202, .28), transparent 38%),
    var(--ink-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, .88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  max-width: none;
}

.faq-heading h2 {
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.24;
  text-wrap: pretty;
}

.faq-heading > p:not(.kicker, .faq-note) {
  max-width: 34ch;
  margin-top: 18px;
  color: var(--ink-500);
  font-size: .95rem;
  line-height: 1.6;
}

.faq-heading .button {
  margin-top: 26px;
}

.accordion {
  border-top: 1px solid var(--ink-200);
}

.accordion details {
  border-bottom: 1px solid var(--ink-200);
}

.accordion summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px;
  color: var(--ink-800);
  cursor: pointer;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.35;
  list-style: none;
  transition: color .2s var(--ease);
}

.accordion summary:hover {
  color: var(--ink-950);
}

.accordion details[open] summary {
  color: var(--ink-950);
}

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

.accordion summary::after {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid var(--ink-200);
  border-radius: 50%;
  background-color: var(--white);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 2px, 2px 10px;
  content: "";
  color: inherit;
  transition:
    border-color .2s var(--ease),
    color .2s var(--ease),
    background-color .2s var(--ease),
    background-size .2s var(--ease);
}

.accordion summary:hover::after {
  border-color: var(--green-200);
  color: var(--green-700);
  background-color: var(--green-50);
}

.accordion details[open] summary::after {
  border-color: var(--green-200);
  color: var(--green-700);
  background-color: var(--green-100);
  background-size: 10px 2px, 0 0;
}

.accordion details p {
  max-width: 680px;
  padding: 0 48px 22px 4px;
  color: var(--ink-500);
  font-size: .86rem;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(98px, 12vw, 164px);
  background: var(--white);
}

.final-cta::before {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 760px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(177, 243, 202, .55), transparent 68%);
  content: "";
  transform: translateX(-50%);
}

.final-inner {
  position: relative;
  display: grid;
  max-width: 900px;
  justify-items: center;
  text-align: center;
}

.final-inner p {
  max-width: 610px;
  margin: 21px auto 32px;
  color: var(--ink-500);
}

.final-inner .assurances {
  justify-content: center;
  margin-top: 21px;
}

.final-inner .assurances li {
  color: var(--ink-500);
}

.final-inner .assurances li::before {
  border-color: var(--green-200);
  color: var(--green-700);
  background: var(--green-100);
}

.site-footer {
  padding-block: 30px;
  color: rgba(255, 255, 255, .42);
  background: var(--ink-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .67rem;
}

.footer-inner .brand {
  margin-right: auto;
}

.footer-inner a:not(.brand):hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 9px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  color: var(--white);
  background: #18a955;
  box-shadow: 0 16px 40px rgba(3, 90, 39, .28);
  font-size: .74rem;
  font-weight: 800;
  transition:
    background .2s var(--ease),
    transform .2s var(--ease);
}

.whatsapp-float:hover {
  color: var(--white);
  background: #108f46;
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.whatsapp-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.mobile-conversion {
  display: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .68s var(--ease),
    transform .68s var(--ease);
}

.js [data-reveal].is-visible,
.js.reveal-fallback [data-reveal] {
  opacity: 1;
  transform: none;
}

.fallback {
  min-height: 100vh;
  padding: 130px 24px;
  color: var(--white);
  background: var(--ink-950);
  text-align: center;
}

.fallback h1 {
  max-width: 850px;
  margin-inline: auto;
  color: var(--white);
}

.fallback p {
  max-width: 620px;
  margin: 22px auto 30px;
}

@media (max-width: 1080px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .site-nav {
    display: none;
  }

  .header-inner .button {
    margin-left: auto;
  }

  .hero-proof,
  .pain-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .pain-card,
  .step-card {
    min-height: 0;
  }

  .pain-index,
  .step-number {
    margin-bottom: 34px;
  }

  .offer-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
    max-width: none;
  }

  .trial-card {
    width: min(100%, 390px);
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 74px;
  }

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

  .section {
    padding-block: 78px;
  }

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

  .site-header .button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: .72rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 50px);
  }

  .hero h1 {
    font-size: clamp(2.3rem, 11.5vw, 3.25rem);
  }

  .hero-actions {
    display: grid;
    gap: 16px;
  }

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

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    width: calc(100% + 14px);
    margin-left: -7px;
  }

  .hero-intro,
  .hero-copy {
    max-width: none;
  }

  .browser {
    border-radius: 12px;
  }

  .browser-bar {
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    height: 34px;
    padding-inline: 8px;
  }

  .browser-dots {
    gap: 3px;
  }

  .browser-dots i {
    width: 5px;
    height: 5px;
  }

  .browser-url {
    padding: 4px 7px;
    font-size: .46rem;
  }

  .browser-status {
    font-size: .46rem;
  }

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

  .value-card,
  .pain-card {
    padding: 24px;
  }

  .tour-intro {
    padding-bottom: 28px;
  }

  .product-story {
    padding-block: 52px;
  }

  .story-copy {
    margin-bottom: 25px;
  }

  .inline-cta {
    padding-block: 10px;
  }

  .inline-cta-card {
    display: grid;
    padding: 24px;
  }

  .inline-cta-card .button {
    width: 100%;
  }

  .offer-card {
    gap: 40px;
    padding: 34px 24px;
    border-radius: 24px;
  }

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

  .offer-card .button {
    width: 100%;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

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

  .mobile-conversion {
    position: fixed;
    z-index: 92;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid var(--ink-200);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 -10px 28px rgba(6, 17, 10, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition:
      opacity .25s var(--ease),
      transform .25s var(--ease);
    backdrop-filter: blur(14px);
  }

  body.show-mobile-conversion .mobile-conversion {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-conversion > div {
    display: grid;
  }

  .mobile-conversion strong {
    color: var(--ink-900);
    font-size: .72rem;
  }

  .mobile-conversion span {
    color: var(--ink-500);
    font-size: .6rem;
  }

  .mobile-conversion .button {
    min-height: 44px;
    padding-inline: 14px;
    font-size: .7rem;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 84px;
    width: 52px;
    min-height: 52px;
    justify-content: center;
    padding: 6px;
  }

  .whatsapp-float > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }
}

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

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

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