:root {
  --bg: #f8fbff;
  --surface: #ffffff;
  --surface-strong: #eef6ff;
  --surface-tint: #f2f7ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(37, 99, 235, 0.16);
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-soft: rgba(37, 99, 235, 0.08);
  --green: #2563eb;
  --green-dark: #1d4ed8;
  --gold: #c99d66;
  --shadow: 0 24px 70px rgba(37, 99, 235, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(96, 165, 250, 0.16), rgba(248, 251, 255, 0) 42rem),
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-repeat: no-repeat, repeat, repeat;
  background-size: 100% 720px, 60px 60px, 60px 60px;
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.button,
.filter-button {
  font-family: Syne, Inter, Arial, Helvetica, sans-serif;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skip-link {
  background: var(--blue);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  z-index: 20;
}

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

.site-header {
  align-items: center;
  background: rgba(248, 251, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1rem, 3vw, 2.25rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 0.7rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.1rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-toggle {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: none;
  flex-direction: column;
  gap: 0.24rem;
  height: 2.55rem;
  justify-content: center;
  width: 2.55rem;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  width: 1.1rem;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2rem);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  min-height: calc(100vh - 72px);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  padding-top: clamp(4rem, 7vw, 6rem);
}

.eyebrow {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--dark);
  font-size: 5.25rem;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 1.4rem;
  max-width: 11ch;
}

.hero-lede {
  color: var(--muted);
  font-size: 1.22rem;
  max-width: 42rem;
}

.hero-affiliation {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 9rem minmax(0, 1fr);
  margin-top: 1.3rem;
  max-width: 30rem;
  padding: 0.8rem;
}

.hero-affiliation img {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
  height: auto;
  padding: 0.25rem;
  width: 100%;
}

.hero-affiliation div {
  display: grid;
  gap: 0.1rem;
}

.hero-affiliation strong {
  color: var(--dark);
  font-family: Syne, Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.hero-affiliation span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 3rem;
  padding: 0.85rem 1.05rem;
  text-align: center;
  white-space: normal;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--blue-soft);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}

.hero-media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  position: relative;
}

.hero-media img {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.profile-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  bottom: 1.8rem;
  color: var(--dark);
  display: grid;
  gap: 0.15rem;
  left: -1.1rem;
  padding: 1rem;
  position: absolute;
  width: min(18rem, calc(100% - 2rem));
}

.profile-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-band {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--dark);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.metric-band div {
  border-right: 1px solid var(--line);
  min-height: 8.4rem;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  color: var(--blue);
  display: block;
  font-size: 2.55rem;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.metric-band span {
  color: var(--muted);
  display: block;
  max-width: 16rem;
}

.client-strip {
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line);
}

.client-strip-inner {
  align-items: center;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 1.35rem clamp(1rem, 3vw, 2rem);
}

.client-strip p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.client-logo-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr));
}

.client-logo-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  min-height: 7.3rem;
  padding: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.client-logo-card:hover {
  border-color: rgba(96, 165, 250, 0.48);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

.client-logo-card img {
  height: 3.2rem;
  object-fit: contain;
  width: min(8.5rem, 100%);
}

.client-logo-card--text {
  background: var(--surface);
}

.client-logo-card--dark {
  background: var(--dark);
}

.client-logo-card--dark figcaption {
  color: #fff;
}

.client-initials {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  height: 3.2rem;
  justify-content: center;
  width: 3.2rem;
}

.client-logo-card figcaption {
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-section h2,
.section-heading h2,
.training-layout h2,
.contact-layout h2 {
  color: var(--dark);
  font-size: 3.25rem;
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 48rem;
}

.row-heading {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  max-width: none;
}

.row-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.service-grid,
.case-grid,
.proof-layout,
.link-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.case-card,
.proof-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.055);
  padding: clamp(1.15rem, 2vw, 1.45rem);
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover,
.case-card:hover,
.proof-panel:hover {
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.11);
  transform: translateY(-3px);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
}

.service-icon {
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  height: 2.6rem;
  justify-content: center;
  margin-bottom: 3rem;
  width: 2.6rem;
}

.service-card h3,
.case-card h3,
.proof-panel h3 {
  color: var(--dark);
  font-size: 1.3rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.service-card p,
.case-card p,
.proof-panel p {
  color: var(--muted);
}

.clean-list,
.proof-list {
  color: var(--muted);
  margin-bottom: 0;
  margin-top: auto;
  padding-left: 1.1rem;
}

.clean-list li,
.proof-list li {
  margin-top: 0.45rem;
}

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

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.filter-button {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

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

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 32rem;
}

.case-card.is-hidden {
  display: none;
}

.case-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.case-topline span,
.case-topline small {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-topline small {
  color: var(--muted);
}

.case-client {
  margin-bottom: 1.25rem;
}

dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

dt {
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  color: var(--muted);
  margin: 0.18rem 0 0;
}

.text-link {
  border-bottom: 2px solid var(--blue-light);
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  margin-top: auto;
  padding-top: 1.4rem;
  width: fit-content;
}

.training-band {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(96, 165, 250, 0.04)),
    rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--dark);
}

.training-band .eyebrow {
  color: var(--blue);
}

.training-layout {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.training-layout h2 {
  color: var(--dark);
}

.training-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag-list span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 0.45rem 0.65rem;
}

