:root {
  --bg: #f7f7f5;
  --card: #ffffff;
  --text: #111111;
  --muted: #6b6b6b;
  --line: #ececeb;
  --dark: #f1f1f3;
  --pink: #ff4f9a;
  --green: #a9ec51;
  --radius: 22px;
  --shadow: 0 10px 32px rgba(17, 17, 17, 0.06);
  --shadow-soft: 0 8px 22px rgba(17, 17, 17, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 6rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(17, 17, 17, 0.04);
}

.card + .card {
  margin-top: 2rem;
}

.hero {
  display: grid;
  gap: 1.3rem;
}

.hero .btn {
  background: var(--green);
  border-color: rgba(117, 166, 49, 0.45);
  box-shadow: 0 8px 20px rgba(140, 196, 66, 0.24);
  color: #1d2c08;
}

.hero .btn:hover {
  background: #b6ef68;
  border-color: rgba(117, 166, 49, 0.52);
  color: #1b280a;
}

.label {
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f6f6f;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
}

.label::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(169, 236, 81, 0.12);
}

.hero .label {
  color: #6d5f67;
}

.hero .label::before {
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 79, 154, 0.14);
}

h1 {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.9rem, 4.9vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: -0.022em;
  font-weight: 700;
}

h2 {
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.42rem, 3.7vw, 2.05rem);
  line-height: 1.28;
  letter-spacing: -0.016em;
  font-weight: 700;
}

p,
li {
  color: #232323;
  font-size: 1.04rem;
  line-height: 1.75;
}

.content-section {
  display: grid;
  gap: 1.35rem;
  background: #ffffff;
  box-shadow:
    0 10px 30px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.hero p,
.hero .btn,
.hero .trust-text {
  width: min(100%, 38rem);
  margin-left: auto;
  margin-right: auto;
}

.content-section p,
.content-section .bullet-list,
.content-section .btn {
  width: min(100%, 36rem);
  margin-left: auto;
  margin-right: auto;
}

.hero p,
.content-section p {
  text-align: left;
}

.hero h1,
.content-section h2,
.content-section--dark h2 {
  text-align: center;
}

ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.46rem;
}

.bullet-list {
  text-align: left;
  width: min(100%, 36rem);
  margin: 0 auto;
}

.bullet-list li::marker {
  color: rgba(255, 79, 154, 0.45);
}

.video-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow-soft);
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.btn {
  border: 1px solid #d9d9dc;
  background: #ffffff;
  color: #1b1b1d;
  border-radius: 999px;
  padding: 0.88rem 1.22rem;
  font-weight: 600;
  font-size: 0.93rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.06);
}

.btn:hover {
  transform: translateY(-1px);
  background: #fff5fa;
  border-color: rgba(255, 79, 154, 0.28);
  color: #742848;
  box-shadow: 0 7px 16px rgba(17, 17, 17, 0.08);
}

.btn--light {
  background: #ff4f9a;
  color: #ffffff;
  border-color: #ff4f9a;
  box-shadow: 0 9px 22px rgba(255, 79, 154, 0.34);
}

.btn--light:hover {
  background: #ff5da1;
  color: #ffffff;
  border-color: #ff5da1;
  box-shadow: 0 11px 24px rgba(255, 79, 154, 0.4);
}

.trust-text {
  color: var(--muted);
  font-size: 0.88rem;
  position: relative;
}

.hero {
  gap: 1.55rem;
  padding: 2.8rem 1.8rem;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.09);
}

.hero h1 {
  margin-bottom: 0.2rem;
}

.hero p + p {
  margin-top: 0.2rem;
}

.hero .btn {
  margin-top: 0.45rem;
}

.trust-text::after {
  content: none;
}

.content-section--dark {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 79, 154, 0.16), transparent 44%),
    radial-gradient(circle at 84% 78%, rgba(169, 236, 81, 0.08), transparent 40%),
    linear-gradient(155deg, #131318 0%, #0f1014 56%, #121217 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 36px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.content-section--dark .btn--light {
  box-shadow:
    0 12px 30px rgba(255, 79, 154, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}

.content-section--dark h2,
.content-section--dark p {
  color: #ffffff;
}

.content-section--dark h2 {
  text-decoration: none;
}

.content-section--dark p:last-of-type {
  color: rgba(255, 255, 255, 0.92);
}

.content-section--dark .btn {
  border-color: rgba(255, 255, 255, 0.2);
}

#final-cta {
  position: relative;
  isolation: isolate;
}

