:root {
  --ink: #343434;
  --ink-soft: #4f4b45;
  --sky: #d99a2b;
  --sky-soft: #efd19a;
  --teal: #8f8a64;
  --mist: #f6efe3;
  --surface: #ffffff;
  --surface-alt: #fbf6ee;
  --line: rgba(52, 52, 52, 0.12);
  --shadow: 0 22px 60px rgba(52, 44, 28, 0.12);
  --shadow-soft: 0 12px 30px rgba(52, 44, 28, 0.1);
  --radius: 24px;
  --max: 1600px;
  --motion-fast: 220ms;
  --motion-medium: 420ms;
  --motion-slow: 720ms;
  --motion-ease-standard: cubic-bezier(0.2, 0.65, 0.2, 1);
  --motion-ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);

  --text-primary: var(--ink);
  --text-secondary: var(--ink-soft);
  --text-inverse: #ffffff;
  --text-inverse-soft: rgba(255, 255, 255, 0.82);

  --surface-glass: rgba(255, 255, 255, 0.84);
  --surface-glass-border: rgba(255, 255, 255, 0.72);
  --header-surface: rgba(255, 255, 255, 0.82);
  --header-border: rgba(255, 255, 255, 0.6);

  --action-gradient: linear-gradient(135deg, var(--ink), var(--sky));
  --action-shadow: 0 18px 38px rgba(217, 154, 43, 0.24);
  --focus-ring: #3c8df5;
  --focus-ring-soft: #3c8df5;

  --opacity-xs: 0.08;
  --opacity-sm: 0.12;
  --opacity-md: 0.18;
  --opacity-lg: 0.28;
  --opacity-xl: 0.82;

  --page-bg-top: #ffffff;
  --page-bg-mid: #ffffff;
  --page-bg-bottom: #ffffff;
  --footer-surface: #2c2c2c;

  --theme-sheen-1: rgba(239, 209, 154, 0.34);
  --theme-sheen-2: rgba(143, 138, 100, 0.2);
  --theme-grad-1: #343434;
  --theme-grad-2: #5b4b2d;
  --theme-grad-3: #d99a2b;
  --theme-orb-1: rgba(255, 255, 255, 0.22);
  --theme-orb-2: rgba(255, 255, 255, 0.04);
  --theme-orb-accent: rgba(79, 194, 200, 0.3);
  --theme-orb-accent-fade: rgba(79, 194, 200, 0.02);

  --panel-sheen-1: rgba(239, 209, 154, 0.24);
  --panel-sheen-2: rgba(217, 154, 43, 0.16);
  --panel-grad-1: #66573d;
  --panel-grad-2: #8b7040;
  --panel-grad-3: #c79634;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
  opacity: 1;
  background: #ffffff;
  animation: page-fade-in var(--motion-medium) var(--motion-ease-soft) both;
}

body.is-leaving {
  animation: page-fade-out var(--motion-fast) ease both;
}

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

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

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

.container {
  width: min(90%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: var(--header-surface);
  border-bottom: 1px solid var(--header-border);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 172px;
  max-width: 100%;
}

.brand-tagline {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--sky);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.28rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 154, 43, 0.34);
  background: linear-gradient(135deg, #5a482b 0%, #8b6a2f 48%, #d99a2b 100%);
  color: var(--text-inverse);
  box-shadow:
    0 10px 24px rgba(217, 154, 43, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-cta:hover,
.nav-cta.active {
  color: var(--text-inverse);
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow:
    0 14px 30px rgba(217, 154, 43, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.split-grid,
.footer-grid,
.stats-grid,
.card-grid,
.blog-grid,
.industry-grid,
.contact-grid,
.timeline,
.three-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.split-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 2.25rem;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(217, 154, 43, var(--opacity-sm));
  border: 1px solid rgba(217, 154, 43, 0.24);
  color: #8e6110;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1rem;
}

.lead {
  font-size: 1.14rem;
  max-width: 62ch;
}

.hero-panel,
.card,
.feature-panel,
.quote-panel,
.contact-panel,
.blog-card,
.metric,
.timeline-card {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(217, 154, 43, 0.2), transparent 68%);
}

.pill-row,
.tag-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill,
.tag {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink);
  font-weight: 700;
}

.button-row {
  margin-top: 2rem;
}

.hero-copy {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
}

.hero-copy h1 {
  max-width: 12ch;
  line-height: 1.08;
}

.hero-copy .lead {
  max-width: 58ch;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-self: start;
}

.hero-side .hero-panel,
.hero-visual {
  width: 100%;
}

.hero-visual-card {
  position: relative;
  min-height: 230px;
  padding: 1.8rem;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 209, 154, 0.48), transparent 28%),
    radial-gradient(circle at 78% 28%, rgba(217, 154, 43, 0.34), transparent 24%),
    linear-gradient(145deg, #343434 0%, #5b4b2d 42%, #d99a2b 100%);
  box-shadow: var(--shadow);
  color: var(--text-inverse);
}

