:root{
  --bg: #fff7fb;
  --bg-2: #fbf4ff;
  --card: rgba(255,255,255,.72);
  --stroke: rgba(60, 20, 90, .10);
  --text: #221428;
  --muted: rgba(34, 20, 40, .72);
  --muted2: rgba(34, 20, 40, .55);
  --primary: #6a4cff;
  --primary-2:#ff5ba6;
  --shadow: 0 18px 48px rgba(60,20,90,.14);
  --shadow-soft: 0 10px 30px rgba(60,20,90,.10);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html, body { height: 100%; }
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 12% 2%, rgba(255, 91, 166, .14), transparent 60%),
    radial-gradient(820px 520px at 88% 4%, rgba(106, 76, 255, .14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset: 3px; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 18px; top: 16px; width:auto; height:auto; padding: 10px 12px;
  background: #fff; border:1px solid var(--stroke); border-radius: 12px; box-shadow: var(--shadow-soft);
  z-index: 999;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 251, .6);
  border-bottom: 1px solid rgba(60,20,90,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap: 10px; }
.brand-name{
  font-weight: 750;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.brand-mark{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(60,20,90,.10);
  box-shadow: 0 12px 30px rgba(60,20,90,.10);
}

.nav{ display:flex; gap: 14px; align-items:center; }
.nav a{
  font-size: 14px;
  color: rgba(34,20,40,.86);
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover{ background: rgba(255,255,255,.55); text-decoration:none; }
.pill-link{
  border: 1px solid rgba(106,76,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.35));
  box-shadow: 0 10px 26px rgba(106,76,255,.10);
}

.hero{ padding: 56px 0 24px; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.kicker{
  display:inline-flex; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(60,20,90,.10);
  background: rgba(255,255,255,.55);
  box-shadow: 0 14px 34px rgba(60,20,90,.10);
  color: rgba(34,20,40,.78);
  font-size: 13px;
}

h1{
  margin: 14px 0 10px;
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 650;
  letter-spacing:-0.02em;
  font-size: clamp(38px, 5.2vw, 56px);
  line-height: 1.02;
}
.subtitle{
  display:block;
  margin-top: 10px;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-weight: 600;
  color: rgba(34,20,40,.72);
  font-size: clamp(14px, 1.7vw, 18px);
}
.lead{
  margin: 10px 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 52ch;
}

.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 12px; }
.btn{
  display:flex;
  flex-direction:column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(60,20,90,.12);
  background: rgba(255,255,255,.65);
  box-shadow: var(--shadow-soft);
  min-width: 220px;
}
.btn:hover{ text-decoration:none; transform: translateY(-1px); transition: transform .15s ease; }
.btn-top{ font-weight: 750; letter-spacing:-0.01em; }
.btn-sub{ font-size: 12px; color: var(--muted2); }
.btn.primary{
  border: 1px solid rgba(106,76,255,.20);
  background: linear-gradient(135deg, rgba(106,76,255,.16), rgba(255,91,166,.14)) , rgba(255,255,255,.62);
}
.btn.secondary{
  border: 1px solid rgba(255,91,166,.20);
  background: linear-gradient(135deg, rgba(255,91,166,.16), rgba(255,255,255,.45));
}

.trust-row{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.trust-pill{
  display:inline-flex; gap: 8px; align-items:center;
  padding: 8px 10px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(60,20,90,.10);
  border-radius: 999px;
  color: rgba(34,20,40,.78);
  font-size: 13px;
}
.dot{ width: 9px; height: 9px; border-radius: 50%; display:inline-block; }
.dot-pink{ background: rgba(255,91,166,.85); }
.dot-lilac{ background: rgba(106,76,255,.78); }
.dot-peach{ background: rgba(255,175,110,.9); }

.hero-visual{ position: relative; min-height: 520px; }
.phone{
  width: min(390px, 100%);
  margin-left: auto;
  border-radius: 38px;
  border: 1px solid rgba(60,20,90,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.45));
  box-shadow: 0 24px 70px rgba(60,20,90,.18);
  padding: 14px;
  position: relative;
}
.phone-notch{
  position:absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 138px; height: 24px;
  border-radius: 999px;
  background: rgba(34,20,40,.10);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.35);
}
.screen{
  border-radius: 30px;
  border: 1px solid rgba(60,20,90,.08);
  background:
    radial-gradient(520px 360px at 20% 10%, rgba(255,91,166,.16), transparent 60%),
    radial-gradient(520px 360px at 80% 18%, rgba(106,76,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.52));
  padding: 18px 16px 16px;
  min-height: 520px;
  overflow:hidden;
}
.screen-top{ display:flex; justify-content:space-between; align-items:center; margin-top: 10px; }
.mini-brand{
  display:flex; align-items:center; gap: 8px;
  font-weight: 700;
  color: rgba(34,20,40,.80);
  font-size: 13px;
}
.mini-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,91,166,.9), rgba(106,76,255,.9));
  box-shadow: 0 10px 20px rgba(106,76,255,.18);
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(60,20,90,.10);
  background: rgba(255,255,255,.55);
  color: rgba(34,20,40,.70);
}

