@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --color-bg: 38 40% 95%;            
  --color-bg-alt: 34 38% 91%;        
  --color-surface: 0 0% 100%;
  --color-espresso: 22 30% 15%;      
  --color-espresso-soft: 22 20% 30%;
  --color-terracotta: 14 55% 48%;    
  --color-terracotta-dark: 14 55% 38%;
  --color-rose: 9 38% 72%;           
  --color-sage: 88 14% 55%;          
  --color-line: 30 20% 84%;
  --color-cream-text-on-dark: 38 45% 95%;

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-soft: 0 20px 45px -25px rgba(60, 35, 20, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(60, 35, 20, 0.28);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: hsl(var(--color-bg));
  color: hsl(var(--color-espresso));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: hsl(var(--color-espresso));
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--color-terracotta));
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: hsl(var(--color-terracotta));
  display: inline-block;
}

.section {
  padding: 88px 0;
  position: relative;
}
.section-alt {
  background: hsl(var(--color-bg-alt));
}
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-top: 14px;
  line-height: 1.15;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: hsl(var(--color-espresso-soft));
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: hsl(var(--color-terracotta));
  color: hsl(38 45% 97%);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: hsl(var(--color-terracotta-dark));
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: hsl(var(--color-espresso) / 0.25);
  color: hsl(var(--color-espresso));
}
.btn-outline:hover {
  border-color: hsl(var(--color-terracotta));
  color: hsl(var(--color-terracotta));
}
.btn-block { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: hsl(var(--color-bg) / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--color-line));
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: hsl(var(--color-espresso));
}
.logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.logo-mark rect,
.logo-mark path { }

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}
.nav-links a {
  color: hsl(var(--color-espresso-soft));
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: hsl(var(--color-terracotta)); }

.header-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: hsl(var(--color-espresso));
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-bottom: 1px solid transparent;
}
.mobile-nav.is-open {
  max-height: 420px;
  border-bottom: 1px solid hsl(var(--color-line));
}
.mobile-nav ul {
  padding: 6px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 16px;
  font-weight: 600;
  color: hsl(var(--color-espresso));
}
.mobile-nav .btn { margin-top: 6px; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none; }
}

.hero {
  position: relative;
  padding: 64px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 88% 8%, hsl(var(--color-rose) / 0.35), transparent 70%),
    radial-gradient(50% 50% at 5% 95%, hsl(var(--color-terracotta) / 0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 44px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.06;
  margin-top: 18px;
}
.hero-copy h1 em {
  font-style: italic;
  color: hsl(var(--color-terracotta));
}
.hero-copy p {
  margin-top: 22px;
  font-size: 18px;
  max-width: 480px;
  color: hsl(var(--color-espresso-soft));
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-note {
  font-size: 14px;
  color: hsl(var(--color-espresso-soft));
}
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: hsl(var(--color-surface) / 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  max-width: 230px;
}
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 28px;
  color: hsl(var(--color-terracotta));
  display: block;
}
.hero-badge .label {
  font-size: 13px;
  color: hsl(var(--color-espresso-soft));
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid hsl(var(--color-line));
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: hsl(var(--color-espresso));
}
.hero-stats .stat span {
  font-size: 13px;
  color: hsl(var(--color-espresso-soft));
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}

.audience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.audience-card {
  background: hsl(var(--color-surface));
  border: 1px solid hsl(var(--color-line));
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: hsl(var(--color-rose));
}
.audience-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: hsl(var(--color-rose) / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: hsl(var(--color-terracotta-dark));
}
.audience-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 15px;
  color: hsl(var(--color-espresso-soft));
  margin: 0;
}
@media (min-width: 720px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid hsl(var(--color-line));
}
.program-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid hsl(var(--color-line));
}
.program-item .step {
  font-family: var(--font-display);
  font-size: 26px;
  color: hsl(var(--color-terracotta));
}
.program-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.program-item p {
  margin: 0;
  color: hsl(var(--color-espresso-soft));
  font-size: 15px;
  max-width: 620px;
}
.program-item .tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--color-sage));
}

.format-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.format-card {
  background: hsl(var(--color-surface));
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.format-card .format-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 40px;
  color: hsl(var(--color-rose) / 0.55);
}
.format-card h3 {
  font-size: 19px;
  max-width: 80%;
  margin-bottom: 10px;
}
.format-card p {
  margin: 0;
  font-size: 15px;
  color: hsl(var(--color-espresso-soft));
}
@media (min-width: 720px) {
  .format-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .format-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  background: linear-gradient(0deg, hsl(var(--color-espresso) / 0.75), transparent);
  color: hsl(var(--color-cream-text-on-dark));
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1050px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
}

.values-wrap {
  display: grid;
  gap: 44px;
  align-items: center;
}
.values-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.values-image img { width: 100%; height: 100%; object-fit: cover; }
.values-list { display: flex; flex-direction: column; gap: 24px; }
.value-row { display: flex; gap: 18px; }
.value-row .mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--color-terracotta));
  color: hsl(38 45% 97%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
}
.value-row h3 { font-size: 18px; margin-bottom: 6px; }
.value-row p { margin: 0; font-size: 15px; color: hsl(var(--color-espresso-soft)); }
@media (min-width: 900px) {
  .values-wrap { grid-template-columns: 0.9fr 1.1fr; }
}

