@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #071426;
  --blue: #173653;
  --blue-light: #244d72;
  --red: #982f2a;
  --yellow: #d9ad3a;
  --ink: #101923;
  --text: #344455;
  --muted: #667585;
  --line: #cbd3da;
  --surface: #f3f6f8;
  --paper: #ffffff;
  --soft-blue: #e7eef4;
  --soft-red: #f7ecea;
  --soft-yellow: #fbf5df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

a:visited {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 78px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  width: 112px;
  height: 46px;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.wordmark img {
  display: block;
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.7vw, 30px);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.nav-links a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav-links a:not(.nav-contact):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a[href="team.html"],
.nav-links a[href="intelligence.html"] {
  color: var(--blue);
}

.nav-links a[href="stat.html"] {
  color: var(--red);
}

.nav-links a[href="ctu.html"] {
  color: #9a7110;
}

.nav-contact {
  padding: 0 18px;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-contact:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}

.home-hero {
  min-height: calc(100svh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  background: var(--navy);
  color: white;
  overflow: hidden;
}

.hero-story {
  padding: clamp(64px, 7vw, 120px) 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.hero-story::before {
  content: "";
  position: absolute;
  width: 34vw;
  height: 34vw;
  right: -18vw;
  bottom: -20vw;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(255, 255, 255, .025), 0 0 0 10vw rgba(255, 255, 255, .018);
  z-index: -1;
}

.kicker {
  margin-bottom: 24px;
  color: var(--yellow);
}

.home-hero h1,
.page-hero h1,
.story-text h2,
.firm-head h2,
.offer-name h2,
.offer-copy h3,
.page-section h2,
.closing h2,
.record-big,
.team-name h2,
.intelligence-engine h2,
.score-suite h2,
.score-card h3 {
  font-family: "IBM Plex Sans", sans-serif;
}

.home-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(64px, 7.8vw, 132px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.home-hero h1 span {
  color: #b7c8d8;
}

.hero-copy {
  max-width: 820px;
  margin: 30px 0 0;
  color: #cbd6e0;
  font-size: clamp(19px, 1.4vw, 23px);
  line-height: 1.55;
}

.hero-copy strong {
  color: white;
  font-weight: 700;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(6, 19, 35, .16);
  background: #e6bd50;
}

.button.secondary {
  border-color: #7990a5;
  background: transparent;
  color: white;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, .08);
}

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

.hero-record {
  padding: clamp(54px, 5vw, 90px) 4.5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #112a43, #173653 58%, #1f4465);
}

.hero-record::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20%;
  width: 80%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  animation: signal 5s linear infinite;
}

.record-big {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.05em;
}

.record-rule {
  height: 1px;
  margin: 28px 0 18px;
  background: rgba(255, 255, 255, .22);
}

.record-copy {
  max-width: 620px;
  margin: 14px 0 0;
  color: #b9c8d5;
  font-size: 15px;
}

.record-step {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.record-step:last-of-type {
  border-bottom: 0;
}

.record-step b {
  color: var(--yellow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 500;
}

.record-step span {
  color: #e7eef4;
  font-size: 17px;
}

.record-step span strong,
.record-step span small {
  display: block;
}

.record-step span strong {
  font-weight: 700;
}

.record-step span small {
  margin-top: 3px;
  color: #a6b8c8;
  font-size: 14px;
}

.story {
  padding: clamp(54px, 6vw, 96px) 5vw;
  background: white;
  border-bottom: 1px solid var(--line);
}

.story-label {
  margin-bottom: 22px;
  color: var(--red);
}

.story-text h2 {
  max-width: 1500px;
  margin: 0;
  font-size: clamp(52px, 6.8vw, 116px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.story-scenes {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 110px);
}

.scene {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2vw, 33px);
  line-height: 1.35;
}

.scene strong {
  color: var(--ink);
  font-weight: 700;
}

.story-answer {
  margin-top: 46px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--soft-blue);
  border-left: 6px solid var(--blue);
}

.story-answer .mono {
  color: var(--blue);
}

.story-answer p {
  margin: 0;
  font-size: clamp(19px, 1.5vw, 24px);
  font-weight: 600;
}

.time-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy);
  color: white;
}

.moment {
  min-height: 172px;
  padding: 34px 3vw;
  border-left: 1px solid #32475c;
  transition: background .2s ease;
}

.moment:first-child {
  border-left: 0;
}

.moment:hover {
  background: #0f2943;
}

.moment time {
  display: block;
  margin-bottom: 15px;
  color: var(--yellow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 500;
}

.moment p {
  max-width: 360px;
  margin: 0;
  color: #c4d0da;
  font-size: 17px;
}

.firm {
  padding: clamp(58px, 6vw, 96px) 5vw;
  background: var(--surface);
}

.firm-head {
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5vw;
  align-items: end;
  border-bottom: 2px solid var(--ink);
}

.firm-head .mono {
  color: var(--red);
}

.firm-head h2 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 124px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.065em;
}

.firm-intro {
  padding: 30px 0 36px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5vw;
}

.firm-intro p {
  grid-column: 2;
  max-width: 1250px;
  margin: 0;
  font-size: clamp(25px, 2.5vw, 43px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.025em;
}

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

.firm-line {
  padding: 21px 0;
  display: grid;
  grid-template-columns: minmax(230px, .35fr) minmax(0, .65fr);
  gap: 5vw;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease, background .2s ease;
}

.firm-line:hover {
  padding-left: 18px;
  background: white;
}

.firm-line h3 {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.firm-line p {
  max-width: 1000px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.call-time {
  margin-top: 34px;
  padding: 34px 3.2vw;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 5vw;
  background: var(--yellow);
}

.call-time p {
  max-width: 1120px;
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.035em;
}

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

.offer {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(0, .58fr);
  border-top: 1px solid var(--line);
}

.offer + .offer {
  border-left: 1px solid var(--line);
}

.offer-name,
.offer-copy {
  min-height: 410px;
  padding: 44px 3.5vw;
}

.offer-name {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.offer-name h2 {
  margin: 0;
  font-size: clamp(72px, 7.5vw, 130px);
  font-weight: 600;
  line-height: .82;
  letter-spacing: -.07em;
}

.offer-name .mono {
  color: inherit;
}

.offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

.offer-copy h3 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.1vw, 54px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
}

.offer-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.offer.stat .offer-name {
  background: var(--red);
  color: white;
}

.offer.ctu .offer-name {
  background: var(--yellow);
  color: var(--ink);
}

.text-link {
  margin-top: 22px;
  display: inline-block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 340px;
  padding: clamp(38px, 4vw, 64px) 5vw;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 5vw;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--navy), var(--blue));
  color: white;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -7vw;
  bottom: -11vw;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(255, 255, 255, .025);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero .kicker {
  margin: 0;
  align-self: start;
}

.page-hero h1 {
  max-width: 1450px;
  margin: 0;
  font-size: clamp(64px, 7.6vw, 132px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 1000px;
  margin: 18px 0 0;
  color: #c7d3de;
  font-size: clamp(19px, 1.5vw, 23px);
}

.page-body {
  padding: 32px 5vw 40px;
  background: var(--surface);
}

.page-section {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 5vw;
  border-top: 1px solid var(--line);
  animation: enter .45s ease both;
}

.page-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.page-section:nth-child(2) {
  animation-delay: .05s;
}

.page-section:nth-child(3) {
  animation-delay: .1s;
}

.page-section:nth-child(4) {
  animation-delay: .15s;
}

.page-section > .mono {
  color: var(--red);
}

.page-section > div:last-child,
.page-section > form {
  max-width: 1250px;
}

.page-section h2 {
  max-width: 1150px;
  margin: 0 0 16px;
  font-size: clamp(40px, 4.4vw, 74px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.page-section p {
  max-width: 1040px;
  margin: 0;
  color: var(--text);
  font-size: 19px;
}

.page-section ul {
  max-width: 980px;
  margin: 20px 0 0;
  padding-left: 24px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.75;
}

.founder-page .page-hero {
  min-height: 580px;
  grid-template-columns: minmax(330px, .52fr) minmax(0, 1.15fr);
  padding-top: 36px;
  padding-bottom: 0;
  align-items: center;
}

.founder-portrait {
  width: min(460px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  align-self: end;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

.team-page .page-hero {
  min-height: 470px;
}

.team-intro {
  max-width: 930px;
}

.team-list {
  padding: 18px 5vw 48px;
  background: var(--surface);
}

.team-member {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 70px minmax(250px, .48fr) minmax(0, 1fr);
  gap: 4vw;
  align-items: start;
  border-top: 1px solid var(--line);
  transition: background .2s ease, padding-left .2s ease, padding-right .2s ease;
  animation: enter .45s ease both;
}

.team-member:first-child {
  border-top: 0;
}

.team-member:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: white;
}

.team-number {
  color: var(--red);
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  font-weight: 500;
}

.team-name h2 {
  margin: 0 0 10px;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.055em;
}

.team-name p,
.bio-soon {
  margin: 0;
  color: var(--blue);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-bio {
  max-width: 950px;
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.bio-soon {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
}

.contact-form {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.contact-form label:first-child,
.contact-form label:nth-last-of-type(1),
.contact-form .button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid #aebac5;
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: 500 16px "IBM Plex Sans", sans-serif;
}

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

.confidentiality {
  max-width: 920px;
  margin-top: 28px;
  padding: 26px 28px;
  background: var(--blue);
  color: white;
}

.confidentiality h3 {
  margin: 0 0 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.confidentiality p {
  color: #d2dde6;
  font-size: 16px;
}

.strategies-contact {
  margin-top: 22px !important;
  font-size: 16px !important;
}

.stat-page .page-hero,
.stat-page .closing {
  background: linear-gradient(135deg, #76211f, var(--red));
}

.stat-page .page-hero .kicker {
  color: #ffd0cb;
}

.stat-page .page-hero p,
.stat-page .closing p {
  color: #f3d8d5;
}

.stat-page .page-body {
  background: var(--soft-red);
}

.stat-page .page-section > .mono {
  color: var(--red);
}

.ctu-page .page-hero,
.ctu-page .closing {
  background: linear-gradient(135deg, #c7951f, var(--yellow));
  color: var(--ink);
}

.ctu-page .page-hero .kicker,
.ctu-page .page-hero p,
.ctu-page .closing p {
  color: #49370d;
}

.ctu-page .page-body {
  background: var(--soft-yellow);
}

.ctu-page .page-section > .mono {
  color: #7e5b0b;
}

.ctu-page .closing .button {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.intelligence-page .intelligence-hero {
  min-height: 560px;
  display: block;
  padding: clamp(62px, 7vw, 112px) 5vw;
  background: var(--blue);
}

.intelligence-page .intelligence-hero::after {
  width: 43vw;
  height: 43vw;
  right: -12vw;
  bottom: -28vw;
}

.intelligence-opening {
  max-width: 1700px;
}

.intelligence-page .intelligence-hero .kicker {
  margin-bottom: 22px;
  color: var(--yellow);
}

.intelligence-page .intelligence-hero h1 {
  max-width: 1580px;
  font-size: clamp(58px, 7vw, 120px);
  line-height: .9;
}

.intelligence-page .intelligence-hero h1 span {
  color: var(--yellow);
}

.intelligence-page .intelligence-opening > p {
  margin-top: 30px;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -.035em;
}

.intelligence-engine {
  padding: clamp(54px, 6vw, 96px) 5vw;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 5vw;
  background: var(--navy);
  color: white;
}

.engine-status {
  align-self: start;
  color: #b9c9d7;
}

.engine-status span {
  width: 11px;
  height: 11px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #55d994;
  box-shadow: 0 0 0 0 rgba(85, 217, 148, .55);
  animation: livePulse 2s infinite;
}

.engine-copy {
  max-width: 1280px;
}

.intelligence-engine h2 {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(48px, 5.8vw, 96px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.engine-copy > p {
  max-width: 1050px;
  margin: 30px 0 0;
  color: #c5d2dd;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.5;
}

.engine-copy .engine-live {
  padding: 22px 24px;
  border-left: 5px solid var(--yellow);
  background: rgba(255, 255, 255, .07);
  color: white;
  font-weight: 600;
}

.score-suite {
  padding: clamp(54px, 6vw, 96px) 5vw;
  background: #dfe8ef;
}

.score-suite-head {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px 5vw;
  align-items: start;
}

.score-suite-head > .mono {
  color: var(--blue);
}

.score-suite h2 {
  max-width: 1250px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 94px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.score-suite-head > p {
  grid-column: 2;
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: 20px;
}

.score-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.score-card {
  min-height: 300px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #bdcbd6;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: enter .45s ease both;
}

.score-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--yellow), var(--red), var(--blue));
  background-size: 220% 100%;
  animation: scoreLine 6s linear infinite;
}

.score-card:nth-child(2) {
  animation-delay: .05s;
}

.score-card:nth-child(3) {
  animation-delay: .1s;
}

.score-card:nth-child(4) {
  animation-delay: .15s;
}

.score-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 18px 38px rgba(13, 43, 68, .13);
}

.score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.score-index {
  color: var(--muted);
}

.score-state {
  color: #117447;
}

.score-state::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #26a866;
}

.score-card h3 {
  margin: 60px 0 14px;
  color: var(--blue);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.055em;
}

.score-card p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
}

.intelligence-page .page-body {
  background: white;
}

.intelligence-page .page-section > .mono {
  color: var(--blue);
}

.intelligence-page .closing {
  background: var(--blue);
}

.closing {
  padding: clamp(58px, 6vw, 96px) 5vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  align-items: end;
  background: var(--navy);
  color: white;
}

.closing h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 120px);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -.065em;
}

.closing p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #bdcbd7;
  font-size: 19px;
}

footer {
  padding: 26px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #020a13;
  color: #91a4b5;
  font-size: 14px;
}

footer a {
  color: #cbd6df;
}

.patent-notice {
  color: var(--yellow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Motion and denser page composition */

.page-progress {
  position: fixed;
  top: 77px;
  right: 0;
  left: 0;
  z-index: 40;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-nav {
  transition: box-shadow .25s ease, background .25s ease;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 32px rgba(7, 20, 38, .09);
}

.nav-links a.active:not(.nav-contact)::after {
  transform: scaleX(1);
}

.page-hero {
  min-height: 310px;
  padding-top: 36px;
  padding-bottom: 36px;
  grid-template-columns: 1fr;
  gap: 12px;
  align-content: center;
  align-items: center;
  isolation: isolate;
}

.page-hero::before,
.closing::before,
.home-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x, 74%) var(--pointer-y, 45%), rgba(255, 255, 255, .13), transparent 24%),
    linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, .42) 50%, transparent 88% 100%) 0 100% / 28% 2px no-repeat;
  animation: signalSweep 7s linear infinite;
}

.page-hero::after {
  animation: orbitDrift 9s ease-in-out infinite alternate;
}

.page-hero .kicker {
  align-self: auto;
}

.page-hero > div:last-child {
  max-width: 1720px;
}

.page-hero h1 {
  max-width: 1720px;
  font-size: clamp(78px, 8.4vw, 154px);
}

.page-hero p {
  max-width: 1350px;
  margin-top: 14px;
  font-size: clamp(21px, 1.55vw, 27px);
}

.page-body {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.page-section {
  margin: 0 -1.5vw;
  padding: 30px 1.5vw;
  grid-template-columns: 1fr;
  gap: 8px;
  position: relative;
  transition: background .25s ease, padding-left .25s ease;
}

.page-section:hover {
  padding-left: 2.1vw;
  background: rgba(255, 255, 255, .62);
}

.page-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s ease;
}

.page-section:hover::after,
.page-section.in-view::after {
  transform: scaleY(1);
}

.page-section > div:last-child,
.page-section > form {
  max-width: none;
}

.page-section h2 {
  max-width: 1500px;
  margin-bottom: 10px;
  font-size: clamp(43px, 4.5vw, 82px);
}

.page-section p {
  max-width: 1400px;
  font-size: clamp(19px, 1.25vw, 23px);
}

.page-section ul {
  max-width: 1300px;
  margin-top: 14px;
  font-size: clamp(18px, 1.15vw, 21px);
  line-height: 1.55;
}

.founder-page .page-hero {
  min-height: 500px;
  grid-template-columns: minmax(330px, .52fr) minmax(0, 1.15fr);
  gap: 4vw;
}

.founder-page .page-hero .kicker {
  margin-bottom: 8px;
}

.intelligence-page .intelligence-hero {
  min-height: 460px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.intelligence-engine,
.score-suite {
  padding-top: clamp(38px, 4vw, 64px);
  padding-bottom: clamp(38px, 4vw, 64px);
}

.score-grid {
  margin-top: 28px;
}

.score-card {
  min-height: 240px;
}

.closing {
  padding-top: clamp(36px, 4vw, 62px);
  padding-bottom: clamp(36px, 4vw, 62px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.closing > * {
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(54px, 6vw, 102px);
}

footer {
  padding-top: 18px;
  padding-bottom: 18px;
}

.home-hero {
  position: relative;
  isolation: isolate;
}

.home-hero > * {
  position: relative;
  z-index: 1;
}

.text-link::after {
  content: "  ↗";
  display: inline-block;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.js .motion-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .75, .2, 1);
}

.js .motion-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.js .page-hero .kicker,
.js .page-hero h1,
.js .page-hero p {
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter .65s cubic-bezier(.2, .75, .2, 1) forwards;
}

.js .page-hero h1 {
  animation-delay: .08s;
}

.js .page-hero p {
  animation-delay: .16s;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signalSweep {
  from { background-position: 0 0, -38% 100%; }
  to { background-position: 0 0, 138% 100%; }
}

@keyframes orbitDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2vw, -1vw, 0) scale(1.06); }
}

.reveal {
  opacity: 1;
  transform: none;
  animation: enter .45s ease both;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

@keyframes signal {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(180%);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 217, 148, .5);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(85, 217, 148, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(85, 217, 148, 0);
  }
}

@keyframes scoreLine {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-record {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 34px;
  }

  .record-big,
  .record-rule,
  .record-copy {
    grid-column: 1 / -1;
  }

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

  .offer + .offer {
    border-left: 0;
  }

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

@media (max-width: 900px) {
  .nav-links a:not(.nav-contact) {
    display: none;
  }

  .home-hero,
  .story-scenes,
  .firm-head,
  .firm-intro,
  .firm-line,
  .call-time,
  .offer,
  .page-hero,
  .page-section,
  .founder-page .page-hero,
  .team-member,
  .intelligence-engine,
  .score-suite-head,
  .closing {
    grid-template-columns: 1fr;
  }

  .firm-intro p,
  .score-suite-head > p {
    grid-column: 1;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero .kicker {
    margin-bottom: 24px;
  }

  .founder-page .page-hero {
    padding-bottom: 0;
  }

  .founder-portrait {
    justify-self: start;
    width: min(420px, 100%);
  }

  .story-answer {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 52px 1fr;
  }

  .team-bio {
    grid-column: 2;
  }

  .intelligence-page .intelligence-hero {
    min-height: 0;
  }

  .score-card {
    min-height: 260px;
  }

  .closing {
    align-items: start;
  }
}

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

  .page-progress {
    top: 69px;
  }

  .site-nav {
    height: 70px;
    padding: 0 5vw;
  }

  .wordmark,
  .wordmark img {
    width: 100px;
  }

  .nav-contact {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero-story,
  .hero-record,
  .story,
  .firm,
  .page-hero,
  .page-body,
  .team-list,
  .intelligence-page .intelligence-hero,
  .intelligence-engine,
  .score-suite,
  .closing {
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .home-hero h1 {
    font-size: 57px;
  }

  .hero-record {
    display: flex;
  }

  .story-scenes,
  .time-strip,
  .score-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .story-text h2,
  .page-hero h1,
  .intelligence-page .intelligence-hero h1 {
    font-size: 51px;
  }

  .scene {
    font-size: 21px;
  }

  .time-strip {
    display: grid;
  }

  .moment,
  .moment:first-child {
    min-height: 0;
    padding: 26px 6vw;
    border-top: 1px solid #32475c;
    border-left: 0;
  }

  .moment:first-child {
    border-top: 0;
  }

  .offer-name,
  .offer-copy {
    min-height: 0;
    padding: 38px 6vw;
  }

  .offer-name {
    gap: 42px;
  }

  .offer-name h2 {
    font-size: 82px;
  }

  .team-member {
    grid-template-columns: 40px 1fr;
    gap: 24px;
  }

  .team-member:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .contact-form label,
  .contact-form label:first-child,
  .contact-form label:nth-last-of-type(1),
  .contact-form .button {
    grid-column: 1;
  }

  .score-card {
    min-height: 230px;
  }

  footer,
  .intelligence-footer {
    padding-right: 6vw;
    padding-left: 6vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact form routing and alignment */

.netlify-form-definitions,
.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form,
.confidentiality,
.strategies-contact {
  grid-column: 2;
  width: 100%;
  max-width: none;
  justify-self: center;
}

.confidentiality {
  margin-top: 24px;
  text-align: center;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
  text-align: center;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .65;
}

@media (max-width: 900px) {
  .contact-form,
  .confidentiality,
  .strategies-contact {
    grid-column: 1;
  }
}

/* Homepage hierarchy pass */

.firm {
  padding-top: 26px;
  padding-bottom: 20px;
}

.firm-head {
  grid-template-columns: 180px minmax(300px, .72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--signal-blue);
}

.firm-head > .mono {
  padding: 0;
  border: 0;
}

.firm-head > h2 {
  margin: 0;
  font-size: clamp(45px, 4vw, 66px);
  line-height: .9;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.firm-head > p {
  max-width: 820px;
  margin: 0;
  color: #bfd0dd;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.3;
}

.firm-lines {
  counter-reset: capability;
  margin-top: 12px;
  gap: 0;
  border: 1px solid rgba(111, 168, 210, .15);
  border-radius: 13px;
  overflow: hidden;
}

.firm-line {
  counter-increment: capability;
  position: relative;
  min-height: 118px;
  padding: 17px 18px 16px 48px;
  border: 0;
  border-radius: 0;
  background: rgba(15, 41, 65, .74);
}

.firm-line + .firm-line {
  border-left: 1px solid rgba(111, 168, 210, .13);
}

.firm-line::before {
  content: "0" counter(capability);
  position: absolute;
  top: 18px;
  left: 17px;
  color: var(--signal-blue);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.firm-line:hover {
  padding-left: 48px;
  background: rgba(20, 52, 80, .96);
}

.firm-line h3 {
  font-size: 14px;
}

.firm-line p {
  font-size: 15px;
  line-height: 1.4;
}

.call-time {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 0;
  padding: 17px 22px;
  border-radius: 12px;
}

.call-time p {
  font-size: clamp(22px, 1.65vw, 29px);
}

.firm > .text-link {
  margin-top: 11px;
}

.offers {
  padding-top: 12px;
  padding-bottom: 12px;
}

.offer-name,
.offer-copy {
  min-height: 205px;
  padding: 23px;
}

.closing {
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}

.closing h2 {
  font-size: clamp(50px, 4.6vw, 76px);
}

@media (max-width: 1200px) {
  .firm-head {
    grid-template-columns: 160px minmax(280px, .8fr) minmax(360px, 1.2fr);
  }

  .call-time {
    grid-template-columns: 160px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .firm-head {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

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

  .firm-line + .firm-line {
    border-left: 0;
  }

  .firm-line:last-child {
    grid-column: 1 / -1;
  }

  .firm-head > h2 {
    white-space: normal;
  }

  .call-time {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .firm-lines {
    grid-template-columns: 1fr;
  }

  .firm-line:last-child {
    grid-column: auto;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Signal Field visual direction */

:root {
  --navy: #071426;
  --blue: #173653;
  --blue-light: #244d72;
  --red: #982f2a;
  --yellow: #d9ad3a;
  --ink: #071426;
  --text: #35495b;
  --muted: #718395;
  --line: #c7d4de;
  --surface: #eaf0f4;
  --paper: #ffffff;
  --soft-blue: #dfe9f0;
  --soft-red: #f5e6e4;
  --soft-yellow: #fbf2d7;
}

body {
  background: var(--navy);
  font-family: "Inter", sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.home-hero h1,
.page-hero h1,
.story-text h2,
.firm-head h2,
.offer-name h2,
.offer-copy h3,
.page-section h2,
.closing h2,
.team-name h2,
.intelligence-engine h2,
.score-suite h2,
.score-card h3 {
  font-family: "Barlow Condensed", "Inter", sans-serif;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  letter-spacing: .1em;
}

.site-nav {
  height: 88px;
  padding: 0 4.2vw;
  background: rgba(7, 20, 38, .95);
  border-bottom: 0;
  color: white;
  backdrop-filter: blur(20px);
}

.site-nav::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), #c27d32 52%, var(--red));
}

.site-nav.scrolled {
  background: rgba(7, 20, 38, .98);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .28);
}

.wordmark {
  width: 112px;
}

.wordmark img {
  width: 112px;
  filter: brightness(0) invert(1);
}

.nav-links {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  gap: clamp(18px, 1.8vw, 34px);
}

.nav-links a,
.nav-links a[href="team.html"],
.nav-links a[href="intelligence.html"] {
  color: #d9e3eb;
}

.nav-links a[href="stat.html"] {
  color: #df7a72;
}

.nav-links a[href="ctu.html"] {
  color: var(--yellow);
}

.nav-contact {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: white;
  color: var(--navy) !important;
}

.nav-contact:hover {
  background: var(--yellow);
  color: var(--navy) !important;
}

.page-progress {
  top: 86px;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.home-hero {
  min-height: calc(100svh - 88px);
  padding: 0 4.2vw 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(520px, .95fr);
  grid-template-rows: minmax(560px, 1fr) 170px;
  column-gap: 4vw;
  background:
    radial-gradient(circle at 83% 44%, rgba(36, 77, 114, .62), transparent 30%),
    linear-gradient(125deg, #071426 0%, #08182c 58%, #0e2843 100%);
  color: white;
}

.home-hero::after {
  display: none;
}

.hero-story {
  padding: clamp(58px, 6.4vw, 112px) 0 54px;
  justify-content: center;
}

.hero-story::before {
  display: none;
}

.kicker {
  margin-bottom: 28px;
  color: var(--yellow);
}

.home-hero h1 {
  max-width: 840px;
  font-size: clamp(78px, 7.7vw, 132px);
  font-weight: 600;
  line-height: .84;
  letter-spacing: -.045em;
}

.home-hero h1 span {
  color: white;
}

.hero-copy {
  max-width: 740px;
  margin-top: 34px;
  color: #c7d5df;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 7px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .045);
}

.signal-field {
  min-height: 560px;
  position: relative;
  align-self: stretch;
  overflow: hidden;
}

.signal-field::before {
  content: "";
  position: absolute;
  inset: 8% -9% 7% 3%;
  background: radial-gradient(circle at 62% 50%, rgba(35, 74, 109, .82), rgba(13, 40, 67, .2) 47%, transparent 68%);
}

.signal-orbit {
  position: absolute;
  top: 50%;
  left: 61%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitBreathe 7s ease-in-out infinite alternate;
}

.orbit-wide {
  width: min(39vw, 650px);
  aspect-ratio: 1;
  border-color: rgba(217, 173, 58, .44);
}

.orbit-mid {
  width: min(30vw, 490px);
  aspect-ratio: 1;
}

.orbit-core {
  width: min(17vw, 270px);
  aspect-ratio: 1;
  border: 2px solid rgba(152, 47, 42, .78);
  animation-delay: -2.4s;
}

.signal-pulse {
  position: absolute;
  top: 50%;
  left: 61%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #58d798;
  box-shadow: 0 0 0 0 rgba(88, 215, 152, .55);
  animation: signalPulse 2s ease-out infinite;
}

.signal-lines {
  position: absolute;
  inset: 14% 0 17% 0;
  transform: rotate(10deg);
}

.signal-lines i {
  position: absolute;
  right: 5%;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  transform-origin: left;
}

.signal-lines i:nth-child(1) { top: 7%; background: rgba(217, 173, 58, .72); }
.signal-lines i:nth-child(2) { top: 22%; }
.signal-lines i:nth-child(3) { top: 37%; }
.signal-lines i:nth-child(4) { top: 52%; background: rgba(217, 173, 58, .72); }
.signal-lines i:nth-child(5) { top: 67%; }
.signal-lines i:nth-child(6) { top: 82%; }
.signal-lines i:nth-child(7) { top: 97%; background: rgba(217, 173, 58, .72); }

.signal-status {
  position: absolute;
  right: 18%;
  bottom: 13%;
  color: #58d798;
}

.signal-status span {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  display: inline-block;
  border-radius: 50%;
  background: currentColor;
}

.hero-record {
  grid-column: 1 / -1;
  grid-row: 2;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #0d2238;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 18px;
  overflow: hidden;
}

.record-step {
  min-width: 0;
  padding: 25px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .07);
  transition: background .25s ease, transform .25s ease;
}

.record-step:first-of-type {
  border-left: 0;
}

.record-step:hover {
  background: #122c47;
  transform: translateY(-4px);
}

.record-step b {
  color: var(--yellow);
  font-size: 13px;
}

.record-step:first-of-type b {
  color: #c45d56;
}

.record-step span {
  color: white;
  font-size: 18px;
}

.record-step span small {
  margin-top: 7px;
  color: #91a7b9;
}

.story {
  padding: clamp(54px, 5vw, 84px) 4.2vw;
  background: #edf3f6;
}

.story-text h2 {
  max-width: 1400px;
  font-size: clamp(64px, 7vw, 118px);
  line-height: .88;
  letter-spacing: -.04em;
}

.story-scenes {
  margin-top: 36px;
  gap: 18px;
}

.scene {
  padding: 30px;
  background: white;
  border-radius: 14px;
  border-top: 3px solid var(--blue);
  font-size: clamp(20px, 1.7vw, 29px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.scene:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(7, 20, 38, .12);
}

.story-answer {
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: white;
}

.story-answer .mono {
  color: var(--yellow);
}

.time-strip {
  background: #0b1d31;
}

.moment {
  min-height: 156px;
  border-left-color: rgba(255, 255, 255, .1);
}

.firm {
  padding: clamp(54px, 5vw, 84px) 4.2vw;
  background: #dfe9ef;
}

.firm-head {
  grid-template-columns: 240px 1fr;
  border-bottom-color: var(--blue);
}

.firm-head h2 {
  font-size: clamp(68px, 7.5vw, 128px);
  letter-spacing: -.04em;
}

.firm-lines {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border: 0;
}

.firm-line {
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background: white;
  border: 0;
  border-radius: 12px;
}

.firm-line:hover {
  padding-left: 24px;
  background: var(--navy);
  color: white;
  transform: translateY(-6px);
}

.firm-line:hover p {
  color: #c4d2dc;
}

.call-time {
  border-radius: 12px;
}

.offers {
  background: #edf3f6;
}

.offer-name,
.offer-copy {
  min-height: 350px;
}

.offer-copy {
  background: white;
}

.page-hero {
  min-height: 420px;
  padding: 56px 4.2vw;
  background:
    radial-gradient(circle at var(--pointer-x, 80%) var(--pointer-y, 45%), rgba(36, 77, 114, .9), transparent 28%),
    linear-gradient(125deg, #071426, #0d2945);
}

.page-hero::before {
  background:
    repeating-linear-gradient(10deg, transparent 0 75px, rgba(255, 255, 255, .08) 76px, transparent 77px 120px),
    radial-gradient(circle at 82% 50%, transparent 0 115px, rgba(152, 47, 42, .65) 116px 118px, transparent 119px 220px, rgba(217, 173, 58, .45) 221px 223px, transparent 224px);
  animation: fieldShift 9s ease-in-out infinite alternate;
}

.page-hero::after {
  width: 420px;
  height: 420px;
  right: 6vw;
  bottom: -210px;
  border-color: rgba(217, 173, 58, .3);
}

.page-hero h1 {
  font-size: clamp(76px, 8vw, 148px);
  font-weight: 600;
  letter-spacing: -.04em;
}

.page-body,
.team-list {
  padding: 20px 4.2vw 34px;
  background: #e8f0f4;
}

.page-section {
  margin: 16px 0 0;
  padding: 34px 38px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  border: 1px solid rgba(23, 54, 83, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 38px rgba(7, 20, 38, .045);
}

.page-section:first-child {
  padding-top: 34px;
}

.page-section:hover {
  padding-left: 38px;
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(7, 20, 38, .09);
}

.page-section::after {
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: auto;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  transform: scaleX(0);
  transform-origin: left;
}

.page-section:hover::after,
.page-section.in-view::after {
  transform: scaleX(1);
}

.page-section h2 {
  font-size: clamp(48px, 5vw, 88px);
  line-height: .9;
  letter-spacing: -.035em;
}

.page-section p,
.page-section ul {
  color: var(--text);
  font-size: clamp(18px, 1.25vw, 22px);
}

.team-member {
  margin-top: 14px;
  padding: 30px;
  border: 0;
  border-radius: 14px;
  background: white;
}

.team-member:hover {
  transform: translateX(8px);
  box-shadow: 0 18px 42px rgba(7, 20, 38, .1);
}

.intelligence-page .intelligence-hero,
.intelligence-engine {
  background:
    radial-gradient(circle at 80% 45%, rgba(36, 77, 114, .78), transparent 32%),
    linear-gradient(125deg, #071426, #102f4d);
}

.intelligence-engine {
  padding: 58px 4.2vw;
}

.score-suite {
  padding: 58px 4.2vw;
  background: #dfe9ef;
}

.score-card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 20, 38, .06);
}

.closing {
  padding: 56px 4.2vw;
  background:
    radial-gradient(circle at 82% 46%, rgba(36, 77, 114, .76), transparent 28%),
    var(--navy);
}

.closing::before {
  background:
    repeating-linear-gradient(10deg, transparent 0 82px, rgba(255, 255, 255, .06) 83px, transparent 84px 128px),
    radial-gradient(circle at 82% 50%, transparent 0 100px, rgba(217, 173, 58, .36) 101px 103px, transparent 104px 200px, rgba(255, 255, 255, .1) 201px 202px, transparent 203px);
}

footer {
  background: #030b14;
}

@keyframes orbitBreathe {
  from { transform: translate(-50%, -50%) scale(.97) rotate(0deg); opacity: .7; }
  to { transform: translate(-50%, -50%) scale(1.04) rotate(5deg); opacity: 1; }
}

@keyframes signalPulse {
  0% { box-shadow: 0 0 0 0 rgba(88, 215, 152, .6); }
  80%, 100% { box-shadow: 0 0 0 28px rgba(88, 215, 152, 0); }
}

@keyframes fieldShift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, 1%, 0) scale(1.04); }
}

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(560px, auto) auto;
  }

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

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

@media (max-width: 900px) {
  .site-nav {
    height: 76px;
  }

  .page-progress {
    top: 74px;
  }

  .home-hero {
    padding-right: 6vw;
    padding-left: 6vw;
    grid-template-columns: 1fr;
    grid-template-rows: auto 360px auto;
  }

  .hero-story {
    padding-bottom: 0;
  }

  .signal-field {
    min-height: 360px;
  }

  .orbit-wide { width: 460px; }
  .orbit-mid { width: 340px; }
  .orbit-core { width: 190px; }

  .hero-record {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .record-step:nth-of-type(3) {
    border-left: 0;
  }

  .firm-lines,
  .page-section {
    grid-template-columns: 1fr;
  }

  .page-section {
    gap: 10px;
  }
}

@media (max-width: 620px) {
  .site-nav {
    height: 70px;
  }

  .page-progress {
    top: 68px;
  }

  .home-hero {
    min-height: auto;
    grid-template-rows: auto 290px auto;
    padding-bottom: 24px;
  }

  .home-hero h1 {
    font-size: 66px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .signal-field {
    min-height: 290px;
  }

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

  .record-step,
  .record-step:nth-of-type(3) {
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-left: 0;
  }

  .record-step:first-of-type {
    border-top: 0;
  }

  .story,
  .firm,
  .page-hero,
  .page-body,
  .team-list,
  .intelligence-page .intelligence-hero,
  .intelligence-engine,
  .score-suite,
  .closing {
    padding-right: 6vw;
    padding-left: 6vw;
  }

  .page-section {
    padding: 26px 22px;
  }

  .page-section:first-child {
    padding-top: 26px;
  }

  .page-section:hover {
    padding-left: 22px;
  }

  .firm-lines {
    grid-template-columns: 1fr;
  }
}

/* Continuous navy field and service-only accent colors */

:root {
  --ctu-yellow: #ffc21c;
  --stat-red: #a8332c;
  --signal-blue: #6fa8d2;
  --signal-green: #58d798;
  --navy-panel: #0d2238;
  --navy-panel-hover: #122c47;
}

body,
main,
.story,
.firm,
.offers,
.page-body,
.team-list,
.score-suite,
.intelligence-page .page-body,
.stat-page .page-body,
.ctu-page .page-body {
  background: var(--navy);
  color: white;
}

.site-nav::after {
  background: linear-gradient(90deg, #244d72, #6fa8d2, #244d72);
}

.page-progress {
  background: linear-gradient(90deg, var(--blue-light), var(--signal-blue), var(--signal-green));
}

.kicker,
.firm-head .mono,
.story-label,
.page-section > .mono,
.intelligence-page .intelligence-hero .kicker,
.intelligence-page .page-section > .mono,
.score-suite-head > .mono,
.patent-notice {
  color: var(--signal-blue);
}

.button {
  border-color: #dce8f1;
  background: #dce8f1;
  color: var(--navy);
}

.button:hover {
  background: white;
}

.button.secondary {
  border-color: rgba(220, 232, 241, .4);
}

.signal-lines i:nth-child(1),
.signal-lines i:nth-child(4),
.signal-lines i:nth-child(7) {
  background: rgba(111, 168, 210, .7);
}

.orbit-wide {
  border-color: rgba(111, 168, 210, .44);
}

.orbit-core {
  border-color: rgba(88, 215, 152, .7);
}

.record-step b,
.record-step:first-of-type b {
  color: var(--signal-blue);
}

.story {
  padding-top: clamp(42px, 4vw, 66px);
  padding-bottom: clamp(42px, 4vw, 66px);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.scene {
  padding: 26px;
  background: var(--navy-panel);
  border-top-color: var(--signal-blue);
  color: #bfd0dd;
}

.scene strong {
  color: white;
}

.story-answer {
  padding: 24px 28px;
  background: var(--navy-panel-hover);
}

.story-answer .mono {
  color: var(--signal-blue);
}

.time-strip,
.moment:hover {
  background: var(--navy-panel);
}

.firm {
  padding-top: clamp(42px, 4vw, 66px);
  padding-bottom: clamp(42px, 4vw, 66px);
}

.firm-head {
  padding-bottom: 20px;
  border-bottom-color: var(--signal-blue);
}

.firm-intro {
  padding-top: 22px;
  padding-bottom: 26px;
}

.firm-line {
  min-height: 210px;
  padding: 22px;
  background: var(--navy-panel);
  color: white;
}

.firm-line p,
.firm-intro p {
  color: #bfd0dd;
}

.firm-line:hover {
  padding-left: 22px;
  background: var(--navy-panel-hover);
}

.call-time {
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(111, 168, 210, .25);
  background: var(--navy-panel-hover);
  color: white;
}

.call-time .mono {
  color: var(--signal-blue);
}

.firm > .text-link {
  color: #d6e4ed;
}

.offer-name,
.offer-copy {
  min-height: 320px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.offer-copy {
  background: var(--navy-panel);
  color: white;
}

.offer-copy p {
  color: #bfd0dd;
}

.offer.stat .offer-name {
  background: var(--stat-red);
}

.offer.ctu .offer-name {
  background: var(--ctu-yellow);
}

.nav-links a[href="stat.html"] {
  color: #e8837b;
}

.nav-links a[href="ctu.html"] {
  color: var(--ctu-yellow);
}

.page-hero,
.intelligence-page .intelligence-hero,
.intelligence-engine,
.closing,
.intelligence-page .closing,
.stat-page .page-hero,
.stat-page .closing,
.ctu-page .page-hero,
.ctu-page .closing {
  background:
    radial-gradient(circle at var(--pointer-x, 80%) var(--pointer-y, 45%), rgba(36, 77, 114, .78), transparent 28%),
    var(--navy);
}

.page-hero {
  min-height: 350px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.page-hero::before,
.closing::before {
  background:
    repeating-linear-gradient(10deg, transparent 0 75px, rgba(111, 168, 210, .09) 76px, transparent 77px 120px),
    radial-gradient(circle at 82% 50%, transparent 0 115px, rgba(88, 215, 152, .24) 116px 118px, transparent 119px 220px, rgba(111, 168, 210, .28) 221px 223px, transparent 224px);
}

.page-hero::after {
  border-color: rgba(111, 168, 210, .3);
}

.page-body,
.team-list {
  padding-top: 10px;
  padding-bottom: 24px;
}

.page-section {
  margin-top: 10px;
  padding: 28px 32px;
  border-color: rgba(111, 168, 210, .15);
  background: var(--navy-panel);
  box-shadow: none;
}

.page-section:first-child {
  padding-top: 28px;
}

.page-section:hover {
  padding-left: 32px;
  background: var(--navy-panel-hover);
  box-shadow: none;
}

.page-section::after {
  background: linear-gradient(90deg, #244d72, var(--signal-blue));
}

.page-section p,
.page-section ul {
  color: #bfd0dd;
}

.team-member {
  margin-top: 10px;
  padding: 26px;
  background: var(--navy-panel);
  color: white;
}

.team-member:hover {
  background: var(--navy-panel-hover);
  box-shadow: none;
}

.team-number,
.team-name p,
.bio-soon {
  color: var(--signal-blue);
}

.team-bio {
  color: #bfd0dd;
}

.intelligence-page .intelligence-hero h1 span,
.intelligence-page .intelligence-opening > p {
  color: white;
}

.engine-copy > p {
  color: #bfd0dd;
}

.engine-copy .engine-live {
  border-left-color: var(--signal-blue);
  background: var(--navy-panel-hover);
}

.score-suite {
  padding-top: 44px;
  padding-bottom: 44px;
}

.score-suite-head > p,
.score-card p {
  color: #bfd0dd;
}

.score-card {
  min-height: 230px;
  background: var(--navy-panel);
  border: 1px solid rgba(111, 168, 210, .15);
  color: white;
  box-shadow: none;
}

.score-card h3 {
  color: white;
}

.score-card::after {
  background: linear-gradient(90deg, var(--blue-light), var(--signal-blue), var(--signal-green), var(--blue-light));
}

.score-index {
  color: #91a7b9;
}

.closing {
  padding-top: 44px;
  padding-bottom: 44px;
}

.closing p {
  color: #bfd0dd;
}

.stat-page .page-hero .kicker,
.stat-page .page-section > .mono {
  color: #e8837b;
}

.stat-page .page-hero h1 {
  color: #e8837b;
}

.stat-page .page-section::after {
  background: var(--stat-red);
}

.stat-page .closing .button {
  border-color: #e8837b;
  background: var(--stat-red);
  color: white;
}

.ctu-page .page-hero,
.ctu-page .page-hero h1,
.ctu-page .closing {
  color: white;
}

.ctu-page .page-hero .kicker,
.ctu-page .page-section > .mono,
.ctu-page .page-hero h1 {
  color: var(--ctu-yellow);
}

.ctu-page .page-hero p,
.ctu-page .closing p {
  color: #bfd0dd;
}

.ctu-page .page-section::after {
  background: var(--ctu-yellow);
}

.ctu-page .closing .button {
  border-color: var(--ctu-yellow);
  background: var(--ctu-yellow);
  color: var(--navy);
}

.stat-page .page-hero::before,
.stat-page .closing::before {
  background:
    repeating-linear-gradient(10deg, transparent 0 75px, rgba(168, 51, 44, .16) 76px, transparent 77px 120px),
    radial-gradient(circle at 82% 50%, transparent 0 115px, rgba(168, 51, 44, .55) 116px 118px, transparent 119px 220px, rgba(111, 168, 210, .2) 221px 223px, transparent 224px);
}

.ctu-page .page-hero::before,
.ctu-page .closing::before {
  background:
    repeating-linear-gradient(10deg, transparent 0 75px, rgba(255, 194, 28, .13) 76px, transparent 77px 120px),
    radial-gradient(circle at 82% 50%, transparent 0 115px, rgba(255, 194, 28, .52) 116px 118px, transparent 119px 220px, rgba(111, 168, 210, .2) 221px 223px, transparent 224px);
}

.contact-form label {
  color: white;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(111, 168, 210, .35);
  background: var(--navy-panel-hover);
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #91a7b9;
}

.confidentiality {
  background: var(--navy-panel-hover);
  border: 1px solid rgba(111, 168, 210, .2);
}

.strategies-contact,
.strategies-contact a {
  color: #bfd0dd;
}

footer {
  border-top: 1px solid rgba(111, 168, 210, .12);
  background: var(--navy);
}

@media (max-width: 620px) {
  .page-section,
  .page-section:first-child {
    padding: 24px 20px;
  }

  .page-section:hover {
    padding-left: 20px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline-color: var(--signal-blue);
}

.stat-page a:focus-visible,
.stat-page button:focus-visible,
.stat-page input:focus-visible,
.stat-page select:focus-visible,
.stat-page textarea:focus-visible {
  outline-color: #e8837b;
}

.ctu-page a:focus-visible,
.ctu-page button:focus-visible,
.ctu-page input:focus-visible,
.ctu-page select:focus-visible,
.ctu-page textarea:focus-visible {
  outline-color: var(--ctu-yellow);
}

.hero-record::after {
  background: linear-gradient(90deg, transparent, var(--signal-blue), transparent);
}

.moment time {
  color: var(--signal-blue);
}

.js .motion-item {
  opacity: 1;
  transform: none;
}

.page-hero + .page-body,
.page-hero + .team-list {
  border-top: 1px solid rgba(111, 168, 210, .12);
}

/* Short-copy density pass */

.scene {
  padding: 22px;
}

.story-answer {
  margin-top: 12px;
  padding: 20px 24px;
}

.moment {
  min-height: 118px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.firm-line {
  min-height: 165px;
}

.call-time {
  padding-top: 22px;
  padding-bottom: 22px;
}

.offer-name,
.offer-copy {
  min-height: 270px;
}

.page-hero {
  min-height: 300px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.page-section,
.page-section:first-child {
  padding-top: 22px;
  padding-bottom: 22px;
}

.team-member {
  padding-top: 20px;
  padding-bottom: 20px;
}

.intelligence-engine,
.score-suite {
  padding-top: 36px;
  padding-bottom: 36px;
}

.score-card {
  min-height: 190px;
}

.closing {
  padding-top: 36px;
  padding-bottom: 36px;
}

/* Homepage organization pass */

.story {
  padding: 32px 4.2vw;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.story-label {
  margin: 10px 0 0;
}

.story-text h2 {
  max-width: 1120px;
  font-size: clamp(54px, 5vw, 82px);
  line-height: .92;
}

.story-scenes {
  margin-top: 22px;
  gap: 12px;
}

.scene {
  min-height: 0;
  padding: 20px 22px;
  font-size: clamp(18px, 1.3vw, 23px);
}

.story-answer {
  grid-template-columns: 220px 1fr;
}

.time-strip {
  padding: 0 4.2vw;
  background: var(--navy);
}

.moment {
  min-height: 92px;
  padding: 20px 24px;
  background: var(--navy-panel);
}

.moment time {
  margin-bottom: 8px;
}

.firm {
  padding: 32px 4.2vw 24px;
}

.firm-head {
  padding: 0;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  align-items: end;
  border: 0;
}

.firm-head > .mono {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--signal-blue);
}

.firm-title {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--signal-blue);
}

.firm-title h2 {
  margin: 0;
  font-size: clamp(62px, 6vw, 98px);
  line-height: .86;
}

.firm-title p {
  max-width: 1050px;
  margin: 12px 0 0;
  color: #bfd0dd;
  font-size: clamp(20px, 1.75vw, 30px);
  line-height: 1.25;
}

.firm-lines {
  margin-top: 16px;
  gap: 10px;
}

.firm-line {
  min-height: 138px;
  padding: 18px;
  gap: 16px;
}

.firm-line:hover {
  padding-left: 18px;
}

.firm-line h3 {
  font-size: 15px;
}

.firm-line p {
  font-size: 16px;
  line-height: 1.45;
}

.call-time {
  margin-top: 14px;
  padding: 20px 26px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
}

.call-time p {
  max-width: none;
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.1;
  white-space: nowrap;
}

.firm > .text-link {
  margin-top: 14px;
}

.offers {
  padding: 18px 4.2vw;
  gap: 14px;
  background: var(--navy);
}

.offer {
  grid-template-columns: minmax(175px, .36fr) minmax(0, .64fr);
  border: 1px solid rgba(111, 168, 210, .14);
  border-radius: 14px;
  overflow: hidden;
}

.offer + .offer {
  border-left: 1px solid rgba(111, 168, 210, .14);
}

.offer-name,
.offer-copy {
  min-height: 225px;
  padding: 26px;
}

.offer-name {
  gap: 24px;
}

.offer-name h2 {
  font-size: clamp(62px, 5vw, 86px);
}

.offer-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(32px, 2.7vw, 46px);
}

.offer-copy p {
  font-size: 16px;
}

.offer-copy .text-link {
  margin-top: 14px;
}

.closing {
  padding: 30px 4.2vw;
}

.closing h2 {
  font-size: clamp(58px, 5.4vw, 88px);
}

.closing p {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .call-time p {
    white-space: normal;
  }

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

@media (max-width: 900px) {
  .story,
  .firm-head,
  .story-answer,
  .call-time {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 14px;
  }

  .firm-head {
    gap: 0;
  }

  .firm-head > .mono {
    padding-bottom: 8px;
    border-bottom: 0;
  }

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

@media (max-width: 620px) {
  .story-scenes,
  .firm-lines,
  .offer {
    grid-template-columns: 1fr;
  }

  .offer-name,
  .offer-copy {
    min-height: 0;
  }

  .call-time p {
    font-size: 23px;
  }
}

/* Final homepage hierarchy */

.firm {
  padding-top: 26px;
  padding-bottom: 20px;
}

.firm-head {
  grid-template-columns: 180px minmax(300px, .72fr) minmax(420px, 1.28fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--signal-blue);
}

.firm-head > .mono {
  padding: 0;
  border: 0;
}

.firm-head > h2 {
  margin: 0;
  font-size: clamp(45px, 4vw, 66px);
  line-height: .9;
  letter-spacing: -.055em;
}

.firm-head > p {
  max-width: 820px;
  margin: 0;
  color: #bfd0dd;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.3;
}

.firm-lines {
  counter-reset: capability;
  margin-top: 12px;
  gap: 0;
  border: 1px solid rgba(111, 168, 210, .15);
  border-radius: 13px;
  overflow: hidden;
}

.firm-line {
  counter-increment: capability;
  position: relative;
  min-height: 118px;
  padding: 17px 18px 16px 48px;
  border: 0;
  border-radius: 0;
  background: rgba(15, 41, 65, .74);
}

.firm-line + .firm-line {
  border-left: 1px solid rgba(111, 168, 210, .13);
}

.firm-line::before {
  content: "0" counter(capability);
  position: absolute;
  top: 18px;
  left: 17px;
  color: var(--signal-blue);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
}

.firm-line:hover {
  padding-left: 48px;
  background: rgba(20, 52, 80, .96);
}

.firm-line h3 {
  font-size: 14px;
}

.firm-line p {
  font-size: 15px;
  line-height: 1.4;
}

.call-time {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 0;
  padding: 17px 22px;
  border-radius: 12px;
}

.call-time p {
  font-size: clamp(22px, 1.65vw, 29px);
  white-space: nowrap;
}

.firm > .text-link {
  margin-top: 11px;
}

.offers {
  padding-top: 12px;
  padding-bottom: 12px;
}

.offer-name,
.offer-copy {
  min-height: 205px;
  padding: 23px;
}

.closing {
  min-height: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}

.closing h2 {
  font-size: clamp(50px, 4.6vw, 76px);
}

@media (max-width: 1200px) {
  .firm-head {
    grid-template-columns: 160px minmax(280px, .8fr) minmax(360px, 1.2fr);
  }

  .call-time {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .call-time p {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .firm-head {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

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

  .firm-line + .firm-line {
    border-left: 0;
  }

  .call-time {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .firm-lines {
    grid-template-columns: 1fr;
  }
}

/* Wide homepage alignment */

@media (min-width: 901px) {
  .firm-head > h2 {
    white-space: nowrap;
  }
}

@media (max-width: 900px) and (min-width: 621px) {
  .firm-line:last-child {
    grid-column: 1 / -1;
  }
}

/* Site-wide readable type floor */

:root {
  --copy-floor: clamp(20px, 1.15vw, 22px);
  --copy-lead: clamp(22px, 1.4vw, 27px);
  --copy-emphasis: clamp(25px, 1.75vw, 32px);
}

body {
  font-size: var(--copy-floor);
  line-height: 1.5;
}

p,
li,
label,
input,
select,
textarea,
button,
time,
small,
footer,
.mono,
.nav-links,
.nav-links a,
.button,
.text-link,
.record-step b,
.record-step span,
.record-step span small,
.moment p,
.moment time,
.firm-line h3,
.firm-line p,
.score-index,
.score-state,
.bio-soon,
.patent-notice,
.intelligence-footer {
  font-size: var(--copy-floor);
}

.hero-copy {
  font-size: var(--copy-floor);
  line-height: 1.5;
}

.page-hero p,
.team-intro,
.engine-copy p,
.score-suite-head > p,
.page-section p,
.page-section li,
.team-bio,
.score-card p,
.offer-copy p,
.closing p,
.confidentiality p {
  font-size: var(--copy-lead);
  line-height: 1.45;
}

.scene,
.story-answer p,
.firm-head > p,
.call-time p,
.offer-copy h3 {
  font-size: var(--copy-emphasis);
}

.firm-line h3,
.team-name h2,
.score-card h3 {
  line-height: 1.08;
}

.site-nav {
  min-height: 96px;
  height: auto;
}

.page-progress {
  top: 94px;
}

.nav-links {
  gap: clamp(18px, 1.55vw, 28px);
}

.nav-contact,
.button {
  min-height: 58px;
  padding-right: 24px;
  padding-left: 24px;
}

.record-step,
.moment,
.firm-line,
.offer-name,
.offer-copy,
.score-card {
  height: auto;
}

.firm-line {
  min-height: 150px;
  padding-left: 58px;
}

.firm-line:hover {
  padding-left: 58px;
}

.firm-line::before {
  top: 19px;
  left: 18px;
  font-size: var(--copy-floor);
}

.call-time {
  grid-template-columns: 240px minmax(0, 1fr);
}

.call-time p {
  white-space: nowrap;
}

.offer-copy h3 {
  line-height: 1.03;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 58px;
  line-height: 1.35;
}

.contact-form textarea {
  min-height: 170px;
}

.strategies-contact {
  font-size: var(--copy-lead) !important;
}

@media (max-width: 1280px) {
  .call-time {
    grid-template-columns: 210px minmax(0, 1fr);
  }

  .call-time p {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .site-nav {
    min-height: 82px;
  }

  .page-progress {
    top: 80px;
  }

  .call-time {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --copy-floor: 20px;
    --copy-lead: 22px;
    --copy-emphasis: 25px;
  }

  .site-nav {
    min-height: 78px;
  }

  .page-progress {
    top: 76px;
  }

  .nav-contact {
    min-height: 52px;
    padding-right: 17px;
    padding-left: 17px;
    font-size: var(--copy-floor);
  }
}

/* Final contact form alignment */

.netlify-form-definitions,
.bot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.contact-form,
.confidentiality,
.strategies-contact {
  grid-column: 2;
  width: 100%;
  max-width: none;
  justify-self: center;
}

.contact-form > label:first-of-type,
.contact-form > label:last-of-type,
.contact-form > .button,
.form-status {
  grid-column: 1 / -1;
}

.confidentiality {
  margin-top: 24px;
  text-align: center;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  text-align: center;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: .65;
}

@media (max-width: 900px) {
  .contact-form,
  .confidentiality,
  .strategies-contact {
    grid-column: 1;
  }
}