.card{
  margin-top: 14px;
  padding: 14px 12px;
  border-radius: 20px;
  border: 1px solid rgba(60,20,90,.10);
  background: rgba(255,255,255,.58);
  box-shadow: 0 14px 34px rgba(60,20,90,.10);
}
.card.soft{ background: rgba(255,255,255,.64); }
.card.glow{
  background: linear-gradient(135deg, rgba(255,91,166,.14), rgba(106,76,255,.10)), rgba(255,255,255,.55);
  border: 1px solid rgba(106,76,255,.14);
}
.card-title{
  font-weight: 750;
  letter-spacing:-0.01em;
  margin-bottom: 10px;
  color: rgba(34,20,40,.86);
}
.muted{ color: var(--muted2); font-size: 12.5px; }
.chips{ display:flex; flex-wrap:wrap; gap: 8px; margin-bottom: 12px; }
.chip{
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(60,20,90,.10);
  background: rgba(255,255,255,.55);
  color: rgba(34,20,40,.78);
}
.chip.ghost{
  background: rgba(106,76,255,.08);
  border-color: rgba(106,76,255,.18);
  color: rgba(70, 52, 175, .95);
}
.bar{
  height: 10px;
  background: rgba(34,20,40,.08);
  border-radius: 999px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.35);
  margin-bottom: 8px;
}
.bar-fill{
  height:100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,91,166,.95), rgba(106,76,255,.92));
}
.row{ display:flex; gap: 10px; }
.metric{
  flex:1;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(60,20,90,.10);
}
.metric-num{ font-weight: 800; letter-spacing: -0.01em; }
.metric-label{ font-size: 12px; color: var(--muted2); }

.float{
  position:absolute;
  filter: blur(.1px);
  border-radius: 999px;
  opacity:.55;
  pointer-events:none;
}
.float-a{
  width: 130px; height: 130px;
  right: 310px; top: 68px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,91,166,.32), transparent 62%);
}
.float-b{
  width: 190px; height: 190px;
  right: 10px; top: 0px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), rgba(106,76,255,.30), transparent 62%);
}
.float-c{
  width: 170px; height: 170px;
  right: 240px; bottom: -40px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.9), rgba(255,175,110,.30), transparent 62%);
}

.section{ padding: 54px 0; }
.section.alt{
  background: rgba(255,255,255,.40);
  border-top: 1px solid rgba(60,20,90,.06);
  border-bottom: 1px solid rgba(60,20,90,.06);
}
.section-head{ margin-bottom: 20px; }
h2{
  margin: 0 0 8px;
  font-family: Fraunces, ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.3vw, 38px);
}
.section-sub{ margin: 0; color: var(--muted); max-width: 62ch; }

