:root {
  --bg: #f2f2f2;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #17181c;
  --muted: #5e6372;
  --line: rgba(23, 24, 28, 0.12);
  --blue: #4169e1;
  --pink: #ff69b4;
  --gradient: linear-gradient(135deg, #4169e1 0%, #ff69b4 100%);
  --shadow: 0 24px 60px rgba(23, 24, 28, 0.12);
  --radius-lg: 30px;
  --radius-md: 18px;
  --site-width: min(1180px, calc(100vw - 48px));
  --transition: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background:
    radial-gradient(circle at top left, rgba(65, 105, 225, 0.08), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 105, 180, 0.1), transparent 28%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 24px 0;
}

.solid-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.nav-shell {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 20px 50px rgba(10, 14, 28, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: clamp(82px, 9vw, 120px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  order: 2;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  order: 3;
  flex-shrink: 0;
}

.nav-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
  color: rgba(23, 24, 28, 0.74);
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient);
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta,
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--gradient);
  color: white;
  box-shadow: 0 12px 28px rgba(65, 105, 225, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition),
    color var(--transition);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active,
.nav-cta:hover,
.nav-cta.is-active {
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(65, 105, 225, 0.24);
  filter: saturate(1.05);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(23, 24, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(10, 14, 28, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--transition),
    width var(--transition),
    opacity var(--transition),
    background var(--transition);
}

.nav-toggle span:nth-child(1) {
  width: 22px;
}

.nav-toggle span:nth-child(2) {
  width: 14px;
}

.nav-toggle span:nth-child(3) {
  width: 18px;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.menu-open .nav-toggle span:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

body[data-page="home"] .brand,
body[data-page="home"] .site-nav a {
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="home"] .nav-shell {
  background: rgba(12, 18, 32, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 56px rgba(4, 8, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.is-active {
  color: white;
}

body[data-page="home"] .site-nav .nav-cta,
body[data-page="home"] .site-nav .nav-cta:hover,
body[data-page="home"] .site-nav .nav-cta.is-active,
body[data-page="home"] .nav-cta,
body[data-page="home"] .nav-cta:hover,
body[data-page="home"] .nav-cta.is-active {
  color: white;
}

body[data-page="home"] .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

body[data-page="home"] .nav-toggle span {
  background: white;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 124px 24px 56px;
  overflow: clip;
}

.hero-home {
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, calc((100% + 220px) * 1.7778));
  height: calc(100% + 220px);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: saturate(0.9) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 24, 0.28) 0%, rgba(8, 12, 24, 0.46) 32%, rgba(8, 12, 24, 0.64) 70%, rgba(8, 12, 24, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 12, 24, 0.54) 0%, rgba(8, 12, 24, 0.28) 46%, rgba(8, 12, 24, 0.2) 100%);
}

.hero-ui-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(8, 12, 24, 0.72) 0, rgba(8, 12, 24, 0.62) 54px, rgba(8, 12, 24, 0) 132px);
}

.hero-content,
.editorial-hero,
.section,
.contact-layout,
.site-footer,
.not-found-page {
  width: var(--site-width);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: clamp(18px, 4vh, 42px);
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6.4vw, 5rem);
  max-width: 12ch;
  line-height: 1.02;
}

body[data-page="home"] .hero-content,
body[data-page="home"] .hero-content h1,
body[data-page="home"] .hero-content h1 span,
body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-content .eyebrow {
  color: white;
}

body[data-page="home"] .hero-content .eyebrow,
body[data-page="home"] .hero-copy,
body[data-page="home"] .hero-content h1 span {
  color: rgba(255, 255, 255, 0.82);
}

body[data-page="home"] .hero-content h1,
body[data-page="home"] .hero-copy {
  text-shadow: 0 10px 28px rgba(8, 12, 24, 0.34);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(23, 24, 28, 0.56);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(4rem, 10vw, 7.6rem);
  max-width: 11ch;
}

h1 span {
  display: block;
  color: rgba(23, 24, 28, 0.7);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero-copy,
.section-lead,
.story-copy p,
.editorial-block p,
.contact-copy p,
.prop-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
}

.solution-engine {
  margin-top: 34px;
}

