:root {
  --black: #0b0b0d;
  --soft-black: #151518;
  --red: #b11226;
  --red-hover: #8f0e1f;
  --light-grey: #f5f5f5;
  --line: #28282d;
  --mid-grey: #a1a1aa;
  --dark-grey: #444444;
  --white: #ffffff;
  --paper: #f7f7f8;
  --paper-deep: #eeeeef;
  --surface-line: #dedee4;
  --max: 1180px;
  --shadow: 0 10px 14px rgba(0, 0, 0, 0.14);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--soft-black);
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.98) 0, rgba(14, 14, 16, 0.96) 22rem, rgba(244, 244, 245, 0.94) 41rem, rgba(247, 247, 248, 0.95) 100%),
    url("../img/claimgrid-atmosphere-light.webp") center 24rem / min(1600px, 160vw) auto repeat-y,
    var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(177, 18, 38, 0.34);
  outline-offset: 3px;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--red);
  border-radius: 0.5rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(11, 11, 13, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 1.2rem;
  font-weight: 760;
}

.brand-logo {
  flex: 0 0 auto;
  width: 86px;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.desktop-nav,
.nav-actions {
  display: none;
}

.desktop-nav {
  --nav-indicator-left: 0px;
  --nav-indicator-width: 0px;
  --nav-indicator-opacity: 0;
  position: relative;
  align-items: center;
  gap: 0.18rem;
  padding: 0.32rem;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.026);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0.68rem;
  font-size: 0.91rem;
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.5rem;
  border-radius: 0.48rem;
  transition: color 180ms ease, background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
}

.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav::after {
  content: "";
  position: absolute;
  left: var(--nav-indicator-left);
  bottom: 0.24rem;
  width: var(--nav-indicator-width);
  height: 3px;
  background: linear-gradient(90deg, rgba(177, 18, 38, 0.35), var(--red), rgba(255, 255, 255, 0.72));
  border-radius: 999px;
  opacity: var(--nav-indicator-opacity);
  box-shadow: 0 0 0 1px rgba(177, 18, 38, 0.16), 0 7px 12px rgba(177, 18, 38, 0.24);
  transition:
    left 460ms cubic-bezier(0.22, 1, 0.36, 1),
    width 460ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
  pointer-events: none;
}

.nav-actions {
  align-items: center;
  gap: 0.7rem;
}

.nav-actions .button.is-active {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.6rem;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.mobile-nav {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0 0 1rem;
  display: grid;
  gap: 0.7rem;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.78rem 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
}

.mobile-nav a.is-active {
  color: var(--white);
  background: rgba(177, 18, 38, 0.16);
  border-color: rgba(177, 18, 38, 0.38);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 248, 0.92));
}

.hero + .section {
  padding-top: 2.75rem;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-tight + .section {
  padding-top: 1.5rem;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.94), rgba(21, 21, 24, 0.94)),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    #0b0b0d;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(241, 241, 243, 0.96), rgba(247, 247, 248, 0.94)),
    url("../img/claimgrid-atmosphere-light.webp") right -24rem top -12rem / 900px auto no-repeat,
    var(--paper-deep);
}

.section-dark + .section,
.standard-section + .section,
.page-hero + .section,
.page-hero + .visual-band {
  box-shadow: inset 0 28px 34px rgba(11, 11, 13, 0.055);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: 2.15rem;
}

h2 {
  font-size: 1.95rem;
}

h3 {
  font-size: 1.18rem;
}

.lead {
  margin-top: 1rem;
  color: var(--dark-grey);
  font-size: 1.03rem;
}

.section-dark .lead,
.section-dark .muted,
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: #66666f;
}

.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(177, 18, 38, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    var(--black);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 13, 0.9), rgba(11, 11, 13, 0.54) 52%, rgba(11, 11, 13, 0.9));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(88svh - 76px);
  padding: 3.5rem 0 3rem;
  display: grid;
  align-items: center;
  gap: 3rem;
}

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

.hero h1 {
  max-width: 820px;
  font-size: 2.1rem;
}

.hero .lead {
  max-width: 760px;
  margin-top: 1.3rem;
  font-size: 1.04rem;
}

.cta-row {
  margin-top: 1.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.82rem 1.05rem;
  border-radius: 0.55rem;
  border: 1px solid transparent;
  font-weight: 760;
  line-height: 1;
  transition: transform 150ms var(--ease-out), background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

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

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 14px rgba(177, 18, 38, 0.22);
}

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

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: var(--white);
  background: var(--soft-black);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--black);
}