.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.feature{
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(60,20,90,.10);
  box-shadow: 0 14px 34px rgba(60,20,90,.08);
}
.feature h3{ margin: 10px 0 6px; font-size: 16px; letter-spacing:-0.01em; }
.feature p{ margin: 0; color: var(--muted); font-size: 14px; }
.icon{
  width: 38px; height: 38px;
  border-radius: 16px;
  display:grid; place-items:center;
  border: 1px solid rgba(60,20,90,.10);
  background: linear-gradient(135deg, rgba(255,91,166,.18), rgba(106,76,255,.14));
  color: rgba(34,20,40,.82);
  font-weight: 800;
}

.steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}
.step{
  display:flex;
  gap: 12px;
  padding: 16px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(60,20,90,.10);
  box-shadow: 0 14px 34px rgba(60,20,90,.08);
}
.step-num{
  width: 38px; height: 38px;
  border-radius: 999px;
  display:grid; place-items:center;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(255,91,166,.22), rgba(106,76,255,.18));
  border: 1px solid rgba(106,76,255,.16);
}
.step-body h3{ margin: 0 0 6px; font-size: 16px; letter-spacing:-0.01em; }
.step-body p{ margin: 0; color: var(--muted); font-size: 14px; }

.callout{
  margin-top: 18px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,91,166,.14), rgba(106,76,255,.12)), rgba(255,255,255,.58);
  border: 1px solid rgba(60,20,90,.10);
  box-shadow: var(--shadow-soft);
}
.callout-title{ font-weight: 800; letter-spacing:-0.01em; margin-bottom: 6px; }
.callout-text{ margin: 0; color: rgba(34,20,40,.76); }

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: start;
}
.bullets{ padding-left: 18px; margin: 14px 0 0; color: var(--muted); }
.bullets li{ margin: 8px 0; }
.bullets strong{ color: rgba(34,20,40,.86); }

.quote{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(60,20,90,.10);
  box-shadow: 0 14px 34px rgba(60,20,90,.08);
  padding: 18px 16px;
  position: relative;
}
.quote-mark{
  font-family: Fraunces, ui-serif, Georgia, serif;
  font-size: 44px;
  color: rgba(106,76,255,.22);
  position:absolute;
  top: 6px; left: 12px;
}
.quote-text{
  margin: 16px 0 10px;
  color: rgba(34,20,40,.78);
  font-size: 15px;
}
.quote-by{ color: rgba(34,20,40,.60); font-size: 13px; }

.faq{
  display:grid;
  gap: 10px;
}
.qa{
  padding: 14px 14px;
  border-radius: 20px;
  border: 1px solid rgba(60,20,90,.10);
  background: rgba(255,255,255,.58);
  box-shadow: 0 12px 28px rgba(60,20,90,.08);
}
.qa summary{
  cursor:pointer;
  font-weight: 750;
  letter-spacing:-0.01em;
}
.qa p{ margin: 10px 0 0; color: var(--muted); }

.cta-card{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(60,20,90,.10);
  background: linear-gradient(135deg, rgba(106,76,255,.14), rgba(255,91,166,.12)), rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.cta-copy h3{ margin: 0 0 4px; font-size: 18px; letter-spacing:-0.01em; }
.cta-copy p{ margin: 0; color: var(--muted); }
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cta-actions .btn{ min-width: 170px; }

.footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(60,20,90,.08);
  background: rgba(255,255,255,.35);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  align-items:flex-start;
}
.footer-brand{ font-weight: 850; letter-spacing:-0.02em; }
.footer-tagline{ color: var(--muted); font-size: 13px; margin-top: 4px; }
.footer-right{ color: rgba(34,20,40,.78); font-size: 13px; display:flex; gap: 8px; align-items:center; flex-wrap: wrap; justify-content: flex-end; }
.sep{ opacity:.55; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 420px; }
  .phone{ margin: 22px auto 0; }
  .float{ display:none; }
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr; }
  .cta-card{ flex-direction: column; align-items: stretch; }
  .cta-actions{ justify-content: flex-start; }
}
@media (max-width: 560px){
  .nav{ display:none; }
  .grid{ grid-template-columns: 1fr; }
  .btn{ width: 100%; min-width: unset; }
}

