:root {
  --green-950: #031f14;
  --green-900: #052c1d;
  --green-800: #073a27;
  --green-700: #0a5337;
  --lime: #b8ff3d;
  --lime-2: #8dfc3f;
  --mint: #eaffd4;
  --white: #ffffff;
  --off: #f7faf6;
  --soft: #eef4f0;
  --text: #102018;
  --muted: #66736b;
  --line: #dce7df;
  --shadow: 0 24px 80px rgba(3, 31, 20, 0.12);
  --shadow-soft: 0 16px 46px rgba(3, 31, 20, 0.07);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--off);
}

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

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

.container {
  width: min(1240px, calc(100% - clamp(32px, 6vw, 72px)));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1240px, calc(100% - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 31, 20, 0.78);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.hero-checks li,
.feature-list li,
.store-buttons,
.slider-controls,
.footer-grid {
  display: flex;
  align-items: center;
}

.brand {
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  display: none;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-950);
  font-weight: 900;
}

.desktop-nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.93rem;
  font-weight: 600;
}

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

.header-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-950);
  font-size: 0.92rem;
  font-weight: 800;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 255, 61, 0.2), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(15, 255, 156, 0.15), transparent 28%),
    linear-gradient(135deg, #02180f 0%, #063820 48%, #031a12 100%);
  color: var(--white);
}

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

.section-soft {
  background: var(--soft);
}

.hero {
  min-height: min(840px, 100svh);
  padding: clamp(132px, 12vw, 164px) 0 clamp(80px, 9vw, 112px);
}

.hero-grid,
.feature-grid,
.steps-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  gap: clamp(42px, 5.4vw, 74px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-top: clamp(6px, 2vw, 24px);
}

.eyebrow,
.tag,
.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(184, 255, 61, 0.12);
}

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

h1,
h2 {
  letter-spacing: -0.06em;
}

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 5.9vw, 5.65rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.1vw, 3.85rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.hero-checks,
.feature-list,
.content-card ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.mobile-sheet-card {
  display: none;
}

.hero-checks li,
.feature-list li,
.price-card li {
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.hero-checks li::before,
.feature-list li::before,
.price-card li::before,
.content-card li::before {
  content: "✓";
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-950);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  padding: 0 clamp(24px, 3vw, 34px);
  background: var(--lime);
  color: var(--green-950);
  box-shadow: 0 18px 42px rgba(184, 255, 61, 0.24);
}

.btn-ghost {
  padding: 0 clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.safe-note {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 255, 61, 0.12);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 43vw, 610px);
}

.product-stack {
  position: absolute;
  z-index: 2;
  right: 168px;
  bottom: 42px;
  width: clamp(240px, 22vw, 288px);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
  transform: rotate(-7deg);
}

.product-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 45%);
  pointer-events: none;
}

.phone-mockup {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 0;
  width: clamp(244px, 22vw, 292px);
  min-height: clamp(455px, 39vw, 510px);
  padding: 13px;
  border: 8px solid #04170f;
  border-radius: 42px;
  background: #f7fbf8;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
  transform: rotate(8deg);
}

.phone-top {
  width: 72px;
  height: 7px;
  margin: 4px auto 16px;
  border-radius: 999px;
  background: #111;
  opacity: 0.18;
}

.phone-content {
  padding: 14px;
  color: var(--text);
}

.mini-label,
.mockup-title small {
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-content h3 {
  margin: 7px 0 18px;
}

.amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-size: 0.88rem;
}

.amount-row span {
  color: var(--muted);
}

.amount-row.positive {
  background: var(--mint);
  border-color: rgba(184, 255, 61, 0.6);
}

.bar-chart {
  display: flex;
  height: 120px;
  align-items: end;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #edf5ef;
}

.bar-chart span {
  flex: 1;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--lime), #1abf67);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.card-balance {
  top: 42%;
  left: 22px;
}