.solution-form,
.contact-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.solution-form {
  width: 100%;
  max-width: 780px;
  transition:
    border-radius var(--transition),
    padding var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

body[data-page="home"] .solution-form {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.68);
}

.solution-form.is-expanded {
  padding: 20px;
  border-radius: 34px;
  transform: translateY(-4px);
}

.search-row,
.field input,
.field textarea {
  width: 100%;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-row input,
.field input,
.field textarea {
  min-width: 0;
  border: 1px solid rgba(23, 24, 28, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 18px 20px;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.search-row input {
  font-size: 1.04rem;
  min-height: 68px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.search-row input:focus,
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(65, 105, 225, 0.42);
  box-shadow: 0 0 0 6px rgba(65, 105, 225, 0.08);
}

.expanded-fields {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition:
    grid-template-rows var(--transition),
    opacity var(--transition),
    margin-top var(--transition);
}

.solution-form.is-expanded .expanded-fields {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 18px;
}

.expanded-inner {
  display: grid;
  gap: 18px;
}

.expanded-fields > * {
  overflow: hidden;
}

.expanded-inner > .field-grid,
.expanded-inner > .field,
.expanded-inner > .form-actions {
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solution-form.is-expanded .expanded-inner > .field-grid,
.solution-form.is-expanded .expanded-inner > .field,
.solution-form.is-expanded .expanded-inner > .form-actions {
  transform: translateY(0);
  opacity: 1;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(23, 24, 28, 0.7);
}

.search-trigger,
.gradient-button,
.inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 68px;
  padding: 0 26px;
  border-radius: 999px;
  color: white;
  background: var(--gradient);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    filter var(--transition);
}

.gradient-button,
.inline-button {
  min-width: 190px;
}

.search-trigger::before,
.gradient-button::before,
.inline-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.search-trigger:hover,
.gradient-button:hover,
.inline-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(65, 105, 225, 0.22);
  filter: saturate(1.08);
}

.button-label {
  position: relative;
  z-index: 1;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  font-size: 0.95rem;
  color: rgba(23, 24, 28, 0.72);
}

.form-status.is-success {
  color: #1f6f47;
}

.form-status.is-error {
  color: #b3265b;
}

.section {
  padding: 56px 0;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}

.section-heading h2,
.story-panel h2,
.editorial-block h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.value-props {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.prop-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.56));
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.prop-card:hover {
  transform: translateY(-8px);
  border-color: rgba(65, 105, 225, 0.22);
  box-shadow: 0 24px 52px rgba(23, 24, 28, 0.09);
}

.prop-index {
  margin: 0 0 48px;
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(23, 24, 28, 0.44);
}

.prop-card h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.split-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
}

.split-story-image {
  position: relative;
  padding: 56px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 14, 24, 0.42) 0%, rgba(9, 14, 24, 0.62) 100%),
    url("/business-people-shaking-hands-agreement.jpg") center center / cover no-repeat;
  box-shadow: 0 26px 60px rgba(18, 22, 32, 0.14);
}

.split-story-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 14, 24, 0.74) 0%, rgba(9, 14, 24, 0.5) 44%, rgba(9, 14, 24, 0.3) 100%);
}

.split-story-image > * {
  position: relative;
  z-index: 1;
}

.split-story-image .eyebrow,
.split-story-image h2,
.split-story-image p,
.split-story-image .text-link {
  color: white;
}

.split-story-image .story-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.split-story-image .text-link::after {
  background: rgba(255, 255, 255, 0.85);
}

.story-copy {
  display: grid;
  gap: 18px;
}

.hero-content,
.solution-form,
.contact-card,
.prop-card,
.service-scenario,
.response-graph,
.editorial-block,
.mission-banner,
.image-hero,
.split-story-image,
.story-panel,
.story-copy,
.services-metrics-copy,
.contact-copy {
  min-width: 0;
  max-width: 100%;
}

.text-link {
  position: relative;
  width: fit-content;
  font-weight: 300;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--gradient);
}

.page-main {
  padding-top: 132px;
}

.editorial-hero {
  padding: 32px 0 56px;
}

.image-hero {
  position: relative;
  padding: 88px 40px 72px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 26px 62px rgba(14, 18, 28, 0.14);
  isolation: isolate;
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 24, 0.78) 0%, rgba(8, 12, 24, 0.56) 44%, rgba(8, 12, 24, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.28) 0%, rgba(8, 12, 24, 0.5) 100%);
  z-index: -1;
}

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

