:root {
  --bg: #f6f9fc;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: #f8fbff;

  --text: #0a2540;
  --text-soft: #425466;
  --text-muted: #6b7c93;

  --border-soft: rgba(10, 37, 64, 0.08);

  --primary: #0f8b8d;
  --accent: #635bff;
  --accent-hover: #574fe6;

  --field-bg: #ffffff;
  --field-border: #d8e1ea;
  --field-focus: rgba(99, 91, 255, 0.18);
  --field-filled-bg: #f4f8fc;
  --field-filled-border: #b9c9d8;
  --field-error: #d1435b;

  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.10);

  --radius-card: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.lead-page {
  padding-top: 74px;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 37, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 37, 64, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.42;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.18;
}

.bg-orb--left {
  width: 360px;
  height: 360px;
  left: -110px;
  top: 140px;
  background: #7dd3fc;
}

.bg-orb--right {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: 30px;
  background: #a78bfa;
}

.lead-header {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 20;
}

.lead-header__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-header__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
}

.lead-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lead-header__logo img {
  display: block;
  height: 15px;
  width: auto;
}

.lead-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex: 1 1 auto;
}

.lead-header__nav a {
  padding: 7px 10px;
  border-radius: 9px;
  color: #55697d;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.lead-header__nav a:hover,
.lead-header__nav a.is-active {
  color: #0a2540;
  background: rgba(99, 91, 255, 0.07);
}

.lead-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.lead-header__signin,
.contact-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(10, 37, 64, 0.10);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a2540;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.lead-header__signin:hover,
.contact-link-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 91, 255, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.lead-main {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.lead-main--wide {
  width: min(1000px, calc(100% - 40px));
  padding-top: 28px;
  padding-bottom: 40px;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 640px);
  gap: 28px;
  align-items: start;
}

.signup-copy-panel {
  position: sticky;
  top: 94px;
  padding-top: 18px;
}

.lead-kicker {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.signup-copy-panel h1 {
  margin: 0;
  max-width: 13ch;
  color: var(--text);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.10;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.lead-intro__lede {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.62;
}

.signup-copy-note {
  max-width: 360px;
  margin-top: 18px;
  padding: 15px 15px 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.04);
}

.signup-copy-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 13px;
}

.signup-copy-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.58;
}

.signup-card,
.signup-review,
.signup-approval,
.signup-success,
.lead-footer {
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.signup-card {
  padding: 24px;
  border-radius: 20px;
}

.signup-card--single {
  max-width: none;
  margin: 0;
}

.signup-progress {
  margin-bottom: 18px;
}

.signup-progress__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}

.signup-progress__step {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: #8a9bae;
  line-height: 1;
}

.signup-progress__step.is-active,
.signup-progress__step.is-complete {
  color: var(--text);
}

.signup-progress__dot {
  width: 10px;
  height: 10px;
  border: 2px solid #cad6e2;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

.signup-progress__step.is-active .signup-progress__dot {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.10);
}

.signup-progress__step.is-complete .signup-progress__dot {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-color: transparent;
  position: relative;
}

.signup-progress__step.is-complete .signup-progress__dot::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 3px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.signup-progress__bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.signup-progress__bars span {
  height: 3px;
  border-radius: 999px;
  background: #dbe5ee;
}

.signup-progress__bars span.is-active {
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.signup-heading {
  margin-bottom: 14px;
}

.signup-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 27px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.signup-heading p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 42ch;
}

.signup-step {
  display: none;
  min-height: 214px;
}

.signup-step.is-active {
  display: block;
}

.signup-section__head {
  margin-bottom: 10px;
}

