@keyframes twinkle {
  0%, 100% {
    opacity: var(--min-op, 0.2);
    transform: scale(1);
  }
  50% {
    opacity: var(--max-op, 0.9);
    transform: scale(1.3);
  }
}
@keyframes floatMoon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}
@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}
@keyframes floatBook {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}
@keyframes shadowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scaleX(0.85);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  font-family: "Outfit", sans-serif;
  color: #c8d0e8;
  background: #080c1a;
  overflow-x: hidden;
  cursor: default;
}

.stars {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--d, 3s) var(--delay, 0s) infinite ease-in-out;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 64px;
  background: linear-gradient(to bottom, rgba(8, 12, 26, 0.98), transparent);
  z-index: 100;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  font-weight: 300;
  color: #e8e0c8;
}
.logo span {
  font-style: italic;
  color: #6b8dd6;
}

.nav-btn {
  padding: 11px 26px;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8c0e8;
  border-radius: 30px;
  background: transparent;
  border: 1px solid rgba(107, 141, 214, 0.45);
  transition: all 0.35s ease;
  cursor: pointer;
}
.nav-btn:hover {
  color: #e8e0c8;
  background: rgba(107, 141, 214, 0.15);
  border-color: #6b8dd6;
  box-shadow: 0 0 20px rgba(107, 141, 214, 0.2);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 141, 214, 0.12) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-moon {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f5f0e0, #b0a880);
  box-shadow: 0 0 40px rgba(232, 224, 200, 0.25), 0 0 80px rgba(232, 224, 200, 0.1), inset -20px -10px 0 rgba(0, 0, 0, 0.15);
  animation: floatMoon 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  max-width: 780px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b8dd6;
  animation: fadeUp 1s 0s ease both;
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #6b8dd6);
}

.hero h1 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #e8e0c8;
  animation: fadeUp 1s 0.15s ease both;
}
.hero h1 em {
  font-style: italic;
  color: #a8c0e8;
  display: block;
}

.hero-sub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #9b8ec4;
  font-style: italic;
  margin-bottom: 28px;
  animation: fadeUp 1s 0.25s ease both;
}

.hero-desc {
  margin: 0 auto 48px;
  max-width: 560px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5a6080;
  animation: fadeUp 1s 0.35s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-price-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #5a6080;
}
.hero-price-note .price-tag {
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a8c0e8;
  background: rgba(107, 141, 214, 0.15);
  border: 1px solid rgba(107, 141, 214, 0.3);
  border-radius: 20px;
}

.book-section {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 60px 0 100px;
  z-index: 2;
}

.book-wrap {
  position: relative;
  display: inline-block;
  animation: floatBook 5s ease-in-out infinite;
}

.book-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 220px;
  height: 30px;
  background: radial-gradient(ellipse, rgba(107, 141, 214, 0.3), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
  animation: shadowPulse 5s ease-in-out infinite;
}

.book {
  position: relative;
  width: 220px;
  height: 300px;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.book-cover {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  width: 220px;
  height: 300px;
  background: linear-gradient(160deg, #1a2555, #0d1530);
  border-radius: 4px 12px 12px 4px;
  border-left: 18px solid #0a1020;
  box-shadow: -6px 8px 30px rgba(0, 0, 0, 0.6), inset -2px 0 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.book-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(107, 141, 214, 0.2), transparent 60%), radial-gradient(circle at 80% 80%, rgba(155, 142, 196, 0.1), transparent 40%);
}

.book-stars-deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.bs {
  position: absolute;
  background: white;
  border-radius: 50%;
}

.book-moon-deco {
  position: relative;
  margin-bottom: 16px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle at 35% 35%, #f5f0e0, #9a9070);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(232, 224, 200, 0.3), inset -12px -6px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.book-title-deco {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  color: #e8e0c8;
  z-index: 1;
}
.book-title-deco .t1 {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b8dd6;
}
.book-title-deco .t2 {
  margin-bottom: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}
.book-title-deco .t3 {
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 300;
  color: #9b8ec4;
}

.book-badge-deco {
  position: absolute;
  bottom: 18px;
  right: 14px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: white;
  background: #6b8dd6;
  border-radius: 10px;
  text-transform: uppercase;
  z-index: 1;
}

.sec-label {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b8dd6;
}
.sec-label::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #6b8dd6, transparent);
}

h2 {
  margin-bottom: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  color: #e8e0c8;
}
h2 em {
  font-style: italic;
  color: #a8c0e8;
}