.floating-card span,
.floating-card small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card strong {
  color: var(--white);
  font-size: 1.48rem;
}

.coin {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f7ffb8, var(--lime));
  color: var(--green-950);
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(184, 255, 61, 0.28);
}

.coin-one {
  top: 118px;
  right: 76px;
}

.coin-two {
  top: 282px;
  right: 380px;
}

.coin-three {
  right: 18px;
  bottom: 184px;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.24;
}

.hero-glow-one {
  left: -120px;
  top: -120px;
  background: var(--lime);
}

.hero-glow-two {
  right: -140px;
  bottom: 40px;
  background: #17c57b;
}

.problem,
.feature,
.steps,
.learn,
.content,
.faq {
  padding: clamp(72px, 8vw, 112px) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.problem-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.problem-cards {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.problem-cards article {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 30px) clamp(24px, 3vw, 32px) clamp(24px, 3vw, 30px) clamp(88px, 8vw, 104px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #f8fbf9;
  box-shadow: var(--shadow-soft);
}

.problem-cards article::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -34px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(184, 255, 61, 0.42);
}

.problem-cards strong {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 950;
}

.problem-cards h3 {
  margin-bottom: 6px;
}

.problem-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-copy p,
.steps-copy p,
.pricing-copy p,
.content-card p,
.benefit-card p,
.audience-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.72;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
}

.lesson-card {
  min-height: 250px;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(3, 31, 20, 0.08);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lesson-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(3, 31, 20, 0.1);
}

.lesson-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-950);
  font-weight: 950;
}

.lesson-card p {
  color: var(--muted);
  line-height: 1.68;
}

.tag {
  color: var(--green-700);
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 26px 0;
}

.feature-list li {
  color: var(--text);
}

.store-buttons {
  gap: 10px;
}

.store-buttons span {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green-950);
  color: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
}

.dashboard-mockup {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.mockup-header {
  display: flex;
  gap: 8px;
  padding: 18px 22px;
  background: var(--green-950);
}

.mockup-header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
}

.mockup-header span:nth-child(2) {
  background: #e1efe6;
}

.mockup-header span:nth-child(3) {
  background: #4ccf8c;
}

.mockup-body {
  padding: clamp(24px, 3vw, 34px);
}

.mockup-title,
.section-title-row,
.mockup-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-title strong {
  display: block;
  margin-top: 4px;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.mockup-title > span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.metric-grid > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8fbf9;
}

.metric-grid small {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.metric-grid strong {
  font-size: 1.42rem;
}

.line-chart {
  height: 170px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(184, 255, 61, 0.26), rgba(184, 255, 61, 0)),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 500 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 132 C80 100 110 155 175 105 C235 60 265 112 320 80 C380 48 410 75 500 38' fill='none' stroke='%23074b31' stroke-width='8' stroke-linecap='round'/%3E%3Cpath d='M0 132 C80 100 110 155 175 105 C235 60 265 112 320 80 C380 48 410 75 500 38 L500 180 L0 180 Z' fill='%23b8ff3d' opacity='.25'/%3E%3C/svg%3E");
  background-size: cover;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.category-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f2f8f4;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
}

.category-list b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.success,
.pricing {
  padding: clamp(72px, 7vw, 104px) 0;
}

.mini-kicker {
  color: var(--green-700);
}

.section-title-row {
  gap: 28px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-title-row h2 {
  max-width: 680px;
}

.slider-controls {
  gap: 10px;
  color: var(--green-800);
  font-weight: 900;
}

.slider-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-950);
  font-weight: 900;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 32px);
}

.benefit-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(3, 31, 20, 0.11);
}

.benefit-card h3,
.benefit-card p,
.benefit-card a {
  margin-right: clamp(24px, 3vw, 30px);
  margin-left: clamp(24px, 3vw, 30px);
}

.benefit-card h3 {
  margin-top: 26px;
}

.benefit-card a {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-800);
  font-weight: 900;
}

