:root {
  color-scheme: light;
  --sky: #67c8ff;
  --sky-dark: #3aa1e0;
  --lavender: #c6c2ff;
  --pink: #ff92c2;
  --peach: #ffd1ea;
  --text: #1b1b1f;
  --muted: #4d5666;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(35, 55, 95, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fcff 0%, #f6f1ff 55%, #fff6fb 100%);
}

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

.hero {
  padding: 32px 6vw 72px;
  background: linear-gradient(160deg, var(--sky) 0%, #a2dcff 45%, #d3ccff 75%, #ffe0f2 100%);
  color: #0e1f38;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid #ffffffaa;
  font-weight: 600;
  background: #ffffff60;
  backdrop-filter: blur(6px);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.thank-you-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 10px;
}

.thank-you-content .subhead {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-content .hero-actions {
  justify-content: center;
}

.thank-you-content .hero-badges {
  justify-content: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 16px;
  color: #0e1f38;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.accent {
  color: #f83c97;
}

.subhead {
  font-size: 1.05rem;
  color: #22314a;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.button {
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: #f83c97;
  color: var(--white);
  box-shadow: 0 12px 25px rgba(248, 60, 151, 0.3);
}

.button.ghost {
  background: #ffffffcc;
  color: #1b1b1f;
  border: 1px solid #ffffff;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

.hero-badges span {
  background: #ffffffc7;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
}

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

.hero-product {
  margin: 0;
  padding: 24px;
  background: #ffffffcc;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 460px;
}

.hero-product img {
  width: 100%;
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7fbff, #fef0f7);
}

main {
  padding: 0 6vw 72px;
}

section {
  margin-top: 72px;
}

.section-header {
  max-width: 620px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.benefit-grid article {
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.benefit-grid h3 {
  margin-top: 0;
  color: #f83c97;
}

.features {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature {
  background: linear-gradient(120deg, #dff2ff, #ffe3f2);
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 600;
}

.cta {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: linear-gradient(140deg, #fff5fb, #eef7ff);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #22314a;
}

.lead-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #dde4f0;
  font-size: 1rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.faq-grid article {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 32px 6vw 48px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 680px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero {
    padding-bottom: 56px;
  }

  .cta-card {
    padding: 28px;
  }
}
