


html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type="button"],
[type="submit"] {
  -webkit-appearance: button;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template,
[hidden] {
  display: none;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


:root {
  
  --bg-primary: #ffffff;
  --bg-secondary: #faf5ff;
  --bg-tertiary: #f3e8ff;
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --text-primary: #2e1065;
  --text-secondary: #5b21b6;
  --text-muted: #8b5cf6;
  --frost-line: #ddd6fe;
  --ink-inverse: #ffffff;
  --shell-deep: #1c0b3d;

  
  --fluid-font-xs: clamp(12px, 0.9vw, 14px);
  --fluid-font-sm: clamp(14px, 1.1vw, 16px);
  --fluid-font-md: clamp(16px, 1.4vw, 19px);
  --fluid-font-lg: clamp(22px, 2.6vw, 34px);
  --fluid-font-xl: clamp(30px, 4.4vw, 54px);

  
  --fluid-space-xs: clamp(6px, 0.8vw, 10px);
  --fluid-space-sm: clamp(10px, 1.6vw, 18px);
  --fluid-space-md: clamp(18px, 3vw, 34px);
  --fluid-space-lg: clamp(40px, 6vw, 96px);

  --fluid-width: clamp(320px, 92vw, 1120px);
  --fluid-gutter: clamp(16px, 3.4vw, 40px);

  --radius-pill: 999px;
  --radius-card: 14px;
  --radius-panel: 22px;
  --ease-scale: cubic-bezier(0.4, 0, 0.2, 1);
}


body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: var(--fluid-font-md);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 var(--fluid-space-sm);
}
h1 {
  font-size: var(--fluid-font-xl);
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h2 {
  font-size: var(--fluid-font-lg);
  line-height: 1.2;
  margin-bottom: 40px;
}
h3 {
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.3;
}
h4 {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.35;
}

p {
  font-size: var(--fluid-font-md);
  line-height: 1.7;
  margin: 0 0 32px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--accent);
}

ul,
ol {
  padding-left: 22px;
}
li {
  margin-bottom: 10px;
}

hr {
  border: none;
  border-top: 1px solid var(--frost-line);
  margin: 40px 0;
}

img {
  max-width: 100%;
  height: auto;
}

strong {
  color: var(--text-secondary);
}

::selection {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}


.Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-size: var(--fluid-font-sm);
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.Button:hover {
  transform: scale(1.03);
}

.Button--primary {
  background: var(--accent);
  color: var(--ink-inverse);
  border-color: var(--accent);
}
.Button--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--ink-inverse);
}

.Button--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--frost-line);
}
.Button--ghost:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--text-muted);
}

.Button--light {
  background: var(--ink-inverse);
  color: var(--accent);
  border-color: var(--ink-inverse);
}
.Button--light:hover {
  background: var(--bg-tertiary);
  color: var(--accent-hover);
}

.Button--large {
  min-height: 58px;
  padding: 18px 44px;
  font-size: clamp(15px, 1.3vw, 18px);
}


.Field {
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--frost-line);
  border-radius: var(--radius-pill);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--fluid-font-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.Field::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}
.Field:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
  outline: none;
}
.Field.is-invalid {
  border-color: #b91c1c;
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
}


.Eyebrow {
  display: inline-block;
  font-size: var(--fluid-font-xs);
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.Lede {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
  color: var(--text-secondary);
}

.Muted {
  color: var(--text-muted);
  font-size: var(--fluid-font-sm);
}

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