.button-light {
  color: var(--soft-black);
  background: var(--white);
  border-color: #dedee4;
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--mid-grey);
}

.trust-line {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0.85rem -0.85rem -0.85rem 0.85rem;
  background: rgba(177, 18, 38, 0.2);
  border-radius: 1rem;
  opacity: 0.62;
}

.hero-visual img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 14px rgba(0, 0, 0, 0.42);
  filter: saturate(0.82) contrast(0.98);
}

.trust-strip-section {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.98), rgba(17, 17, 20, 0.98)),
    url("../img/claimgrid-atmosphere-dark.webp") center bottom / cover no-repeat,
    var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-section + .section {
  padding-top: 3.5rem;
  background:
    linear-gradient(180deg, rgba(239, 239, 241, 0.98), rgba(249, 249, 250, 0.94) 42%, rgba(255, 255, 255, 0.92)),
    url("../img/claimgrid-atmosphere-light.webp") right -18rem top -6rem / 920px auto no-repeat,
    var(--paper);
}

.trust-strip,
.hero-trust {
  padding: 1rem 0;
  display: grid;
  gap: 0.75rem;
}

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

.hero-trust span {
  position: relative;
  padding: 0.82rem 0.9rem 0.82rem 2.1rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.62rem;
  font-size: 0.92rem;
  font-weight: 720;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.trust-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.7rem;
}

.trust-item span {
  color: var(--white);
  font-weight: 820;
}

.trust-item p {
  margin-top: 0.32rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
}

#professional-process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 248, 0.91)),
    url("../img/claimgrid-atmosphere-light.webp") left -18rem bottom -10rem / 900px auto no-repeat,
    var(--paper);
}

.pathway-strip {
  display: grid;
  gap: 0.75rem;
}

.pathway-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--surface-line);
  border-radius: 0.75rem;
}

.pathway-item > span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-weight: 850;
  line-height: 1;
}

.pathway-item h2 {
  font-size: 1.02rem;
}

.pathway-item p {
  margin-top: 0.35rem;
  color: #5a5a63;
  font-size: 0.94rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.cards-3,
.cards-2,
.cards-4,
.cards-6 {
  grid-template-columns: 1fr;
}

.card {
  height: 100%;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--surface-line);
  border-radius: 0.75rem;
  box-shadow: 0 8px 12px rgba(11, 11, 13, 0.048);
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.card p {
  margin-top: 0.75rem;
  color: #5a5a63;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.76);
}

.claim-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.claim-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(177, 18, 38, 0));
  z-index: 3;
}

.claim-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.visual-card {
  min-height: auto;
  justify-content: flex-start;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 11, 13, 0.1);
  box-shadow: 0 8px 12px rgba(11, 11, 13, 0.07);
  padding: 0;
}

.visual-card::before {
  display: block;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(177, 18, 38, 0));
}

.visual-card h3 {
  color: var(--soft-black);
  max-width: none;
}

.visual-card p {
  max-width: none;
  color: #55555e;
}

.visual-card .button {
  margin-top: 0.35rem;
}

.claim-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--soft-black);
  overflow: hidden;
}

.claim-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
}

.claim-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.02), rgba(11, 11, 13, 0.42)),
    linear-gradient(90deg, rgba(177, 18, 38, 0.14), transparent 54%);
}

.claim-card-body {
  flex: 1;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.emotional-line {
  color: var(--black);
  font-weight: 720;
}

.mission-copy {
  max-width: 900px;
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.standard-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.95), rgba(21, 21, 24, 0.95)),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    #0b0b0d;
}

.standard-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.standard-copy {
  max-width: 650px;
}

.standard-copy p:not(.lead) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.standard-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.9rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 50% 50%;
}

.standard-grid article {
  min-height: 170px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.standard-grid article:last-child {
  border-bottom: 0;
}

.standard-grid span {
  width: fit-content;
  margin-bottom: auto;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 850;
}

.standard-grid h3 {
  color: var(--white);
}

.standard-grid p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.method-note,
.honesty-note {
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.honesty-note {
  color: var(--soft-black);
  border-color: rgba(177, 18, 38, 0.18);
  background:
    linear-gradient(180deg, rgba(177, 18, 38, 0.055), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.method-note span,
.honesty-note span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 850;
}

.method-note p,
.honesty-note p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.45;
}

.honesty-note p {
  color: var(--soft-black);
}

.context-visual,
.support-visual,
.fee-visual {
  overflow: hidden;
  margin: 0;
  display: grid;
  border-radius: 0.85rem;
}

.context-visual,
.fee-visual {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.support-visual {
  margin-bottom: 1rem;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--surface-line);
}

.context-visual img,
.support-visual img,
.fee-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.98);
}