.hero-visual-content {
  position: relative;
  z-index: 2;
  max-width: min(31rem, calc(100% - 4.75rem));
}

.hero-visual-card h3 {
  line-height: 1.14;
  margin-bottom: 0.95rem;
}

.hero-visual-card p {
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-visual-points {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.hero-visual-point {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
}

.hero-visual-point strong {
  font-size: 0.92rem;
  color: var(--text-inverse);
}

.hero-visual-point span {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-inverse-soft);
}

.hero-visual-card p,
.hero-visual-card .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero-visual-card .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-orb-one {
  right: 1.5rem;
  top: 1.8rem;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04));
}

.hero-orb-two {
  right: 3.6rem;
  bottom: -1.2rem;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(239, 209, 154, 0.48), rgba(239, 209, 154, 0.03));
}

.hero-panel h3 {
  margin-bottom: 1.25rem;
}

.hero-problem-wrap {
  margin-top: 1.2rem;
}

.hero-problem-panel {
  padding: 1.7rem 1.8rem 1.8rem;
}

.hero-problem-header {
  max-width: 70rem;
  margin-bottom: 1.2rem;
}

.hero-problem-header h3 {
  margin-bottom: 0.65rem;
}

.hero-problem-header p {
  margin-bottom: 0;
  max-width: 64rem;
}

.hero-solution-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.hero-solution-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 0.9rem;
  padding: 1.1rem;
  min-height: 100%;
  border-radius: 18px;
  background: rgba(217, 154, 43, 0.08);
  border: 1px solid rgba(217, 154, 43, 0.18);
}

.hero-solution-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--action-gradient);
  color: var(--text-inverse);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-solution-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.hero-solution-item p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  max-width: 100%;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  line-height: 1.2;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--text-inverse);
  background: var(--action-gradient);
  box-shadow: var(--action-shadow);
}

.btn-submit {
  background: linear-gradient(135deg, #7a6334 0%, #b68733 56%, #e0ab44 100%);
  border-color: rgba(125, 92, 40, 0.42);
  box-shadow:
    0 8px 18px rgba(170, 122, 34, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-submit:hover {
  transform: translateY(-1px);
  filter: saturate(1.03);
  box-shadow:
    0 12px 24px rgba(170, 122, 34, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.btn-submit:disabled {
  cursor: not-allowed;
  transform: none;
  opacity: 0.76;
  box-shadow: 0 4px 12px rgba(170, 122, 34, 0.2);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.section {
  padding: 4.4rem 0;
}

.section-alt {
  background: #ffffff;
}

.stats-grid,
.card-grid,
.blog-grid,
.industry-grid,
.three-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
  grid-auto-rows: 1fr;
}

.card-grid > .card {
  display: flex;
  flex-direction: column;
}

.card-grid > .card ul {
  margin-top: auto;
}

.metric,
.card,
.blog-card,
.timeline-card,
.contact-panel {
  padding: 1.6rem;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 36, 66, 0.16);
  border-color: rgba(60, 141, 245, 0.24);
}

.card-link:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.metric strong {
  display: block;
  font-size: 2.5rem;
  color: var(--sky);
  margin-bottom: 0.4rem;
}

.card ul,
.footer-links,
.contact-list,
.timeline-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.feature-panel {
  padding: 2rem;
  color: var(--text-inverse);
}

.frameworks-section {
  align-items: stretch;
  gap: 2rem;
}

.frameworks-panel,
.frameworks-industries {
  align-self: stretch;
  height: 100%;
}

.frameworks-panel h2,
.frameworks-industries h2 {
  margin-bottom: 1rem;
}

.frameworks-panel ul {
  margin: 1.2rem 0 0;
}

.frameworks-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.frameworks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.framework-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.framework-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-inverse);
}

.framework-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.framework-item-wide {
  grid-column: 1 / -1;
}

.frameworks-industries {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
}

.frameworks-industries-intro {
  margin-bottom: 0.9rem;
}

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

.industries-compact-grid .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
}

.industries-compact-grid .card h3 {
  min-height: 2.4rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.industries-compact-grid .card p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}

.services-outcomes-section {
  align-items: stretch;
  gap: 2rem;
}

.services-framework-panel,
.services-outcomes-panel {
  align-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-outcomes-panel h2 {
  margin-bottom: 1rem;
}

.services-framework-list {
  margin: 1rem 0 0;
}

.services-framework-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.services-framework-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.services-framework-item strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-inverse);
}

