:root {
  --surface: #fbf9f8;
  --surface-low: #f6f3f3;
  --surface-card: #ffffff;
  --surface-container: #f0eded;
  --surface-high: #e4e2e2;
  --ink: #1b1c1c;
  --muted: #575f68;
  --muted-2: #44474b;
  --primary: #575f68;
  --primary-strong: #414a53;
  --primary-container: #dae2ec;
  --outline: #74777b;
  --outline-soft: #c4c6cb;
  --peach: #f6dcce;
  --peach-strong: #c8664f;
  --sage: #8f9b84;
  --danger-bg: #ffdad6;
  --danger: #93000a;
  --shadow: 0 24px 70px rgba(87, 95, 104, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1220px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Georgia, "Times New Roman", serif;
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--peach-strong);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 249, 248, 0.96);
  border-bottom: 1px solid rgba(196, 198, 203, 0.45);
  box-shadow: 0 18px 42px rgba(87, 95, 104, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 48px, 1440px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.logo-mark {
  display: block;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-name {
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--outline-soft);
  background: var(--surface-card);
  color: var(--ink);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-weight: 700;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--muted-2);
}

.nav-item {
  position: relative;
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.nav-link,
.nav-trigger {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 10px 11px;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link {
  padding: 10px 11px;
}

.nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.nav-item[data-expanded="true"] .nav-trigger::after {
  margin-top: 2px;
  transform: rotate(225deg);
}

.nav-link:hover,
.nav-trigger:hover,
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(246, 220, 206, 0.52);
  color: var(--ink);
}

.nav-link[aria-current="page"],
.nav-trigger[data-active="true"] {
  color: var(--ink);
  font-weight: 700;
}

.nav-link[aria-current="page"]::after,
.nav-trigger[data-active="true"]::before {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 5px;
  height: 2px;
  background: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  min-width: 244px;
  padding: 10px;
  border: 1px solid rgba(196, 198, 203, 0.55);
  border-radius: 12px;
  background: rgba(251, 249, 248, 0.98);
  box-shadow: 0 24px 60px rgba(87, 95, 104, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(196, 198, 203, 0.55);
  border-left: 1px solid rgba(196, 198, 203, 0.55);
  background: rgba(251, 249, 248, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.nav-item[data-expanded="true"] .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  position: relative;
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted-2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a[aria-current="page"] {
  background: var(--surface-container);
  color: var(--ink);
  font-weight: 800;
}

.portal-access {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted-2);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.portal-access:hover,
.portal-access:focus-visible {
  background: rgba(246, 220, 206, 0.52);
  color: var(--ink);
}

.button,
.text-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  max-width: 100%;
}

.site-header .button {
  min-height: 50px;
  padding: 12px 16px;
  font-size: 15px;
  white-space: nowrap;
}

.button.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(87, 95, 104, 0.18);
}

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

.button.secondary {
  background: transparent;
  color: var(--primary-strong);
  border-color: var(--outline);
}

.button.peach {
  background: #ffb19b;
  color: #241714;
}

.button.full {
  width: 100%;
}

.text-button {
  min-height: 44px;
  padding: 8px 0;
  color: var(--primary-strong);
  border-radius: 0;
}

main {
  overflow: hidden;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.band {
  background: var(--surface-low);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 860px);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.measure {
  max-width: 820px;
}

.center-actions {
  justify-content: center;
}

.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--peach);
  color: #4a352e;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.chip.neutral {
  background: var(--surface-high);
  color: var(--muted-2);
}

.chip.blue {
  background: var(--primary-container);
  color: var(--primary-strong);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: break-word;
}

h1 {
  margin-top: 18px;
  font-size: 58px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
  line-height: 1.18;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted-2);
  font-size: 22px;
  line-height: 1.65;
}

.muted {
  color: var(--muted-2);
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  padding: 120px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 80px;
}

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

.hero-copy .lead {
  margin-top: 24px;
  max-width: 740px;
}

.hero h1 {
  font-size: 54px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.hero-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
}

.hero-image {
  border-radius: 38px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.trust-strip {
  background: var(--surface-low);
  border-top: 1px solid rgba(196, 198, 203, 0.35);
  border-bottom: 1px solid rgba(196, 198, 203, 0.35);
  padding: 36px 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: start;
  text-align: center;
}

.trust-item {
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.trust-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--surface-high);
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.split.wide {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
}

.panel {
  background: var(--surface-card);
  border: 1px solid rgba(196, 198, 203, 0.55);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 20px 60px rgba(87, 95, 104, 0.07);
}

.panel.soft {
  background: var(--surface-container);
  border-color: rgba(196, 198, 203, 0.35);
}

.panel.blue {
  background: var(--primary-container);
}

.panel.peach {
  background: var(--peach);
}

.panel.danger {
  background: var(--danger-bg);
  border-color: #ffb4ab;
}

.panel > * + * {
  margin-top: 18px;
}

.panel h2 {
  font-size: 32px;
  line-height: 1.16;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-heading .lead {
  margin-top: 18px;
}

.step-card {
  position: relative;
  min-height: 270px;
  background: var(--surface-container);
  border: 1px solid rgba(196, 198, 203, 0.35);
  border-radius: var(--radius);
  padding: 36px;
  overflow: hidden;
}

.step-number {
  position: absolute;
  right: 28px;
  top: 20px;
  color: rgba(87, 95, 104, 0.12);
  font-family: var(--font-display);
  font-size: 88px;
  line-height: 1;
}

.step-card h3,
.step-card p {
  position: relative;
  z-index: 1;
}

.step-card p {
  margin-top: 16px;
  color: var(--muted-2);
}

.icon-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--primary-container);
  color: var(--primary);
  font-family: var(--font-ui);
  font-weight: 800;
}

