:root {
  --bg: #eef4f1;
  --text: #152224;
  --muted: #5f7473;
  --accent: #12a66d;
  --accent-dark: #0d8054;
  --shadow: 0 18px 40px rgba(18, 46, 40, 0.08);
  --shadow-soft: 0 10px 24px rgba(18, 46, 40, 0.05);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(95, 224, 181, 0.14), transparent 24%),
    radial-gradient(circle at top right, rgba(108, 184, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbfa 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: var(--container); margin: 0 auto; }

.topbar {
  background: rgba(255,255,255,0.84);
  border-bottom: 1px solid rgba(255,255,255,0.8);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand__mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8de2b9);
  box-shadow: 0 0 0 8px rgba(18, 166, 109, 0.10);
}
.brand__title { font-size: 0.98rem; font-weight: 700; }
.brand__subtitle, .topbar__note { color: var(--muted); font-size: 0.82rem; }
.topbar__note {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.92);
}
.topbar__note--link { color: var(--accent-dark); font-weight: 700; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.card--soft {
  background: linear-gradient(180deg, rgba(249,255,252,0.96), rgba(240,250,245,0.92));
}
.eyebrow,
.section-badge,
.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.95);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 28px 0 18px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}
.hero__content,
.hero__visual {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.hero__content {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  box-shadow: var(--shadow);
}
.hero h1,
.split-card h2,
.conditions-card h2,
.thanks-card h1,
.form-success h2 {
  margin: 16px 0 10px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 4.8rem); }
.split-card h2,
.conditions-card h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.thanks-card h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.hero__subtitle {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.hero__lead {
  margin: 14px 0 0;
  font-size: 1.12rem;
  font-weight: 600;
}
.hero__text,
.thanks-card__text,
.form-success p,
.condition-item p,
.risk-item span,
.benefit-list li {
  color: var(--muted);
  line-height: 1.65;
}
.hero__text { max-width: 60ch; }
.hero__visual {
  position: relative;
  overflow: hidden;
}
.hero__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.95);
  color: var(--accent-dark);
  font-weight: 700;
}
.hero__orb {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin: 32px auto 0;
  display: grid;
  place-items: center;
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.95);
  background: linear-gradient(135deg, rgba(255,255,255,0.26), rgba(255,255,255,0.08));
}
.hero__ring--one { inset: 4%; animation: float 7s ease-in-out infinite; }
.hero__ring--two { inset: 15%; opacity: 0.58; animation: float 9s ease-in-out infinite reverse; }
.hero__center {
  position: relative;
  width: 58%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(235,248,241,0.92));
  box-shadow: 0 22px 44px rgba(18, 46, 40, 0.10);
  padding: 18px;
  animation: breathe 5s ease-in-out infinite;
}
.hero__center svg,
.thanks-visual__orb svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero__center .check,
.thanks-visual__orb .check { stroke: #7cd8ae; }
.hero__center strong { margin-top: 14px; display: block; }
.hero__tag {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: var(--shadow-soft);
  font-size: 0.86rem;
  animation: bob 6s ease-in-out infinite;
}
.hero__tag--a { top: 34px; left: 10px; }
.hero__tag--b { right: 12px; top: 116px; animation-delay: -2s; }
.hero__tag--c { left: 18px; bottom: 38px; animation-delay: -3.5s; }

.split-section { padding: 4px 0 18px; }
.split-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}
.split-card,
.conditions-card,
.thanks-card {
  padding: 24px;
}
.section-heading { margin-bottom: 16px; }
.section-heading--center { text-align: center; }
.section-heading--center .section-badge { margin-bottom: 10px; }
.risk-stack {
  display: grid;
  gap: 10px;
}
.risk-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.92);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.risk-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 46, 40, 0.08);
}
.risk-item strong {
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}
.risk-item span { font-size: 0.9rem; }
.risk-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(18,166,109,0.12), rgba(255,255,255,0.88));
  animation: pulseGlow 4.6s ease-in-out infinite;
}
.risk-item__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent-dark);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.risk-item__icon svg path:not(.icon-line),
.risk-item__icon svg rect { fill: rgba(18,166,109,0.05); }

.benefit-visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.benefit-visual__orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(232,248,239,0.92));
  box-shadow: 0 18px 38px rgba(18, 46, 40, 0.10);
  position: relative;
  animation: breathe 5s ease-in-out infinite;
}
.benefit-visual__orb::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--accent);
}
.benefit-visual__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.95);
  color: var(--accent-dark);
  font-weight: 700;
}
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.benefit-list li {
  position: relative;
  padding: 14px 14px 14px 46px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 16px;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18,166,109,0.12);
  color: var(--accent-dark);
  font-weight: 800;
}

.conditions-section { padding: 4px 0 64px; }
.conditions-card { padding: 28px; }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.condition-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.92);
  text-align: center;
}
.condition-item strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.condition-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.condition-item p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}
.cta-box {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 280px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -120%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), transparent);
  transform: skewX(-18deg);
  transition: left 0.42s ease;
}
.button:hover::after { left: 140%; }
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(10, 115, 76, 0.16);
}
.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #16bf7b 70%, #76deb5 160%);
}

.thanks-page { padding: 34px 0 72px; }
.thanks-card {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 22px;
}
.promo-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.promo-form label { font-weight: 600; }
.promo-form input[type="email"] {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(21,34,36,0.08);
  padding: 0 14px;
  background: rgba(255,255,255,0.94);
}
.form-success {
  margin-top: 18px;
  padding: 20px;
}
.form-success h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.promo-code {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(18,166,109,0.12);
  color: var(--accent-dark);
}
.thanks-card__visual {
  display: grid;
  place-items: center;
}
.thanks-visual {
  width: 100%;
  min-height: 100%;
  padding: 28px;
  display: grid;
  place-items: center;
  text-align: center;
}
.thanks-visual__orb {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(234,248,241,0.92));
  box-shadow: 0 18px 42px rgba(18, 46, 40, 0.10);
  animation: breathe 5s ease-in-out infinite;
}
.thanks-visual strong { display: block; margin-top: 18px; font-size: 1.4rem; }
.thanks-visual span { display: block; margin-top: 8px; color: var(--muted); max-width: 28ch; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(18,166,109,0.0); }
  50% { box-shadow: 0 0 0 8px rgba(18,166,109,0.08); }
}

@media (max-width: 980px) {
  .hero,
  .split-grid,
  .thanks-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container { width: min(100vw - 20px, 100%); }
  .topbar__note { display: none; }
  .hero__content,
  .hero__visual,
  .split-card,
  .conditions-card,
  .thanks-card,
  .thanks-visual,
  .form-success { padding: 20px; }
  .hero { padding-top: 20px; }
  .hero__orb { width: min(280px, 100%); }
  .conditions-grid { grid-template-columns: 1fr; }
  .button { width: 100%; min-width: 0; }
  .hero__tag--b { top: 84px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
