:root {
  --ink: #243139;
  --ink-soft: #45545b;
  --muted: #6d797d;
  --line: #dedfd8;
  --teal: #58786a;
  --teal-dark: #3e5b4f;
  --aqua: #edf3ef;
  --sky: #f5f2ea;
  --gold: #b78349;
  --white: #ffffff;
  --soft: #faf8f3;
  --shadow: 0 24px 70px rgba(36, 49, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fffefa 0%, #ffffff 44%, var(--soft) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 236, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  font-weight: 800;
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

.header-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 5vw, 68px) clamp(20px, 6vw, 84px) 38px;
}

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

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 26px rgba(22, 141, 133, 0.22);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.button-light {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
}

.hero-note {
  display: flex;
  gap: 10px;
  max-width: 640px;
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 14px;
}

.hero-note strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.hero-visual {
  position: relative;
  max-width: 560px;
  justify-self: end;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(228, 245, 242, 0.92), rgba(238, 247, 251, 0.7)),
    var(--sky);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58%;
  height: 58%;
  border-right: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  border-radius: 8px;
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: contain;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
  text-align: center;
}

.section h2,
.disclosure-band h2,
.content-page h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p,
.content-page p,
.content-page li {
  color: var(--ink-soft);
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.resource-strip > div {
  padding: 34px;
  background: var(--white);
}

.resource-number {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.resource-strip h3,
.step h3 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.resource-strip p,
.step p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: start;
  background: var(--soft);
}

.split-section > div {
  max-width: 660px;
}

.check-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.check-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.check-row span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-top: 2px;
  border-radius: 8px;
  background: var(--aqua);
}

.check-row span::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--teal-dark);
  border-bottom: 2px solid var(--teal-dark);
  transform: rotate(-45deg) translate(1px, -1px);
}

.check-row p {
  margin: 0;
  font-weight: 700;
}

.checklist-section {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--white), #faf8f3);
}

.step span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 850;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 34px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-disclosure {
  max-width: 1180px;
}

.footer-disclosure p {
  max-width: none;
  margin: 0;
}

.footer-disclosure strong {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.content-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 20px;
}

.content-page .lede {
  margin-top: 18px;
  font-size: 19px;
}

.content-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.content-section h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.content-section ul {
  padding-left: 22px;
}

.contact-box {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .resource-strip,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: stretch;
  }

  .brand,
  .header-cta {
    width: 100%;
  }

  .header-cta {
    min-height: 46px;
  }

  .nav-links,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-note {
    display: block;
  }

  .hero-note strong {
    display: block;
    margin-bottom: 4px;
  }

  .resource-strip,
  .steps {
    grid-template-columns: 1fr;
  }

  .resource-strip > div,
  .step {
    padding: 24px;
  }

  .hero-visual {
    padding: 14px;
  }
}

/* Burial Assistant visual refresh */
:root {
  --ink: #1d2c3a;
  --ink-soft: #435364;
  --muted: #687681;
  --line: #d9e0df;
  --teal: #2f756c;
  --teal-dark: #20554f;
  --aqua: #e8f3ef;
  --sky: #eef4f7;
  --gold: #d39a4a;
  --white: #ffffff;
  --soft: #f8f6f1;
  --shadow: 0 24px 70px rgba(29, 44, 58, 0.13);
}

body {
  overflow-x: hidden;
  background: #fff;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(29, 44, 58, 0.08);
  box-shadow: 0 8px 34px rgba(29, 44, 58, 0.07);
}

.brand {
  font-size: 17px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(145deg, var(--ink), #2c4c57);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(29, 44, 58, 0.20);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(29, 44, 58, 0.15);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(32, 85, 79, 0.22);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(820px, calc(100vh - 76px));
  background:
    radial-gradient(circle at 92% 12%, rgba(211, 154, 74, 0.16), transparent 24%),
    radial-gradient(circle at 6% 88%, rgba(47, 117, 108, 0.13), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #ffffff 58%, #f2f7f6 100%);
  border-bottom: 1px solid rgba(29, 44, 58, 0.07);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--teal-dark) !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(211, 154, 74, 0.14);
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 70px);
  letter-spacing: -0.045em;
}