.services-framework-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.services-outcomes-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: auto;
}

.services-outcomes-grid .card {
  height: 100%;
}

.offerings-package-section {
  align-items: stretch;
  gap: 2rem;
}

.offerings-package-panel,
.offerings-outcomes-panel {
  align-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.offerings-package-panel h2,
.offerings-outcomes-panel h2 {
  margin-bottom: 1rem;
}

.offerings-package-panel ul,
.offerings-outcomes-panel ul {
  margin-top: 1rem;
}

.offerings-outcomes-panel {
  padding: 1.5rem;
}

.offerings-outcomes-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  flex: 1;
  align-content: space-between;
}

.offerings-outcome-item {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(52, 52, 52, 0.04);
  border: 1px solid rgba(52, 52, 52, 0.08);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.5;
}

.feature-panel p,
.feature-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-panel .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.quote-panel {
  padding: 2rem;
  border-left: 6px solid var(--sky);
}

.page-hero {
  padding-top: 4rem;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero-visual {
  position: relative;
  min-height: 320px;
  padding: 1.6rem;
  border-radius: 28px;
  overflow: hidden;
  color: var(--text-inverse);
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 20% 20%, var(--theme-sheen-1), transparent 26%),
    radial-gradient(circle at 78% 22%, var(--theme-sheen-2), transparent 22%),
    linear-gradient(145deg, var(--theme-grad-1) 0%, var(--theme-grad-2) 45%, var(--theme-grad-3) 100%);
}

.feature-panel {
  background:
    radial-gradient(circle at 20% 20%, var(--panel-sheen-1), transparent 26%),
    radial-gradient(circle at 78% 22%, var(--panel-sheen-2), transparent 22%),
    linear-gradient(145deg, var(--panel-grad-1) 0%, var(--panel-grad-2) 45%, var(--panel-grad-3) 100%);
}

.feature-panel-strong {
  background:
    radial-gradient(circle at 20% 20%, var(--theme-sheen-1), transparent 26%),
    radial-gradient(circle at 78% 22%, var(--theme-sheen-2), transparent 22%),
    linear-gradient(145deg, var(--theme-grad-1) 0%, var(--theme-grad-2) 45%, var(--theme-grad-3) 100%);
}

.product-theme-cobalt {
  --theme-sheen-1: rgba(154, 198, 255, 0.38);
  --theme-sheen-2: rgba(79, 194, 200, 0.3);
  --theme-grad-1: #0f2442;
  --theme-grad-2: #15345f;
  --theme-grad-3: #2e79d7;
  --theme-orb-accent: rgba(79, 194, 200, 0.3);
  --theme-orb-accent-fade: rgba(79, 194, 200, 0.02);
}

.product-theme-emerald {
  --theme-sheen-1: rgba(122, 234, 203, 0.3);
  --theme-sheen-2: rgba(187, 247, 208, 0.22);
  --theme-grad-1: #0d2f2c;
  --theme-grad-2: #0f5b52;
  --theme-grad-3: #1aa88a;
  --theme-orb-accent: rgba(122, 234, 203, 0.3);
  --theme-orb-accent-fade: rgba(122, 234, 203, 0.04);
}

.product-theme-amber {
  --theme-sheen-1: rgba(254, 215, 170, 0.32);
  --theme-sheen-2: rgba(253, 230, 138, 0.2);
  --theme-grad-1: #3f2208;
  --theme-grad-2: #8c4a0c;
  --theme-grad-3: #d88c22;
  --theme-orb-accent: rgba(253, 230, 138, 0.28);
  --theme-orb-accent-fade: rgba(253, 230, 138, 0.03);
}

