:root {
  --ink: #292336;
  --muted: #756b80;
  --purple: #8051c7;
  --purple-dark: #603297;
  --lilac: #eee5fa;
  --paper: #fbf9fc;
  --line: #e9e3ed;
  --mint: #dff3e9;
  --serif: "Lora Variable", Georgia, serif;
  --sans: "Manrope Variable", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #ffffffc7;
  background: #fbf9fce8;
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
.brand strong {
  font-weight: 750;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #9a6cdb, #7041b0);
  border-radius: 11px;
  font-size: 23px;
  box-shadow: 0 6px 18px #7650b733;
}
.site-header nav {
  display: none;
  margin-left: auto;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}
.site-header nav a:hover {
  color: var(--purple);
}
.login-link {
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid #ddd2e5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}
.hero {
  min-height: 740px;
  padding: 70px 6vw 55px;
  display: grid;
  align-items: center;
  gap: 54px;
  background:
    radial-gradient(circle at 85% 15%, #e9dafb 0, transparent 35%),
    radial-gradient(circle at 5% 90%, #f7e8e3 0, transparent 30%),
    linear-gradient(180deg, #fbf9fc, #f8f4fb);
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 2.2px;
  font-weight: 800;
  color: #8f6ba9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ae7bcf;
  box-shadow: 0 0 0 5px #ae7bcf18;
}
.hero h1,
.section-heading h2,
.price-intro h2,
.request-copy h2 {
  font-size: clamp(48px, 13vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin: 22px 0;
  color: #2f2839;
}
.hero h1 em,
.section-heading h2 em,
.request-copy h2 em {
  font-family: var(--serif);
  font-weight: 450;
  color: #8853b3;
}
.hero-lead {
  color: var(--muted);
  line-height: 1.75;
  max-width: 610px;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 11px;
  margin: 31px 0 25px;
}
.button {
  border: 0;
  min-height: 53px;
  border-radius: 16px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font: 700 14px var(--sans);
  cursor: pointer;
}
.button span {
  font-size: 19px;
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #8959cf, #7040b4);
  box-shadow: 0 13px 30px #7443b332;
}
.button.quiet {
  background: #fff;
  border: 1px solid var(--line);
  color: #62556d;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #786b83;
  font-size: 11px;
}
.trust-row span::first-letter {
  color: #5a9a79;
}
.hero-visual {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.glow.one {
  width: 380px;
  height: 380px;
  background: #cbaaf340;
  right: -120px;
  top: 50px;
}
.glow.two {
  width: 230px;
  height: 230px;
  background: #f4cfc740;
  left: -70px;
  bottom: 30px;
}
.phone-shell {
  width: 286px;
  height: 570px;
  background: #faf9fc;
  border: 7px solid #25222a;
  border-radius: 44px;
  box-shadow:
    0 35px 65px #49375b2c,
    0 0 0 2px #6e6671;
  position: relative;
  z-index: 2;
  padding: 39px 15px 65px;
  overflow: hidden;
  transform: rotate(1deg);
}
.phone-top {
  position: absolute;
  width: 100px;
  height: 24px;
  background: #25222a;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 17px 17px;
}
.app-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #8b7c96;
  padding: 3px 3px 13px;
}
.app-mini-head span {
  font-size: 18px;
}
.app-mini-head i {
  font-style: normal;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #efe4f7;
  color: #865fb2;
}
.progress-card {
  background: linear-gradient(145deg, #eee2fb, #f7f1fc);
  border-radius: 20px;
  padding: 16px;
  color: #785793;
  position: relative;
}
.progress-card small,
.today-card small {
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 800;
}
.progress-card strong {
  display: block;
  color: #3b3046;
  font-size: 14px;
  margin: 8px 0 12px;
}
.progress-card > div {
  height: 5px;
  background: #fff;
  border-radius: 9px;
}
.progress-card > div i {
  display: block;
  width: 28%;
  height: 100%;
  background: #8b5bc5;
  border-radius: 9px;
}
.progress-card > span {
  display: block;
  text-align: right;
  font-size: 8px;
  margin-top: 6px;
}
.today-card {
  background: #fff;
  border: 1px solid #ede7f0;
  border-radius: 22px;
  padding: 19px;
  margin-top: 12px;
  text-align: center;
  box-shadow: 0 10px 25px #4534520d;
}
.rings {
  font-size: 38px;
  color: #e0b565;
  margin: 18px 0 8px;
}
.today-card h3 {
  font-size: 19px;
  margin: 0;
}
.today-card p {
  font-size: 10px;
  color: #95889f;
}
.today-card button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 11px;
  background: #8150c3;
  color: #fff;
  font: 700 10px var(--sans);
}
.mini-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-top: 1px solid #eee8f0;
}
.mini-nav b {
  display: grid;
  place-items: center;
  color: #a18eae;
  font-size: 17px;
}
.mini-nav small {
  display: block;
  font-size: 7px;
}
.float-card {
  position: absolute;
  z-index: 3;
  background: #fffffff2;
  backdrop-filter: blur(12px);
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 16px;
  box-shadow: 0 16px 35px #4b3a5622;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}
.float-card > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #ede1fa;
  color: #7442ad;
  font-size: 18px;
}
.float-card small {
  font-size: 7px;
  letter-spacing: 1px;
  color: #9b8ba5;
  display: block;
}
.float-card strong {
  display: block;
  margin-top: 3px;
}
.float-card > i {
  font-style: normal;
  color: #5f9a76;
  background: #e3f3e9;
  border-radius: 8px;
  padding: 5px;
}
.float-card.guests {
  left: -5px;
  top: 120px;
}
.float-card.budget {
  right: -8px;
  bottom: 120px;
}
.promise-strip {
  display: none;
}
.section {
  padding: 86px 6vw;
}
.section-heading {
  max-width: 620px;
  margin-bottom: 40px;
}
.section-heading h2,
.request-copy h2 {
  font-size: clamp(41px, 10vw, 65px);
  margin: 17px 0;
}
.section-heading p,
.request-copy > p {
  color: var(--muted);
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  gap: 14px;
}
.feature {
  background: #fff;
  border: 1px solid #eee8f1;
  border-radius: 27px;
  padding: 27px;
  min-height: 260px;
  overflow: hidden;
  box-shadow: 0 13px 35px #4d3a5809;
  position: relative;
}
.feature h3 {
  font-size: 21px;
  margin: 15px 0 8px;
  letter-spacing: -0.6px;
}
.feature p {
  color: #776c80;
  line-height: 1.65;
  font-size: 13px;
  max-width: 470px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eee3fa;
  color: #7950aa;
  font-size: 20px;
}
.feature-icon.mint {
  background: #e0f3e9;
  color: #49806a;
}
.feature-icon.gold {
  background: #f3e5bf;
  color: #8e712b;
}
.feature-icon.peach {
  background: #f9e3db;
  color: #a75e43;
}
.feature-icon.blue {
  background: #e2eaf8;
  color: #5577a6;
}
.feature-icon.rose {
  background: #fae2e9;
  color: #a95d73;
}
.feature.purple {
  background: linear-gradient(145deg, #eee2fa, #f8f4fd);
}
.task-preview {
  background: #fff;
  border-radius: 19px;
  padding: 17px;
  margin-top: 24px;
  box-shadow: 0 10px 24px #69498c13;
}
.task-preview small {
  font-size: 8px;
  letter-spacing: 1px;
  color: #9d84ae;
}
.task-preview p {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  margin: 0;
  border-bottom: 1px solid #f0ebf2;
  color: #51465b;
}
.task-preview i {
  width: 20px;
  height: 20px;
  border: 1px solid #dacde3;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-style: normal;
}
.task-preview i.done {
  background: #7f51bb;
  color: #fff;
  border-color: #7f51bb;
}
.avatar-row {
  display: flex;
  margin-top: 31px;
}
.avatar-row i,
.avatar-row b {
  width: 42px;
  height: 42px;
  margin-left: -7px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid white;
  background: #eadcf3;
  color: #7d5b91;
  font-style: normal;
  font-size: 12px;
}
.avatar-row i:first-child {
  margin-left: 0;
}
.avatar-row i:nth-child(2) {
  background: #dceee8;
}
.avatar-row i:nth-child(3) {
  background: #f6e2da;
}
.avatar-row b {
  background: #73509a;
  color: #fff;
  font-size: 10px;
}
.feature.dark {
  background: #302838;
  color: #fff;
}
.feature.dark p {
  color: #c8becd;
}
.table-map {
  height: 110px;
  margin-top: 18px;
  position: relative;
  background-image: radial-gradient(#5b4d65 1px, transparent 1px);
  background-size: 16px 16px;
}
.table-map i {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid #826e90;
  border-radius: 50%;
}
.table-map i:nth-child(1) {
  left: 10%;
  top: 10%;
}
.table-map i:nth-child(2) {
  left: 60%;
  top: 4%;
}
.table-map i:nth-child(3) {
  left: 28%;
  top: 60%;
}
.table-map i:nth-child(4) {
  right: 5%;
  bottom: 0;
}
.table-map span {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 64px;
  height: 45px;
  border: 1px dashed #b28bcc;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #d7b4ec;
}
.feature-wide {
  background: linear-gradient(120deg, #fff, #fbf2ee);
}
.invite-cards {
  display: flex;
  height: 135px;
  margin: 20px 0 -28px 10%;
}
.invite-cards i {
  width: 95px;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 5px 15px #593b4219;
  border: 4px solid #fff;
  transform: rotate(-6deg);
  background:
    linear-gradient(#8d6d62aa, #34252dcc),
    url("/invitation-samples/couple.jpg") center/cover;
}
.invite-cards i:nth-child(2) {
  transform: translateY(-12px);
  z-index: 2;
  background:
    linear-gradient(#4d805955, #172a1ecc),
    url("/invitation-samples/garden.jpg") center/cover;
}
.invite-cards i:nth-child(3) {
  transform: rotate(6deg);
  background:
    linear-gradient(#7f4e2655, #25170dcc),
    url("/invitation-samples/night.jpg") center/cover;
}
.budget-line {
  height: 10px;
  background: #f1ebf4;
  border-radius: 10px;
  margin-top: 35px;
}
.budget-line span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, #9d75cd, #79b093);
}
.vendor-pill {
  margin-top: 31px;
  padding: 14px;
  border: 1px solid #ede6f1;
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  color: #675970;
  font-size: 12px;
}
.vendor-pill b {
  color: #57826c;
  background: #e3f2e9;
  padding: 4px 8px;
  border-radius: 8px;
}
.flow {
  background: #f3eef7;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.steps {
  display: grid;
  gap: 14px;
}
.steps article {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  position: relative;
  border: 1px solid #ebe3ef;
}
.steps article > b {
  position: absolute;
  right: 20px;
  top: 18px;
  font: 500 31px var(--serif);
  color: #e4d9ea;
}
.steps article > span {
  font-size: 30px;
  color: #8a5ab6;
}
.steps h3 {
  font-size: 18px;
  margin: 22px 0 8px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.steps > i {
  display: none;
}
.pricing {
  background: #fff;
}
.price-card {
  max-width: 1040px;
  margin: auto;
  background: linear-gradient(145deg, #3a2d43, #211b27);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px #2f22343d;
}
.price-intro {
  padding: 38px 30px;
  background: radial-gradient(circle at 10% 5%, #9664bd44, transparent 42%);
}
.eyebrow.light {
  color: #d5b4e9;
}
.price-intro h2 {
  font-size: 47px;
  letter-spacing: -2px;
  color: #fff;
}
.price-intro p {
  color: #cfc4d5;
  line-height: 1.7;
}
.price-main {
  background: #f9f5fc;
  color: var(--ink);
  padding: 32px 27px;
}
.price {
  display: flex;
  align-items: flex-start;
}
.price > span {
  font: 500 85px/1 var(--serif);
  color: #7947af;
}
.price sup {
  font: 600 31px var(--serif);
  color: #7947af;
  margin-top: 8px;
}
.price small {
  align-self: flex-end;
  margin: 0 0 12px 10px;
  color: #8c7c94;
}
.price-note {
  font-size: 12px;
  color: #8b7b94;
}
.price-main ul {
  list-style: none;
  padding: 15px 0;
  margin: 15px 0;
  border-top: 1px solid #e8ddec;
}
.price-main li {
  padding: 8px 0 8px 28px;
  font-size: 13px;
  position: relative;
}
.price-main li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #69a17f;
  font-weight: 800;
}
.button.white {
  background: #fff;
  color: #7041aa;
  box-shadow: 0 10px 25px #44305413;
  width: 100%;
}
.no-renew {
  display: block;
  text-align: center;
  color: #94869b;
  margin-top: 13px;
}
.request {
  display: grid;
  gap: 40px;
  background:
    radial-gradient(circle at 5% 20%, #eee0fa, transparent 35%), var(--paper);
}
.privacy-note {
  display: flex;
  gap: 13px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid #e8dfed;
  border-radius: 17px;
  background: #ffffff9c;
}
.privacy-note > span {
  font-size: 24px;
  color: #895ab4;
}
.privacy-note p {
  margin: 0;
  font-size: 11px;
  color: #817487;
  line-height: 1.6;
}
.lead-form {
  background: #fff;
  border: 1px solid #ece5ef;
  border-radius: 27px;
  padding: 24px;
  box-shadow: 0 24px 65px #4d395b14;
}
.form-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  font-weight: 750;
}
.form-head b {
  font-size: 9px;
  letter-spacing: 1px;
  color: #8253ae;
  background: #efe4f9;
  padding: 7px 9px;
  border-radius: 8px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: #6f6079;
  margin-bottom: 15px;
}
.lead-form label strong {
  color: #9361bd;
}
.lead-form label > span {
  font-weight: 500;
  color: #a395aa;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid #e2d8e7;
  background: #fcfafd;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  font: 500 14px var(--sans);
  outline: none;
}
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  border-color: #a67ccd;
  box-shadow: 0 0 0 4px #a67ccd15;
}
.form-row {
  display: grid;
  gap: 0;
}
.captcha {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
  align-items: end;
}
.captcha label {
  margin-bottom: 0;
}
.captcha button {
  height: 44px;
  border: 1px solid #e2d8e7;
  background: #faf7fc;
  border-radius: 12px;
  color: #8051ae;
  font-size: 20px;
  cursor: pointer;
}
.honeypot {
  position: absolute !important;
  left: -9999px;
}
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 9px !important;
  line-height: 1.45;
}
.consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #8051c7;
}
.submit {
  width: 100%;
  margin-top: 8px;
}
.form-status {
  text-align: center;
  font-size: 12px;
  min-height: 18px;
  margin: 13px 0 0;
  color: #796b81;
}
.form-status.success {
  color: #3d805b;
}
.form-status.error {
  color: #ad4953;
}
footer {
  padding: 45px 6vw;
  background: #251e2b;
  color: #d6cddc;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer .brand {
  color: #fff;
}
footer p {
  font-family: var(--serif);
  font-style: italic;
  color: #a99bad;
}
footer > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 12px;
}
footer small {
  color: #827688;
  border-top: 1px solid #3c3243;
  padding-top: 19px;
}
@media (min-width: 700px) {
  .site-header {
    height: 78px;
  }
  .site-header nav {
    display: flex;
  }
  .login-link {
    margin-left: 0;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    padding: 75px 7vw;
    min-height: 790px;
  }
  .hero h1 {
    font-size: clamp(62px, 7vw, 90px);
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .hero-actions .button {
    min-width: 175px;
  }
  .hero-visual {
    min-height: 640px;
  }
  .phone-shell {
    width: 310px;
    height: 615px;
  }
  .float-card.guests {
    left: 2%;
    top: 120px;
  }
  .float-card.budget {
    right: 1%;
    bottom: 125px;
  }
  .promise-strip {
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: #2e2634;
    color: #d7cbdc;
    font: italic 14px var(--serif);
  }
  .promise-strip span {
    width: 4px;
    height: 4px;
    background: #9d78b8;
    border-radius: 50%;
  }
  .section {
    padding: 110px 7vw;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-large,
  .feature-wide {
    grid-column: span 2;
  }
  .feature-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: center;
  }
  .feature-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .invite-cards {
    height: 210px;
    margin-bottom: -28px;
  }
  .invite-cards i {
    width: 135px;
  }
  .steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
  .steps > i {
    display: block;
    color: #a88ab9;
  }
  .price-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }
  .price-intro {
    padding: 62px 50px;
  }
  .price-main {
    padding: 50px;
  }
  .request {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  footer > div {
    flex-direction: row;
    justify-content: flex-end;
    gap: 25px;
  }
  footer > small {
    grid-column: 1/-1;
  }
  .section-heading h2,
  .request-copy h2 {
    font-size: 62px;
  }
}
@media (min-width: 1080px) {
  .site-header {
    padding: 0 max(6vw, calc((100vw - 1280px) / 2));
  }
  .hero,
  .section {
    padding-left: max(7vw, calc((100vw - 1240px) / 2));
    padding-right: max(7vw, calc((100vw - 1240px) / 2));
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-large {
    grid-column: span 2;
  }
  .feature-wide {
    grid-column: span 2;
  }
  .hero-visual {
    transform: translateX(20px);
  }
  .request-copy {
    position: sticky;
    top: 130px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .phone-shell {
    animation: float 6s ease-in-out infinite;
  }
  .float-card {
    animation: float 5s ease-in-out infinite reverse;
  }
  .feature {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }
  .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px #4d3a5814;
  }
  @keyframes float {
    50% {
      transform: translateY(-9px) rotate(1deg);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
