:root{
  /* Pantone Web-Approx */
  --pink: #F2A3B3;        /* Thinking Pink */
  --stal: #EFECE6;        /* Stalactite */
  --ink:  #151515;
  --ink2: rgba(21,21,21,.72);
  --ink3: rgba(21,21,21,.56);

  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.66);
  --stroke: rgba(21,21,21,.10);
  --stroke2: rgba(21,21,21,.16);

  --shadow: 0 18px 60px rgba(21,21,21,.10);
  --shadow2: 0 10px 26px rgba(21,21,21,.08);

  --r12:12px; --r16:16px; --r20:20px; --r24:24px;
  --max: 1140px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 540px at 16% 10%, rgba(242,163,179,.28), transparent 60%),
    radial-gradient(980px 560px at 86% 16%, rgba(242,163,179,.18), transparent 62%),
    linear-gradient(180deg, var(--stal), #f6f4ef);
}

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

.wrap{ width:min(var(--max), calc(100% - 32px)); margin-inline:auto; }

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px;height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto;height:auto;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  border:1px solid var(--stroke2);
  z-index:9999;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(239,236,230,.78);
  border-bottom: 1px solid rgba(21,21,21,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:14px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 240px;
}
.brand__mark{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.82);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow2);
}
.brand__name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 13px;
  line-height:1.1;
}
.brand__tag{
  font-size: 11px;
  color: var(--ink3);
  margin-top:2px;
}

.topnav{
  display:none;
  gap:14px;
  font-size: 12px;
  color: var(--ink2);
}
.topnav a{
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid transparent;
}
.topnav a:hover{
  text-decoration:none;
  border-color: rgba(21,21,21,.10);
  background: rgba(255,255,255,.55);
}

.topbar__cta{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 12px;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  box-shadow: var(--shadow2);
}
.btn:hover{
  text-decoration:none;
  transform: translateY(-1px);
  border-color: rgba(21,21,21,.16);
  background: rgba(255,255,255,.86);
}
.btn:active{ transform: translateY(0); }

.btn--primary{
  border-color: rgba(242,163,179,.55);
  background:
    radial-gradient(160px 90px at 20% 25%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(180deg, rgba(242,163,179,.85), rgba(242,163,179,.62));
}
.btn--primary:hover{
  border-color: rgba(242,163,179,.75);
  background:
    radial-gradient(180px 100px at 25% 25%, rgba(255,255,255,.70), transparent 62%),
    linear-gradient(180deg, rgba(242,163,179,.92), rgba(242,163,179,.68));
}

.btn--ghost{
  background: rgba(255,255,255,.40);
}

/* Hero */
.hero{ padding: 28px 0 10px; }

.hero__grid{
  display:grid;
  gap: 18px;
}

.pill{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(255,255,255,.62);
  color: var(--ink2);
  font-size: 12px;
  font-weight: 800;
}

h1{
  margin: 14px 0 10px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.6px;
}
.h1__accent{
  display:block;
  color: rgba(21,21,21,.86);
  position: relative;
  margin-top: 8px;
}
.h1__accent::after{
  content:"";
  display:block;
  height:10px;
  margin-top: 8px;
  width: 72%;
  max-width: 420px;
  border-radius: 999px;
  background: rgba(242,163,179,.55);
}

.lead{
  margin: 0;
  color: var(--ink2);
  font-size: 14px;
  line-height: 1.55;
}

.hero__bullets{
  margin-top: 16px;
  display:grid;
  gap:10px;
}

.bullet{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(21,21,21,.10);
  box-shadow: var(--shadow2);
}

.dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top: 4px;
  background: rgba(242,163,179,.95);
  box-shadow: 0 0 0 6px rgba(242,163,179,.22);
}

.hero__actions{
  margin-top: 16px;
  display:flex;
  flex-wrap: wrap;
  gap:10px;
}

.micro{
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink3);
  line-height: 1.5;
}

/* Summary card */
.glass{
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border:1px solid rgba(21,21,21,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.glass__head{
  padding: 14px 14px 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap:10px;
  border-bottom: 1px solid rgba(21,21,21,.08);
}
.glass__title{ font-weight: 900; letter-spacing: .2px; }
.glass__badge{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(242,163,179,.60);
  background: rgba(242,163,179,.25);
}
.glass__list{
  padding: 12px 14px;
  display:grid;
  gap: 10px;
}
.row{
  display:flex;
  gap:10px;
  justify-content: space-between;
  align-items:flex-start;
}
.k{
  color: var(--ink3);
  font-size: 12px;
  width: 92px;
  flex: 0 0 auto;
}
.v{
  text-align:right;
  font-size: 12px;
  color: var(--ink);
  max-width: 240px;
}
.glass__note{
  padding: 12px 14px 14px;
  color: var(--ink2);
  font-size: 12px;
  border-top: 1px solid rgba(21,21,21,.08);
  background: rgba(255,255,255,.62);
}

/* Strip */
.strip{ padding: 14px 0 6px; }
.strip__grid{ display:grid; gap: 10px; }
.strip__item{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(21,21,21,.10);
  box-shadow: var(--shadow2);
}
.strip__icon{
  width:36px; height:36px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(242,163,179,.28);
  border: 1px solid rgba(242,163,179,.38);
}
.strip__title{ font-weight: 900; }
.strip__desc{ font-size: 12px; color: var(--ink3); margin-top:2px; }

/* Sections */
.section{ padding: 26px 0; }
.section--alt{
  background: rgba(255,255,255,.38);
  border-top: 1px solid rgba(21,21,21,.06);
  border-bottom: 1px solid rgba(21,21,21,.06);
}

.section__head{ margin-bottom: 14px; }
h2{
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.3px;
}
.section__sub{
  margin: 0;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.6;
}

.grid{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}
.grid--3{ grid-template-columns: 1fr; }

.card{
  border-radius: 20px;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.card--soft{ background: rgba(255,255,255,.70); }

.card h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -.2px;
}
.card p{
  margin: 0;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.55;
}
.card ul, .card ol{
  margin: 0;
  padding-left: 18px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.55;
}
.card li{ margin: 6px 0; }

.note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(242,163,179,.42);
  background: rgba(242,163,179,.20);
  color: rgba(21,21,21,.84);
  font-size: 12px;
  line-height: 1.5;
}

.ctaBand{
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(242,163,179,.45);
  background:
    radial-gradient(620px 240px at 18% 25%, rgba(242,163,179,.22), transparent 60%),
    rgba(255,255,255,.72);
  padding: 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow2);
}
.ctaBand__title{ font-weight: 900; }
.ctaBand__sub{
  margin-top: 2px;
  color: var(--ink2);
  font-size: 12px;
  line-height: 1.5;
  max-width: 58ch;
}

