:root {
  --blue-950: #001a31;
  --blue-900: #052b4d;
  --blue-800: #0b416b;
  --gold-700: #997020;
  --gold-600: #c99632;
  --gold-100: #f4e7cf;
  --paper: #fbf8f1;
  --paper-2: #f3ede3;
  --white: #ffffff;
  --ink: #142235;
  --muted: #607080;
  --line: #e1d8cc;
  --sage: #55796d;
  --shadow: 0 18px 50px rgba(0, 26, 49, 0.12);
  --radius: 8px;
  --container: min(1180px, calc(100% - 48px));
  --sans: "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(201, 150, 50, 0.55);
  outline-offset: 3px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 800;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  border-radius: var(--radius);
  background: var(--gold-600);
  color: var(--blue-950);
  font-weight: 850;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(0, 26, 49, 0.1);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(0, 26, 49, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--blue-950);
}

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 34px;
  height: 32px;
}

.brand-mark i {
  width: 8px;
  border-radius: 2px 2px 0 0;
  background: var(--gold-600);
}

.brand-mark i:nth-child(1) {
  height: 13px;
}

.brand-mark i:nth-child(2) {
  height: 22px;
}

.brand-mark i:nth-child(3) {
  height: 30px;
  background: var(--blue-900);
}

.brand strong {
  display: block;
  font-size: 1.42rem;
  font-weight: 900;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: #536472;
  font-size: 0.78rem;
  line-height: 1.1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav .nav-cta {
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--blue-900);
  color: var(--white);
}

.main-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-950);
}

.nav-toggle span[aria-hidden="true"] {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(251, 248, 241, 0.88) 100%),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 42vw;
  background: #eef3f5;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 40px 0 32px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-700);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--blue-950);
  font-family: var(--serif);
  font-weight: 760;
  letter-spacing: 0;
  hyphens: auto;
  overflow-wrap: break-word;
}

h1 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 3.06rem;
  line-height: 1.06;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 1.08rem;
  line-height: 1.22;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 20px;
  color: #33485a;
  font-size: 1.08rem;
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.16;
  text-align: center;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

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

.button::after {
  content: "→";
  margin-left: 16px;
}

.button-primary {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0, 26, 49, 0.18);
}

.button-primary:hover {
  background: var(--blue-800);
}

.button-secondary {
  border-color: rgba(0, 26, 49, 0.17);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
}

.button-gold {
  width: 100%;
  background: var(--gold-600);
  color: var(--blue-950);
}

.trust-line {
  max-width: 590px;
  margin: 18px 0 0;
  color: var(--blue-900);
  font-weight: 820;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 22px;
}

.entry-grid a {
  display: grid;
  gap: 7px;
  min-height: 122px;
  padding: 18px;
  border: 1px solid rgba(0, 26, 49, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(0, 26, 49, 0.08);
}

.entry-grid strong {
  color: var(--blue-950);
  font-size: 1rem;
  line-height: 1.25;
}

.entry-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.phone-break {
  display: none;
}

.hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
}

