


*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: currentColor;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: 600;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
[type="button"],
[type="submit"] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
svg,
video {
  display: block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

fieldset,
legend {
  margin: 0;
  padding: 0;
}


:root {
  
  --paper: #ffffff;
  --paperTint: #faf5ff;
  --paperDeep: #f3e8ff;
  --ink: #2e1065;
  --inkSoft: #5b21b6;
  --inkMuted: #8b5cf6;
  --accent: #7c3aed;
  --accentDeep: #6d28d9;
  --night: #1b0940;
  --nightSoft: #2c1259;
  --onDark: #ede9fe;
  --onDarkMuted: #c4b5fd;
  --lineSoft: rgba(124, 58, 237, 0.2);
  --lineDark: rgba(237, 233, 254, 0.22);

  
  --fontDisplay: "Cormorant Garamond", "Times New Roman", serif;
  --fontBody: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  
  --stepXs: clamp(0.76rem, 0.71rem + 0.2vw, 0.86rem);
  --stepSm: clamp(0.9rem, 0.86rem + 0.24vw, 1rem);
  --stepMd: clamp(1rem, 0.95rem + 0.36vw, 1.15rem);
  --stepLg: clamp(1.3rem, 1.08rem + 1.05vw, 2rem);
  --stepXl: clamp(2.2rem, 1.35rem + 3.6vw, 4.2rem);

  
  --spaceXs: clamp(0.5rem, 0.4rem + 0.32vw, 0.8rem);
  --spaceSm: clamp(0.9rem, 0.72rem + 0.65vw, 1.4rem);
  --spaceMd: clamp(1.6rem, 1.15rem + 1.7vw, 2.75rem);
  --spaceLg: clamp(2.6rem, 1.85rem + 3.1vw, 4.75rem);
  --spaceXl: clamp(4rem, 2.5rem + 5.4vw, 7.5rem);

  
  --wrap: min(92%, 1120px);
  --wrapNarrow: min(92%, 760px);
  --edge: max(1.25rem, 4vw);
  --hairline: 1px;
  --headerH: 76px;
  --quickH: 62px;
}


body {
  font-family: var(--fontBody);
  font-weight: 400;
  font-size: var(--stepMd);
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: var(--fontDisplay);
  font-weight: 600;
  line-height: 1.13;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 {
  font-size: var(--stepXl);
}

h2 {
  font-size: clamp(1.85rem, 1.25rem + 2.4vw, 3.05rem);
}

h3 {
  font-size: var(--stepLg);
}

h4 {
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
}

p {
  font-size: var(--stepMd);
  line-height: 1.78;
}


.flexRow {
  display: flex;
  flex-direction: row;
}

.flexCol {
  display: flex;
  flex-direction: column;
}

.itemsCenter {
  align-items: center;
}

.itemsStart {
  align-items: flex-start;
}

.justifyBetween {
  justify-content: space-between;
}

.wrapGap {
  flex-wrap: wrap;
  gap: var(--spaceSm);
}

.textCenter {
  text-align: center;
}

.muted {
  color: var(--inkSoft);
}

.strong {
  font-weight: 600;
}

.upper {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.tiny {
  font-size: var(--stepXs);
}

.noBullet {
  list-style: none;
}

.stackSm > * + * {
  margin-top: var(--spaceXs);
}

.stackMd > * + * {
  margin-top: var(--spaceSm);
}

.stackLg > * + * {
  margin-top: var(--spaceMd);
}

.fullW {
  width: 100%;
}

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


.btnPrimary {
  display: inline-block;
  text-wrap: balance;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2.2rem;
  font-family: var(--fontBody);
  font-weight: 600;
  font-size: var(--stepSm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  min-height: 48px;
}

.btnPrimary:hover {
  background: var(--accentDeep);
}

.btnPrimary:focus-visible {
  outline: 3px solid var(--inkMuted);
  outline-offset: 2px;
}

.btnPrimary[disabled] {
  background: var(--inkMuted);
  cursor: not-allowed;
}

.btnGhost {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: var(--hairline) solid var(--accent);
  border-radius: 0;
  padding: 1rem 1.9rem;
  font-family: var(--fontBody);
  font-weight: 600;
  font-size: var(--stepSm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  min-height: 48px;
}

.btnGhost:hover {
  background: var(--paperDeep);
}


.formInput {
  width: 100%;
  background: #ffffff;
  border: var(--hairline) solid var(--lineSoft);
  border-radius: 0;
  padding: 0.9rem 1rem;
  font-size: var(--stepSm);
  color: var(--ink);
  min-height: 48px;
}

.formInput:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.formInput::placeholder {
  color: var(--inkMuted);
}


.sectionDivider {
  height: 2.5rem;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='40'%3E%3Cpath d='M0 20 Q300 0 600 20 T1200 20 V40 H0Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='40'%3E%3Cpath d='M0 20 Q300 0 600 20 T1200 20 V40 H0Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
}

.sectionDividerDark {
  height: clamp(26px, 3.5vw, 44px);
  background: var(--night);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='40'%3E%3Cpath d='M0 24 Q240 4 620 22 T1200 16 V40 H0Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='40'%3E%3Cpath d='M0 24 Q240 4 620 22 T1200 16 V40 H0Z'/%3E%3C/svg%3E") bottom / cover no-repeat;
}