.sec-desc {
  margin-bottom: 64px;
  max-width: 520px;
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 300;
  color: #5a6080;
}

.inside-section {
  position: relative;
  margin: 0 auto;
  padding: 100px 60px;
  max-width: 1100px;
  z-index: 2;
}

.chapters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(107, 141, 214, 0.08);
  border: 1px solid rgba(107, 141, 214, 0.08);
}

.chapter {
  position: relative;
  padding: 40px 36px;
  background: #0d1226;
  transition: background 0.4s ease;
  overflow: hidden;
}
.chapter:hover {
  background: #131a35;
}

.chapter-num {
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(107, 141, 214, 0.12);
  transition: color 0.4s ease;
}
.chapter:hover .chapter-num {
  color: rgba(107, 141, 214, 0.22);
}

.chapter-icon {
  display: block;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #f0d080;
}

.chapter-title {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: #e8e0c8;
}

.chapter-desc {
  color: #5a6080;
  font-size: 0.87rem;
  line-height: 1.65;
}

.chapter-tag {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b8dd6;
  border-bottom: 1px solid rgba(107, 141, 214, 0.3);
}

.benefits-strip {
  position: relative;
  padding: 64px 60px;
  background: #131a35;
  border-top: 1px solid rgba(107, 141, 214, 0.12);
  border-bottom: 1px solid rgba(107, 141, 214, 0.12);
  z-index: 2;
}

.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
  max-width: 1100px;
}
@media (max-width: 800px) {
  .benefits-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transform: translateX(-20px);
  transition: all 0.6s ease;
  opacity: 0;
}
.benefit.visible {
  opacity: 1;
  transform: none;
}

.benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  color: #f0d080;
  background: rgba(107, 141, 214, 0.12);
  border: 1px solid rgba(107, 141, 214, 0.25);
  border-radius: 50%;
  transition: background 0.3s ease;
}
.benefit:hover .benefit-icon-wrap {
  background: rgba(107, 141, 214, 0.22);
}

.benefit-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: #e8e0c8;
}
.benefit-text span {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #5a6080;
}

.sleep-visual {
  position: relative;
  padding: 36px;
  background: #080c1a;
  border: 1px solid rgba(107, 141, 214, 0.15);
  border-radius: 16px;
  overflow: hidden;
}

.sv-title {
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: #a8c0e8;
}