.button {
  min-height: 52px;
  border-radius: 999px;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 15px 30px rgba(47, 117, 108, 0.24);
}

.button-secondary {
  border-color: rgba(29, 44, 58, 0.18);
  box-shadow: 0 8px 24px rgba(29, 44, 58, 0.06);
}

.hero-note {
  padding: 13px 16px;
  border: 1px solid rgba(211, 154, 74, 0.25);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.66);
}

.hero-visual {
  overflow: visible;
  padding: 26px;
  background: linear-gradient(145deg, #edf5f1, #f5f1e8);
  border-color: rgba(29, 44, 58, 0.10);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  right: -14px;
  bottom: -14px;
  border-color: var(--gold);
  border-radius: 28px;
}

.hero-visual img {
  border-radius: 18px;
}

.visual-note {
  position: absolute;
  bottom: 18px;
  left: -28px;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(29, 44, 58, 0.10);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(29, 44, 58, 0.16);
}

.visual-note strong {
  font-size: 14px;
}

.visual-note span {
  color: var(--muted);
  font-size: 12px;
}

.intro-section {
  background: #fff;
}

.resource-strip {
  gap: 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.resource-strip > div {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, #fff 0%, #fbfcfb 100%);
  box-shadow: 0 16px 44px rgba(29, 44, 58, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.resource-strip > div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--teal));
}

.resource-strip > div:hover {
  border-color: rgba(47, 117, 108, 0.35);
  box-shadow: 0 22px 52px rgba(29, 44, 58, 0.11);
  transform: translateY(-4px);
}

.resource-number {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--aqua);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.resource-strip h3 {
  margin-top: 22px;
  font-size: 23px;
}

.split-section {
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(211, 154, 74, 0.16), transparent 28%),
    linear-gradient(135deg, #1d2c3a, #294653);
}

.split-section h2,
.split-section .check-row p {
  color: #fff;
}

.split-section > div > p {
  color: rgba(255, 255, 255, 0.72);
}

.split-section .check-row {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.split-section .check-row span {
  background: rgba(232, 243, 239, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.split-section .check-row span::after {
  border-color: #d9b574;
}

.checklist-section {
  background: linear-gradient(180deg, #fbfaf7, #f6f3ec);
}

.step {
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(29, 44, 58, 0.08);
}

.step span {
  width: 42px;
  height: 42px;
  background: linear-gradient(145deg, var(--ink), #35505b);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(29, 44, 58, 0.18);
}

.site-footer {
  background: #f0f4f3;
}

.contact-box {
  border: 0;
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  background: linear-gradient(135deg, #f7faf9, #f7f3eb);
  box-shadow: 0 15px 40px rgba(29, 44, 58, 0.08);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(211, 154, 74, 0.62);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-visual {
    justify-self: center;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand {
    width: auto;
  }

  .nav-links {
    order: 3;
    width: calc(100vw - 36px);
    justify-content: flex-start;
    flex-flow: row nowrap;
    gap: 20px;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    width: 100%;
    min-height: 48px;
  }

  .hero {
    gap: 42px;
    padding: 48px 20px 54px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-note {
    display: grid;
  }

  .hero-visual {
    width: calc(100% - 8px);
    padding: 14px;
    border-radius: 22px;
  }

  .visual-note {
    bottom: 12px;
    left: 12px;
    min-width: 145px;
    padding: 11px 14px;
  }

  .section {
    padding: 58px 20px;
  }

  .section h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .resource-strip,
  .steps {
    grid-template-columns: 1fr;
  }

  .resource-strip > div {
    min-height: 0;
    padding: 28px;
  }

  .footer-bottom,
  .site-footer nav {
    width: 100%;
  }

  .site-footer nav {
    flex-flow: row wrap;
    gap: 12px 20px;
  }

  .content-page {
    padding: 48px 18px 62px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .brand {
    font-size: 16px;
  }
}

/* Burial Assistant palette refinement */
:root {
  --ink: #243041;
  --ink-soft: #49586b;
  --muted: #6b7683;
  --line: #dce1e8;
  --teal: #536f92;
  --teal-dark: #394f6c;
  --aqua: #eaf0f7;
  --sky: #f3f6fa;
  --gold: #c78958;
  --soft: #faf7f1;
}

body {
  background: #fffdfa;
  color: var(--ink);
}

.site-header {
  background: rgba(255, 253, 250, 0.94);
  border-bottom-color: rgba(83, 111, 146, 0.14);
}

.brand-mark {
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 14px 5px;
  background: linear-gradient(145deg, #243041, #536f92);
  box-shadow: 0 8px 18px rgba(36, 48, 65, 0.2);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--gold);
}

.nav-links a::after {
  background: var(--gold);
}

.header-cta {
  background: linear-gradient(135deg, #536f92, #394f6c);
  box-shadow: 0 8px 18px rgba(57, 79, 108, 0.18);
}

.header-cta:hover {
  background: linear-gradient(135deg, #607b9e, #435b78);
  box-shadow: 0 10px 22px rgba(57, 79, 108, 0.22);
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 137, 88, 0.13), transparent 28%),
    radial-gradient(circle at 12% 84%, rgba(83, 111, 146, 0.13), transparent 32%),
    linear-gradient(145deg, #fffdfa, #f4f7fb);
}

.eyebrow {
  color: #8b5a36;
  background: rgba(199, 137, 88, 0.12);
  border-color: rgba(199, 137, 88, 0.24);
}

.button-primary {
  background: linear-gradient(135deg, #536f92, #394f6c);
  box-shadow: 0 10px 22px rgba(57, 79, 108, 0.2);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.button-primary:hover {
  background: linear-gradient(135deg, #607b9e, #435b78);
  box-shadow: 0 12px 24px rgba(57, 79, 108, 0.22);
  transform: translateY(-1px);
}

.button-secondary:hover {
  color: var(--teal-dark);
  background: #f0f4f9;
  border-color: #9aaabd;
}

.resource-strip::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.resource-label {
  color: var(--teal-dark);
  background: var(--aqua);
}

.split-section {
  background: linear-gradient(135deg, #243041, #344a64);
}

.split-section .check-row span {
  background: rgba(234, 240, 247, 0.14);
}

.step span {
  background: linear-gradient(145deg, #243041, #536f92);
}

.site-footer {
  background: #f0f3f6;
}

.contact-box {
  background: linear-gradient(135deg, #f7f9fc, #faf5ee);
}

a:focus-visible,
button:focus-visible {
  outline-color: rgba(199, 137, 88, 0.7);
}

/* Complete editorial redesign */
:root {
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --teal: #167f7a;
  --teal-dark: #0f5f5b;
  --aqua: #e8f7f5;
  --sky: #f2f4f7;
  --gold: #ef725e;
  --soft: #f8fafc;
  --display: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body { font-family: var(--sans); background: #f8fafc; color: var(--ink); }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(16, 24, 40, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 38px rgba(16, 24, 40, .08);
  backdrop-filter: blur(18px);
}

.brand { font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px 13px 13px 4px;
  background: #101828; box-shadow: none; font-family: var(--display); font-size: 24px;
}
.brand-mark::after { width: 8px; height: 8px; right: 3px; bottom: 3px; background: #45d2c8; border-color: #101828; }
.nav-links { gap: 28px; }
.nav-links a { color: #475467; font-size: 14px; font-weight: 650; }
.nav-links a::after { background: #ef725e; }
.header-cta {
  border-radius: 12px; background: #101828; box-shadow: none; padding: 13px 18px;
}
.header-cta:hover { background: #1d2939; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(16,24,40,.16); }

.hero {
  width: min(1240px, calc(100% - 40px));
  min-height: 680px; margin: -90px auto 0; padding: 170px 48px 80px;
  border-radius: 0 0 36px 36px;
  grid-template-columns: 1.05fr .95fr; gap: 70px;
  background:
    radial-gradient(circle at 72% 24%, rgba(69, 210, 200, .18), transparent 24%),
    linear-gradient(135deg, #eef7f6 0%, #f9fafb 54%, #fff3ef 100%);
}
.hero-copy { max-width: 660px; }
.hero-kicker, .section-kicker {
  display: inline-flex; margin-bottom: 18px; color: #167f7a; font-size: 12px;
  font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.hero h1 { font-family: var(--display); font-size: clamp(48px, 5.4vw, 76px); line-height: .98; letter-spacing: -.055em; }
.hero h1 em { color: #167f7a; font-style: normal; }
.hero p { max-width: 590px; margin-top: 26px; color: #475467; font-size: 18px; line-height: 1.7; }
.hero-actions { margin-top: 34px; }
.button { border-radius: 13px; padding: 16px 21px; font-size: 15px; }
.button-primary { background: #101828; box-shadow: none; }
.button-primary:hover { background: #1d2939; box-shadow: 0 10px 24px rgba(16,24,40,.16); }
.button-secondary { color: #344054; border: 1px solid #d0d5dd; background: rgba(255,255,255,.7); }
.button-secondary:hover { color: #101828; border-color: #98a2b3; background: white; }
.hero-note { margin-top: 30px; padding: 0 0 0 16px; border-left: 3px solid #ef725e; background: transparent; border-radius: 0; }
.hero-note strong { color: #101828; }
.hero-visual { padding: 14px; border: 1px solid rgba(16,24,40,.1); border-radius: 28px 28px 8px 28px; background: rgba(255,255,255,.7); box-shadow: 0 30px 80px rgba(16,24,40,.15); transform: rotate(1.5deg); }
.hero-visual img { border-radius: 20px 20px 5px 20px; }
.visual-note { left: -24px; bottom: 28px; border: 0; border-radius: 14px; background: #101828; color: white; box-shadow: 0 18px 36px rgba(16,24,40,.22); }
.visual-note span { color: #cdd5df; }

.section { width: min(1180px, calc(100% - 40px)); padding: 110px 0; }
.section-heading { max-width: 780px; }
.section h2 { font-family: var(--display); font-size: clamp(40px, 5vw, 64px); letter-spacing: -.045em; line-height: 1.02; }
.section-heading > p { margin-top: 22px; font-size: 18px; color: #667085; line-height: 1.7; }
.resource-strip { gap: 16px; margin-top: 50px; background: transparent; border: 0; box-shadow: none; }
.resource-strip::before { display: none; }
.resource-strip > div { min-height: 260px; padding: 30px; border: 1px solid #e4e7ec; border-radius: 20px; background: #fff; box-shadow: 0 14px 38px rgba(16,24,40,.05); transition: transform .2s ease, box-shadow .2s ease; }
.resource-strip > div:nth-child(2) { transform: none; background: #101828; color: white; }
.resource-strip > div:nth-child(2) p { color: #cdd5df; }
.resource-strip > div:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(16,24,40,.1); }
.resource-strip > div:nth-child(2):hover { transform: translateY(-5px); }
.resource-number { display: inline-flex; width: fit-content; color: #0f5f5b; background: #e8f7f5; border-radius: 999px; padding: 7px 10px; font-size: 11px; letter-spacing: .08em; }
.resource-strip h3 { margin-top: 34px; font-size: 22px; letter-spacing: -.025em; }
.resource-strip p { color: #667085; line-height: 1.65; }

.split-section { width: min(1240px, calc(100% - 40px)); padding: 86px 62px; border-radius: 32px; background: #101828; gap: 72px; box-shadow: 0 30px 70px rgba(16,24,40,.16); }
.section-kicker.light { color: #45d2c8; }
.split-section h2 { color: white; }
.split-section > div > p { color: #b9c2cf; font-size: 17px; line-height: 1.7; }
.check-row { padding: 21px 0; border-bottom-color: rgba(255,255,255,.12); }
.split-section .check-row span { width: 34px; height: 34px; background: rgba(69,210,200,.14); border: 1px solid rgba(69,210,200,.26); }
.split-section .check-row span::after { border-color: #45d2c8; }
.split-section .check-row p { color: #f2f4f7; }

.checklist-section { background: transparent; }
.steps { gap: 14px; margin-top: 46px; }
.step { min-height: 270px; padding: 26px; border: 1px solid #e4e7ec; border-radius: 18px; box-shadow: none; }
.step span { width: 38px; height: 38px; border-radius: 11px; background: #e8f7f5; color: #0f5f5b; box-shadow: none; font-size: 13px; }
.step h3 { margin-top: 32px; font-size: 20px; }
.step p { color: #667085; line-height: 1.65; }

.site-footer { background: #0b1220; color: #e4e7ec; }
.footer-disclosure { padding-top: 64px; }
.footer-disclosure p { color: #98a2b3; }
.footer-bottom { border-top-color: rgba(255,255,255,.1); }
.footer-bottom p, .site-footer a { color: #cdd5df; }
.footer-brand { color: white !important; }

@media (max-width: 980px) {
  .site-header { width: min(100% - 28px, 760px); }
  .nav-links { display: none; }
  .hero { margin-top: -88px; padding-top: 160px; grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 650px; transform: none; }
  .split-section { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { display: flex; flex-wrap: wrap; padding: 10px; margin-top: 10px; border-radius: 15px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 38px; height: 38px; }
  .header-cta { width: auto; min-height: 42px; padding: 11px 13px; font-size: 12px; }
  .hero { width: calc(100% - 16px); margin-top: -70px; padding: 128px 18px 46px; border-radius: 0 0 24px 24px; gap: 36px; }
  .hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .hero p { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 52px; }
  .hero-visual { width: 100%; padding: 9px; border-radius: 20px 20px 6px 20px; }
  .visual-note { left: 10px; bottom: 10px; }
  .section { width: calc(100% - 32px); padding: 72px 0; }
  .section h2 { font-size: 41px; }
  .resource-strip, .steps { grid-template-columns: 1fr; gap: 14px; }
  .resource-strip > div, .resource-strip > div:nth-child(2), .resource-strip > div:nth-child(2):hover { min-height: 0; transform: none; }
  .split-section { width: calc(100% - 16px); padding: 54px 22px; border-radius: 24px; gap: 32px; }
  .step { min-height: 0; }
  .footer-disclosure, .footer-bottom { width: calc(100% - 32px); }
}

/* Centering and hero-image polish */
html,
body { width: 100%; overflow-x: clip; }

main { width: 100%; }

.site-header,
.hero,
.section,
.split-section,
.footer-disclosure,
.footer-bottom {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.hero-visual {
  width: min(100%, 520px);
  aspect-ratio: 4 / 3;
  justify-self: start;
  transform: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.visual-note { left: 16px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; justify-self: center; }
  .hero-visual { justify-self: center; }
}

@media (max-width: 720px) {
  .hero-copy { max-width: none; }
  .hero-visual { width: 100%; aspect-ratio: 4 / 3; }
  .visual-note { left: 10px; }
}

/* Compact section-heading layout */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 780px;
  margin: 0 0 50px;
}

.section-heading .section-kicker { margin-bottom: 16px; }

.section-heading > p {
  max-width: 680px;
  margin: 20px 0 0;
}

.section-heading.narrow {
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-section .section-heading {
  align-items: center;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 720px) {
  .section-heading { margin-bottom: 36px; }
  .section-heading > p { margin-top: 16px; }
}