.two{
  display:grid;
  gap:12px;
  margin-top: 14px;
}

.small{ color: var(--ink3); font-size: 12px; line-height: 1.5; }

.callout{
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(255,255,255,.72);
  padding: 14px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: var(--shadow2);
}
.callout__title{ font-weight: 900; }
.callout__sub{
  margin-top: 2px;
  color: var(--ink2);
  font-size: 12px;
  line-height: 1.5;
  max-width: 70ch;
}

/* FAQ */
.faq{ margin-top: 14px; display:grid; gap:10px; }

.faq__q{
  width:100%;
  text-align:left;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .1px;
  cursor:pointer;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:12px;
  box-shadow: var(--shadow2);
}
.faq__q:hover{ background: rgba(255,255,255,.90); }

.faq__icon{
  width:26px;height:26px;
  border-radius: 999px;
  display:grid; place-items:center;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(242,163,179,.22);
  flex: 0 0 auto;
  font-weight: 900;
}

.faq__a{
  margin-top: -4px;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(21,21,21,.08);
  background: rgba(255,255,255,.70);
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.6;
  box-shadow: var(--shadow2);
}

.finalCta{ margin-top: 16px; }
.finalCta__box{
  border-radius: 24px;
  border: 1px solid rgba(242,163,179,.48);
  background:
    radial-gradient(700px 260px at 22% 18%, rgba(242,163,179,.26), transparent 62%),
    rgba(255,255,255,.78);
  padding: 16px;
  box-shadow: var(--shadow);
}
.finalCta__title{ font-weight: 900; font-size: 16px; }
.finalCta__sub{
  margin-top: 6px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.55;
}
.finalCta__actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

/* Footer */
.footer{ padding: 18px 0 26px; }
.footer__inner{
  border-top: 1px solid rgba(21,21,21,.08);
  padding-top: 16px;
  display:grid;
  gap: 14px;
  align-items:start;
}
.footer__logo{ font-weight: 900; }
.footer__tag{ color: var(--ink3); font-size: 12px; margin-top: 3px; }
.footer__links{
  display:grid;
  gap: 6px;
  font-size: 12px;
  color: var(--ink2);
}
.footer__sig{ display:flex; justify-content:flex-start; }
.sig{
  font-family: Allura, cursive;
  font-size: 34px;
  color: rgba(21,21,21,.84);
  line-height: 1;
}

/* Desktop */
@media (min-width: 860px){
  .topnav{ display:flex; }
  h1{ font-size: 44px; }
  .hero__grid{ grid-template-columns: 1.25fr .85fr; align-items: start; }
  .strip__grid{ grid-template-columns: repeat(3, 1fr); }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(3, 1fr); }
  .two{ grid-template-columns: 1fr 1fr; }
  .footer__inner{ grid-template-columns: 1.2fr 1.2fr .6fr; align-items: center; }
  .footer__sig{ justify-content:flex-end; }
}

/* Screens */
.screenGrid{
  margin-top: 14px;
  display:grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.screen{
  margin:0;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(21,21,21,.10);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow2);
}
.screen__btn{
  width:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
  display:block;
}
.screen img{
  display:block;
  width:100%;
  height:auto;
}
.screen figcaption{
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--ink2);
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  display:none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}
.lightbox[aria-hidden="false"]{ display:flex; }
.lightbox__inner{
  width: min(980px, 100%);
  border-radius: 22px;
  overflow:hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 30px 120px rgba(0,0,0,.35);
}
.lightbox__bar{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap:12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(21,21,21,.08);
}
.lightbox__title{
  font-weight: 900;
  font-size: 12px;
  color: rgba(21,21,21,.82);
}
.lightbox__close{
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(21,21,21,.12);
  background: rgba(255,255,255,.72);
  cursor:pointer;
  font-weight: 900;
  font-size: 12px;
}
.lightbox__img{
  display:block;
  width:100%;
  height:auto;
  background:#fff;
}

/* Screens grid desktop */
@media (min-width: 860px){
  .screenGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px){
  .screenGrid{ grid-template-columns: repeat(3, 1fr); }
}