.signup-section__head h3 {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.signup-section__head p {
  margin: 6px 0 0;
  color: #5b6b7c;
  font-size: 13px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid.two-col {
  grid-template-columns: 1fr 1fr;
}

.form-grid.three-col {
  grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #21374d;
  font-size: 12px;
  font-weight: 600;
}

.optional {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 11px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: var(--radius-md);
  background: var(--field-bg);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input,
select {
  height: 44px;
  padding: 0 13px;
}

textarea {
  min-height: 94px;
  padding: 12px 13px;
  resize: vertical;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: #95a4b5;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%236b7c93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 12px 12px;
}

.form-group:not(.is-filled) input:focus,
.form-group:not(.is-filled) select:focus,
.form-group:not(.is-filled) textarea:focus {
  border-color: #a99fff;
  box-shadow: 0 0 0 4px var(--field-focus);
  background: #fff;
}

.form-group.is-filled input,
.form-group.is-filled select,
.form-group.is-filled textarea,
.form-group.is-filled input:focus,
.form-group.is-filled select:focus,
.form-group.is-filled textarea:focus {
  background: var(--field-filled-bg) !important;
  border-color: var(--field-filled-border) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

.form-group.is-filled label {
  color: #17324d;
}

.form-group.is-filled label::after {
  content: " ✓";
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.form-group.has-error label::after {
  content: "";
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: rgba(209, 67, 91, 0.75);
  box-shadow: 0 0 0 4px rgba(209, 67, 91, 0.10);
  background: #fffafb;
}

.field-error {
  min-height: 15px;
  margin-top: 4px;
  color: var(--field-error);
  font-size: 11px;
  line-height: 1.4;
}

.signup-review,
.signup-approval {
  padding: 15px 16px;
  border-radius: 16px;
}

.signup-review {
  margin-bottom: 14px;
  background: var(--surface-soft);
}

.signup-review-section + .signup-review-section {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #e3ebf3;
}

.signup-review-heading {
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-review-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  border-bottom: 1px solid #e3ebf3;
}

.signup-review-row:last-child {
  border-bottom: none;
}

.signup-review-label,
.signup-review-value,
.signup-approval p {
  font-size: 12px;
}

.signup-review-label {
  color: var(--text-muted);
}

.signup-review-value {
  max-width: 65%;
  color: var(--text);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
}

.signup-approval {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,253,0.92));
}

.signup-approval strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.btn {
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(10, 37, 64, 0.12);
  background: rgba(255, 255, 255, 0.90);
  color: var(--text-soft);
}

.btn-secondary:hover {
  color: var(--text);
  background: #fff;
  border-color: rgba(99, 91, 255, 0.18);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  min-width: 118px;
  height: 42px;
  padding: 0 18px;
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 14px 28px rgba(99, 91, 255, 0.28);
}

.btn-primary.is-loading {
  min-width: 144px;
}

.btn-spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.btn-spinner.is-visible {
  display: inline-block;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
  color: transparent;
  font-size: 12px;
  line-height: 1.4;
  transition: color 0.18s ease;
}

.form-status.is-info {
  color: var(--text-soft);
}

.form-status.is-error {
  color: var(--field-error);
}

.signup-success {
  display: none;
  padding: 8px 0 0;
  text-align: center;
  border: none;
  box-shadow: none;
  background: transparent;
}

.signup-success.is-visible {
  display: block;
}

.success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 10px 24px rgba(99, 91, 255, 0.18);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.signup-success h2 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.signup-success p {
  max-width: 360px;
  margin: 10px auto 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.signup-success__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.signup-success__actions .btn,
.signup-success__actions .contact-link-btn {
  min-height: 42px;
  padding: 0 16px;
}

.lead-footer {
  position: relative;
  z-index: 2;
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 24px;
  border-radius: 16px;
}

.lead-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr) minmax(220px, 0.8fr);
  gap: 18px;
  padding: 18px 20px;
}

.lead-footer__brand img {
  display: block;
  height: 16px;
  width: auto;
  margin-bottom: 8px;
}

.lead-footer__brand p,
.lead-footer__links a,
.lead-footer__contact a {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
}

.lead-footer__links,
.lead-footer__contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.lead-footer__links a:hover,
.lead-footer__contact a:hover {
  color: var(--accent);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .lead-main--wide {
    width: min(100% - 28px, 1000px);
  }

  .signup-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .signup-copy-panel {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .signup-copy-panel h1 {
    max-width: 11ch;
    font-size: clamp(32px, 6vw, 44px);
  }

  .signup-copy-note,
  .lead-intro__lede {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  body.lead-page {
    padding-top: 72px;
  }

  .lead-main--wide {
    width: min(100% - 20px, 1000px);
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .lead-header {
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .lead-header__inner {
    padding: 9px 10px;
    border-radius: 12px;
  }

  .lead-header__nav {
    display: none;
  }

  .signup-copy-panel h1 {
    max-width: none;
    font-size: 34px;
    line-height: 0.98;
  }

  .lead-intro__lede {
    font-size: 14px;
    line-height: 1.56;
  }

  .signup-copy-note {
    padding: 14px;
    border-radius: 14px;
  }

  .signup-card {
    padding: 18px;
    border-radius: 18px;
  }

  .signup-heading h2,
  .signup-success h2 {
    font-size: 22px;
  }

  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .form-grid.three-col {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .btn,
  .contact-link-btn {
    width: 100%;
  }

  .signup-review-row,
  .signup-success__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .signup-review-value {
    max-width: 100%;
    text-align: left;
  }

  .lead-footer {
    width: min(100% - 20px, 1000px);
  }

  .lead-footer__inner {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}

/* =========================================
   SLIM FOOTER
========================================= */

.lead-main--wide {
  padding-bottom: 64px;
}

.lead-footer--slim {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 28px;
  border-radius: 14px;
}

.lead-footer__inner--slim {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 14px 18px;
}

.lead-footer__logo {
  display: block;
  height: 15px;
  width: auto;
  flex: 0 0 auto;
}

.lead-footer__line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-width: 0;
}

.lead-footer__line a {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.lead-footer__line a:hover {
  color: var(--accent);
}

/* remove old stacked footer behavior if still present */
.lead-footer__brand,
.lead-footer__links,
.lead-footer__contact {
  display: none;
}

@media (max-width: 720px) {
  .lead-main--wide {
    padding-bottom: 42px;
  }

  .lead-footer--slim {
    width: min(100% - 20px, 1000px);
    margin-bottom: 20px;
  }

  .lead-footer__inner--slim {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 16px;
  }

  .lead-footer__line {
    gap: 8px 14px;
  }

  .lead-footer__line a {
    font-size: 12px;
    white-space: normal;
  }
}

/* =========================================
   SLIM FOOTER (LEFT LOGO / RIGHT CONTENT)
========================================= */

/* more space between card and footer */
.lead-main--wide {
  padding-bottom: 90px;
}

.lead-footer--slim {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto 32px;
  border-radius: 14px;
}

.lead-footer__inner--slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
}

/* LEFT */
.lead-footer__left {
  flex: 0 0 auto;
}

.lead-footer__logo {
  display: block;
  height: 15px;
  width: auto;
}

/* RIGHT */
.lead-footer__right {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.lead-footer__line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

/* links */
.lead-footer__line a {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
}

.lead-footer__line a:hover {
  color: var(--accent);
}

/* separator */
.footer-sep {
  color: #9fb0c0;
  font-size: 12px;
}

/* kill old footer blocks if still present */
.lead-footer__brand,
.lead-footer__links,
.lead-footer__contact {
  display: none;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 720px) {

  .lead-main--wide {
    padding-bottom: 60px;
  }

  .lead-footer--slim {
    width: min(100% - 20px, 1000px);
    margin-bottom: 22px;
  }

  .lead-footer__inner--slim {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .lead-footer__right {
    width: 100%;
    justify-content: flex-start;
  }

  .lead-footer__line {
    gap: 8px 14px;
  }

  .lead-footer__line a {
    font-size: 12px;
    white-space: normal;
  }
}

.signup-progress__steps--3 {
  grid-template-columns: repeat(3, 1fr);
}

.signup-progress__bars--3 {
  grid-template-columns: repeat(3, 1fr);
}

.signup-progress__steps--5 {
  grid-template-columns: repeat(5, 1fr);
}

.signup-progress__bars--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* fix spacing inside card */
.signup-section {
  margin-bottom: 18px;
}

.signup-section__head {
  margin-bottom: 14px;
}

/* grid spacing */
.contact-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

/* contact cards */
.contact-clean-card {
  display: block;
  padding: 18px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 16px;
  background: rgba(248, 251, 255, 0.75);
  text-decoration: none;
  transition: all 0.18s ease;
}

.contact-clean-card:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 91, 255, 0.18);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(10, 37, 64, 0.06);
}

/* spacing inside cards */
.contact-clean-card__label {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-clean-card__value {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-clean-card__meta {
  font-size: 13px;
  color: var(--text-soft);
}

/* give bottom box breathing room */
.contact-clean-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 16px;
}

/* mobile */
@media (max-width: 720px) {
  .contact-clean-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   LEGAL / CONTENT PAGES
========================================= */

.content-page .signup-layout {
  align-items: start;
}

.content-page .signup-copy-panel {
  top: 96px;
}

.content-page .signup-copy-panel h1 {
  max-width: 9ch;
}

.content-page .signup-card {
  padding: 26px;
}

.content-page .signup-section {
  margin-bottom: 0;
}

.content-page .signup-section h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.content-page .signup-section h3 + p {
  margin-top: 0;
}

.content-page .signup-section p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.72;
  max-width: 68ch;
}

.content-page .signup-section p:last-child {
  margin-bottom: 0;
}

.content-page .signup-section a {
  color: var(--accent);
  text-decoration: none;
}

.content-page .signup-section a:hover {
  text-decoration: underline;
}

.content-page .signup-section > * + h3 {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 37, 64, 0.08);
}

/* optional list styling if you add bullets later */
.content-page .signup-section ul,
.content-page .signup-section ol {
  margin: 0 0 18px 20px;
  padding: 0;
  color: var(--text-soft);
}

.content-page .signup-section li {
  margin-bottom: 8px;
  line-height: 1.68;
  font-size: 14px;
}

/* slimmer legal footer spacing */
.content-page .lead-main--wide {
  padding-bottom: 84px;
}

/* mobile */
@media (max-width: 980px) {
  .content-page .signup-copy-panel {
    top: auto;
  }

  .content-page .signup-copy-panel h1 {
    max-width: 11ch;
  }

  .content-page .signup-section p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .content-page .signup-card {
    padding: 20px;
  }

  .content-page .signup-section h3 {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .content-page .signup-section p,
  .content-page .signup-section li {
    font-size: 13px;
    line-height: 1.66;
  }

  .content-page .signup-section > * + h3 {
    margin-top: 20px;
    padding-top: 20px;
  }

  .content-page .lead-main--wide {
    padding-bottom: 56px;
  }
}