.testimonial-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.testimonial-card {
  background: hsl(var(--color-surface));
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: hsl(var(--color-espresso));
}
.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: hsl(var(--color-rose) / 0.4);
  color: hsl(var(--color-terracotta-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-person .name { font-weight: 700; font-size: 14.5px; }
.testimonial-person .role { font-size: 13px; color: hsl(var(--color-espresso-soft)); }
@media (min-width: 900px) {
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.faq-list {
  max-width: 780px;
  border-top: 1px solid hsl(var(--color-line));
}
.faq-item {
  border-bottom: 1px solid hsl(var(--color-line));
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  color: hsl(var(--color-espresso));
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid hsl(var(--color-espresso) / 0.3);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.faq-question .plus::before,
.faq-question .plus::after {
  content: '';
  position: absolute;
  background: hsl(var(--color-espresso));
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-question .plus::before { width: 10px; height: 1.5px; }
.faq-question .plus::after { width: 1.5px; height: 10px; transition: opacity 0.25s ease; }
.faq-item.is-open .plus { border-color: hsl(var(--color-terracotta)); background: hsl(var(--color-terracotta)); }
.faq-item.is-open .plus::before,
.faq-item.is-open .plus::after { background: hsl(38 45% 97%); }
.faq-item.is-open .plus::after { opacity: 0; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  margin: 0 0 22px;
  padding-right: 40px;
  font-size: 15px;
  color: hsl(var(--color-espresso-soft));
}

.form-section {
  position: relative;
  background: hsl(var(--color-espresso));
  color: hsl(var(--color-cream-text-on-dark));
  border-radius: var(--radius-lg);
  margin: 0 20px;
  padding: 56px 26px;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 90% 0%, hsl(var(--color-terracotta) / 0.35), transparent 65%);
  pointer-events: none;
}
.form-wrap {
  position: relative;
  display: grid;
  gap: 36px;
  max-width: var(--container);
  margin: 0 auto;
}
.form-copy .eyebrow { color: hsl(var(--color-rose)); }
.form-copy .eyebrow::before { background: hsl(var(--color-rose)); }
.form-copy h2 {
  color: hsl(38 45% 97%);
  font-size: clamp(28px, 4vw, 38px);
  margin-top: 14px;
}
.form-copy p {
  margin-top: 16px;
  color: hsl(38 30% 85%);
  font-size: 16px;
  max-width: 460px;
}
.form-perks {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: hsl(38 30% 88%);
}
.form-perks li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--color-rose));
  flex-shrink: 0;
}
.lead-form {
  background: hsl(38 45% 97%);
  border-radius: var(--radius-md);
  padding: 30px;
  color: hsl(var(--color-espresso));
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: hsl(var(--color-espresso-soft));
}
.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid hsl(var(--color-line));
  background: hsl(var(--color-surface));
  font-family: var(--font-body);
  font-size: 15px;
  color: hsl(var(--color-espresso));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus {
  outline: none;
  border-color: hsl(var(--color-terracotta));
  box-shadow: 0 0 0 4px hsl(var(--color-terracotta) / 0.15);
}
.field-error {
  display: none;
  font-size: 12.5px;
  color: hsl(4 60% 45%);
  margin-top: 6px;
}
.field.has-error input { border-color: hsl(4 60% 55%); }
.field.has-error .field-error { display: block; }
.form-fineprint {
  margin-top: 14px;
  font-size: 12.5px;
  color: hsl(var(--color-espresso-soft));
  text-align: center;
}
@media (min-width: 950px) {
  .form-wrap { grid-template-columns: 1fr 0.85fr; align-items: center; }
}

.site-footer {
  background: hsl(30 30% 90%);
  border-top: 1px solid hsl(var(--color-line));
  padding: 60px 0 28px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 14px;
  color: hsl(var(--color-espresso-soft));
  max-width: 320px;
}
.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  color: hsl(var(--color-espresso));
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span {
  font-size: 14.5px;
  color: hsl(var(--color-espresso-soft));
}
.footer-col a:hover { color: hsl(var(--color-terracotta)); }
.footer-legal {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid hsl(var(--color-line));
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: hsl(var(--color-espresso-soft));
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-legal { flex-direction: row; justify-content: space-between; }
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 900;
  background: hsl(var(--color-espresso));
  color: hsl(38 45% 96%);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(140%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 520px;
  margin: 0 auto;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: hsl(38 25% 88%);
}
.cookie-banner a { text-decoration: underline; color: hsl(38 45% 96%); }
.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-actions .btn-primary {
  padding: 11px 24px;
  font-size: 13.5px;
  box-shadow: none;
}
@media (min-width: 640px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 640px;
  }
}

.page-hero {
  padding: 56px 0 30px;
  border-bottom: 1px solid hsl(var(--color-line));
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
}
.page-hero p {
  margin-top: 14px;
  color: hsl(var(--color-espresso-soft));
  max-width: 600px;
}
.legal-content {
  padding: 50px 0 90px;
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 22px;
  margin-top: 42px;
  margin-bottom: 14px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 15.5px;
  color: hsl(var(--color-espresso-soft));
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 20px; }
.legal-content li { list-style: disc; margin-bottom: 10px; }
.legal-content strong { color: hsl(var(--color-espresso)); }
.legal-content .updated {
  font-size: 13.5px;
  color: hsl(var(--color-espresso-soft));
  margin-bottom: 30px;
  font-style: italic;
}

.success-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.success-card {
  max-width: 560px;
  text-align: center;
}
.success-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: hsl(var(--color-terracotta));
  color: hsl(38 45% 97%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.success-card h1 {
  font-size: clamp(28px, 4vw, 38px);
}
.success-card p {
  margin-top: 16px;
  color: hsl(var(--color-espresso-soft));
  font-size: 16px;
}
.success-card .btn { margin-top: 30px; }

.center-text { text-align: center; }
.mt-40 { margin-top: 40px; }