.product-theme-berry {
  --theme-sheen-1: rgba(244, 114, 182, 0.22);
  --theme-sheen-2: rgba(196, 181, 253, 0.22);
  --theme-grad-1: #31113b;
  --theme-grad-2: #5b1f63;
  --theme-grad-3: #a93bb5;
  --theme-orb-accent: rgba(196, 181, 253, 0.26);
  --theme-orb-accent-fade: rgba(196, 181, 253, 0.03);
}

.product-theme-slate {
  --theme-sheen-1: rgba(148, 163, 184, 0.24);
  --theme-sheen-2: rgba(103, 232, 249, 0.18);
  --theme-grad-1: #1a2432;
  --theme-grad-2: #314355;
  --theme-grad-3: #4e718d;
  --theme-orb-accent: rgba(103, 232, 249, 0.28);
  --theme-orb-accent-fade: rgba(103, 232, 249, 0.03);
}

.page-hero-visual::before,
.page-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.page-hero-visual::before {
  width: 170px;
  height: 170px;
  right: -32px;
  top: -22px;
  background: radial-gradient(circle, var(--theme-orb-1), var(--theme-orb-2));
}

.page-hero-visual::after {
  width: 220px;
  height: 220px;
  right: 24px;
  bottom: -72px;
  background: radial-gradient(circle, var(--theme-orb-accent), var(--theme-orb-accent-fade));
}

.page-hero-visual-content {
  position: relative;
  z-index: 1;
}

.page-hero-visual-content .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.96);
}

.page-hero-visual-content p {
  color: var(--text-inverse-soft);
}

.page-hero-visual h3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.page-hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.page-hero-stat {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.page-hero-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  font-size: 0.92rem;
}

.media-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
  align-items: start;
}

.equal-panels {
  align-items: stretch;
}

.equal-panel {
  align-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-panel,
.resource-panel {
  padding: 1.6rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #091729;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.resource-actions .btn {
  width: 100%;
}

.footer {
  padding: 3.1rem 0 1.6rem;
  background: var(--footer-surface);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.95fr 1fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.footer a,
.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.78);
}

.footer h3,
.footer h4 {
  color: var(--text-inverse);
  margin-bottom: 0.7rem;
}

.footer .brand-mark {
  width: 158px;
}

.footer p {
  margin-bottom: 0.75rem;
}

.footer-note {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.required-marker {
  color: #9a1e1e;
  margin-left: 0.2rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--surface);
}

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

.small {
  font-size: 0.92rem;
}

.page-intro {
  max-width: 70ch;
  margin-bottom: 2rem;
}

.blog-article {
  max-width: 780px;
}

.blog-article h2 {
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.blog-article p,
.blog-article ul {
  margin-bottom: 1.05rem;
}

.blog-article ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.8;
}

.blog-article li + li {
  margin-top: 0.4rem;
}

.blog-article-meta {
  margin-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.badge-number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--action-gradient);
  color: var(--text-inverse);
  font-weight: 800;
}

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

.site-shell {
  overflow: clip;
}

.has-motion .site-header {
  animation: header-drop var(--motion-medium) var(--motion-ease-soft) both;
}

.has-motion .hero-visual-card {
  animation:
    hero-card-float 9s ease-in-out infinite,
    page-fade-in var(--motion-medium) var(--motion-ease-soft) both;
}

.has-motion .hero-orb-one {
  animation: orb-drift-one 11s ease-in-out infinite;
}

.has-motion .hero-orb-two {
  animation: orb-drift-two 13s ease-in-out infinite;
}

.has-motion .reveal-init {
  opacity: 0;
  transform: translateY(14px) scale(0.995);
  filter: blur(1.2px);
  will-change: transform, opacity;
  transition:
    opacity var(--motion-slow) var(--motion-ease-soft),
    transform var(--motion-slow) var(--motion-ease-soft),
    filter var(--motion-medium) var(--motion-ease-soft);
}

.has-motion .reveal-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.has-motion .reveal-stagger-1 {
  transition-delay: 45ms;
}

.has-motion .reveal-stagger-2 {
  transition-delay: 90ms;
}

