:root {
  --bg: #0a111b;
  --bg-soft: #101a27;
  --surface: #121f2f;
  --surface-alt: #172538;
  --ink: #101318;
  --text: #f4efe7;
  --text-dark: #11151b;
  --muted: #94a0af;
  --muted-dark: #546173;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(14, 20, 29, 0.12);
  --accent: #f25f2a;
  --accent-strong: #ff6f3d;
  --accent-soft: rgba(242, 95, 42, 0.12);
  --paper: #f8f5ef;
  --paper-strong: #efe7da;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(5, 12, 20, 0.28);
  --shadow-soft: 0 14px 40px rgba(12, 18, 28, 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --max: 1380px;
  --font-display: "Iowan Old Style", "Book Antiqua", Palatino, "Palatino Linotype", serif;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.76) 0%, rgba(8, 12, 18, 0.58) 30%, rgba(12, 17, 24, 0.46) 62%, rgba(12, 17, 24, 0.64) 100%),
    url("background.png") center center / cover no-repeat;
  opacity: 0.44;
  transform: scale(1.03);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(5, 9, 15, 0.05) 0%, rgba(5, 9, 15, 0.14) 100%);
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(242, 95, 42, 0.4);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

main {
  overflow: clip;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

.section {
  position: relative;
  padding: 5rem 0;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(242, 95, 42, 0.2), transparent 28%),
    linear-gradient(180deg, #0b1320 0%, #111d2d 100%);
  color: var(--text);
}

.section--ink {
  background: linear-gradient(180deg, #0f1927 0%, #162335 100%);
  color: var(--text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.section-heading {
  max-width: 50rem;
}

.section-heading h2,
.section-heading h1,
.page-hero__content h1,
.hero__copy h1,
.article-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-heading h2,
.section-heading h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.section-heading p,
.page-hero__content p,
.hero__copy p,
.article-hero__summary,
.lede {
  margin: 1.2rem 0 0;
  max-width: 48rem;
  font-size: 1.08rem;
  color: inherit;
  opacity: 0.86;
}

.actions,
.hero__actions,
.cta-band__actions,
.header-cta,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: var(--white);
  box-shadow: 0 16px 44px rgba(242, 95, 42, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 58px rgba(242, 95, 42, 0.34);
}

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

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

.button--ghost {
  border-color: var(--line-dark);
  color: var(--ink);
  background: rgba(17, 21, 27, 0.02);
}

.section--dark .button--ghost,
.section--ink .button--ghost,
.page-hero .button--ghost,
.article-hero .button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button--inline {
  padding-inline: 0;
  min-height: auto;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  background: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  background: rgba(7, 12, 20, 0.82);
  color: var(--text);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header[data-theme="light"] {
  background: rgba(248, 245, 239, 0.9);
  color: var(--text-dark);
  border-bottom-color: var(--line-dark);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.5rem;
  transition: min-height 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 12, 20, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(6, 10, 17, 0.22);
}

.site-header.is-scrolled .site-header__bar {
  min-height: 4.8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.brand__text {
  display: grid;
  gap: 0.05rem;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand__subline {
  color: inherit;
  opacity: 0.7;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  opacity: 1;
  color: var(--accent);
}

.header-cta {
  display: none;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header[data-theme="light"] .menu-button {
  border-color: var(--line-dark);
}

.mobile-panel {
  display: none;
  padding: 0 0 1rem;
}

.mobile-panel.is-open {
  display: grid;
  gap: 1rem;
}

.mobile-panel nav {
  display: grid;
  gap: 0.9rem;
}

.mobile-panel a {
  font-weight: 600;
}

.mobile-panel__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  position: relative;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(5, 10, 17, 0.96) 0%, rgba(12, 20, 31, 0.82) 56%, rgba(11, 17, 28, 0.95) 100%),
    linear-gradient(120deg, #08111b 0%, #102034 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 30%, rgba(242, 95, 42, 0.22), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 15%, black 48%, transparent 100%);
  opacity: 0.4;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  pointer-events: none;
  height: 12rem;
  background:
    linear-gradient(180deg, transparent 0%, rgba(9, 15, 25, 0.9) 100%),
    radial-gradient(circle at 30% 100%, rgba(242, 95, 42, 0.18), transparent 30%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  min-height: clamp(38rem, calc(84svh - 5.5rem), 50rem);
  padding: 3.25rem 0 3.4rem;
}

.hero__copy {
  max-width: 50rem;
  align-self: end;
}

.hero__kicker,
.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__kicker::before,
.page-hero__kicker::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: var(--accent);
}

.hero__copy h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.9rem);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.hero__trust li {
  position: relative;
  padding-left: 1rem;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero__aside {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.hero-panel,
.surface-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.55rem;
}

.hero-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(242, 95, 42, 0.12);
  color: #ffc5b1;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel__value {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.94;
}

.hero-panel__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.authority-bar {
  background: #0d1624;
  color: var(--text);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

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

.authority-item {
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.authority-item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent);
}

.split-layout,
.process-grid,
.page-grid,
.results-grid,
.contact-grid,
.intro-grid {
  display: grid;
  gap: 2rem;
}

.problem-list,
.bullet-list,
.mini-list,
.article-list,
.link-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.problem-list li,
.bullet-list li,
.mini-list li,
.link-list li {
  position: relative;
  padding-left: 1.15rem;
}

.problem-list li::before,
.bullet-list li::before,
.mini-list li::before,
.link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.mini-list--compact {
  gap: 0.7rem;
  margin-top: 1rem;
}

.mini-list--compact li {
  padding-left: 1rem;
}

.metric-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.metric {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-dark);
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
}

.attorney-profile {
  position: relative;
}

.attorney-profile + .attorney-profile {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.attorney-profile .intro-grid {
  align-items: start;
}

.attorney-profile__name {
  margin: 0.45rem 0 0;
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 8.25rem);
  line-height: 0.78;
  letter-spacing: -0.055em;
}

.attorney-profile__role {
  margin: 0.95rem 0 0;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.attorney-profile__main {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.attorney-profile__main:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.attorney-profile__main h2 {
  margin: 0.45rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.85rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.attorney-profile__main p {
  max-width: 68rem;
}

.practice-grid,
.industry-grid,
.insight-grid,
.why-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.practice-card,
.industry-card,
.insight-card,
.why-card,
.result-card,
.article-summary,
.contact-card,
.bio-card {
  position: relative;
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.section--dark .practice-card,
.section--dark .industry-card,
.section--dark .insight-card,
.section--dark .why-card,
.section--dark .result-card,
.section--dark .bio-card,
.section--ink .practice-card,
.section--ink .industry-card,
.section--ink .insight-card,
.section--ink .why-card,
.section--ink .result-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.practice-card:hover,
.industry-card:hover,
.insight-card:hover,
.why-card:hover,
.result-card:hover,
.contact-card:hover,
.bio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 95, 42, 0.36);
  box-shadow: 0 20px 58px rgba(15, 21, 31, 0.12);
}

.practice-card__index,
.process-step__index {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.practice-card h3,
.industry-card h3,
.insight-card h3,
.why-card h3,
.result-card h3,
.process-step h3,
.bio-card h3,
.article-summary h2,
.article-content h2,
.article-content h3,
.contact-card h3 {
  margin: 0.7rem 0 0.6rem;
  font-family: var(--font-display);
  line-height: 1.02;
}

.practice-card p,
.industry-card p,
.insight-card p,
.why-card p,
.result-card p,
.process-step p,
.contact-card p {
  margin: 0;
  color: inherit;
  opacity: 0.84;
}

.practice-card__link,
.insight-card__link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--accent);
  font-weight: 700;
}

.industry-card__meta,
.result-card__meta,
.bio-card__meta {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-grid {
  margin-top: 2rem;
  counter-reset: step;
}

.process-step {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step:first-child {
  border-top: 0;
}

.testimonial {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 0.95rem;
}

.results-grid {
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section--dark .faq-item,
.section--ink .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
}

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

.faq-item__content {
  padding: 0 1.3rem 1.3rem;
  color: inherit;
  opacity: 0.84;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(242, 95, 42, 0.18), transparent 24%),
    linear-gradient(135deg, #101826 0%, #0a111b 100%);
  color: var(--text);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 98%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(90deg, transparent 98%, rgba(255, 255, 255, 0.06) 100%);
  background-size: 100% 86px, 86px 100%;
  opacity: 0.22;
}

.cta-band__inner {
  position: relative;
}

.cta-band__inner h2 {
  max-width: 12ch;
}

.site-footer {
  background: #08101a;
  color: var(--text);
  padding: 3rem 0 6.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h3 {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid p,
.footer-grid a {
  opacity: 0.84;
}

.footer-list {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.page-hero,
.article-hero {
  padding: 4.5rem 0 3.5rem;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 95, 42, 0.16), transparent 22%),
    linear-gradient(180deg, #0d1623 0%, #111d2d 100%);
}

.page-hero__inner,
.article-hero__inner {
  display: grid;
  gap: 2rem;
}

.page-hero__content h1,
.article-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero__meta span {
  position: relative;
  padding-left: 1rem;
}

.page-hero__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.page-grid {
  align-items: start;
}

.page-content {
  display: grid;
  gap: 3rem;
}

.content-block {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.content-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.content-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-sidebar {
  display: grid;
  gap: 1rem;
}

.sticky-panel {
  position: sticky;
  top: 7rem;
}

.lead-form,
.audit-box {
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(15, 21, 31, 0.09);
}

.section--dark .lead-form,
.section--dark .audit-box,
.section--ink .lead-form,
.section--ink .audit-box {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.page-hero .audit-box,
.article-hero .audit-box {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(5, 12, 20, 0.18);
}

.page-hero .audit-box a,
.article-hero .audit-box a,
.page-hero .audit-box li,
.article-hero .audit-box li {
  color: inherit;
}

.lead-form h3,
.audit-box h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

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

.form-grid label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 14px;
  background: rgba(17, 21, 27, 0.02);
  color: var(--text-dark);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-grid input:invalid,
.form-grid textarea:invalid,
.form-grid select:invalid {
  border-color: rgba(157, 52, 18, 0.34);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: rgba(242, 95, 42, 0.56);
  box-shadow: 0 0 0 4px rgba(242, 95, 42, 0.1);
}

.section--dark .form-grid input,
.section--dark .form-grid textarea,
.section--dark .form-grid select,
.section--ink .form-grid input,
.section--ink .form-grid textarea,
.section--ink .form-grid select {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.form-grid textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-note,
.form-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--muted-dark);
}

.form-honeypot {
  display: none;
}

.form-status[data-state="error"] {
  color: #9d3412;
}

.form-status[data-state="success"] {
  color: #166534;
}

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

.form-success {
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(242, 95, 42, 0.22);
  border-radius: 18px;
  background: rgba(242, 95, 42, 0.08);
}

.section--dark .form-success,
.section--ink .form-success {
  background: rgba(242, 95, 42, 0.12);
}

.form-success h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.form-shell.is-submitted form {
  display: none;
}

.form-success:focus-visible {
  outline: 3px solid rgba(242, 95, 42, 0.3);
  outline-offset: 3px;
}

.section--dark .form-note,
.section--dark .form-status,
.section--ink .form-note,
.section--ink .form-status {
  color: rgba(255, 255, 255, 0.7);
}

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

.contact-grid__heading {
  grid-column: 1 / -1;
}

.contact-card a {
  color: var(--accent);
  font-weight: 700;
}

.article-shell {
  padding: 3.5rem 0 5.5rem;
}

.article-layout {
  display: grid;
  gap: 2rem;
}

.article-summary {
  align-self: start;
}

.article-summary .mini-list {
  margin-top: 1rem;
}

.article-content {
  display: grid;
  gap: 2rem;
}

.article-content p,
.article-content li {
  max-width: 48rem;
  color: var(--text-dark);
  opacity: 0.9;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.2rem;
}

.article-content h2 {
  margin: 0 0 0.8rem;
}

.article-content h3 {
  font-size: 1.55rem;
}

.quote-band {
  padding: 1.35rem;
  border-left: 3px solid var(--accent);
  background: rgba(242, 95, 42, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hero-badges,
.trust-points,
.inline-stat-row,
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badge,
.trust-pill,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.3rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
}

.chip-grid {
  margin-top: 1rem;
}

.chip {
  min-height: 0;
  background: rgba(17, 21, 27, 0.03);
  border-color: rgba(17, 21, 27, 0.08);
  color: var(--text-dark);
}

.section--dark .chip,
.section--ink .chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.proof-grid,
.feature-grid,
.tool-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.proof-card,
.feature-panel,
.tool-entry {
  position: relative;
  padding: 1.3rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.section--dark .proof-card,
.section--dark .feature-panel,
.section--dark .tool-entry,
.section--ink .proof-card,
.section--ink .feature-panel,
.section--ink .tool-entry {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.proof-card:hover,
.feature-panel:hover,
.tool-entry:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 95, 42, 0.36);
  box-shadow: 0 20px 58px rgba(15, 21, 31, 0.12);
}

.proof-card__value {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  color: var(--accent);
}

.section-break {
  position: relative;
}

.section-break::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 95, 42, 0.28), transparent 42%);
}

.audit-entry {
  padding: 1.35rem;
  border: 1px solid rgba(242, 95, 42, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(242, 95, 42, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.52) 100%);
}

.section--dark .audit-entry,
.section--ink .audit-entry {
  background:
    radial-gradient(circle at top right, rgba(242, 95, 42, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.03);
}

.audit-entry h3,
.tool-entry h3,
.proof-card h3,
.feature-panel h3 {
  margin: 0.4rem 0 0.6rem;
  font-family: var(--font-display);
  line-height: 1.04;
}

.audit-wizard {
  display: grid;
  gap: 1.5rem;
}

.audit-wizard__header {
  display: grid;
  gap: 0.8rem;
}

.audit-progress {
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(17, 21, 27, 0.08);
  overflow: hidden;
}

.audit-progress__fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  transition: width 220ms ease;
}

.audit-wizard__step {
  display: grid;
  gap: 1rem;
}

.audit-wizard__step[hidden] {
  display: none;
}

.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.option-grid {
  display: grid;
  gap: 0.8rem;
}

.option-card {
  position: relative;
  display: block;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(17, 21, 27, 0.12);
  border-radius: 18px;
  background: rgba(17, 21, 27, 0.02);
}

.option-card input {
  position: absolute;
  left: 1rem;
  top: 1.1rem;
}

.option-card strong {
  display: block;
  margin-bottom: 0.22rem;
}

.option-card:has(input:checked) {
  border-color: rgba(242, 95, 42, 0.4);
  box-shadow: 0 0 0 4px rgba(242, 95, 42, 0.08);
}

.option-card:focus-within {
  border-color: rgba(242, 95, 42, 0.32);
  box-shadow: 0 0 0 4px rgba(242, 95, 42, 0.06);
}

.upload-placeholder {
  display: grid;
  gap: 0.6rem;
  padding: 1rem;
  border: 1px dashed rgba(17, 21, 27, 0.16);
  border-radius: 18px;
  background: rgba(17, 21, 27, 0.02);
}

.section--dark .option-card,
.section--dark .upload-placeholder,
.section--ink .option-card,
.section--ink .upload-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.bio-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.8rem 1rem env(safe-area-inset-bottom, 0.8rem);
  background: rgba(8, 13, 21, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 -18px 34px rgba(6, 10, 17, 0.22);
}

.js-enhanced .mobile-cta {
  transform: translateY(calc(100% + 1rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.js-enhanced .mobile-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta .button {
  min-height: 3rem;
  font-size: 0.9rem;
}

@media (max-width: 959px) {
  .page-shell {
    padding-bottom: 5.9rem;
  }
}

@media (min-width: 560px) {
  .home-page .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .section {
    padding: 5.75rem 0;
  }

  .authority-bar__grid,
  .practice-grid,
  .industry-grid,
  .insight-grid,
  .why-grid,
  .results-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__inner,
  .split-layout,
  .page-hero__inner,
  .article-hero__inner,
  .article-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
  }

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

  .process-step {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .intro-grid,
  .page-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.7fr);
  }

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

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

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

@media (min-width: 960px) {
  .home-page .practice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-nav,
  .header-cta {
    display: flex;
  }

  .menu-button,
  .mobile-panel,
  .mobile-cta {
    display: none;
  }

  .site-header__bar {
    min-height: 5.9rem;
  }

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

  .authority-item {
    border-bottom: 0;
  }

  .authority-item:last-child {
    border-right: 0;
  }

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

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

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

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

  .tool-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  }

  .page-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.7fr);
  }
}

@media (min-width: 1160px) {
  .section {
    padding: 6.25rem 0;
  }

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

.home-page .container {
  width: min(calc(100% - 2.5rem), 1460px);
}

.home-page main {
  background:
    linear-gradient(180deg, rgba(8, 13, 21, 0.44) 0%, rgba(10, 16, 25, 0.34) 32%, rgba(8, 13, 21, 0.52) 100%),
    url("background.png") center top / cover no-repeat;
}

.home-page .section,
.home-page .page-hero {
  padding: 4.25rem 0;
  color: var(--text);
}

.home-page .page-hero {
  padding: 2rem 0 0.35rem;
}

.home-page .section--ink {
  background: rgba(11, 19, 30, 0.36);
  backdrop-filter: blur(4px);
}

.home-page .section--dark {
  background:
    linear-gradient(180deg, rgba(11, 19, 30, 0.44) 0%, rgba(17, 29, 45, 0.48) 100%);
  backdrop-filter: blur(4px);
}

.home-page .section-heading,
.home-page .hero__copy {
  max-width: none;
}

.home-page .section-heading p,
.home-page .hero__copy p,
.home-page .problem-list li,
.home-page .practice-card p,
.home-page .proof-card p,
.home-page .result-card p,
.home-page .faq-item__content {
  color: rgba(244, 239, 231, 0.82);
}

.home-page .hero__copy--home p {
  color: rgba(244, 239, 231, 1);
  opacity: 1;
}

.hero--home {
  background:
    linear-gradient(135deg, rgba(5, 10, 17, 0.54) 0%, rgba(12, 20, 31, 0.42) 54%, rgba(11, 17, 28, 0.58) 100%),
    linear-gradient(120deg, rgba(8, 17, 27, 0.66) 0%, rgba(16, 32, 52, 0.52) 100%);
}

.hero__inner--home {
  grid-template-columns: 1fr;
  gap: 2.25rem;
  min-height: auto;
  padding: 0.55rem 0 0.35rem;
  align-items: start;
}

.hero__copy--home {
  max-width: 46rem;
  align-self: start;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.hero__copy--home > * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.hero__copy--home h1 {
  max-width: 9.25em;
  font-size: clamp(2.35rem, 3.9vw, 4.35rem);
  line-height: 0.96;
  text-wrap: pretty;
}

.hero__copy--home p {
  max-width: 39rem;
  font-size: 1.04rem;
  color: rgba(244, 239, 231, 1);
  opacity: 1;
  text-shadow: 0 1px 8px rgba(5, 10, 17, 0.18);
}

.hero--home .button--primary {
  box-shadow: 0 10px 26px rgba(242, 95, 42, 0.14);
}

.hero--home .button--primary:hover,
.hero--home .button--primary:focus-visible {
  box-shadow: 0 14px 32px rgba(242, 95, 42, 0.18);
}

.hero-visual {
  position: relative;
  align-self: start;
  justify-self: end;
  width: min(100%, 34.75rem);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  animation: hero-rise 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.22s forwards;
}

.hero-visual img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2rem;
  box-shadow: 0 34px 90px rgba(5, 12, 20, 0.36);
  animation: hero-float 12s ease-in-out infinite;
}

.hero-visual__caption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: rgba(10, 17, 27, 0.78);
  backdrop-filter: blur(12px);
}

.hero-visual__caption span {
  color: rgba(242, 95, 42, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-visual__caption strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.08;
}

.authority-bar--home {
  position: relative;
  z-index: 2;
  margin-top: 0;
  background: rgba(9, 14, 23, 0.58);
  backdrop-filter: blur(6px);
}

.authority-bar--home .authority-item {
  background: rgba(255, 255, 255, 0.015);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.authority-bar--home .authority-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
}

.home-overview__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.home-overview__copy,
.home-overview__services {
  display: grid;
  gap: 1.3rem;
}

.home-page .problem-list {
  gap: 0.8rem 1.6rem;
  margin-top: 0.25rem;
}

.practice-grid--compact {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}

.home-page .practice-card,
.home-page .proof-card,
.home-page .result-card,
.home-page .faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.home-page .practice-card:hover,
.home-page .proof-card:hover,
.home-page .result-card:hover,
.home-page .faq-item:hover {
  border-color: rgba(242, 95, 42, 0.34);
  box-shadow: 0 20px 58px rgba(5, 12, 20, 0.2);
}

.proof-grid--results,
.results-grid--quotes,
.faq-list--home {
  margin-top: 1.5rem;
}

.results-grid--quotes {
  display: grid;
  gap: 1rem;
}

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

.faq-list--home .faq-item summary {
  color: var(--text);
}

.home-page .cta-band__inner h2 {
  max-width: 15ch;
}

.home-page .practice-card,
.home-page .proof-card,
.home-page .result-card {
  padding: 1.2rem;
}

.home-page .practice-grid,
.home-page .proof-grid,
.home-page .results-grid {
  margin-top: 1rem;
}

.home-page .practice-card__link {
  transition: transform 180ms ease, color 180ms ease;
}

.home-page .practice-card:hover .practice-card__link {
  transform: translateX(3px);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 720px) {
  .home-page .section {
    padding: 4.75rem 0;
  }

  .practice-grid--compact,
  .proof-grid--results,
  .results-grid--quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  .hero__inner--home {
    grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
    min-height: auto;
    padding: 0.3rem 0 0.45rem;
    gap: 1.85rem;
  }

  .hero-visual {
    width: min(100%, 35.75rem);
    margin-top: 1rem;
  }

  .home-overview__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 2.4rem;
  }

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

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

@media (max-width: 719px) {
  .hero__inner--home {
    min-height: auto;
    padding: 0.85rem 0 0.5rem;
  }

  .hero__copy--home h1 {
    max-width: 8.6em;
    font-size: clamp(2rem, 7.1vw, 3rem);
    letter-spacing: -0.03em;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-visual__caption strong {
    font-size: 1.05rem;
  }
}

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

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