.context-visual figcaption,
.support-visual figcaption,
.fee-visual figcaption {
  padding: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.context-visual figcaption span,
.support-visual figcaption span,
.fee-visual figcaption span {
  color: var(--red);
  font-weight: 850;
}

.context-visual figcaption p,
.fee-visual figcaption p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 720;
}

.support-visual figcaption p {
  color: #55555e;
}

.method-visual {
  overflow: hidden;
  margin: 1.2rem 0 1rem;
  display: grid;
  color: var(--white);
  background: var(--soft-black);
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: 0.85rem;
}

.method-visual-image {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background: var(--soft-black);
}

.method-visual-image img,
.info-panel-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.method-visual-image img {
  filter: saturate(0.82) contrast(1.02);
}

.method-visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.02), rgba(11, 11, 13, 0.32)),
    linear-gradient(90deg, rgba(177, 18, 38, 0.14), transparent 48%);
}

.method-visual figcaption {
  padding: 1.1rem;
  display: grid;
  gap: 0.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
}

.method-visual figcaption span {
  color: var(--red);
  font-weight: 850;
}

.method-visual figcaption p {
  color: rgba(255, 255, 255, 0.78);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
  gap: 0.85rem;
}

.method-step {
  min-height: 220px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--surface-line);
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 249, 0.94)),
    var(--white);
}

.method-index {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 1.4rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--soft-black);
  border: 1px solid rgba(177, 18, 38, 0.28);
  border-radius: 0.7rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: inset 0 -12px 20px rgba(177, 18, 38, 0.2);
}

.method-index b {
  position: relative;
  z-index: 1;
}

.method-index::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 22px;
  height: 22px;
  background: #f7f7f8;
  border: 1px solid rgba(177, 18, 38, 0.32);
  border-radius: 0.45rem;
  box-shadow: 0 4px 8px rgba(11, 11, 13, 0.1);
}