.benefit-visual {
  display: flex;
  min-height: clamp(184px, 18vw, 220px);
  align-items: end;
  padding: clamp(24px, 3vw, 30px);
  color: rgba(3, 31, 20, 0.2);
  font-size: 4.5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.visual-one {
  background:
    radial-gradient(circle at 80% 28%, var(--lime) 0 22%, transparent 23%),
    linear-gradient(135deg, #e6ffd2, #baff41);
}

.visual-two {
  background:
    radial-gradient(circle at 20% 22%, #063820 0 18%, transparent 19%),
    linear-gradient(135deg, #c8ff66, #f5fff1);
}

.visual-three {
  background:
    radial-gradient(circle at 70% 18%, #baff41 0 16%, transparent 17%),
    linear-gradient(135deg, #082719, #0f5c3c);
  color: rgba(255, 255, 255, 0.45);
}

.form-preview {
  display: flex;
  justify-content: center;
}

.form-card {
  width: min(420px, 100%);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #f7fbf8;
  box-shadow: var(--shadow);
}

.form-bar {
  height: 30px;
  margin: -4px -4px 22px;
  border-radius: 18px;
  background: var(--green-950);
}

.form-card label {
  display: block;
  margin: 16px 0 8px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

.fake-input {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}

.success-input {
  background: var(--mint);
  color: var(--green-800);
}

.form-card button {
  width: 100%;
  margin-top: 20px;
  padding: 16px;
  border: 0;
  border-radius: 16px;
  background: var(--green-950);
  color: var(--white);
  font-weight: 900;
}

.accordion {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.accordion-trigger span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-950);
  font-size: 0.85rem;
}

.accordion-content {
  display: none;
  margin-top: -8px;
  padding: 0 20px 18px 62px;
  color: var(--muted);
  line-height: 1.72;
}

.accordion-content.is-open {
  display: block;
}

.audience {
  padding: clamp(72px, 8vw, 112px) 0;
}

.center-title {
  max-width: 770px;
  margin: 0 auto clamp(34px, 4.6vw, 54px);
  text-align: center;
}

.audience .mini-kicker,
.final-cta .mini-kicker {
  color: var(--lime);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}

.audience-grid article {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.audience-grid span {
  color: var(--lime);
  font-weight: 950;
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: clamp(22px, 2.8vw, 32px);
}

.content-card {
  padding: clamp(28px, 3.2vw, 38px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #f8fbf9;
  box-shadow: 0 14px 42px rgba(3, 31, 20, 0.05);
}

.content-card.featured {
  background: var(--green-950);
  color: var(--white);
}

.content-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-950);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.content-card li {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.content-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-copy {
  max-width: 600px;
}

.guarantee-box {
  display: grid;
  gap: 7px;
  margin-top: 26px;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid rgba(10, 83, 55, 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(3, 31, 20, 0.06);
}

.guarantee-box strong {
  color: var(--green-900);
  font-size: 1.06rem;
}

.guarantee-box span {
  color: var(--muted);
  line-height: 1.6;
}

.price-card {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(3, 31, 20, 0.08);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-800);
  font-weight: 950;
  font-size: 0.82rem;
}

.price-card p {
  color: var(--muted);
}

.price-topline {
  display: inline-flex;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f0f7f2;
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 950;
}

.price {
  margin: 22px 0 4px;
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.price-card small {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

.price-card li {
  color: var(--text);
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f8fbf9;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 900;
}

details p {
  margin: -4px 24px 24px;
}

.final-cta {
  padding: clamp(72px, 7vw, 96px) 0;
}

.final-card {
  max-width: 880px;
  text-align: center;
}

.final-card p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.site-footer {
  padding: 26px 0;
  background: #02130c;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

.footer-grid {
  justify-content: space-between;
  gap: 22px;
}

.footer-grid p {
  margin: 0;
}

.floating-mobile-cta {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-950);
  box-shadow: 0 20px 54px rgba(3, 31, 20, 0.28);
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(88px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

  .hero-copy h1,
  .hero-subtitle,
  .safe-note {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-checks {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-grid,
  .problem-grid,
  .feature-grid,
  .steps-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 540px;
    margin: 0 auto;
  }

  .benefit-cards,
  .lesson-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 18px);
    gap: 8px;
    padding: 9px 10px 9px 10px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    overflow: hidden;
    max-width: 118px;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: block;
  }

  .header-cta {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 64px;
  }

  .hero-copy {
    text-align: left;
  }

  h1 {
    max-width: 10ch;
    margin-bottom: 18px;
    font-size: clamp(2.42rem, 11vw, 3rem);
    line-height: 0.93;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.35rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero-subtitle,
  .safe-note {
    margin-right: 0;
    margin-left: 0;
  }

  .eyebrow,
  .tag,
  .mini-kicker {
    font-size: 0.72rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .btn {
    min-height: 54px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .hero-actions .btn-ghost {
    min-height: 46px;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-sheet-card {
    display: grid;
    gap: 12px;
    margin: 22px 0 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 26px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07)),
      rgba(3, 31, 20, 0.36);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
  }

  .sheet-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .sheet-card-head span {
    color: var(--lime);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sheet-card-head strong {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
  }

  .sheet-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .sheet-mini-grid div,
  .sheet-mini-table {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.1);
  }

  .sheet-mini-grid div {
    display: grid;
    gap: 4px;
    padding: 11px 10px;
  }

  .sheet-mini-grid small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .sheet-mini-grid strong {
    color: var(--white);
    font-size: 0.84rem;
    letter-spacing: -0.04em;
  }

  .sheet-mini-grid .sheet-highlight {
    background: rgba(184, 255, 61, 0.2);
    border-color: rgba(184, 255, 61, 0.38);
  }

  .sheet-mini-table {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .sheet-mini-table strong {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--green-950);
    font-size: 0.72rem;
  }

  .trust-row {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-width: 142px;
    padding: 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero-visual {
    min-height: clamp(430px, 118vw, 500px);
  }

  .product-stack {
    right: auto;
    left: 0;
    bottom: 68px;
    width: clamp(150px, 44vw, 205px);
    border-width: 7px;
    border-radius: 24px;
  }

  .phone-mockup {
    right: 0;
    width: clamp(172px, 52vw, 215px);
    min-height: clamp(360px, 100vw, 420px);
    padding: 10px;
    border-width: 6px;
    border-radius: 34px;
    transform: rotate(5deg);
  }

  .phone-content {
    padding: 10px;
  }

  .amount-row {
    padding: 10px;
    font-size: 0.78rem;
  }

  .bar-chart {
    height: 92px;
    padding: 12px;
  }

  .card-balance,
  .coin-two {
    display: none;
  }

  .coin-one {
    top: 30px;
    right: 28px;
  }

  .coin-three {
    right: 14px;
    bottom: 116px;
  }

  .feature,
  .problem,
  .steps,
  .learn,
  .content,
  .faq,
  .audience,
  .success,
  .pricing {
    padding: 68px 0;
  }

  .problem-cards article {
    padding: 24px;
    padding-top: 84px;
  }

  .problem-cards strong {
    left: 24px;
    top: 24px;
  }

  .lesson-card {
    min-height: auto;
  }

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

  .section-title-row {
    display: block;
  }

  .slider-controls {
    margin-top: 12px;
  }

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

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

  .mockup-title {
    align-items: flex-start;
    gap: 14px;
  }

  .dashboard-mockup {
    transform: none;
  }

  .content-card,
  .price-card,
  .guarantee-box,
  .form-card {
    border-radius: 26px;
  }

  .footer-grid {
    display: block;
  }

  .footer-grid p + p {
    margin-top: 10px;
  }

  .floating-mobile-cta {
    display: flex;
  }

  body.show-floating-cta .floating-mobile-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