.has-motion .reveal-stagger-3 {
  transition-delay: 135ms;
}

.has-motion .reveal-stagger-0 {
  transition-delay: 0ms;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes page-fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

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

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

@keyframes orb-drift-one {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.04);
  }
}

@keyframes orb-drift-two {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(5px) scale(1.03);
  }
}

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

  body,
  body.is-leaving,
  .has-motion .site-header,
  .has-motion .hero-visual-card,
  .has-motion .hero-orb-one,
  .has-motion .hero-orb-two,
  .has-motion .reveal-init,
  .has-motion .reveal-in {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 820px) {
  .hero,
  .page-hero,
  .section {
    padding: 3.8rem 0;
  }

  .nav-shell {
    padding: 0.85rem 0;
  }

  .nav-links {
    gap: 0.85rem;
  }

  .nav-links a,
  .nav-cta {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .hero-copy .lead,
  .page-hero-copy {
    max-width: none;
  }

  .hero-side,
  .page-hero-grid,
  .split-grid,
  .contact-grid {
    gap: 1.25rem;
  }

  .hero-panel,
  .feature-panel,
  .quote-panel,
  .contact-panel,
  .page-hero-visual,
  .hero-visual-card {
    padding: 1.35rem;
    border-radius: 22px;
  }

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

  .page-hero-visual {
    min-height: 260px;
  }

  .page-hero-stat-grid,
  .frameworks-grid,
  .services-framework-grid,
  .industries-compact-grid {
    gap: 0.75rem;
  }

  .card,
  .blog-card,
  .metric,
  .timeline-card {
    padding: 1.25rem;
  }

  p,
  .lead {
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  .hero,
  .page-hero,
  .section {
    padding: 3.6rem 0;
  }

  .card,
  .blog-card,
  .metric,
  .timeline-card {
    padding: 1.3rem;
  }

  .page-hero-stat-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .timeline,
  .page-hero-grid,
  .media-resource-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    padding-top: 0;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-solution-list {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .card-grid,
  .blog-grid,
  .industry-grid,
  .three-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .section {
    padding: 3.4rem 0;
  }

  .stats-grid,
  .card-grid,
  .blog-grid,
  .industry-grid,
  .three-grid,
  .form-row.two,
  .page-hero-stat-grid {
    grid-template-columns: 1fr;
  }

  .industries-compact-grid {
    grid-template-columns: 1fr;
  }

  .services-framework-grid {
    grid-template-columns: 1fr;
  }

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

  .framework-item-wide {
    grid-column: auto;
  }

  .nav-toggle {
    padding: 0.65rem 0.85rem;
  }

  .nav-links {
    left: 0.65rem;
    right: 0.65rem;
    padding: 0.85rem;
    border-radius: 20px;
  }

  .hero-panel,
  .feature-panel,
  .quote-panel,
  .contact-panel,
  .page-hero-visual,
  .hero-visual-card,
  .frameworks-industries,
  .offerings-outcomes-panel {
    padding: 1.1rem;
    border-radius: 20px;
  }

  .hero-visual-card {
    min-height: 280px;
  }

  .hero-visual-points {
    gap: 0.55rem;
  }

  .hero-visual-point {
    padding: 0.6rem 0.7rem;
  }

  .hero-visual-point strong {
    font-size: 0.85rem;
  }

  .pill-row,
  .tag-row,
  .button-row {
    gap: 0.65rem;
  }

  .pill,
  .tag {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.7rem 0.9rem;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-visual-card,
  .page-hero-visual {
    min-height: 240px;
  }

  .page-hero-visual::before {
    width: 120px;
    height: 120px;
    right: -28px;
    top: -18px;
  }

  .page-hero-visual::after {
    width: 150px;
    height: 150px;
    right: 12px;
    bottom: -56px;
  }

  .hero-orb-one {
    width: 90px;
    height: 90px;
  }

  .hero-orb-two {
    width: 130px;
    height: 130px;
    right: 2.2rem;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .brand-mark {
    width: 160px;
  }

  .footer {
    padding: 3.2rem 0 1.7rem;
  }
}

@media (max-width: 480px) {
  .form-row {
    gap: 0.7rem;
  }

  input,
  select,
  textarea {
    padding: 0.85rem 0.8rem;
  }
}