.method-issue::after {
  background:
    linear-gradient(#b11226 0 0) center / 10px 2px no-repeat,
    linear-gradient(#b11226 0 0) center / 2px 10px no-repeat,
    #f7f7f8;
}

.method-timeline::after {
  background:
    linear-gradient(#b11226 0 0) left 5px top 5px / 12px 2px no-repeat,
    linear-gradient(#b11226 0 0) left 5px center / 9px 2px no-repeat,
    linear-gradient(#b11226 0 0) left 5px bottom 5px / 12px 2px no-repeat,
    #f7f7f8;
}

.method-evidence::after {
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 43%, #b11226 44% 56%, transparent 57%) right 4px bottom 3px / 9px 9px no-repeat,
    radial-gradient(circle, transparent 36%, #b11226 38% 58%, transparent 60%),
    #f7f7f8;
}

.method-expectations::after {
  background:
    linear-gradient(#b11226 0 0) left 5px top 6px / 12px 2px no-repeat,
    linear-gradient(#b11226 0 0) left 5px center / 12px 2px no-repeat,
    linear-gradient(#b11226 0 0) left 5px bottom 6px / 8px 2px no-repeat,
    #f7f7f8;
}

.method-next::after {
  background:
    linear-gradient(45deg, transparent 46%, #b11226 47% 57%, transparent 58%) center / 16px 16px no-repeat,
    linear-gradient(#b11226 0 0) left 5px center / 11px 2px no-repeat,
    #f7f7f8;
}

.method-step h3 {
  margin-top: auto;
}

.method-step p {
  margin-top: 0.65rem;
  color: #5a5a63;
  font-size: 0.94rem;
}

.support-columns {
  display: grid;
  gap: 1rem;
}

.support-panel {
  padding: 1.35rem;
  border: 1px solid var(--surface-line);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
}

.support-panel h3 {
  margin-bottom: 1rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #5a5a63;
  display: grid;
  gap: 0.5rem;
}

.plain-list li::marker {
  color: var(--red);
}

.info-panel-layout {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.info-panel-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 210px;
  background: var(--soft-black);
  border-radius: 0.75rem;
}

.info-panel-visual img {
  filter: saturate(0.8) contrast(0.98);
}

.info-panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.01), rgba(11, 11, 13, 0.26)),
    linear-gradient(90deg, rgba(177, 18, 38, 0.12), transparent 58%);
}

.info-panel-copy {
  min-width: 0;
}

.info-card h3 {
  margin-bottom: 1rem;
}

.info-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: #5a5a63;
  list-style: none;
}

.info-card li {
  position: relative;
  min-height: 30px;
  padding-left: 2.35rem;
  display: flex;
  align-items: center;
}

.info-card li::before,
.info-card li::after {
  content: "";
  position: absolute;
  flex: 0 0 auto;
}

.info-card li::before {
  left: 0;
  top: 0.02rem;
  width: 28px;
  height: 28px;
  background: var(--soft-black);
  border: 1px solid rgba(177, 18, 38, 0.24);
  border-radius: 0.5rem;
  box-shadow: inset 0 -9px 14px rgba(177, 18, 38, 0.18);
}

.info-card li::after {
  left: 7px;
  top: 8px;
  width: 14px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 0.18rem;
}

.info-card .icon-photo::after {
  background:
    radial-gradient(circle at 74% 28%, var(--white) 0 1px, transparent 2px),
    linear-gradient(135deg, transparent 46%, var(--white) 47% 55%, transparent 56%);
}

.info-card .icon-date::after {
  height: 13px;
  top: 7px;
  background: linear-gradient(var(--white) 0 2px, transparent 2px);
}

.info-card .icon-detail::after {
  left: 10px;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 0 -3px var(--white);
}

.info-card .icon-evidence::after {
  left: 8px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
  box-shadow: 6px 6px 0 -4px var(--white);
}

.info-card .icon-notes::after {
  left: 8px;
  top: 8px;
  width: 13px;
  height: 12px;
  border: 0;
  border-radius: 0;
  background: repeating-linear-gradient(to bottom, var(--white) 0 2px, transparent 2px 5px);
}

.info-card .icon-document::after {
  height: 14px;
  top: 7px;
  background:
    linear-gradient(135deg, transparent 0 50%, var(--white) 51% 59%, transparent 60%) right top / 7px 7px no-repeat;
}

.tab-system {
  margin-top: 1.2rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 248, 0.94)),
    var(--white);
  border: 1px solid var(--surface-line);
  border-radius: 0.85rem;
}

.tab-list {
  --indicator-left: 0px;
  --indicator-width: 0px;
  position: relative;
  padding: 0.5rem;
  display: flex;
  gap: 0.35rem;
  border-bottom: 1px solid var(--surface-line);
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-trigger {
  position: relative;
  z-index: 1;
  flex: 1 0 max-content;
  min-height: 46px;
  padding: 0.75rem 1rem;
  color: #50505a;
  background: transparent;
  border: 0;
  border-radius: 0.55rem;
  font: inherit;
  font-weight: 780;
  cursor: pointer;
  transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.tab-trigger:hover,
.tab-trigger:focus-visible,
.tab-trigger[aria-selected="true"] {
  color: var(--soft-black);
  background: rgba(11, 11, 13, 0.045);
}

.tab-trigger:hover,
.tab-trigger:focus-visible {
  transform: translateY(-1px);
}

.tab-trigger:focus-visible {
  outline: 3px solid rgba(177, 18, 38, 0.24);
  outline-offset: 2px;
}

.tab-indicator {
  position: absolute;
  left: var(--indicator-left);
  bottom: 0.34rem;
  z-index: 2;
  width: var(--indicator-width);
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(177, 18, 38, 0.54));
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(177, 18, 38, 0.08), 0 8px 12px rgba(177, 18, 38, 0.18);
  transition: left 420ms cubic-bezier(0.22, 1, 0.36, 1), width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tab-panels {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.tab-panel {
  position: absolute;
  inset: 0;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(var(--panel-offset, 32px)) scale(0.992);
  filter: blur(2px);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease,
    visibility 0s linear 520ms;
}

.tab-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  filter: blur(0);
  transition:
    opacity 260ms ease 80ms,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease 70ms,
    visibility 0s;
}

.tab-panel.is-exiting {
  --panel-offset: -34px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 0.75rem;
}

.issue-grid span {
  min-height: 74px;
  padding: 1rem;
  display: flex;
  align-items: center;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--surface-line);
  border-radius: 0.7rem;
  font-weight: 760;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.panel {
  padding: 1.35rem;
  border: 1px solid var(--surface-line);
  border-radius: 0.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 249, 0.94)),
    var(--white);
  box-shadow: 0 10px 14px rgba(11, 11, 13, 0.09);
}

.panel.dark {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--dark-grey);
}

.section-dark .checklist li {
  color: rgba(255, 255, 255, 0.84);
}

.check-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  margin-top: 0.1rem;
  color: var(--white);
  background: var(--red);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.check-icon::before {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.reassurance {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.reassurance span {
  position: relative;
  padding: 0.9rem 1rem;
  padding-left: 2.3rem;
  border: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 0.55rem;
  font-weight: 720;
}

.reassurance span::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.42rem;
  width: 0.46rem;
  height: 0.46rem;
  background: var(--red);
  border-radius: 50%;
}

.prep-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: #5a5a63;
  display: grid;
  gap: 0.42rem;
}

.prep-card li::marker {
  color: var(--red);
}

.process {
  counter-reset: step;
}

.process-card {
  position: relative;
  padding-top: 4.2rem;
}

.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 850;
}

.notice {
  padding: 1.3rem;
  border: 1px solid rgba(177, 18, 38, 0.22);
  border-radius: 0.75rem;
  background:
    linear-gradient(180deg, rgba(177, 18, 38, 0.06), rgba(177, 18, 38, 0)),
    #fbf0f2;
}

.notice p + p {
  margin-top: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--surface-line);
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-item summary {
  min-height: 58px;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft-black);
  font-weight: 820;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  border: 1px solid rgba(177, 18, 38, 0.22);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
  color: #5a5a63;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 11, 13, 0.96), rgba(21, 21, 24, 0.95)),
    linear-gradient(90deg, rgba(177, 18, 38, 0.26), transparent 46%),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    var(--black);
}

.final-cta .lead {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta-shell {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.96), rgba(21, 21, 24, 0.94)),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    #0b0b0d;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/claimgrid-atmosphere-light.webp") right center / min(920px, 78vw) auto no-repeat;
  opacity: 0.055;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 4.8rem 0;
}

.page-hero p {
  max-width: 780px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.visual-band {
  padding: 1.35rem 0 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 21, 0.98), rgba(244, 244, 245, 0.96) 64%),
    var(--paper);
}