.image-hero .eyebrow,
.image-hero h1,
.image-hero .section-lead,
.image-hero .services-note {
  color: white;
}

.image-hero .eyebrow,
.image-hero .services-note {
  color: rgba(255, 255, 255, 0.76);
}

.image-hero .section-lead {
  color: rgba(255, 255, 255, 0.86);
}

.image-hero h1 {
  text-shadow: 0 10px 26px rgba(8, 12, 24, 0.24);
}

.about-top-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
    url("/female-office-executive-shaking-hand-new-male-team-member-employee.jpg") center 38% / cover no-repeat;
}

.services-top-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%),
    url("/Untitled%20(36).png") center 36% / cover no-repeat;
}

.editorial-hero h1 {
  max-width: 10ch;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.04;
}

.editorial-grid {
  width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-block {
  padding: 30px 0 36px;
  border-top: 1px solid var(--line);
}

.mission-banner {
  width: var(--site-width);
  margin: 42px auto 10px;
  padding: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 105, 180, 0.1));
}

.mission-banner p {
  margin: 0;
  max-width: 18ch;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.about-story {
  padding-top: 72px;
}

.contact-page {
  padding-bottom: 24px;
}

.services-page {
  padding-bottom: 28px;
}

.services-hero h1 {
  max-width: 9ch;
}

.services-note {
  margin: 18px 0 0;
  max-width: 42rem;
  font-size: 0.98rem;
  color: rgba(23, 24, 28, 0.66);
}

.services-grid {
  width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 34px;
}

.service-scenario {
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  box-shadow: 0 20px 48px rgba(20, 24, 34, 0.08);
}

.service-scenario h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.service-scenario p {
  margin: 0;
}

.service-scenario p + p {
  margin-top: 16px;
}

.scenario-index {
  margin: 0 0 34px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(23, 24, 28, 0.45);
}

.scenario-kicker {
  margin: -18px 0 16px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(65, 105, 225, 0.78);
}

.services-metrics {
  width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
  padding: 24px 0 60px;
}

.services-metrics-copy h2,
.services-cta h2 {
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  margin-bottom: 14px;
}

.response-graph {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(65, 105, 225, 0.1), rgba(255, 105, 180, 0.1));
  border: 1px solid rgba(65, 105, 225, 0.12);
}

.graph-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px 18px;
  align-items: center;
}

.graph-time {
  font-size: 0.84rem;
  color: rgba(23, 24, 28, 0.54);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.graph-step p {
  grid-column: 2;
  margin: 0;
  color: rgba(23, 24, 28, 0.72);
}

.graph-bar {
  height: 16px;
  border-radius: 999px;
  background: var(--gradient);
  box-shadow: 0 12px 28px rgba(65, 105, 225, 0.16);
}

.bar-one {
  width: 42%;
}

.bar-two {
  width: 74%;
}

.bar-three {
  width: 100%;
}

.services-cta {
  width: var(--site-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 72px;
}

.contact-hero h1 {
  max-width: 8ch;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  padding-bottom: 72px;
}

.contact-copy {
  padding-top: 28px;
}

.contact-card {
  background: var(--surface-strong);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(23, 24, 28, 0.08);
  font-size: 0.95rem;
  color: rgba(23, 24, 28, 0.6);
}

.footer-branding {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: clamp(72px, 8vw, 108px);
  height: auto;
}

.footer-copyright {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(23, 24, 28, 0.58);
  white-space: nowrap;
}

.site-footer p {
  margin: 0;
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 980px) {
  .intro-band,
  .value-props,
  .split-story,
  .editorial-grid,
  .contact-layout,
  .services-grid,
  .services-metrics {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(3.3rem, 14vw, 5.6rem);
  }

  .section-heading h2,
  .story-panel h2,
  .editorial-block h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 8vw, 3.8rem);
  }

  .editorial-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.9rem);
  }

  .image-hero {
    padding: 72px 28px 60px;
  }

  .services-metrics {
    gap: 20px;
  }

  .split-story-image {
    padding: 34px 24px;
  }
}

