﻿:root {
  color-scheme: dark;
  --bg: #020710;
  --bg-2: #070812;
  --panel: rgba(8, 14, 25, .78);
  --panel-2: rgba(17, 15, 27, .9);
  --line: rgba(215, 132, 140, .14);
  --text: #f0d2d4;
  --muted: rgba(240, 210, 212, .66);
  --soft: rgba(240, 210, 212, .42);
  --red: #9d3238;
  --red-2: #c35359;
  --teal: #1ad1c0;
  --max: min(1180px, calc(100vw - 48px));
  --report-side: 340px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 22% 18%, rgba(112, 22, 45, .24), transparent 34rem),
    radial-gradient(circle at 82% 22%, rgba(0, 150, 154, .13), transparent 38rem),
    linear-gradient(135deg, #09040d 0%, #030912 55%, #02070f 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p { line-height: 1.65; }
main { position: relative; z-index: 1; overflow: hidden; }

.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.42) 1px, transparent 1.4px),
    radial-gradient(rgba(26,209,192,.34) 1px, transparent 1.4px),
    radial-gradient(rgba(157,50,56,.38) 1px, transparent 1.4px);
  background-size: 170px 170px, 230px 230px, 310px 310px;
  background-position: 20px 30px, 90px 70px, 160px 120px;
  opacity: .42;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: var(--max);
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.brand strong {
  font-size: 20px;
  letter-spacing: -.04em;
  color: var(--text);
}
.brand strong span { color: var(--red-2); }

.claw-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 44% 44%;
  background: var(--red);
  box-shadow: 0 0 32px rgba(157, 50, 56, .55);
}
.claw-mark::before,
.claw-mark::after {
  content: "";
  position: absolute;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #001a22;
}
.claw-mark::before { left: 10px; }
.claw-mark::after { right: 10px; }
.claw-mark i {
  position: absolute;
  bottom: -5px;
  width: 6px;
  height: 8px;
  background: var(--red);
  box-shadow: -9px 0 0 var(--red), 9px 0 0 var(--red);
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
  background: rgba(2, 7, 16, .38);
  backdrop-filter: blur(14px);
}
.nav a,
.nav-email {
  color: rgba(240,210,212,.78);
  font-size: 13px;
  font-weight: 800;
}
.nav a:hover,
.nav-email:hover { color: var(--red-2); }
.nav-email { font-size: 12px; }

.theme-dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: rgba(240,210,212,.78);
  background: rgba(9, 15, 28, .68);
  box-shadow: inset 0 0 20px rgba(255,255,255,.03);
}

