:root {
  --background: #efede8;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #fbfaf7;
  --ink: #2b2b2b;
  --muted: #615d58;
  --orange: #e37d1c;
  --green: #83bc37;
  --purple: #6358a2;
  --line: rgba(43, 43, 43, 0.12);
  --shadow-soft: 0 24px 60px rgba(43, 43, 43, 0.1);
  --shadow-strong: 0 30px 80px rgba(99, 88, 162, 0.18);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(227, 125, 28, 0.14), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(131, 188, 55, 0.14), transparent 24%),
    linear-gradient(135deg, #f1efea 0%, var(--background) 45%, #e7e4df 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
}

body::before {
  width: 18rem;
  height: 18rem;
  top: 8%;
  right: -4rem;
  background: rgba(99, 88, 162, 0.14);
}

body::after {
  width: 16rem;
  height: 16rem;
  bottom: -4rem;
  left: -5rem;
  background: rgba(227, 125, 28, 0.14);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: 2rem 0 7rem;
}

.hero {
  min-height: calc(100vh - 4rem);
  min-height: calc(100dvh - 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.lead-card {
  position: relative;
}

.hero-copy {
  padding: 1.5rem 1rem 1.5rem 0;
}

.brand-lockup {
  display: inline-block;
  margin-bottom: 2rem;
}

.brand-lockup__logo {
  display: block;
  width: min(100%, 18rem);
  height: auto;
}

.lead-card__eyebrow,
.lead-card__description,
.lead-card__microcopy,
.hero-description,
.hero-support,
.hero-actions,
.benefits,
.proof-strip,
.eyebrow {
  margin: 0;
}

.eyebrow,
.lead-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(227, 125, 28, 0.2);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1.25rem;
}

h1,
h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.02;
}

.hero-description,
.hero-support,
.lead-card__description,
.lead-card__microcopy {
  color: var(--muted);
  line-height: 1.72;
}

.hero-description {
  max-width: 38rem;
  margin-top: 1.35rem;
  font-size: 1.08rem;
}

.hero-support {
  max-width: 40rem;
  margin-top: 0.9rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: none;
  margin-top: 1.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #f29c4d);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(227, 125, 28, 0.22);
}

.benefits {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  margin-top: 1.8rem;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 1.5rem;
  max-width: 44rem;
  line-height: 1.6;
}

.benefits li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  box-shadow: 0 0 0 0.3rem rgba(131, 188, 55, 0.14);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.proof-strip span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(43, 43, 43, 0.04);
  border: 1px solid rgba(43, 43, 43, 0.06);
  font-size: 0.95rem;
  font-weight: 700;
}

.lead-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.9)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

@media (min-width: 981px) {
  .lead-card {
    transform: translateY(5rem);
  }
}

.lead-card__accent {
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.5rem;
  background: linear-gradient(90deg, var(--orange), var(--green), var(--purple));
}

.lead-card__eyebrow {
  margin-top: 1rem;
}

.lead-card h2 {
  margin-top: 0.9rem;
}

.lead-card__description {
  margin-top: 1rem;
  font-size: 1rem;
}