#final-cta::before {
  content: none;
}

#final-cta::after {
  content: "";
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(
    115deg,
    transparent 44%,
    rgba(255, 255, 255, 0.015) 48%,
    rgba(255, 79, 154, 0.045) 52%,
    rgba(169, 236, 81, 0.02) 56%,
    transparent 62%
  );
  transform: translate3d(-30%, 0, 0);
  animation: finalShimmer 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 0;
}

#final-cta > * {
  position: relative;
  z-index: 1;
}

@keyframes finalShimmer {
  0% {
    transform: translate3d(-32%, 0, 0);
    opacity: 0.09;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    transform: translate3d(32%, 0, 0);
    opacity: 0.09;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 16, 20, 0.48);
  backdrop-filter: blur(2px);
}

.form-modal__card {
  position: relative;
  width: min(540px, 100%);
  max-height: min(88vh, 860px);
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  padding: 1.9rem 1.55rem;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

.close-btn {
  border: 0;
  background: none;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
  font-size: 0.84rem;
  margin-bottom: 1.15rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-modal__card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.form-intro {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 1.6rem;
  line-height: 1.68;
}

.premium-form {
  display: grid;
  gap: 1.15rem;
}

.premium-form label,
.premium-form legend {
  font-size: 0.9rem;
  font-weight: 600;
  color: #212124;
}

.premium-form input,
.premium-form textarea {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fdfdfe;
  padding: 0.92rem 0.92rem;
  color: #1e1e20;
  font-size: 0.95rem;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
  color: #9b9599;
  opacity: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.premium-form textarea {
  resize: vertical;
  min-height: 98px;
}

.premium-form fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.62rem;
  margin: 0;
}

.choice {
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #353538;
}

.choice input {
  margin-top: 0.25rem;
}

body.modal-open {
  overflow: hidden;
}

.premium-form input:focus-visible,
.premium-form textarea:focus-visible {
  outline: 2px solid rgba(255, 79, 154, 0.45);
  outline-offset: 1px;
  border-color: rgba(255, 79, 154, 0.5);
}

.premium-form fieldset:focus-within {
  border-color: rgba(255, 79, 154, 0.45);
}

.premium-form legend::after {
  content: " *";
  color: rgba(255, 79, 154, 0.82);
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-error {
  margin-top: 0.75rem;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 53, 53, 0.28);
  background: #fff7f7;
  color: #9e2d2d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.premium-form .btn:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.form-success {
  margin-top: 0.5rem;
  padding: 1.2rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(169, 236, 81, 0.42);
  background: #fafdf5;
}

.form-success h4 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #4b2e3d;
}

.form-success p {
  color: #353535;
  font-size: 0.92rem;
}

.signature {
  margin-top: 0.85rem;
  color: #3f6b24 !important;
  font-weight: 600;
}

.sticky-cta {
  display: none;
}

.sticky-cta:hover {
  color: inherit;
}

@media (min-width: 600px) {
  .btn {
    width: auto;
  }

  .page {
    padding-top: 2.2rem;
  }

  .card {
    padding: 3.3rem 2.7rem;
  }

  .hero {
    padding: 3.6rem 3rem;
    gap: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .page {
    max-width: 820px;
  }

  h2 {
    font-size: 2.03rem;
  }

  .content-section h2 {
    margin-bottom: 0.35rem;
  }

  .card + .card {
    margin-top: 2.4rem;
  }

  .card {
    padding: 3.55rem 3rem;
  }

  .hero {
    padding: 4rem 3.2rem;
  }
}

@media (max-width: 380px) {
  .page {
    width: 100%;
    max-width: 720px;
    padding-top: 1.1rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    padding-bottom: 6.25rem;
  }

  .card {
    padding: 1.7rem 1rem;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  h2 {
    font-size: clamp(1.2rem, 5.4vw, 1.5rem);
  }

  p,
  li {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .content-section--dark p {
    color: rgba(255, 255, 255, 0.97);
  }

  .content-section--dark p:last-of-type {
    color: rgba(255, 255, 255, 0.94);
  }

  .form-modal {
    padding: 0.55rem;
  }

  .form-modal__card {
    padding: 1.1rem 0.9rem;
    border-radius: 18px;
  }

  .hero {
    gap: 1.2rem;
    padding: 2.05rem 1.25rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  #final-cta::after {
    animation: none;
    transform: none;
    opacity: 0.08;
  }
}
