:root {
  color-scheme: light;
  --bg: #faf7f1;
  --sand: #eee8dc;
  --surface: #ffffff;
  --surface-soft: #f9fafb;
  --ink: #0b0b0c;
  --navy: #172530;
  --muted: #5f6675;
  --muted-2: #64748b;
  --line: rgba(15, 23, 42, 0.1);
  --line-strong: #dbe2ea;
  --mint: #14b8a6;
  --mint-deep: #0f766e;
  --mint-hover: #0d6d66;
  --mint-soft: rgba(15, 143, 134, 0.11);
  --focus: rgba(20, 184, 166, 0.3);
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--navy);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--bg);
}

body,
button,
input,
textarea {
  letter-spacing: 0;
}

a {
  color: var(--mint-deep);
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--mint-hover);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 67px;
  padding: 0 76px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 157px;
  height: 31px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 157px;
  height: 31px;
  object-fit: contain;
}

.nav-links,
.footer nav {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.footer a {
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--mint-deep);
}

.hero {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 66px 0 78px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 520px);
  gap: 64px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 560px;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 15px;
  border: 1px solid #d4c7b6;
  border-radius: 7px;
  color: #233044;
  background: rgba(250, 247, 241, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.offer-pill span[aria-hidden] {
  width: 1px;
  height: 18px;
  background: #cfc2b3;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 560px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 44px;
  font-weight: 850;
  line-height: 1.1;
}

h2 {
  color: #111827;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  color: #111827;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.25;
}

.lead {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16.5px;
  font-weight: 520;
  line-height: 1.45;
}

.hero-stack {
  display: grid;
  gap: 9px;
  max-width: 660px;
  margin: 24px 0 26px;
}

.hero-stack-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.hero-stack-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 30px;
  padding: 0 12px;
  border-radius: 7px;
  color: #0b6f68;
  background: var(--mint-soft);
  font-size: 13px;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.hero-stack-copy {
  min-width: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
}

.business-card,
.form-card,
.detail-card,
.confirmation {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.business-card {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.business-card p,
.business-card address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}

.form-card {
  display: grid;
  gap: 0;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-eyebrow,
.section-kicker {
  margin-bottom: 10px;
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.form-intro {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.field-grid {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.checkbox-title {
  color: #1f2937;
  font-size: 13px;
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0 15px;
  color: #111827;
  font: inherit;
  font-size: 14px;
  background: var(--surface-soft);
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input {
  height: 52px;
}

.field textarea {
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7c8aa3;
}

.field input:hover,
.field textarea:hover {
  border-color: #c7d2fe;
  background: #ffffff;
}

.field input:focus,
.field textarea:focus {
  border-color: #4f46e5;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.helper {
  color: #748195;
  font-size: 12px;
}

.consent-box {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(15, 143, 134, 0.2);
  border-radius: 8px;
  background: #f0fbf8;
  cursor: pointer;
}

.consent-box input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--mint-deep);
}

.consent-box input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.consent-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: #526071;
  font-size: 13px;
  line-height: 1.48;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 202px;
  height: 56px;
  border: 0;
  border-radius: 12px;
  padding: 0 24px;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  background: var(--mint-deep);
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--mint-hover);
}

.primary-button:hover svg {
  transform: translateX(2px);
}

.primary-button:active {
  transform: translateY(1px);
}

.primary-button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.primary-button svg {
  flex: 0 0 auto;
  transition: transform 0.16s ease;
}

.legal-links {
  flex: 1 1 210px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.45;
}

.confirmation {
  margin-top: 18px;
  padding: 15px;
  border-color: rgba(15, 118, 110, 0.25);
  color: #124d41;
  background: #ecfdf8;
  box-shadow: none;
}

.confirmation:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
}

.confirmation strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mint-deep);
  font-size: 14px;
}

.confirmation p {
  color: #426158;
  font-size: 13px;
}

.program-section {
  padding: 72px 0 82px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.section-inner {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  font-size: 34px;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 174px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.footer {
  width: 100%;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 76px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.3;
}

@media (max-width: 1020px) {
  .topbar,
  .footer-inner {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 720px;
    font-size: 38px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 64px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .hero,
  .section-inner {
    width: min(calc(100% - 28px), 1180px);
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  h2,
  .section-heading h2 {
    font-size: 25px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-stack-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-stack-label {
    width: fit-content;
  }

  .form-card {
    padding: 22px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-links {
    flex: 0 1 auto;
  }

  .primary-button {
    width: 100%;
  }

  .program-section {
    padding: 58px 0 64px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px;
  }
}