@media (max-width: 720px) {
  :root {
    --site-width: min(100vw - 32px, 1180px);
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    padding: 16px 16px 0;
  }

  .brand-logo {
    width: clamp(74px, 22vw, 104px);
  }

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

  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px 12px;
    border-radius: 30px;
    padding: 12px 14px;
  }

  .nav-controls {
    justify-self: end;
  }

  .nav-cta-primary {
    min-height: 44px;
    padding: 0 15px;
    font-size: 0.88rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    display: grid;
    gap: 8px;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      max-height var(--transition),
      opacity var(--transition),
      transform var(--transition),
      padding-top var(--transition);
  }

  .menu-open .site-nav {
    max-height: 220px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding-top: 8px;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 6px;
    color: var(--text);
    border-bottom: 1px solid rgba(23, 24, 28, 0.08);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    color: var(--blue);
  }

  body[data-page="home"] .site-nav a {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="home"] .site-nav a.is-active {
    color: white;
  }

  .footer-logo {
    width: clamp(68px, 18vw, 96px);
  }

  .footer-branding {
    flex-wrap: wrap;
  }

  .footer-copyright {
    white-space: normal;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 40px;
  }

  .search-row,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .hero-copy,
  .section-lead,
  .story-copy p,
  .editorial-block p,
  .contact-copy p,
  .prop-card p:last-child {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .solution-engine {
    margin-top: 28px;
  }

  .solution-form,
  .contact-card {
    padding: 14px;
    border-radius: 24px;
  }

  .solution-form.is-expanded {
    padding: 16px;
    border-radius: 28px;
    transform: none;
  }

  .search-row input,
  .field input,
  .field textarea {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .search-trigger,
  .gradient-button,
  .inline-button {
    width: 100%;
  }

  .section {
    padding: 42px 0;
  }

  .intro-band {
    gap: 22px;
  }

  .mission-banner {
    padding: 28px;
  }

  .prop-card,
  .service-scenario,
  .response-graph {
    padding: 22px;
  }

  .split-story-image {
    padding: 30px 20px;
    gap: 22px;
    min-height: auto;
    align-items: end;
    background-position: center 38%;
  }

  .split-story-image .story-panel h2 {
    font-size: clamp(2rem, 9.8vw, 2.9rem);
    line-height: 1.02;
    max-width: 9ch;
  }

  .split-story-image .story-copy {
    gap: 14px;
  }

  .split-story-image .story-copy p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .split-story-image .text-link {
    font-size: 1rem;
  }

  .prop-card {
    min-height: 0;
  }

  .graph-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .graph-step p {
    grid-column: 1;
  }

  .page-main {
    padding-top: 110px;
  }

  .image-hero {
    padding: 64px 24px 52px;
    min-height: 360px;
    display: grid;
    align-content: end;
  }

  .editorial-hero h1,
  .contact-copy h2,
  .services-metrics-copy h2 {
    font-size: clamp(1.95rem, 8.4vw, 2.9rem);
  }

  .services-metrics {
    padding-bottom: 42px;
  }

  .services-cta {
    padding-bottom: 52px;
  }

  .contact-layout {
    gap: 26px;
    padding-bottom: 48px;
  }

  .site-footer {
    gap: 14px;
    padding: 22px 0 34px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 12px 0;
  }

  .nav-shell {
    padding: 10px 12px;
    gap: 12px 10px;
  }

  .brand-logo {
    width: 78px;
  }

  .nav-controls {
    gap: 8px;
  }

  .nav-cta-primary {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 11.8vw, 3rem);
  }

  .editorial-hero h1,
  .services-metrics-copy h2,
  .services-cta h2,
  .section-heading h2,
  .story-panel h2,
  .editorial-block h2,
  .contact-copy h2 {
    font-size: clamp(1.72rem, 8.2vw, 2.45rem);
  }

  .mission-banner {
    margin-top: 30px;
  }

  .mission-banner p {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .image-hero {
    min-height: 300px;
    padding: 54px 18px 40px;
  }

  .split-story-image {
    padding: 24px 18px;
    gap: 18px;
  }

  .split-story-image .story-panel h2 {
    font-size: clamp(1.72rem, 9.5vw, 2.4rem);
    max-width: 8.5ch;
  }

  .split-story-image .story-copy p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .site-footer {
    font-size: 0.9rem;
  }
}

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

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