.lead-card__panel {
  margin-top: 1.5rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.lead-card__microcopy {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.ml-embedded {
  min-height: 24rem;
}

.ml-form-embedContainer,
.ml-form-embedContainer *,
.ml-form-successBody {
  font-family: "Manrope", sans-serif !important;
  color: var(--ink) !important;
}

.ml-form-embedContainer {
  margin: 0 !important;
}

.ml-form-embedWrapper,
.ml-form-embedBody,
.ml-form-embedContent,
.ml-form-successBody {
  background: transparent !important;
}

.ml-form-embedWrapper.embedForm {
  max-width: none !important;
}

.ml-form-embedBody {
  padding: 0 !important;
}

.ml-form-embedContent h4,
.ml-form-embedContent h5,
.ml-form-successContent h4 {
  margin-bottom: 0.75rem !important;
  font-family: "Sora", sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
}

.ml-form-embedContent p,
.ml-form-successContent p {
  color: var(--muted) !important;
  line-height: 1.65 !important;
}

.ml-form-fieldRow {
  margin-bottom: 0.9rem !important;
}

.ml-form-embedWrapper input.form-control,
.ml-form-embedWrapper select,
.ml-form-embedWrapper textarea {
  min-height: 3.35rem !important;
  padding: 0.9rem 1rem !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(43, 43, 43, 0.14) !important;
  background: #ffffff !important;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.ml-form-embedWrapper input.form-control:focus,
.ml-form-embedWrapper select:focus,
.ml-form-embedWrapper textarea:focus {
  border-color: rgba(99, 88, 162, 0.5) !important;
  box-shadow: 0 0 0 0.22rem rgba(99, 88, 162, 0.12) !important;
  outline: none !important;
}

.ml-form-embedWrapper .ml-form-embedSubmit,
.ml-form-embedWrapper button,
.ml-form-embedWrapper .primary,
.ml-form-embedWrapper input[type="submit"] {
  border-radius: 999px !important;
}

.ml-form-embedWrapper .ml-form-embedSubmit {
  overflow: hidden !important;
}

.ml-form-embedWrapper button,
.ml-form-embedWrapper .primary,
.ml-form-embedWrapper input[type="submit"] {
  width: 100% !important;
  min-height: 3.5rem !important;
  padding: 0.9rem 1.2rem !important;
  appearance: none !important;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--orange), #f29c4d) !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 18px 35px rgba(227, 125, 28, 0.24) !important;
}

.ml-form-checkboxRow label,
.ml-form-checkboxRow p,
.privacy-policy p {
  color: var(--muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.55 !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successContent {
  font-family: "Manrope", sans-serif !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow {
  margin-bottom: 1rem !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-field-group > label {
  margin-bottom: 0.45rem !important;
  color: var(--muted) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 0.78rem !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody input.form-control,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-select,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody textarea {
  min-height: 3.4rem !important;
  padding: 0.9rem 1rem !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(43, 43, 43, 0.14) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--ink) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody input.form-control::placeholder,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody textarea::placeholder {
  color: rgba(97, 93, 88, 0.75) !important;
  font-weight: 500 !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody input.form-control:focus,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-select:focus,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody textarea:focus {
  border-color: rgba(99, 88, 162, 0.5) !important;
  box-shadow: 0 0 0 0.22rem rgba(99, 88, 162, 0.12) !important;
  outline: none !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-checkbox-radio-list {
  display: grid !important;
  gap: 0.7rem !important;
  margin-top: 0.15rem !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label {
  color: var(--ink) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 0.98rem !important;
  font-style: normal !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.55 !important;
  text-transform: none !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::before,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::before {
  width: 18px !important;
  height: 18px !important;
  top: 3px !important;
  border-color: rgba(43, 43, 43, 0.22) !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label::after,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label::after {
  top: 1px !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  border-color: var(--purple) !important;
  background-color: var(--purple) !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .privacy-policy p {
  color: var(--muted) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 0.88rem !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successContent h4 {
  color: var(--ink) !important;
  font-family: "Sora", sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successContent p {
  color: var(--muted) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
}

body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedSubmit button,
body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedSubmit .primary {
  font-family: "Manrope", sans-serif !important;
  font-size: 1rem !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
}

.ml-form-checkboxRow input[type="checkbox"] {
  accent-color: var(--purple);
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100%, calc(100% - 1.5rem));
    padding-bottom: 3.5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 1rem 0 2.5rem;
  }

  .hero-copy {
    padding: 0;
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100%, calc(100% - 1rem));
    min-height: auto;
    padding: 0.75rem 0 2.5rem;
  }

  .hero {
    gap: 1.25rem;
  }

  .brand-lockup {
    margin-bottom: 1.25rem;
  }

  .brand-lockup__logo {
    width: min(100%, 11rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .eyebrow,
  .lead-card__eyebrow {
    padding: 0.45rem 0.7rem;
    font-size: 0.72rem;
  }

  .hero-description {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-support {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: block;
    margin-top: 1.15rem;
  }

  .hero-cta {
    width: 100%;
  }

  .benefits {
    gap: 0.8rem;
    margin-top: 1.25rem;
  }

  .benefits li {
    padding-left: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .benefits li::before {
    top: 0.5rem;
  }

  .proof-strip {
    gap: 0.55rem;
    margin-top: 1.25rem;
  }

  .lead-card,
  .lead-card__panel {
    border-radius: 1.6rem;
  }

  .lead-card {
    padding: 1.35rem;
  }

  .lead-card__description {
    margin-top: 0.85rem;
    line-height: 1.55;
  }

  .lead-card__panel {
    padding: 1rem;
  }

  .proof-strip span {
    width: 100%;
    padding: 0.82rem 0.95rem;
    font-size: 0.88rem;
    text-align: left;
  }

  .lead-card__microcopy,
  .ml-form-checkboxRow label,
  .ml-form-checkboxRow p,
  .privacy-policy p {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow .custom-radio .custom-control-label,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow .custom-radio .custom-control-label {
    font-size: 0.94rem !important;
  }

  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-field-group > label {
    font-size: 0.74rem !important;
  }

  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody input.form-control,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .custom-select,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody textarea,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successContent p {
    font-size: 0.96rem !important;
  }

  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p,
  body #mlb2-38164770.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .privacy-policy p {
    font-size: 0.82rem !important;
  }
}

@media (max-width: 380px) {
  .lead-card {
    padding: 1.15rem;
  }

  .lead-card__panel {
    padding: 0.9rem;
  }

  .ml-form-recaptcha {
    min-height: 4.9rem;
    overflow: hidden;
  }

  .g-recaptcha {
    transform: scale(0.88);
    transform-origin: left top;
  }
}