.claw-hero {
  min-height: clamp(380px, 52vh, 560px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 28px;
  padding: 96px 24px 54px;
  text-align: center;
}

.mascot {
  position: relative;
  width: 86px;
  height: 78px;
  margin-top: 0;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(145deg, #7e2228, #a23238);
  box-shadow: 0 0 54px rgba(157,50,56,.45);
}
.mascot::before,
.mascot::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #922b31;
}
.mascot::before { left: -12px; }
.mascot::after { right: -12px; }
.mascot .eye {
  position: absolute;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #031016;
  box-shadow: 0 0 0 2px rgba(26,209,192,.42);
}
.mascot .one { left: 29px; }
.mascot .two { right: 29px; }

.claw-hero h1 {
  font-size: clamp(58px, 7.5vw, 92px);
  line-height: .9;
  letter-spacing: -.06em;
  background: linear-gradient(90deg, #9f818d 0%, #b65b61 58%, #973136 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.claw-hero h1 span { color: transparent; }
.claw-hero p {
  max-width: 720px;
  color: rgba(94, 28, 36, .86);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .22em;
}
.mission-hero {
  min-height: auto;
  align-content: center;
  justify-items: center;
  gap: 20px;
  padding: 174px 0 12px;
}
.mission-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
}
.mission-hero p {
  max-width: 760px;
  font-size: 17px;
}

.mission-band,
.home-block,
.workflow-grid,
.ai-summary,
.faq-section,
.footer,
.page-hero,
.directory-grid,
.offer-grid,
.article-list,
.report-hero,
.report-layout {
  width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.mission-band {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding: 12px 0 30px;
  text-align: center;
}

.mission-band.mission-hero {
  padding: 174px 0 12px;
}
.eyebrow,
.page-hero .kicker,
.tile-index,
.offer-card > span,
.article-list span,
.card-grid a > span {
  color: var(--red-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mission-band h1,
.mission-band h2,
.block-head h2,
.workflow-grid h2,
.ai-summary h2,
.faq-section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}
.mission-band p,
.card-grid p,
.workflow-grid p,
.firm-tile p,
.offer-card p,
.article-list p,
.report-hero p,
.report-hero aside p,
.ai-summary p,
.ai-summary dd,
.faq-section details p {
  color: var(--muted);
}

.home-block { padding: 26px 0 0; }
.block-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}
.block-head a,
.card-grid strong,
.firm-tile > strong,
.offer-card strong,
.article-list strong,
.button.primary {
  width: fit-content;
  color: #f7dadd;
  background: linear-gradient(135deg, #792027, #b64046);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}
.card-grid a,
.workflow-grid article,
.ai-summary,
.faq-section details,
.firm-tile,
.offer-card,
.article-list a,
.report-hero > div,
.report-hero > aside,
.report-body,
.report-sidebar > div {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(157,50,56,.13), transparent 15rem),
    rgba(7, 13, 22, .72);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}
.card-grid a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 13px;
  padding: 24px;
}
.card-grid h3,
.firm-tile h2,
.offer-card h2,
.article-list h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 62px;
}
.workflow-grid article {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 24px;
}
.workflow-grid article > span {
  color: var(--teal);
  font-weight: 950;
}

.ai-summary {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 30px;
  margin-top: 66px;
}
.ai-summary dl { display: grid; gap: 12px; margin: 0; }
.ai-summary dl div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.ai-summary dt { margin-bottom: 8px; font-weight: 900; }
.ai-summary dd { margin: 0; }

.faq-section { padding: 66px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.faq-section details { padding: 22px; }
.faq-section summary { cursor: pointer; font-size: 18px; font-weight: 900; }
.faq-section details p { margin-top: 12px; }

.footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(12rem, .65fr) minmax(17rem, .8fr);
  gap: clamp(28px, 6vw, 80px);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer > div { display: grid; align-content: start; gap: 14px; }
.footer strong { color: var(--text); }
.footer a:hover { color: var(--red-2); }
.footer-brand strong { font-size: 20px; }

.page-hero {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 120px 0 42px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1,
.report-hero h1 {
  max-width: 860px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}
.page-hero p { max-width: 820px; color: var(--muted); font-size: 18px; }

.directory-grid,
.offer-grid,
.article-list {
  display: grid;
  gap: 14px;
  padding: 32px 0 86px;
}
.offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.firm-tile,
.offer-card,
.article-list a {
  display: grid;
  gap: 14px;
  min-height: 170px;
  padding: 24px;
}
.firm-tile {
  grid-template-columns: 44px 84px minmax(0, 1fr) auto;
  align-items: center;
}
.firm-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(26,209,192,.18), transparent 6rem),
    rgba(255,255,255,.04);
}
.firm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.firm-avatar i {
  font-style: normal;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
}
.article-list a {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--report-side);
  gap: 16px;
  padding: 120px 0 22px;
}
.report-hero-single { grid-template-columns: minmax(0, 1fr); }
.report-hero > div,
.report-hero > aside {
  min-width: 0;
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 30px;
}
.report-hero-single > div {
  min-height: 250px;
  align-content: center;
}
.brand-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, #84262d, #c04b52);
  box-shadow: 0 18px 42px rgba(157, 50, 56, .24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.brand-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(157, 50, 56, .32);
}
.brand-cta span { font-size: 18px; line-height: 1; }
.report-hero aside span { color: var(--red-2); font-size: 48px; font-weight: 900; }
.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--report-side);
  gap: 16px;
  padding-bottom: 86px;
}
.report-body {
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  color: rgba(240,210,212,.84);
}
.report-body h2 {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}
.report-body h3 { margin-top: 24px; color: var(--red-2); }
.report-body p,
.report-body ul,
.report-body ol,
.report-body table,
.report-body blockquote { margin-top: 16px; overflow-wrap: anywhere; }
.report-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 18px 0 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.report-body li { margin: 8px 0; line-height: 1.7; }
.report-body table { width: 100%; border-collapse: collapse; }
.report-body th,
.report-body td { padding: 12px; border: 1px solid var(--line); text-align: left; }

.report-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  align-self: start;
}
.report-sidebar > div { display: grid; gap: 8px; padding: 18px; }
.sidebar-list { display: grid; gap: 12px; }
.sidebar-list > strong { color: var(--text); }
.sidebar-list nav { display: grid; gap: 10px; }
.sidebar-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.sidebar-thumb {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-thumb i { font-style: normal; font-size: 13px; font-weight: 950; }
.sidebar-item-copy { display: grid; gap: 5px; min-width: 0; }
.sidebar-item-copy span { color: var(--text); font-weight: 850; line-height: 1.25; }
.sidebar-item-copy small { color: var(--muted); }

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; }
  .nav, .nav-email { display: none; }
  .theme-dot { justify-self: end; }
  .card-grid,
  .workflow-grid,
  .ai-summary,
  .faq-grid,
  .footer,
  .report-hero,
  .report-layout,
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --max: min(100vw - 24px, 1180px); }
  .topbar { top: 12px; }
  .brand strong { display: none; }
  .claw-hero { min-height: 440px; padding: 82px 18px 44px; gap: 24px; }
  .mascot { width: 72px; height: 66px; }
  .claw-hero h1 { font-size: 54px; }
  .claw-hero p { max-width: 330px; font-size: 14px; line-height: 1.55; }
  .mission-band { padding: 10px 0 38px; }
  .mission-hero {
    min-height: auto;
    padding: 138px 0 18px;
  }
  .mission-band.mission-hero { padding: 138px 0 18px; }
  .mission-hero h1 { font-size: 42px; }
  .mission-hero p { max-width: 330px; font-size: 15px; }
  .mission-band h2,
  .mission-band h1,
  .block-head h2,
  .workflow-grid h2,
  .ai-summary h2,
  .faq-section h2 { font-size: 34px; }
  .block-head { align-items: start; flex-direction: column; }
  .firm-tile,
  .article-list a { grid-template-columns: 1fr; }
  .firm-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .to-top { right: 16px; bottom: 16px; }
}