.training-clients {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.35rem;
}

.training-clients h3 {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}

.training-clients p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 0.9rem;
}

.training-client-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.training-client-grid span {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.52rem 0.72rem;
}

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

figure {
  margin: 0;
}

.photo-grid img,
.photo-grid video {
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(37, 99, 235, 0.1);
  object-fit: cover;
  width: 100%;
}

.video-link-card {
  align-content: center;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(37, 99, 235, 0.1);
  color: #fff;
  display: grid;
  gap: 0.45rem;
  justify-items: center;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}

.video-link-card span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.45rem 0.7rem;
  text-transform: uppercase;
}

.video-link-card strong {
  font-family: Syne, Inter, Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.video-link-card:hover,
.video-link-card:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.55rem;
}

.proof-layout {
  grid-template-columns: 1fr 1fr;
}

.proof-panel:first-child {
  grid-row: span 2;
}

.proof-list {
  margin-top: 0;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.logo-row span {
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark);
  font-weight: 800;
  padding: 0.62rem 0.75rem;
}

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

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

.link-grid a {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.055);
  display: grid;
  gap: 0.3rem;
  min-height: 8.5rem;
  padding: 1.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.link-grid a:hover,
.link-grid a:focus-visible {
  border-color: rgba(96, 165, 250, 0.46);
  box-shadow: 0 24px 58px rgba(37, 99, 235, 0.11);
  transform: translateY(-2px);
}

.link-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.link-grid strong {
  align-self: end;
  color: var(--dark);
  font-size: 1.3rem;
  line-height: 1.15;
}

.contact-section {
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--line);
}

.contact-layout {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.contact-layout p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-actions .button {
  width: 100%;
}

.chatgpt-widget {
  bottom: 1.25rem;
  color: var(--dark);
  left: 1.25rem;
  position: fixed;
  z-index: 15;
}

.chatgpt-launcher {
  align-items: center;
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.26);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-family: Syne, Inter, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  height: 3.4rem;
  justify-content: center;
  width: 3.4rem;
}

.chatgpt-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  bottom: calc(100% + 0.75rem);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  display: grid;
  gap: 0.75rem;
  left: 0;
  max-width: min(21rem, calc(100vw - 2.5rem));
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  transform: translateY(0.5rem);
  transition: opacity 160ms ease, transform 160ms ease;
  width: 21rem;
}

.chatgpt-widget:hover .chatgpt-panel,
.chatgpt-widget:focus-within .chatgpt-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chatgpt-widget:hover .chatgpt-launcher,
.chatgpt-widget:focus-within .chatgpt-launcher {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.chatgpt-kicker {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 0.1rem;
  text-transform: uppercase;
}

.chatgpt-widget h2 {
  font-size: 1.15rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.chatgpt-prompt {
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.45;
  max-height: 7.2rem;
  min-height: 5.4rem;
  padding: 0.7rem;
  resize: none;
  width: 100%;
}

.chatgpt-actions {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr 1fr;
}

.chatgpt-actions .button {
  font-size: 0.78rem;
  min-height: 2.45rem;
  padding: 0.65rem 0.75rem;
}

.chatgpt-status {
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 0;
  min-height: 1.2rem;
}

.site-footer {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  color: var(--dark);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.6rem clamp(1rem, 3vw, 2.25rem);
}

.site-footer div {
  display: grid;
  gap: 0.15rem;
}

.site-footer span,
.site-footer a {
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .row-heading,
  .training-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 4rem;
    max-width: 13ch;
  }

  .intro-section h2,
  .section-heading h2,
  .training-layout h2,
  .contact-layout h2 {
    font-size: 2.75rem;
  }

  .metric-band strong {
    font-size: 2.25rem;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: var(--surface);
    border: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 1rem;
    padding: 1rem;
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.4rem);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.45rem 0;
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-affiliation {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }

  .intro-section h2,
  .section-heading h2,
  .training-layout h2,
  .contact-layout h2 {
    font-size: 2.2rem;
  }

  .metric-band strong {
    font-size: 2rem;
  }

  .profile-card {
    bottom: 1rem;
    left: 1rem;
  }

  .metric-band {
    grid-template-columns: 1fr 1fr;
  }

  .client-strip-inner {
    grid-template-columns: 1fr;
  }

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

  .metric-band div {
    border-bottom: 1px solid var(--line);
    min-height: 7rem;
  }

  .metric-band div:nth-child(2n) {
    border-right: 0;
  }

  .service-grid,
  .case-grid,
  .proof-layout,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .case-card {
    min-height: auto;
  }

  .proof-panel:first-child {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .chatgpt-widget {
    bottom: 1rem;
    left: 1rem;
  }

  .chatgpt-launcher {
    height: 3rem;
    width: 3rem;
  }

  .chatgpt-panel {
    max-width: calc(100vw - 2rem);
    width: calc(100vw - 2rem);
  }

  .chatgpt-prompt {
    max-height: 6rem;
    min-height: 4.4rem;
  }
}

@media (max-width: 460px) {
  .section-shell {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero-actions .button,
  .filters .filter-button {
    width: 100%;
  }

  .metric-band {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .metric-band div {
    border-right: 0;
  }

  .chatgpt-actions {
    grid-template-columns: 1fr;
  }
}