.hero-media img {
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  top: 26px;
  left: 26px;
  display: grid;
  gap: 12px;
  width: min(270px, 48%);
  padding: 22px;
  border: 1px solid rgba(0, 26, 49, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-media figcaption strong {
  color: var(--blue-950);
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.08;
}

.hero-media figcaption span {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.hero-media figcaption i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(201, 150, 50, 0.45);
  border-radius: 999px;
  color: var(--gold-700);
  font-style: normal;
}

.expect,
.path,
.faq {
  background: var(--white);
}

.expect,
.thought-band,
.selfcheck,
.path,
.support,
.faq,
.contact {
  padding: 72px 0;
}

.expect {
  padding-top: 42px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 32px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.expect-grid article {
  min-height: 230px;
  padding: 26px 22px;
  text-align: center;
}

.expect-grid article + article {
  border-left: 1px solid var(--line);
}

.expect-grid p,
.split-copy p,
.check-panel p,
.path-list p,
.reason-grid p,
.accordion p,
.contact-card p {
  color: var(--muted);
}

.icon {
  position: relative;
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border: 1px solid rgba(201, 150, 50, 0.32);
  border-radius: 999px;
  background: #fbf7ef;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--gold-600);
}

.icon-people::before {
  top: 14px;
  left: 15px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.icon-people::after {
  right: 13px;
  bottom: 15px;
  width: 24px;
  height: 15px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
}

.icon-calendar::before {
  inset: 16px 13px 13px;
  border-radius: 4px;
}

.icon-calendar::after {
  left: 19px;
  right: 19px;
  top: 26px;
  height: 0;
  border-width: 1px 0 0;
}

.icon-target::before {
  inset: 14px;
  border-radius: 999px;
}

.icon-target::after {
  top: 26px;
  left: 26px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-600);
}

.icon-handshake::before {
  top: 20px;
  left: 14px;
  width: 30px;
  height: 16px;
  border-radius: 5px;
  transform: rotate(35deg);
}

.icon-handshake::after {
  top: 20px;
  right: 14px;
  width: 30px;
  height: 16px;
  border-radius: 5px;
  transform: rotate(-35deg);
}

.icon-growth::before {
  left: 15px;
  right: 13px;
  bottom: 14px;
  height: 26px;
  border-width: 0 0 2px 2px;
}

.icon-growth::after {
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  border-width: 2px 2px 0 0;
  transform: rotate(0deg);
}

.thought-band {
  background: linear-gradient(90deg, var(--paper-2), #fffaf4);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.visual-note {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(244, 231, 207, 0.68)),
    var(--white);
  box-shadow: var(--shadow);
}

.note-card {
  position: absolute;
  left: 42px;
  top: 52px;
  display: grid;
  gap: 14px;
  width: 230px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 26, 49, 0.1);
}

.note-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
}

.note-row span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-600);
  border-radius: 999px;
}

.people-symbol {
  position: absolute;
  right: 48px;
  bottom: 50px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.people-symbol i {
  display: block;
  width: 56px;
  height: 78px;
  border-radius: 24px 24px 8px 8px;
  background: #e9dfd1;
}

.people-symbol i::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: -32px auto 0;
  border-radius: 999px;
  background: #d6a16f;
}

.people-symbol i:first-child {
  height: 90px;
  background: var(--blue-900);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--blue-950);
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-700);
}

.selfcheck {
  background: var(--paper);
}

.check-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 34px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 26, 49, 0.08);
}

.count {
  margin: 18px 0 0;
  color: var(--blue-900) !important;
  font-weight: 850;
}

.chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.chip {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue-950);
  font-weight: 820;
  text-align: left;
}

.chip::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border: 1px solid rgba(201, 150, 50, 0.42);
  border-radius: 999px;
  color: var(--gold-700);
}

.chip.is-selected {
  border-color: rgba(201, 150, 50, 0.75);
  background: #fff8ec;
  box-shadow: 0 10px 24px rgba(0, 26, 49, 0.08);
}

.chip.is-selected::before {
  content: "✓";
}

.check-result {
  grid-column: 2;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
}

.check-result p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.path-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.path-list li {
  position: relative;
  min-height: 198px;
  padding: 0 22px;
  text-align: center;
}

.path-list li + li::before {
  content: "";
  position: absolute;
  top: 28px;
  left: -26px;
  width: 52px;
  height: 1px;
  background: var(--gold-600);
}

.path-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 150, 50, 0.52);
  border-radius: 999px;
  color: var(--gold-700);
  font-weight: 900;
}

.path-list strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.08rem;
}

.support {
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 40px;
  align-items: start;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article {
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.reason-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-700);
  font-size: 1.72rem;
}

.reason-grid strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.08rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.accordion h3 {
  margin: 0;
}

.accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--blue-950);
  font-weight: 860;
  text-align: left;
}

.accordion button::after {
  content: "+";
  color: var(--gold-700);
  font-size: 1.45rem;
}

.accordion button[aria-expanded="true"]::after {
  content: "−";
}

.accordion div {
  padding: 0 20px 20px;
}

.contact {
  background: var(--white);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 38px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--blue-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card .eyebrow {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-person {
  display: grid;
  gap: 4px;
  max-width: 330px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-style: normal;
}

.contact-person strong,
.contact-person a {
  color: var(--white);
}

.contact-person a {
  font-weight: 850;
}

.contact-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84) !important;
  font-weight: 760;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 780;
}

.contact-form label > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 108px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form [aria-invalid="true"] {
  border-color: #e6ae4b;
  box-shadow: 0 0 0 3px rgba(230, 174, 75, 0.22);
}

.privacy-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px !important;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650 !important;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  padding: 0;
}

.privacy-check span {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.privacy-check a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 820;
}

.direct-links {
  margin: 0;
  font-size: 0.94rem;
}

.direct-links a {
  color: var(--white);
  font-weight: 850;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.legal-grid h2 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 900;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-grid a {
  color: var(--blue-900);
  font-weight: 850;
}

.mobile-sticky {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 450;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--gold-600);
  color: var(--blue-950);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 26, 49, 0.28);
  transform: translateY(86px);
  transition: transform 180ms ease;
}

body.show-sticky .mobile-sticky {
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-header {
    padding: 0 24px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero-grid,
  .split,
  .support-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-media {
    max-width: 760px;
  }

  .expect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expect-grid article {
    border-bottom: 1px solid var(--line);
  }

  .expect-grid article + article {
    border-left: 0;
  }

  .expect-grid article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .path-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 0;
  }

  .path-list li + li::before {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 32px);
  }

  body {
    padding-bottom: 76px;
    overflow-x: hidden;
  }

  .container {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero-grid {
    gap: 28px;
    padding: 34px 0 30px;
  }

  .hero::before {
    width: 54vw;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .entry-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-media figcaption {
    position: static;
    width: auto;
    margin-top: 12px;
    transform: none;
  }

  .phone-break {
    display: block;
  }

  .expect,
  .thought-band,
  .selfcheck,
  .path,
  .support,
  .faq,
  .contact {
    padding: 52px 0;
  }

  .expect {
    padding-top: 30px;
  }

  .expect-grid,
  .check-panel,
  .chips,
  .reason-grid,
  .contact-card,
  .path-list {
    width: 100%;
    max-width: calc(100vw - 32px);
    grid-template-columns: 1fr;
  }

  .expect-grid article,
  .expect-grid article:nth-child(2n) {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    border-left: 0;
  }

  .container,
  .section-head,
  .hero-copy,
  .split-copy,
  .expect-grid p,
  .path-list p,
  .reason-grid p,
  .accordion p,
  .contact-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .expect-grid p {
    max-width: 29ch;
    margin-right: auto;
    margin-left: auto;
  }

  .visual-note {
    min-height: 250px;
  }

  .note-card {
    left: 22px;
    top: 36px;
    width: 210px;
  }

  .people-symbol {
    right: 24px;
    bottom: 36px;
  }

  .people-symbol i {
    width: 38px;
    height: 60px;
  }

  .people-symbol i::before {
    width: 30px;
    height: 30px;
    margin-top: -24px;
  }

  .check-panel,
  .contact-card {
    padding: 22px;
  }

  .check-result {
    grid-column: auto;
  }

  .path-list li {
    min-height: 0;
    padding: 0;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 1.86rem;
  }

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

  .hero-grid {
    gap: 18px;
  }

  .hero-media {
    width: 100%;
    max-width: 330px;
  }

  .expect {
    padding-top: 16px;
  }

  .hero-media figcaption {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