.detail-banner {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 18 / 7;
  background: var(--soft-black);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  box-shadow: 0 14px 18px rgba(11, 11, 13, 0.16);
}

.detail-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.74) contrast(0.98);
}

.detail-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.76), rgba(11, 11, 13, 0.2) 54%, rgba(11, 11, 13, 0.28)),
    linear-gradient(0deg, rgba(11, 11, 13, 0.52), transparent 46%);
  pointer-events: none;
}

.detail-banner figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  max-width: min(520px, calc(100% - 2.2rem));
  color: rgba(255, 255, 255, 0.82);
}

.detail-banner figcaption span {
  display: inline-block;
  margin-bottom: 0.38rem;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.detail-banner figcaption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.housing-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.96), rgba(11, 11, 13, 0.74) 48%, rgba(11, 11, 13, 0.92)),
    linear-gradient(180deg, rgba(11, 11, 13, 0.12), rgba(11, 11, 13, 0.64)),
    url("../img/housing-disrepair-hero.webp") center / cover no-repeat,
    var(--black);
  overflow: hidden;
}

.housing-hero-shell {
  min-height: calc(92svh - 76px);
  padding: 4.4rem 0 4rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

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

.housing-hero-copy .lead {
  max-width: 680px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.housing-hero-points {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.housing-hero-points span {
  position: relative;
  padding: 0.68rem 0.85rem 0.68rem 1.8rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.55rem;
  font-weight: 720;
}

.housing-hero-points span::before {
  content: "";
  position: absolute;
  left: 0.82rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--red);
  border-radius: 50%;
  transform: translateY(-50%);
}

.housing-intake-form {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.85rem;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.24);
}

.housing-intake-form .button {
  width: 100%;
}

.form-progress {
  display: none;
  gap: 0.5rem;
  padding: 0.2rem 0 0.15rem;
}

.js .form-progress {
  display: grid;
}

.form-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #3f3f47;
  font-size: 0.9rem;
  font-weight: 780;
}

