:root{
  --bg: #fbfaf9;
  --surface: #ffffff;
  --surface-2: #f6f2f7;
  --tint: #f2f6f7;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #5b8def;
  --primary-2: #86b7ff;
  --ring: rgba(91,141,239,.35);
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 18px 40px rgba(15,23,42,.10);
  --radius: 18px;
}

*{ 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(--text);
  background: radial-gradient(900px 500px at 20% -10%, #f5eaf4 0%, rgba(245,234,244,0) 60%),
              radial-gradient(900px 500px at 90% 0%, #eaf2ff 0%, rgba(234,242,255,0) 60%),
              var(--bg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.skip-link:focus{ left: 10px; }

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(251,250,249,.72);
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.header__inner{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.brand{ display: flex; gap: 12px; align-items: center; }
.brand__mark{
  width: 38px; height: 38px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #e9f1ff, #f7e8f4);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 800;
  color: #2b4a8a;
}
.brand__title{ font-weight: 700; letter-spacing: -.02em; }
.brand__subtitle{ font-size: 12px; color: var(--muted); margin-top: -2px; }

.nav{
  display: none;
  gap: 14px;
  color: rgba(31,41,55,.9);
  font-size: 14px;
}
.nav a{ padding: 8px 10px; border-radius: 12px; }
.nav a:hover{ background: rgba(91,141,239,.10); text-decoration: none; }

.btn{
  border: 1px solid transparent;
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn:focus{ outline: none; box-shadow: 0 0 0 4px var(--ring); }
.btn--ghost{
  background: rgba(255,255,255,.65);
  border-color: rgba(15,23,42,.12);
}
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #0b1a33;
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 12px 26px rgba(91,141,239,.22);
}
.btn--xl{ padding: 14px 18px; border-radius: 16px; font-size: 16px; }

.hero{ padding: 48px 0 16px; }
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}
.pill{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(15,23,42,.10);
  color: rgba(31,41,55,.86);
  font-weight: 600;
  font-size: 13px;
}
.hero__title{
  margin: 14px 0 10px;
  letter-spacing: -.04em;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}
.hero__lead{ margin: 0 0 18px; color: rgba(31,41,55,.86); font-size: 16px; }

.details{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}
.detail{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding: 12px 12px;
}
.detail__label{ font-size: 12px; color: var(--muted); }
.detail__value{ font-weight: 700; margin-top: 2px; }

.hero__cta{ display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero__note{ font-size: 13px; color: var(--muted); }

.hero__card{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero__cardTitle{ font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
.checklist{ margin: 0; padding-left: 18px; color: rgba(31,41,55,.86); }
.checklist li{ margin: 8px 0; }
.hero__cardFooter{
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.tag{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3f7ff, #f8eef5);
  border: 1px solid rgba(15,23,42,.08);
  color: rgba(31,41,55,.86);
  font-weight: 600;
}

.section{ padding: 54px 0; }
.section--tint{
  background: linear-gradient(180deg, rgba(242,246,247,.9), rgba(242,246,247,.45));
  border-top: 1px solid rgba(15,23,42,.06);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.section__title{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -.03em;
}
.section__lead{ margin: 0 0 18px; color: rgba(31,41,55,.82); max-width: 72ch; }

.grid{ display: grid; gap: 14px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 20px;
  padding: 18px;
}
.card--compact{ padding: 16px; }
.card__title{ margin: 0 0 10px; letter-spacing: -.02em; }
.muted{ color: var(--muted); }

.list{ margin: 0; padding-left: 18px; color: rgba(31,41,55,.86); }
.list li{ margin: 8px 0; }
.list--tight li{ margin: 6px 0; }

.timeline{ display: grid; gap: 10px; }
.timeline__item{
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(246,242,247,.7);
  border: 1px solid rgba(15,23,42,.08);
}
.timeline__time{ font-weight: 800; color: rgba(31,41,55,.86); }
.timeline__body{ color: rgba(31,41,55,.86); }

.chips{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 650;
  color: rgba(31,41,55,.86);
}
.note{
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  color: rgba(31,41,55,.84);
}
.note--small{ margin-top: 14px; font-size: 13px; color: rgba(31,41,55,.72); }

.section--imageBreak{
  padding: 22px 0;
  background: transparent;
}
.imageBreak{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.imageBreak__media{
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(15,23,42,.22);
  border: 1px solid rgba(15,23,42,.18);
}
.imageBreak__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) contrast(1.05);
}
.imageBreak__copy{
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.imageBreak__title{ font-weight: 900; letter-spacing: -.03em; font-size: 22px; }
.imageBreak__text{ color: rgba(31,41,55,.86); }

.person{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
}
.person__avatar{
  width: 44px; height: 44px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #f0f7ff, #f7eaf4);
  border: 1px solid rgba(15,23,42,.10);
  font-weight: 900;
  letter-spacing: -.04em;
  color: rgba(31,41,55,.78);
}
.person__name{ margin: 12px 0 8px; letter-spacing: -.02em; }
.person__meta{ margin: 0; color: rgba(31,41,55,.78); }
.person__badges{ margin-top: 12px; display: flex; gap: 8px; flex-wrap: wrap; }
.badge{
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(91,141,239,.12);
  border: 1px solid rgba(91,141,239,.18);
  color: rgba(19, 40, 86, .88);
}

.price{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding: 18px;
  position: relative;
}
.price__head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.price__perkInner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.price__perkText{
  min-width: 0;
  padding-right: 6px;
}
.price__name{ font-weight: 900; letter-spacing: -.02em; }
.price__value{ font-weight: 900; font-size: 22px; letter-spacing: -.03em; }
.price--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,242,247,.72));
  box-shadow: var(--shadow);
  border-color: rgba(91,141,239,.22);
}
.price__hint{
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 214, 102, .28);
  border: 1px solid rgba(255, 214, 102, .45);
  color: rgba(88, 60, 0, .86);
}

.finalCta{
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(15,23,42,.10);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.finalCta__title{ font-weight: 950; letter-spacing: -.03em; font-size: 20px; }
.finalCta__text{ color: rgba(31,41,55,.80); }

.footer{
  padding: 22px 0;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(251,250,249,.72);
}
.footer__inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Modal */
.modal[hidden]{ display: none; }
.modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
}
.modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .55);
}
.modal__dialog{
  position: relative;
  width: min(520px, calc(100% - 28px));
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(15,23,42,.35);
  padding: 18px;
}
.modal__close{
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(246,242,247,.75);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.modal__title{ margin: 2px 0 6px; letter-spacing: -.03em; }
.modal__subtitle{ margin: 0 0 14px; color: rgba(31,41,55,.78); }

.form{ display: grid; gap: 12px; }
.field{ display: grid; gap: 6px; }
.field__label{ font-size: 13px; color: rgba(31,41,55,.76); font-weight: 600; }
.field__input{
  width: 100%;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.95);
  font: inherit;
}
.field__input:focus{ outline: none; box-shadow: 0 0 0 4px var(--ring); border-color: rgba(91,141,239,.38); }
.field__error{ min-height: 16px; font-size: 12px; color: rgba(155, 28, 28, .92); }
.form__status{ min-height: 18px; font-size: 13px; color: rgba(31,41,55,.78); }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .details{ grid-template-columns: 1fr; }
  .imageBreak{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .header__inner{ grid-template-columns: 1fr auto; }
  .nav{ display: none; }
}
@media (min-width: 981px){
  .nav{ display: flex; }
}
