/* Duvy landing — "Candlelight" brand: plum ink + ember rose/amber */
:root {
  --ink: #1A1020;
  --card: #251831;
  --elevated: #30203E;
  --stroke: #402D50;
  --rose: #FF5C7A;
  --amber: #FFB35C;
  --indigo: #9682FF;
  --text: #F5F0F4;
  --text-dim: #A898AC;
  --ember: linear-gradient(135deg, #FF5C7A, #FFB35C);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
a { color: var(--rose); text-decoration: none; }
a:hover { opacity: 0.85; }

/* Header */
header { padding: 22px 0; }
header .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--text); }
.logo img { width: 34px; height: 34px; border-radius: 8px; }
nav a { color: var(--text-dim); margin-left: 22px; font-size: 15px; font-weight: 600; }

/* Hero */
.hero { padding: 64px 0 80px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 {
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 .ember { background: var(--ember); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.sub { margin: 20px 0 30px; font-size: 19px; color: var(--text-dim); max-width: 480px; }
.cta {
  display: inline-block;
  background: var(--ember);
  color: #1c0d12;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(255, 92, 122, 0.35);
}
.cta.secondary { background: var(--elevated); color: var(--text); box-shadow: none; border: 1px solid var(--stroke); }
.hero .trust { margin-top: 16px; font-size: 13.5px; color: var(--text-dim); }

/* Phone mockup */
.phone {
  width: 300px; height: 620px; margin: 0 auto;
  border-radius: 44px;
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.phone .notch { width: 110px; height: 26px; background: #000; border-radius: 14px; margin: 0 auto 2px; }
.qcard {
  flex: 1;
  border-radius: 24px;
  background: linear-gradient(160deg, #FF5C7A, #6B5CE6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 26px 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.qcard .packname { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 18px; }
.qcard .q { font-size: 21px; font-weight: 800; line-height: 1.35; }
.qcard .badge { margin-top: 22px; font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.16); padding: 5px 12px; border-radius: 999px; }
.phone .actions { display: flex; justify-content: center; gap: 26px; padding-bottom: 6px; }
.phone .actions span {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: var(--elevated); border: 1px solid var(--stroke);
}
.phone .actions span.heart { background: var(--ember); border: none; font-size: 24px; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--card); }
h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -0.4px; margin-bottom: 12px; }
.section-sub { color: var(--text-dim); font-size: 17px; max-width: 620px; margin-bottom: 40px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--elevated);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 26px 22px;
}
section.alt .feature { background: var(--ink); }
.feature .emoji { font-size: 28px; }
.feature h3 { font-size: 18px; font-weight: 800; margin: 12px 0 6px; }
.feature p { font-size: 14.5px; color: var(--text-dim); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); gap: 20px; justify-content: center; }
.plan {
  background: var(--elevated); border: 1px solid var(--stroke);
  border-radius: 22px; padding: 30px 26px; text-align: center;
}
.plan.featured { border: 2px solid transparent; background:
  linear-gradient(var(--elevated), var(--elevated)) padding-box,
  var(--ember) border-box; }
.plan .price { font-size: 40px; font-weight: 800; margin: 8px 0 2px; }
.plan .per { color: var(--text-dim); font-size: 14px; }
.plan ul { list-style: none; margin: 18px 0 0; text-align: left; }
.plan li { font-size: 14.5px; color: var(--text-dim); padding: 5px 0; }
.plan li::before { content: "♥ "; color: var(--rose); font-size: 12px; }
.plan .badge { display: inline-block; background: var(--ember); color: #1c0d12; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; margin-bottom: 8px; }
.pricing-note { text-align: center; color: var(--text-dim); font-size: 13.5px; margin-top: 22px; }

/* Legal / prose pages */
.prose { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.prose h1 { font-size: 34px; margin-bottom: 6px; }
.prose .updated { color: var(--text-dim); font-size: 14px; margin-bottom: 34px; }
.prose h2 { font-size: 22px; margin: 34px 0 10px; }
.prose p, .prose li { color: var(--text-dim); font-size: 15.5px; }
.prose ul { padding-left: 22px; margin: 10px 0; }
.prose strong { color: var(--text); }

/* FAQ */
details {
  background: var(--elevated); border: 1px solid var(--stroke);
  border-radius: 16px; padding: 18px 22px; margin-bottom: 12px;
}
details summary { font-weight: 700; cursor: pointer; font-size: 16px; }
details p { margin-top: 10px; color: var(--text-dim); font-size: 15px; }

/* Footer */
footer { border-top: 1px solid var(--stroke); padding: 36px 0 48px; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; color: var(--text-dim); font-size: 14px; }
footer a { color: var(--text-dim); margin-right: 18px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero p.sub { margin-inline: auto; }
  .grid { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .phone { width: 270px; height: 560px; }
  nav a { margin-left: 14px; }
}
