/* LANDING PAGE (#/) — hero, the three steps, the horoscope card, newsletter.
   Also holds the shared .btn styles. They live here rather than in a
   components file so the original cascade order is preserved exactly. */

.marketing {
  overflow:hidden
}

.marketing-hero {
  position:relative;
  padding:32px 0 0;
  min-height:640px
}

.marketing-hero::after {
  content:"";
  position:absolute;
  left:-5%;
  right:-5%;
  bottom:-44px;
  height:120px;
  background:var(--paper);
  border-radius:50% 50% 0 0/65% 65% 0 0;
  z-index:0
}

.marketing-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:34px;
  align-items:center;
  min-height:535px
}

.hero-copy {
  padding:34px 0 76px
}

.hero-title {
  font-size:clamp(3.4rem,6.1vw,5.35rem);
  line-height:.88;
  letter-spacing:-.045em;
  margin:0;
  color:var(--navy);
  max-width:560px
}

.hero-hand {
  font-size:clamp(2.4rem,4.6vw,4.1rem);
  line-height:.92;
  margin:18px 0 26px;
  transform:rotate(-3deg);
  letter-spacing:.01em
}

.hero-hand span {
  display:inline-block;
  border-bottom:4px solid var(--navy);
  padding-bottom:2px
}

.hero-copy .lead {
  max-width:335px;
  margin:0 0 22px;
  color:#27466c
}

.hero-art {
  height:515px;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center
}

.hero-art img {
  width:min(100%,550px);
  height:100%;
  object-fit:contain;
  object-position:center bottom;
  image-rendering:auto
}

.btn {
  border:0;
  border-radius:999px;
  padding:14px 22px;
  min-height:48px;
  cursor:pointer;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  font-size:.92rem
}

.btn-primary {
  background:var(--navy);
  color:white;
  box-shadow:0 10px 24px rgba(8,42,86,.12)
}

.btn-soft {
  background:var(--oat)
}

.btn-ghost {
  background:#fff;
  border:1px solid var(--navy)
}

.btn-small {
  min-height:40px;
  padding:9px 15px;
  font-size:.82rem
}

.steps {
  position:relative;
  z-index:2;
  background:var(--paper);
  padding:34px 0 30px
}

.steps-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px
}

.step {
  text-align:center;
  padding:10px 22px
}

/* The three landing icons are one image, positioned by background-position.
   Order in assets/icons.png: problem, tried, answer. */
.step-icon {
  width:72px;
  height:68px;
  object-fit:contain;
  object-position:center;
  display:block;
  margin:0 auto 9px;
  image-rendering:auto
}

.step-sprite {
  background-image:url("../assets/icons.png");
  background-repeat:no-repeat;
  background-size:300% 100%;
  background-position-y:center
}

.step-sprite-problem { background-position-x:0% }
.step-sprite-tried   { background-position-x:50% }
.step-sprite-answer  { background-position-x:100% }

.step strong {
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.08rem;
  line-height:1.05
}

.step span {
  display:block;
  font-size:.82rem;
  color:var(--muted);
  margin-top:4px
}

.section {
  padding:46px 0
}

.section-warm {
  background:linear-gradient(180deg,var(--paper),#F8EEE4)
}

.cosmic-card {
  margin:0;
  padding:30px 34px;
  border-radius:30px;
  background:linear-gradient(135deg,#F9D7DA,#F7CCD3);
  position:relative;
  overflow:hidden;
  min-height:250px;
  box-shadow:var(--shadow-soft);
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:18px;
  align-items:center
}

.cosmic-card::before {
  content:"✦";
  position:absolute;
  left:18px;
  top:14px;
  font-size:1.9rem;
  transform:rotate(-20deg)
}

.cosmic-copy {
  position:relative;
  z-index:2
}

.cosmic-card h2 {
  font-size:1.55rem;
  margin:0 0 10px;
  letter-spacing:-.025em
}

.cosmic-card p {
  font-size:.9rem;
  line-height:1.5;
  margin:.35rem 0;
  max-width:550px
}

.cosmic-sign {
  font-size:1.15rem
}

.cosmic-disclaimer {
  font-size:.72rem!important;
  opacity:.62
}

.cosmic-art {
  height:210px
}

.cosmic-art img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  image-rendering:auto
}

.newsletter {
  margin-top:18px;
  background:linear-gradient(135deg,#0D376B,#082A56);
  color:white;
  border-radius:30px;
  padding:26px 30px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  align-items:center;
  box-shadow:var(--shadow)
}

.newsletter-art {
  height:185px
}

.newsletter-art img {
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  image-rendering:auto
}

.newsletter .eyebrow {
  color:#F8C56C
}

.newsletter h2 {
  font-size:2rem;
  margin:0 0 6px
}

.newsletter p {
  color:#E3EBF6;
  line-height:1.45;
  font-size:.86rem;
  margin:.3rem 0
}

.newsletter-form {
  display:flex;
  gap:8px;
  margin-top:14px
}

.newsletter-form input {
  flex:1;
  min-width:0;
  border:0;
  border-radius:999px;
  padding:12px 15px;
  background:white
}

.newsletter-form button {
  border:0;
  border-radius:999px;
  padding:12px 18px;
  background:#FFD38B;
  color:var(--navy);
  font-weight:800;
  cursor:pointer
}

.newsletter-note {
  font-size:.68rem!important;
  opacity:.75
}

.newsletter-support {
  margin-top:.65rem!important;
  font-size:.72rem!important
}

.newsletter-support a {
  color:#FFE3A8;
  font-weight:600;
  text-underline-offset:3px
}

.quote-card {
  margin-top:18px;
  background:#F6E5D5;
  border-radius:26px;
  padding:22px 26px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(210px,280px);
  gap:24px;
  align-items:center;
  overflow:hidden
}

.quote-card blockquote {
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.15rem;
  line-height:1.3
}

.quote-card p {
  font-size:.8rem;
  line-height:1.45;
  color:#31506f
}

.quote-card img {
  width:100%;
  height:250px;
  object-fit:contain;
  object-position:center bottom;
  image-rendering:auto;
  display:block
}