.icon-dot.peach {
  background: var(--peach);
  color: #6d4638;
}

.icon-dot.gray {
  background: var(--surface-high);
  color: var(--primary);
}

.list-clean {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
  color: var(--muted-2);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
}

.list-clean.danger li::before {
  background: var(--danger);
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.featured {
  border-color: rgba(200, 102, 79, 0.42);
  box-shadow: 0 24px 70px rgba(200, 102, 79, 0.12);
}

.price-card.featured .chip {
  margin-bottom: 12px;
}

.price {
  margin-top: 28px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.price span {
  color: var(--muted-2);
  font-size: 17px;
  font-weight: 400;
}

.price-card .button {
  margin-top: 28px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(196, 198, 203, 0.65);
  border-radius: var(--radius);
}

.price-table th,
.price-table td {
  padding: 18px;
  border-bottom: 1px solid rgba(196, 198, 203, 0.65);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: var(--surface-container);
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.feature-band {
  border-radius: var(--radius-lg);
  padding: 54px;
  background: var(--surface-container);
}

.feature-band .split {
  align-items: center;
}

.feature-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.provider-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.provider-card img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid #ffffff;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

details {
  background: var(--surface-container);
  border: 1px solid rgba(196, 198, 203, 0.35);
  border-radius: 8px;
}

details + details {
  margin-top: 14px;
}

summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 26px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 500;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--primary);
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 500;
}

details[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--muted-2);
}

.policy-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 116px;
  background: var(--surface-container);
  border-radius: var(--radius);
  padding: 24px;
}

.toc h2 {
  font-family: var(--font-ui);
  font-size: 13px;
  text-transform: uppercase;
}

.toc a {
  display: block;
  margin-top: 14px;
  color: var(--muted-2);
  text-decoration: none;
}

.policy-content section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(196, 198, 203, 0.55);
}

.policy-content section:first-child {
  padding-top: 0;
}

.policy-content h2 {
  font-size: 30px;
}

.policy-content p,
.policy-content ul {
  margin-top: 16px;
}

.policy-content ul {
  color: var(--muted-2);
}

.site-footer {
  background: var(--surface-low);
  padding: 64px 0 34px;
  border-top: 1px solid rgba(196, 198, 203, 0.45);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
}

.footer-rule {
  margin: 18px auto 0;
  max-width: 980px;
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 26px auto 0;
  max-width: 1020px;
  font-family: var(--font-ui);
  font-size: 14px;
}

.footer-links a {
  color: var(--muted-2);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.emergency-banner {
  width: min(100%, 860px);
  margin: 28px auto 0;
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--danger-bg);
  color: var(--danger);
  font-weight: 700;
}

.copyright {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1160px) {
  .header-inner {
    min-height: 74px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px 24px 28px;
    background: var(--surface);
    border-bottom: 1px solid rgba(196, 198, 203, 0.5);
  }

  .site-header[data-open="true"] .nav-wrap {
    display: flex;
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    font-size: 15px;
  }

  .portal-access {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item.has-dropdown::after {
    display: none;
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 10px 12px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 10px;
    padding: 6px 0 6px 16px;
    border: 0;
    border-left: 1px solid rgba(196, 198, 203, 0.65);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item[data-expanded="true"] .dropdown-menu {
    display: grid;
    gap: 4px;
    transform: none;
  }

  .dropdown-menu a {
    padding: 9px 10px;
    background: var(--surface-low);
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 76px 0 70px;
  }

  .hero-grid,
  .split,
  .split.wide,
  .faq-layout,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 680px;
  }

  .trust-list,
  .grid-4,
  .grid-3,
  .grid-2,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 19px;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .container,
  .narrow {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    flex: 1 1 0;
    font-size: clamp(16px, 4.4vw, 19px);
    gap: 9px;
    min-width: 0;
    white-space: normal;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-name {
    max-width: clamp(150px, 50vw, 220px);
  }

  .nav-toggle {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 9px 11px;
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-actions,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-button {
    width: 100%;
    white-space: normal;
  }

  .trust-list,
  .grid-4,
  .grid-3,
  .grid-2,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .step-card,
  .feature-band {
    padding: 26px;
  }

  .provider-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .provider-card img {
    width: 160px;
    height: 160px;
  }

  summary {
    font-size: 20px;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td,
  .price-table th {
    display: block;
  }

  .price-table thead {
    display: none;
  }

  .price-table td {
    border-bottom: 0;
    padding: 10px 18px;
  }

  .price-table tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(196, 198, 203, 0.65);
  }

  .price-table tr:last-child {
    border-bottom: 0;
  }

  .price-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 2px;
    color: var(--muted);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 12px;
  }

  .brand {
    font-size: 17px;
    gap: 10px;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-name {
    max-width: 178px;
  }

  .nav-toggle {
    padding: 9px 11px;
  }
}