.form-progress-percent {
  margin-left: auto;
  text-align: right;
}

.form-progress-step {
  margin-right: auto;
}

.form-progress-track {
  overflow: hidden;
  height: 0.48rem;
  background: #e7e7eb;
  border: 1px solid rgba(20, 20, 25, 0.08);
  border-radius: 999px;
}

.form-progress-fill {
  display: block;
  width: var(--step-progress, 0%);
  height: 100%;
  background:
    linear-gradient(90deg, rgba(177, 18, 38, 0.9), rgba(221, 44, 66, 0.95)),
    var(--red);
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(177, 18, 38, 0.1);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step.is-active {
  animation: form-step-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.form-step legend {
  margin-bottom: 0.35rem;
  color: var(--soft-black);
  font-size: 1.04rem;
  font-weight: 820;
}

.form-step-copy {
  color: #55555f;
  font-size: 0.94rem;
}

.form-step-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.js .form-step-actions {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.form-step-actions .button {
  min-height: 48px;
  width: 100%;
}

.housing-intake-form .form-step-actions .button-secondary,
.contact-form .form-step-actions .button-secondary {
  color: var(--soft-black);
  background: #f7f7f8;
  border-color: #d8d8de;
}

.housing-intake-form .form-step-actions .button-secondary:hover,
.housing-intake-form .form-step-actions .button-secondary:focus-visible,
.contact-form .form-step-actions .button-secondary:hover,
.contact-form .form-step-actions .button-secondary:focus-visible {
  background: #eeeeF1;
  border-color: #c7c7cf;
}

.form-step-actions [data-step-back],
.form-step-actions [data-step-next] {
  display: none;
}

.js .form-step-actions [data-step-back],
.js .form-step-actions [data-step-next] {
  display: inline-flex;
}

.form-step-actions .button[hidden] {
  display: none;
}

.form-step-actions .button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.housing-intake-form.is-submitting .form-step-actions .button,
.contact-form.is-submitting .form-step-actions .button {
  pointer-events: none;
}

.housing-intake-form.is-complete .form-intro,
.housing-intake-form.is-complete .form-progress,
.housing-intake-form.is-complete .form-step,
.housing-intake-form.is-complete .form-status,
.housing-intake-form.is-complete .form-step-actions,
.contact-form.is-complete .form-intro,
.contact-form.is-complete .form-progress,
.contact-form.is-complete .form-step,
.contact-form.is-complete .form-status,
.contact-form.is-complete .form-step-actions {
  display: none;
}

.form-success-panel {
  display: grid;
  gap: 0.82rem;
  padding: 0.25rem 0 0;
}

.form-success-panel[hidden] {
  display: none;
}

.form-success-panel h2 {
  max-width: 14ch;
  color: var(--soft-black);
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  line-height: 1;
}

.form-success-panel p {
  color: #55555f;
}

.form-success-mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  background: rgba(177, 18, 38, 0.1);
  border: 1px solid rgba(177, 18, 38, 0.22);
  border-radius: 50%;
}

.form-success-mark::after {
  content: "";
  position: absolute;
  left: 0.94rem;
  top: 0.84rem;
  width: 1.08rem;
  height: 0.62rem;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.form-success-progress {
  color: var(--red);
  font-weight: 820;
}

.form-success-next {
  padding: 0.9rem 1rem;
  background: rgba(247, 247, 248, 0.9);
  border: 1px solid var(--surface-line);
  border-radius: 0.7rem;
}

.form-success-next span {
  color: var(--soft-black);
  font-weight: 820;
}

.form-success-next p {
  margin-top: 0.3rem;
  font-size: 0.94rem;
}

.contact-form .form-success-panel .button {
  width: 100%;
}

@keyframes form-step-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-grid-2 {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.form-grid-reporting .field {
  align-content: start;
}

.housing-guides {
  background:
    linear-gradient(180deg, rgba(239, 239, 241, 0.98), rgba(255, 255, 255, 0.94)),
    var(--paper);
}

.guide-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.guide-card {
  overflow: hidden;
  display: grid;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--surface-line);
  border-radius: 0.8rem;
}

.guide-card img,
.issue-card-large img,
.housing-feature-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.98);
}

.guide-card img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.guide-card div {
  padding: 1rem;
}

.guide-card h3 {
  font-size: 1.12rem;
}

.guide-card p {
  margin-top: 0.55rem;
  color: #55555e;
  font-size: 0.95rem;
}

.guide-card a {
  display: inline-flex;
  margin-top: 0.85rem;
  color: var(--red);
  font-weight: 780;
}

.housing-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.housing-feature-image {
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--soft-black);
  border: 1px solid rgba(11, 11, 13, 0.12);
  border-radius: 0.85rem;
}

.housing-feature-image img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.housing-feature-image figcaption {
  padding: 0.8rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
}

.claim-ready-grid .prep-card {
  min-height: 210px;
}

.image-led-section {
  padding-bottom: 3rem;
}

.issue-gallery-section {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.98) 0, rgba(11, 11, 13, 0.98) 6rem, rgba(244, 244, 245, 0.96) 6rem),
    var(--paper);
}

.issue-gallery {
  display: grid;
  gap: 1rem;
}

.issue-card-large {
  overflow: hidden;
  display: grid;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--surface-line);
  border-radius: 0.85rem;
}

.issue-card-large img {
  aspect-ratio: 4 / 3;
  height: auto;
}

.issue-card-large div {
  padding: 1rem;
}

.issue-card-large h3 {
  font-size: 1.13rem;
}

.issue-card-large p {
  margin-top: 0.55rem;
  color: #55555e;
  font-size: 0.95rem;
}

.process-visual .process-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 248, 0.94)),
    var(--white);
}

.evidence-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 239, 241, 0.94)),
    var(--paper);
}

.evidence-mini-grid {
  margin-top: 1.15rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
}

.evidence-mini-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--surface-line);
  border-radius: 0.7rem;
}

.evidence-mini-card h3 {
  font-size: 1rem;
}

.evidence-mini-card p {
  margin-top: 0.45rem;
  color: #5a5a63;
  font-size: 0.94rem;
}

.success-screen {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(11, 11, 13, 0.96), rgba(18, 18, 21, 0.93)),
    url("../img/claimgrid-atmosphere-dark.webp") center / cover no-repeat,
    var(--black);
}

.success-shell {
  min-height: calc(88svh - 76px);
  padding: 4.2rem 0;
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.success-panel {
  max-width: 780px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.85rem;
}

.success-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 8px 12px rgba(177, 18, 38, 0.22);
}

.success-mark::before {
  content: "";
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg) translate(1px, -1px);
}

.success-panel .lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.success-panel p:not(.lead) {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.success-steps {
  display: grid;
  gap: 0.85rem;
}

.success-steps article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
}

.success-steps span {
  width: 32px;
  height: 32px;
  margin-bottom: 0.85rem;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: rgba(177, 18, 38, 0.88);
  border-radius: 50%;
  font-weight: 850;
}

.success-steps h2 {
  font-size: 1.05rem;
}

.success-steps p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.content {
  max-width: 900px;
}

.content h2 {
  margin-top: 2.2rem;
  font-size: 1.55rem;
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--dark-grey);
}

.content p {
  margin-top: 0.95rem;
}

.content ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.content li + li {
  margin-top: 0.45rem;
}

.legal-updated {
  width: fit-content;
  margin: 0 0 1.4rem;
  padding: 0.45rem 0.65rem;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--surface-line);
  border-radius: 0.5rem;
  font-weight: 760;
}

.detail-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.detail-list div {
  padding: 1rem;
  border: 1px solid var(--surface-line);
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.9);
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-intro {
  padding: 0.9rem 1rem;
  color: #4f4f58;
  background: rgba(247, 247, 248, 0.88);
  border: 1px solid var(--surface-line);
  border-radius: 0.65rem;
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field-hint {
  color: #676770;
  font-size: 0.9rem;
}

.contact-assurance {
  margin-top: 2rem;
}

.mini-steps {
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.mini-steps li {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--surface-line);
  border-radius: 0.7rem;
}

.mini-steps span {
  color: var(--soft-black);
  font-weight: 780;
}

.mini-steps p {
  margin-top: 0.3rem;
  color: #5a5a63;
  font-size: 0.94rem;
}

label {
  color: var(--soft-black);
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8d8de;
  border-radius: 0.55rem;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(177, 18, 38, 0.24);
  outline-offset: 2px;
  border-color: var(--red);
}

.checkbox-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.checkbox-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.2rem;
  accent-color: var(--red);
}

.form-status {
  color: var(--red);
  font-weight: 720;
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.98), rgba(6, 6, 7, 0.99)),
    url("../img/claimgrid-atmosphere-dark.webp") center top / cover no-repeat,
    var(--black);
}

.footer-grid {
  padding: 3.8rem 0 2.4rem;
  display: grid;
  gap: 2rem;
}

.footer-brand p,
.footer-company,
.footer-col a,
.footer-col p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-company {
  max-width: 31rem;
  font-size: 0.92rem;
}

.footer-brand p a {
  color: inherit;
}

.footer-brand p a:hover,
.footer-brand p a:focus-visible {
  color: var(--white);
}

.footer-col h2,
.footer-col h3 {
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.animate-in {
  opacity: 1;
  transform: none;
}

.js .animate-in {
  opacity: 1;
  transform: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.js .animate-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .tab-panel {
    filter: none;
    transform: none;
  }
}

@media (min-width: 700px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

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

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

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

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

  .standard-grid article:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .standard-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .method-visual {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    align-items: stretch;
  }

  .support-visual {
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .support-visual img {
    height: 100%;
  }

  .method-visual-image {
    min-height: 300px;
  }

  .method-visual figcaption {
    align-content: end;
    padding: 1.35rem;
  }

  .info-panel-layout {
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 1fr);
    gap: 1.2rem;
  }

  .info-panel-visual {
    min-height: 270px;
  }

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

  .form-grid-reporting label {
    min-height: 2.65rem;
  }

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

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

@media (min-width: 980px) {
  .desktop-nav,
  .nav-actions {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-shell {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .housing-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  }

  .housing-split {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

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

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

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

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

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

  .split {
    grid-template-columns: 1fr 0.95fr;
  }

  .standard-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .contact-layout {
    grid-template-columns: 0.82fr 1.18fr;
  }

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

  .final-cta-shell .cta-row {
    justify-content: flex-end;
  }
}

@media (min-width: 1180px) {
  .hero h1 {
    font-size: 3.05rem;
  }

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

@media (max-width: 699px) {
  .button {
    width: 100%;
  }

  .cta-row {
    width: 100%;
  }

  .hero {
    position: relative;
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1.15rem;
    height: 128px;
    background: linear-gradient(rgba(11, 11, 13, 0.2), rgba(11, 11, 13, 0.28)), url("../img/claimgrid-hero-review.webp") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    opacity: 0.6;
  }

  .hero-shell {
    position: relative;
    z-index: 1;
    min-height: auto;
    padding: 2.8rem 0 10rem;
    gap: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 1.72rem;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-visual {
    display: none;
  }

  .page-hero .container {
    padding: 3.4rem 0;
  }

  .page-hero::after {
    opacity: 0.035;
    background-position: right top;
  }

  .page-hero h1,
  .section-header h2,
  .housing-hero h1 {
    font-size: 1.76rem;
  }

  .housing-hero-shell {
    min-height: auto;
    padding: 3rem 0;
  }

  .housing-hero-points {
    display: grid;
  }

  .housing-intake-form {
    padding: 1rem;
  }

  .issue-gallery-section {
    background:
      linear-gradient(180deg, rgba(11, 11, 13, 0.98) 0, rgba(11, 11, 13, 0.98) 3rem, rgba(244, 244, 245, 0.96) 3rem),
      var(--paper);
  }

  .tab-list {
    padding: 0.45rem;
  }

  .tab-trigger {
    flex-basis: auto;
    min-height: 42px;
    padding: 0.68rem 0.8rem;
    font-size: 0.92rem;
  }

  .tab-panels {
    min-height: 365px;
  }

  .tab-panel {
    padding: 1rem;
  }

  .detail-banner {
    aspect-ratio: 4 / 3;
  }

  .detail-banner::after {
    background:
      linear-gradient(0deg, rgba(11, 11, 13, 0.82), rgba(11, 11, 13, 0.1) 70%),
      linear-gradient(90deg, rgba(11, 11, 13, 0.34), rgba(11, 11, 13, 0.12));
  }

  .detail-banner figcaption {
    left: 0.9rem;
    bottom: 0.85rem;
    max-width: calc(100% - 1.8rem);
  }

  .detail-banner figcaption p {
    font-size: 0.9rem;
  }
}

@media (max-width: 520px) {
  .container,
  .nav-shell,
  .mobile-nav {
    width: min(100% - 2rem, 358px);
    margin-left: 1rem;
    margin-right: auto;
  }
}