.sleep-phases {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phase-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phase-label {
  font-size: 0.75rem;
  color: #5a6080;
  width: 80px;
  text-align: right;
}

.phase-bar-track {
  position: relative;
  flex: 1;
  height: 10px;
  background: rgba(107, 141, 214, 0.08);
  border-radius: 6px;
  overflow: visible;
}

.phase-bar {
  position: relative;
  width: 0;
  height: 100%;
  border-radius: 6px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.phase-bar.deep {
  background: linear-gradient(90deg, #6b8dd6, #4a6db8);
}
.phase-bar.rem {
  background: linear-gradient(90deg, #9b8ec4, #7a6eb0);
}
.phase-bar.light {
  background: linear-gradient(90deg, #4a6060, #3a5050);
}
.phase-bar.awake {
  background: linear-gradient(90deg, rgba(232, 224, 200, 0.3), transparent);
}

.phase-val {
  width: 36px;
  font-size: 0.75rem;
  color: #6b8dd6;
}

.sv-note {
  padding-top: 16px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.6;
  color: #5a6080;
  border-top: 1px solid rgba(107, 141, 214, 0.1);
}

.testi-section {
  position: relative;
  margin: 0 auto;
  padding: 100px 60px;
  max-width: 1100px;
  z-index: 2;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.testi-card {
  position: relative;
  padding: 32px;
  background: #0d1226;
  border: 1px solid rgba(107, 141, 214, 0.1);
  border-radius: 12px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(107, 141, 214, 0.1);
  pointer-events: none;
}
.testi-card:hover {
  border-color: rgba(107, 141, 214, 0.3);
  transform: translateY(-5px);
}

.testi-stars {
  margin-bottom: 18px;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: #6b8dd6;
}

.testi-quote {
  margin-bottom: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: #c8d0e8;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  color: white;
  background: linear-gradient(135deg, #6b8dd6, #9b8ec4);
  border-radius: 50%;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: #e8e0c8;
}

.testi-role {
  margin-top: 2px;
  font-size: 0.75rem;
  color: #5a6080;
}

.testi-result {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #7dcba0;
  background: rgba(125, 203, 160, 0.1);
  border: 1px solid rgba(125, 203, 160, 0.2);
  border-radius: 12px;
}

.pricing-section {
  position: relative;
  padding: 100px 60px;
  text-align: center;
  background: #131a35;
  border-top: 1px solid rgba(107, 141, 214, 0.12);
  overflow: hidden;
  z-index: 2;
}
.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(107, 141, 214, 0.07), transparent);
  pointer-events: none;
}

.price-box {
  position: relative;
  margin: 60px auto 0;
  padding: 56px 48px;
  max-width: 520px;
  background: #0d1226;
  border: 1px solid rgba(107, 141, 214, 0.25);
  border-radius: 20px;
  overflow: hidden;
}
.price-box::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(107, 141, 214, 0.2), transparent 70%);
  pointer-events: none;
}

.price-label {
  margin-bottom: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6b8dd6;
}

.price-amount {
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: #e8e0c8;
}
.price-amount sup {
  display: inline-block;
  margin-top: 12px;
  vertical-align: top;
  font-size: 2rem;
}

.price-old {
  margin-bottom: 32px;
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #5a6080;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
  list-style: none;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 300;
  color: #c8d0e8;
}

.pf-check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #6b8dd6;
  flex-shrink: 0;
  margin-top: 1px;
  width: 20px;
  height: 20px;
  background: rgba(107, 141, 214, 0.15);
  border: 1px solid rgba(107, 141, 214, 0.35);
  border-radius: 50%;
}

.price-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.78rem;
  color: #5a6080;
}

.price-formats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fmt-badge {
  padding: 5px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8c0e8;
  background: rgba(107, 141, 214, 0.1);
  border: 1px solid rgba(107, 141, 214, 0.2);
  border-radius: 20px;
}

.faq-section {
  position: relative;
  margin: 0 auto;
  padding: 100px 60px;
  max-width: 760px;
  z-index: 2;
}

.faq-item {
  border-bottom: 1px solid rgba(107, 141, 214, 0.1);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  gap: 20px;
  width: 100%;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #c8d0e8;
  background: none;
  border: none;
  transition: color 0.3s;
  cursor: pointer;
}
.faq-q:hover {
  color: #e8e0c8;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #6b8dd6;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  color: #5a6080;
  transition: max-height 0.4s ease, padding 0.3s ease;
  overflow: hidden;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 28px;
}

.cta-section {
  position: relative;
  padding: 120px 60px;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.cta-section h2 {
  margin: 0 auto 16px;
  max-width: 660px;
}
.cta-section p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
  max-width: 480px;
  font-size: 1rem;
  font-weight: 300;
  color: #5a6080;
}

.cta-moon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 141, 214, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin-top: 24px;
  color: #5a6080;
}
.cta-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: #6b8dd6;
}

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 40px 64px;
  background: #080c1a;
  border-top: 1px solid rgba(107, 141, 214, 0.08);
  z-index: 2;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #e8e0c8;
}
.footer-logo span {
  font-style: italic;
  color: #6b8dd6;
}

.footer-right {
  color: #5a6080;
  font-size: 0.78rem;
}
.footer-right a {
  text-decoration: none;
  color: #6b8dd6;
}

.btn-main {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #6b8dd6, #9b8ec4);
  border: none;
  border-radius: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  padding: 18px 48px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  overflow: hidden;
}
.btn-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(107, 141, 214, 0.4);
}
.btn-main:hover::after {
  opacity: 1;
}

.btn-buy {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #6b8dd6, #9b8ec4);
  border: none;
  border-radius: 40px;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(107, 141, 214, 0.4);
}

.reveal {
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  opacity: 0;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  nav {
    padding: 18px 24px;
  }
  .hero {
    padding: 100px 24px 60px;
  }
  .hero-moon {
    top: 8%;
    right: 5%;
    width: 70px;
    height: 70px;
  }
  .inside-section,
  .testi-section,
  .faq-section {
    padding: 80px 24px;
  }
  .benefits-strip {
    padding: 64px 24px;
  }
  .pricing-section {
    padding: 80px 24px;
  }
  .price-box {
    padding: 40px 28px;
  }
  .cta-section {
    padding: 80px 24px;
  }
  footer {
    padding: 36px 24px;
  }
  .chapters {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */