:root {
  color-scheme: dark;
  --ink: #f5f2e9;
  --ink-soft: #b4bab5;
  --dark: #0b0e0d;
  --dark-soft: #121614;
  --dark-raised: #181d1a;
  --paper: #f2efe6;
  --paper-bright: #faf8f2;
  --paper-ink: #151816;
  --paper-muted: #626863;
  --accent: #d4ff52;
  --accent-deep: #66830f;
  --accent-ink: #10140c;
  --gold: #c9aa63;
  --line: rgba(245, 242, 233, 0.13);
  --paper-line: rgba(21, 24, 22, 0.13);
  --danger: #9f2d20;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--dark);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--dark);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 83% -4%, rgba(212, 255, 82, 0.09), transparent 27rem),
    radial-gradient(circle at 5% 24%, rgba(201, 170, 99, 0.07), transparent 22rem),
    linear-gradient(145deg, #101411 0%, var(--dark) 60%, #070908 100%);
  content: "";
  pointer-events: none;
}

a,
button,
input {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(212, 255, 82, 0.48);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.shell {
  position: relative;
  isolation: isolate;
}

.shell::before {
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 900px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(to bottom, #000 0%, transparent 92%);
  pointer-events: none;
}

.topbar {
  display: flex;
  width: min(calc(100% - 44px), 1240px);
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.topnav a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.topnav a:hover {
  color: var(--ink);
}

.topbar__action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 3px 16px 3px 3px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 760;
  text-decoration: none;
}

.topbar__action i,
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42db79;
  box-shadow: 0 0 0 5px rgba(66, 219, 121, 0.1);
}

.hero {
  width: min(calc(100% - 44px), 1240px);
  margin: 0 auto;
  padding: clamp(42px, 6.3vw, 86px) 0 clamp(60px, 7vw, 98px);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.72fr);
  gap: clamp(42px, 7vw, 102px);
  align-items: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
  color: #7f8781;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumbs i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 5.6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--accent);
  font-weight: 400;
}

.hero__lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.65;
  text-wrap: pretty;
}

.inss-context {
  display: inline-flex;
  align-items: center;
  margin-top: 21px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px 16px 3px 3px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.inss-context img {
  width: 110px;
  height: auto;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.hero__signals span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d2d6d2;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.hero__lawyer {
  display: flex;
  max-width: 650px;
  align-items: center;
  gap: 17px;
  margin-top: 31px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero__lawyer-photo {
  position: relative;
  flex: 0 0 76px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(212, 255, 82, 0.25);
  border-radius: 2px 24px 2px 2px;
  background: var(--dark-raised);
}

.hero__lawyer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.hero__lawyer-copy > span {
  display: block;
  margin-bottom: 5px;
  color: #8f9791;
  font-size: 10px;
}

.hero__lawyer-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
}

.hero__lawyer-copy p {
  margin: 5px 0 0;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__mobile-cta {
  display: none;
}

.capture-modal {
  display: contents;
}

.capture-modal__backdrop,
.capture-modal__close {
  display: none;
}

.capture-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  border-radius: 4px 46px 4px 4px;
  color: var(--paper-ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), transparent 38%),
    var(--paper);
  box-shadow: var(--shadow);
}

.capture-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--accent);
  content: "";
}

.capture-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.capture-card__top > span {
  flex: 0 0 auto;
  padding: 7px 9px;
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  color: var(--paper-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.capture-kicker {
  margin: 0 0 8px;
  color: #57671f;
  font-size: 9px;
  font-weight: 830;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.capture-card h2 {
  max-width: 330px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 41px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.progress {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 25px 0 24px;
}

.progress > span {
  flex: 0 0 auto;
  color: var(--paper-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress__track {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 24, 22, 0.09);
}

.progress__track i {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-deep);
  transition: width 220ms ease;
}

.form-step {
  display: none;
  animation: rise 230ms ease-out both;
}

.form-step.is-active {
  display: block;
}

.form-step label {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
}

.form-step > p:not(.field-error) {
  margin: 7px 0 15px;
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.45;
}

.field {
  display: flex;
  min-height: 61px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 22, 0.17);
  border-radius: 4px 18px 4px 4px;
  background: rgba(255, 255, 255, 0.68);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field:focus-within {
  border-color: var(--accent-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 131, 15, 0.1);
}

.field input {
  width: 100%;
  min-width: 0;
  min-height: 59px;
  padding: 0 17px;
  border: 0;
  outline: 0;
  color: var(--paper-ink);
  background: transparent;
  font-size: 16px;
}

.field input::placeholder {
  color: #9ca19d;
}

.field > span:not(.country-code) {
  padding-right: 17px;
  color: #8d938e;
  font-family: var(--serif);
}

.country-code {
  padding-left: 17px;
  color: #57671f;
  font-size: 14px;
  font-weight: 820;
}

.field--phone input {
  padding-left: 9px;
}

.field-error {
  min-height: 19px;
  margin: 7px 2px 4px;
  color: var(--danger);
  font-size: 10px;
}

.primary-action,
.back-action,
.fallback-link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.primary-action {
  min-height: 56px;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid #111512;
  border-radius: 4px 18px 4px 4px;
  color: #f7f8f0;
  background: #141815;
  box-shadow: 0 13px 25px rgba(15, 18, 16, 0.15);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.primary-action:hover {
  background: #20261f;
  box-shadow: 0 16px 30px rgba(15, 18, 16, 0.21);
  transform: translateY(-1px);
}

.primary-action:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.primary-action span {
  color: var(--accent);
  font-size: 18px;
}

.back-action {
  min-height: 39px;
  justify-content: center;
  margin-top: 4px;
  padding: 0 12px;
  color: var(--paper-muted);
  background: transparent;
  font-size: 10px;
  font-weight: 720;
}

.capture-privacy {
  position: absolute;
  right: clamp(28px, 3.2vw, 42px);
  bottom: 23px;
  left: clamp(28px, 3.2vw, 42px);
  margin: 0;
  color: #7b817c;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.honeypot {
  position: fixed !important;
  top: -1000px !important;
  left: -1000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.loading-state {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.loading-state strong,
.loading-state p {
  display: block;
  margin: 0;
}

.loading-state strong {
  font-size: 14px;
}

.loading-state p {
  margin-top: 4px;
  color: var(--paper-muted);
  font-size: 10px;
}

.spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(21, 24, 22, 0.15);
  border-top-color: var(--accent-deep);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.result-state {
  padding-top: 8px;
  text-align: center;
}

.result-state__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0 auto 13px;
  border-radius: 50%;
  color: #8a3000;
  background: #ffe2cd;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
}

.result-state h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.result-state p {
  margin: 9px auto 17px;
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.5;
}

.result-state .primary-action {
  justify-content: center;
}

.fallback-link {
  min-height: 41px;
  justify-content: center;
  gap: 7px;
  margin-top: 3px;
  color: #4f5650;
  font-size: 10px;
  font-weight: 760;
}

.is-hidden {
  display: none !important;
}

.hero__foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(42px, 6vw, 74px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__foot div {
  min-width: 0;
  padding: 18px 20px 19px 0;
}

.hero__foot div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero__foot span {
  color: var(--accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero__foot p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

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

.paper {
  color: var(--paper-ink);
  background: var(--paper);
}

.section {
  width: min(calc(100% - 44px), 1180px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 66px);
}

.section-heading .eyebrow {
  color: var(--accent-deep);
}

.section-heading h2,
.content-panel h2,
.author-copy h2,
.faq-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.7;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.topic-card {
  min-height: 250px;
  padding: clamp(25px, 3vw, 36px);
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.15);
  transition: background 180ms ease, transform 180ms ease;
}

.topic-card:hover {
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.topic-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper-line);
  border-radius: 50%;
  color: var(--accent-deep);
  font-size: 9px;
  font-weight: 830;
}

.topic-card h3 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 400;
  line-height: 1.05;
}

.topic-card p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.65;
}

.dark-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #101411;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(212, 255, 82, 0.09), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  content: "";
  pointer-events: none;
}

.content-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(44px, 9vw, 132px);
  align-items: start;
}

.content-panel {
  position: sticky;
  top: 30px;
}

.content-panel .eyebrow {
  color: var(--accent);
}

.content-panel h2 {
  color: var(--ink);
}

.content-panel > p {
  max-width: 480px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.checklist {
  border-top: 1px solid var(--line);
}

.checklist article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.checklist article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-ink);
  background: var(--accent);
  font-size: 11px;
  font-weight: 850;
}

.checklist h3 {
  margin: 1px 0 7px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.process {
  color: var(--paper-ink);
  background: var(--paper-bright);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
}

.process-card {
  min-height: 290px;
  padding: clamp(28px, 4vw, 45px);
  background: var(--paper-bright);
}

.process-card > span {
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 840;
  letter-spacing: 0.12em;
}

.process-card i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 28px 0;
  background: var(--paper-line);
}

.process-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.process-card p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.65;
}

.author {
  color: var(--ink);
  background: #0e1210;
}

.author-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 112px);
  align-items: center;
}

.author-photo {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 3px 58px 3px 3px;
  background: var(--dark-raised);
}

.author-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 6, 5, 0.52), transparent 53%);
  content: "";
  pointer-events: none;
}

.author-photo img {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center 14%;
}

.author-photo span {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 20px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
}

.author-copy .eyebrow {
  color: var(--accent);
}

.author-copy h2 {
  color: var(--ink);
}

.author-copy h2 em {
  display: block;
  color: var(--accent);
  font-weight: 400;
}

.author-registration {
  margin: 20px 0 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author-bio {
  max-width: 620px;
  margin: 27px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.78;
}

.author-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 620px;
  margin-top: 31px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.author-facts div {
  padding: 18px 18px 18px 0;
}

.author-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.author-facts span {
  display: block;
  color: #8d958f;
  font-size: 9px;
  text-transform: uppercase;
}

.author-facts strong {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
}

.faq {
  color: var(--paper-ink);
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1fr);
  gap: clamp(40px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 30px;
  align-self: start;
}

.faq-heading .eyebrow {
  color: var(--accent-deep);
}

.faq-heading p {
  margin: 20px 0 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--paper-line);
}

.faq-list details {
  border-bottom: 1px solid var(--paper-line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 15px;
  align-items: center;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span {
  color: var(--accent-deep);
  font-size: 9px;
  font-weight: 830;
}

.faq-list summary strong {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.25;
}

.faq-list summary i {
  font-style: normal;
  font-size: 20px;
  text-align: center;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 700px;
  margin: -3px 38px 23px 51px;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(212, 255, 82, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.final-cta::before {
  top: -230px;
  left: calc(50% - 370px);
  width: 740px;
  height: 740px;
}

.final-cta::after {
  top: -145px;
  left: calc(50% - 285px);
  width: 570px;
  height: 570px;
}

.final-cta .section {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(43px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.final-cta h2 em {
  display: block;
  color: var(--accent);
  font-weight: 400;
}

.final-cta p {
  max-width: 630px;
  margin: 23px auto 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
  padding: 0 21px;
  border-radius: 3px 20px 3px 3px;
  color: var(--accent-ink);
  background: var(--accent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 840;
}

.site-footer {
  width: min(calc(100% - 44px), 1240px);
  margin: 0 auto;
  padding: 28px 0 max(28px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 0.9fr) repeat(2, minmax(160px, 0.35fr));
  gap: 45px;
  padding-bottom: 31px;
}

.footer-brand img {
  width: 145px;
  height: auto;
}

.footer-brand p {
  max-width: 390px;
  margin: 14px 0 0;
  color: #858d87;
  font-size: 11px;
  line-height: 1.6;
}

.footer-column span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 8px;
  font-weight: 830;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 7px 0 0;
  color: #a5aca7;
  font-size: 10px;
  line-height: 1.5;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #707871;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-action {
  position: fixed;
  z-index: 60;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  display: none;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px 19px 4px 4px;
  color: var(--accent-ink);
  background: var(--accent);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transform: translateY(calc(100% + 30px));
  transition: transform 220ms ease;
}

.mobile-action.is-visible {
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: #7f1d1d;
  font: 13px/1.5 var(--sans);
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .topnav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(46px, 6.7vw, 64px);
  }

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

  .section-heading,
  .content-split,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .content-panel,
  .faq-heading {
    position: static;
  }

  .author-grid {
    gap: 45px;
  }
}

@media (max-width: 760px) {
  body.capture-modal-open {
    overflow: hidden;
  }

  .topbar {
    width: min(calc(100% - 30px), 1240px);
    min-height: 65px;
  }

  .brand img {
    width: 118px;
  }

  .topbar__action {
    min-height: 35px;
    padding: 0 11px;
    font-size: 9px;
  }

  .hero {
    width: min(calc(100% - 30px), 1240px);
    padding: 22px 0 46px;
  }

  .hero__grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
  }

  .breadcrumbs {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .eyebrow::before {
    width: 24px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(38px, 11.5vw, 51px);
    line-height: 0.95;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.55;
  }

  .inss-context {
    margin-top: 15px;
    padding: 6px 8px;
  }

  .inss-context img {
    width: 98px;
  }

  .hero__signals {
    display: none;
  }

  .hero__lawyer {
    display: flex;
    gap: 13px;
    margin-top: 19px;
    padding-top: 16px;
  }

  .hero__lawyer-photo {
    flex-basis: 62px;
    height: 68px;
    border-radius: 2px 20px 2px 2px;
  }

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

  .hero__lawyer-copy > span {
    margin-bottom: 3px;
    font-size: 8px;
    line-height: 1.35;
  }

  .hero__lawyer-copy strong {
    overflow: hidden;
    font-size: 20px;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero__lawyer-copy p {
    margin-top: 4px;
    font-size: 7px;
    line-height: 1.45;
  }

  .hero__mobile-cta {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 0 19px;
    border: 1px solid var(--accent);
    border-radius: 3px 20px 3px 3px;
    color: var(--accent-ink);
    background: var(--accent);
    box-shadow: 0 17px 42px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    font-size: 13px;
    font-weight: 840;
  }

  .hero__mobile-cta span {
    font-size: 20px;
  }

  .capture-modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: max(10px, env(safe-area-inset-top)) 8px 0;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 190ms ease, visibility 190ms ease;
  }

  .capture-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .capture-modal__backdrop {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(3, 5, 4, 0.78);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }

  .capture-card {
    width: min(100%, 520px);
    max-height: calc(100svh - max(18px, env(safe-area-inset-top)));
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 27px 21px calc(23px + env(safe-area-inset-bottom));
    border-radius: 4px 34px 0 0;
    transform: translateY(28px);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-overflow-scrolling: touch;
  }

  .capture-modal.is-open .capture-card {
    transform: translateY(0);
  }

  .capture-modal__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(21, 24, 22, 0.12);
    border-radius: 50%;
    color: var(--paper-ink);
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
  }

  .capture-card h2 {
    max-width: calc(100% - 48px);
    font-size: 28px;
  }

  .capture-card__top > span {
    display: none;
  }

  .progress {
    margin: 17px 0 16px;
  }

  .form-step label {
    font-size: 14px;
  }

  .field {
    min-height: 54px;
  }

  .field input {
    min-height: 52px;
    font-size: 16px;
  }

  .primary-action {
    min-height: 52px;
  }

  .capture-privacy {
    position: static;
    margin-top: 17px;
    font-size: 8px;
  }

  .hero__foot {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero__foot div,
  .hero__foot div + div {
    padding: 13px 0;
    border-left: 0;
  }

  .hero__foot div + div {
    border-top: 1px solid var(--line);
  }

  .section {
    width: min(calc(100% - 30px), 1180px);
    padding: 67px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .content-panel h2,
  .author-copy h2,
  .faq-heading h2 {
    font-size: 39px;
  }

  .section-heading > p,
  .author-bio {
    font-size: 13px;
  }

  .topic-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 0;
    padding: 25px;
  }

  .topic-card h3 {
    margin-top: 23px;
  }

  .content-split {
    gap: 30px;
  }

  .checklist article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
  }

  .process-card {
    min-height: 0;
    padding: 30px 25px;
  }

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

  .author-photo {
    min-height: 410px;
    border-radius: 3px 38px 3px 3px;
  }

  .author-photo img {
    min-height: 410px;
  }

  .author-facts {
    grid-template-columns: 1fr;
  }

  .author-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-list summary {
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    gap: 11px;
  }

  .faq-list details p {
    margin-left: 39px;
  }

  .final-cta h2 {
    font-size: 46px;
  }

  .site-footer {
    width: min(calc(100% - 30px), 1240px);
    padding-bottom: calc(91px + env(safe-area-inset-bottom));
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-action {
    display: flex;
  }
}

@media (max-width: 390px) {
  .topbar__action {
    padding: 0 9px;
  }

  .topbar__action i {
    display: none;
  }

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

  .hero__lawyer-copy > span {
    display: none;
  }

  .hero__lawyer-copy strong {
    font-size: 18px;
  }
}

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

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