:root {
  --black: #05080d;
  --ink: #101722;
  --muted: #5f6b7a;
  --line: rgba(5, 8, 13, 0.14);
  --line-strong: rgba(5, 8, 13, 0.22);
  --white: #ffffff;
  --sky-50: #eefaff;
  --sky-100: #dff5ff;
  --sky-200: #aee8ff;
  --sky-500: #35bdf2;
  --sky-700: #0077bf;
  --facebook: #1877f2;
  --facebook-dark: #0f5fc4;
  --yellow: #ffd426;
  --yellow-dark: #d99b00;
  --shadow: 0 24px 70px rgba(5, 8, 13, 0.18);
  --radius: 8px;
  --shell: 1180px;
  --header-height: 92px;
  --font-body: "Source Sans 3", "Gill Sans", "Trebuchet MS", sans-serif;
  --font-display: "Space Grotesk", "Aptos Display", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(53, 189, 242, 0.035) 0 1px, transparent 1px 76px),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 38%, #ffffff 100%);
  font-family: var(--font-body);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.audience-modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(100% - 32px, var(--shell));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.audience-switcher {
  position: fixed;
  top: calc(var(--header-height) - 6px);
  left: max(16px, calc((100vw - var(--shell)) / 2));
  z-index: 49;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.22), rgba(53, 189, 242, 0.18)),
    rgba(5, 8, 13, 0.62);
  border: 1px solid rgba(255, 212, 38, 0.45);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(5, 8, 13, 0.26);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.audience-switcher span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-switcher strong {
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1;
}

.audience-switcher svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audience-switcher:hover,
.audience-switcher:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 212, 38, 0.8);
  outline: none;
}

.header-shell .audience-switcher {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  flex: 0 0 auto;
}

.audience-modal[hidden] {
  display: none;
}

.audience-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.audience-modal.is-visible {
  opacity: 1;
}

.audience-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.86), rgba(0, 119, 191, 0.58)),
    repeating-linear-gradient(90deg, rgba(223, 245, 255, 0.1) 0 1px, transparent 1px 88px);
  backdrop-filter: blur(16px);
}

.audience-panel {
  position: relative;
  width: min(100%, 650px);
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(6, 32, 50, 0.96), rgba(5, 8, 13, 0.96)),
    repeating-linear-gradient(0deg, rgba(223, 245, 255, 0.08) 0 1px, transparent 1px 68px);
  border: 1px solid rgba(223, 245, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.46);
  transform: translateY(18px) scale(0.98);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audience-modal.is-visible .audience-panel {
  transform: translateY(0) scale(1);
}

.audience-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 212, 38, 0.18), transparent);
  transform: translateX(-120%);
  animation: panel-sweep 5.2s ease-in-out infinite;
}

.audience-panel > * {
  position: relative;
}

.audience-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.audience-close span,
.audience-close span::after {
  width: 16px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.audience-close span::after {
  content: "";
  transform: rotate(90deg);
}

.audience-close:hover,
.audience-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.audience-panel .eyebrow {
  color: var(--yellow);
  margin-right: 44px;
}

.audience-panel h2 {
  max-width: 560px;
  margin-right: 44px;
  font-size: 2.3rem;
}

.audience-modal-copy {
  max-width: 560px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.audience-slider {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 26px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.audience-slider-indicator {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc((100% - 10px) / 3);
  background:
    linear-gradient(135deg, var(--yellow), #fff1a0),
    var(--yellow);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(255, 212, 38, 0.22);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audience-slider[data-active="government"] .audience-slider-indicator {
  transform: translateX(100%);
}

.audience-slider[data-active="nonprofit"] .audience-slider-indicator {
  transform: translateX(200%);
}

.audience-slider button {
  position: relative;
  min-height: 46px;
  padding: 10px 8px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.1;
}

.audience-slider button.is-active {
  color: var(--black);
}

.audience-slider button:focus-visible {
  outline: 2px solid var(--sky-200);
  outline-offset: 3px;
}

.audience-selection-note {
  min-height: 3.2em;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.audience-continue {
  width: 100%;
  margin-top: 20px;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  color: var(--white);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(5, 8, 13, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 2vw, 18px);
}

.header-shell .audience-switcher {
  order: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
}

.header-brand {
  order: 2;
  flex: 0 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand-image {
  width: auto;
  height: clamp(58px, 4.6vw, 78px);
  max-width: min(50vw, 320px);
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.62))
    drop-shadow(0 10px 20px rgba(5, 8, 13, 0.22));
}

.site-header.is-scrolled .header-brand,
.site-header.nav-active .header-brand {
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .brand-image,
.site-header.nav-active .brand-image {
  filter: drop-shadow(0 8px 18px rgba(5, 8, 13, 0.12));
}

.brand-mark {
  position: relative;
  overflow: hidden;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--yellow) 0 42%, transparent 42%),
    linear-gradient(135deg, var(--sky-500), var(--sky-100));
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 26px rgba(53, 189, 242, 0.28);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-140%) rotate(20deg);
  animation: mark-sweep 5.5s ease-in-out infinite;
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  border-color: var(--line);
}

.brand-name {
  font-size: 1.08rem;
}

.nav-toggle {
  order: 3;
  width: 44px;
  height: 44px;
  margin-left: auto;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle {
  background: var(--sky-50);
  border-color: var(--line);
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 16px auto;
  order: 5;
  display: none;
  flex-direction: column;
  padding: 14px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: flex;
}

.mobile-header-actions {
  order: 4;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -6px;
}

.site-nav a {
  padding: 12px 10px;
  font-weight: 700;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--sky-50);
  outline: none;
}

.nav-social-link {
  width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: var(--facebook);
  border: 1px solid rgba(24, 119, 242, 0.78);
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.26);
}

.nav-social-link svg {
  width: 12px;
  height: 20px;
  fill: currentColor;
}

.site-nav > .nav-phone-link,
.site-nav > .nav-social-link {
  display: none;
}

.nav-phone-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(217, 155, 0, 0.78);
  box-shadow: 0 12px 24px rgba(217, 155, 0, 0.22);
}

.nav-phone-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav .nav-social-link:hover,
.site-nav .nav-social-link:focus-visible,
.site-nav .nav-phone-link:hover,
.site-nav .nav-phone-link:focus-visible {
  color: var(--white);
  background: var(--facebook-dark);
}

.site-nav .nav-phone-link:hover,
.site-nav .nav-phone-link:focus-visible {
  color: var(--black);
  background: #ffe36a;
}

.nav-dropdown {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px;
  gap: 4px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(53, 189, 242, 0.08), rgba(255, 212, 38, 0.08));
  border-radius: var(--radius);
}

.nav-dropdown-link {
  min-width: 0;
}

.nav-dropdown-toggle {
  width: 38px;
  min-height: 40px;
  display: grid;
  place-items: center;
  color: var(--sky-700);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.22), rgba(53, 189, 242, 0.18)),
    rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(5, 8, 13, 0.08);
}

.nav-dropdown-toggle svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.72), rgba(53, 189, 242, 0.22)),
    var(--white);
  outline: none;
}

.nav-dropdown[data-open="true"] .nav-dropdown-toggle {
  color: var(--black);
  background:
    linear-gradient(135deg, var(--yellow), #fff1a0),
    var(--yellow);
}

.nav-submenu {
  grid-column: 1 / -1;
  display: none;
  gap: 4px;
  padding: 6px 0 4px 10px;
  border-left: 2px solid var(--sky-200);
}

.nav-dropdown[data-open="true"] .nav-submenu {
  display: grid;
}

.nav-submenu a {
  padding: 10px 12px;
  color: var(--ink);
  background: transparent;
  font-size: 0.96rem;
}

.nav-cta {
  margin-top: 6px;
  color: var(--black);
  background: var(--yellow);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 86svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 96px 0 42px;
  color: var(--white);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  z-index: -3;
  transform: scale(1.02);
  transform-origin: 62% center;
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.9), rgba(5, 8, 13, 0.68) 48%, rgba(5, 8, 13, 0.08)),
    linear-gradient(180deg, rgba(0, 119, 191, 0.12), rgba(5, 8, 13, 0.78));
}

.hero-content {
  max-width: 900px;
  padding-bottom: 2vh;
}

.hero-brand {
  max-width: none;
  color: var(--white);
  font-size: 4.45rem;
  font-weight: 700;
  line-height: 0.82;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.hero-headline {
  max-width: 720px;
  margin-top: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1.08;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky-700);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.contact-section .eyebrow {
  color: var(--yellow);
}

.hero-location {
  max-width: 1000px;
  margin-bottom: 10px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.08;
  text-transform: none;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.hero-location + .hero-headline {
  margin-top: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 2.4rem;
}

h2 {
  font-size: 2.05rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 600px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.button-secondary:hover svg,
.button-secondary:focus-visible svg {
  transform: translateY(3px);
}

.button-primary {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 18px 44px rgba(255, 212, 38, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe06a;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-back {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.2), rgba(53, 189, 242, 0.16)),
    rgba(5, 8, 13, 0.24);
  border-color: rgba(255, 212, 38, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-back:hover,
.button-back:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.3), rgba(53, 189, 242, 0.22)),
    rgba(5, 8, 13, 0.3);
  border-color: rgba(255, 212, 38, 0.72);
}

.button-back:hover svg,
.button-back:focus-visible svg {
  transform: translateX(-3px);
}

.button-accent {
  color: var(--black);
  background: var(--sky-200);
}

.opening-line {
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(255, 212, 38, 0.94), rgba(255, 244, 168, 0.96) 48%, rgba(223, 245, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(5, 8, 13, 0.08) 0 1px, transparent 1px 80px);
  border-bottom: 1px solid rgba(5, 8, 13, 0.12);
}

.opening-line-inner {
  padding: 24px 0;
}

.opening-line p {
  max-width: 860px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.section {
  position: relative;
  padding: 72px 0;
}

@supports (content-visibility: auto) {
  .opening-line,
  .section,
  .detail-section,
  .detail-cta,
  .contact-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}

.section:not(.section-dark):not(.section-blue) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 252, 255, 0.78)),
    repeating-linear-gradient(0deg, rgba(5, 8, 13, 0.028) 0 1px, transparent 1px 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.services-grid {
  display: grid;
  gap: 0;
  counter-reset: service;
  border-top: 1px solid var(--line-strong);
}

.service-item {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  counter-increment: service;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}

.service-item::before {
  content: "0" counter(service);
  display: block;
  margin-bottom: 16px;
  color: var(--sky-700);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-item p {
  margin-top: 12px;
  color: var(--muted);
}

.service-item ul {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(5, 8, 13, 0.1);
}

.service-item li {
  padding: 9px 0;
  color: var(--ink);
  font-size: 0.96rem;
  border-bottom: 1px solid rgba(5, 8, 13, 0.08);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--sky-700);
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--black);
  outline: none;
}

.inline-detail-link {
  display: inline;
  width: auto;
  margin-top: 0;
  padding-top: 0;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.98), rgba(6, 32, 50, 0.96)),
    repeating-linear-gradient(90deg, rgba(223, 245, 255, 0.08) 0 1px, transparent 1px 86px);
}

.outcomes-layout {
  display: grid;
  gap: 34px;
}

.outcomes-copy p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.76);
}

.outcome-list {
  display: grid;
  gap: 14px;
}

.outcome-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.outcome-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.outcome-item p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.process-step {
  position: relative;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 20px;
  color: var(--yellow-dark);
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 0.95;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
}

.section-blue {
  background:
    linear-gradient(135deg, rgba(238, 250, 255, 0.96), rgba(255, 255, 255, 0.92) 52%, rgba(255, 212, 38, 0.2)),
    repeating-linear-gradient(90deg, rgba(0, 119, 191, 0.06) 0 1px, transparent 1px 72px);
}

.platform-layout {
  display: grid;
  gap: 28px;
}

.platform-layout h2 {
  max-width: 720px;
}

.platform-stack {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.platform-stack div {
  display: grid;
  gap: 6px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.platform-stack strong {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.platform-stack span {
  color: var(--muted);
}

.faq-layout {
  display: grid;
  gap: 30px;
}

.faq-layout > div:first-child p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, background-color 180ms ease;
}

details[open] {
  border-color: rgba(0, 119, 191, 0.34);
  background: var(--white);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-100);
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 16px 16px;
  color: var(--muted);
}

.detail-hero {
  position: relative;
  min-height: 80svh;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 108px 0 52px;
  color: var(--white);
  overflow: hidden;
}

.detail-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.9), rgba(5, 8, 13, 0.7) 50%, rgba(5, 8, 13, 0.1)),
    linear-gradient(180deg, rgba(0, 119, 191, 0.16), rgba(5, 8, 13, 0.78));
}

.detail-hero-content {
  max-width: 920px;
}

.contact-hero {
  min-height: 100svh;
  align-items: start;
  padding: 104px 0 44px;
}

.contact-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.92), rgba(5, 8, 13, 0.72) 48%, rgba(5, 8, 13, 0.36)),
    linear-gradient(180deg, rgba(0, 119, 191, 0.16), rgba(5, 8, 13, 0.82));
}

.contact-hero-layout {
  display: grid;
  gap: 26px;
  align-items: start;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-form {
  width: 100%;
  max-width: 580px;
  gap: 12px;
}

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

.detail-hero h1 {
  max-width: 920px;
  color: var(--white);
  font-size: 2.85rem;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.detail-page .detail-hero h1 {
  max-width: 1000px;
  color: var(--yellow);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
}

.detail-headline {
  max-width: 780px;
  margin-top: 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.12;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.detail-copy {
  max-width: 660px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

.detail-section {
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 252, 255, 0.8)),
    repeating-linear-gradient(0deg, rgba(5, 8, 13, 0.028) 0 1px, transparent 1px 72px);
}

.detail-section.section-blue {
  background:
    linear-gradient(135deg, rgba(238, 250, 255, 0.96), rgba(255, 255, 255, 0.92) 52%, rgba(255, 212, 38, 0.2)),
    repeating-linear-gradient(90deg, rgba(0, 119, 191, 0.06) 0 1px, transparent 1px 72px);
}

.audience-service-content[hidden] {
  display: none;
}

.website-perspective {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: rgba(255, 255, 255, 0.86);
}

.website-perspective::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 13, 0.98) 0 58%, rgba(5, 8, 13, 0.76) 100%),
    repeating-linear-gradient(135deg, rgba(255, 212, 38, 0.12) 0 2px, transparent 2px 20px),
    repeating-linear-gradient(90deg, rgba(53, 189, 242, 0.08) 0 1px, transparent 1px 82px),
    #05080d;
}

.website-perspective::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: min(42vw, 620px);
  background:
    linear-gradient(90deg, transparent, rgba(255, 212, 38, 0.08) 24%, rgba(255, 212, 38, 0.16) 24.5%, transparent 25%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

.website-perspective .shell {
  position: relative;
  z-index: 1;
}

.ai-perspective,
.cloud-perspective {
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.97), rgba(16, 23, 34, 0.94) 56%, rgba(0, 119, 191, 0.86)),
    var(--black);
  color: rgba(255, 255, 255, 0.86);
}

.cloud-perspective {
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.97), rgba(0, 119, 191, 0.88) 58%, rgba(53, 189, 242, 0.54)),
    var(--black);
}

.perspective-layout {
  display: grid;
  gap: 26px;
}

.perspective-block {
  position: relative;
  max-width: 980px;
  padding: 0 0 0 18px;
  border-left: 3px solid rgba(53, 189, 242, 0.62);
}

.perspective-block::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0.62em;
  width: 11px;
  height: 11px;
  background: var(--yellow);
  border: 2px solid rgba(5, 8, 13, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 212, 38, 0.16);
}

.perspective-block h2 {
  max-width: 760px;
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 1.25rem;
  line-height: 1.12;
}

.perspective-block p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.66;
}

.perspective-block p + p {
  margin-top: 10px;
}

.perspective-feature {
  max-width: 1040px;
  border-left-color: var(--yellow);
}

.perspective-feature h2 {
  color: var(--white);
  font-size: 1.48rem;
}

.perspective-feature p {
  color: var(--white);
  font-size: 1.12rem;
}

.detail-layout {
  display: grid;
  gap: 32px;
}

.detail-layout h2 {
  max-width: 700px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  counter-reset: detail-items;
}

.detail-list div {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 18px 18px 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 255, 0.84)),
    var(--white);
  border: 1px solid rgba(5, 8, 13, 0.12);
  border-top: 4px solid rgba(53, 189, 242, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(5, 8, 13, 0.08);
  counter-increment: detail-items;
}

.detail-list div::before {
  content: counter(detail-items, decimal-leading-zero);
  width: fit-content;
  padding: 3px 8px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
}

.detail-list strong,
.difference-list strong {
  color: var(--black);
  font-family: var(--font-display);
  line-height: 1.15;
}

.detail-list span,
.difference-list p {
  color: var(--muted);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.difference-list p {
  position: relative;
  max-width: none;
  min-height: 132px;
  margin: 0;
  padding: 18px 18px 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 245, 255, 0.72)),
    var(--white);
  border: 1px solid rgba(0, 119, 191, 0.18);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(5, 8, 13, 0.08);
}

.difference-list p::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--sky-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(53, 189, 242, 0.14);
}

.difference-list strong {
  display: block;
  max-width: calc(100% - 26px);
  margin-bottom: 7px;
}

.section-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  padding: 16px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.22), rgba(53, 189, 242, 0.12)),
    var(--white);
  border: 1px solid rgba(0, 119, 191, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(5, 8, 13, 0.08);
}

.detail-layout > .section-action {
  grid-column: 1 / -1;
}

.section-action p {
  max-width: 520px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

.section-action .button {
  flex: 0 0 auto;
}

.section-action-dark {
  max-width: 1040px;
  margin-top: 2px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.18), rgba(53, 189, 242, 0.14)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.section-action-dark p {
  color: var(--white);
}

.detail-cta {
  padding: 70px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.96), rgba(6, 32, 50, 0.9)),
    repeating-linear-gradient(90deg, rgba(223, 245, 255, 0.1) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, var(--sky-700), var(--yellow));
}

.detail-cta-layout {
  display: grid;
  gap: 26px;
}

.detail-cta p {
  max-width: 660px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.detail-cta-actions {
  display: grid;
  gap: 14px;
  align-content: start;
}

.detail-info-link {
  color: var(--yellow);
}

.detail-info-link:hover,
.detail-info-link:focus-visible {
  color: var(--white);
}

.contact-page-section {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.84)),
    repeating-linear-gradient(90deg, rgba(223, 245, 255, 0.12) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, var(--sky-700), var(--yellow));
}

.contact-section {
  padding: 72px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 8, 13, 0.96), rgba(5, 8, 13, 0.84)),
    repeating-linear-gradient(90deg, rgba(223, 245, 255, 0.12) 0 1px, transparent 1px 78px),
    linear-gradient(135deg, var(--sky-700), var(--yellow));
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.form-notice {
  grid-column: 1 / -1;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: #5d1f08;
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.32), rgba(53, 189, 242, 0.12)),
    #fff7d1;
  border: 1px solid rgba(217, 155, 0, 0.42);
  border-left: 4px solid var(--yellow-dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(5, 8, 13, 0.12);
  animation: notice-pop 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-notice[hidden] {
  display: none;
}

.form-notice strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.1;
}

.form-notice span {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

label {
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 900;
}

legend {
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 900;
}

.required-marker {
  color: #d32121;
  font-weight: 900;
}

.form-hint {
  margin-top: -3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-intro {
  gap: 6px;
  padding-bottom: 2px;
}

.form-intro .eyebrow {
  margin-bottom: 0;
}

.form-intro h2 {
  color: var(--ink);
  font-size: 1.45rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
}

.project-focus {
  gap: 9px;
}

.project-focus-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.project-focus-option {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(53, 189, 242, 0.08), rgba(255, 212, 38, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.project-focus-option input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--sky-700);
}

.project-focus-option:has(input:checked) {
  border-color: rgba(0, 119, 191, 0.46);
  background:
    linear-gradient(135deg, rgba(53, 189, 242, 0.16), rgba(255, 212, 38, 0.22)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(0, 119, 191, 0.12);
}

.project-focus-option:has(input:focus-visible) {
  border-color: var(--sky-700);
  box-shadow: 0 0 0 3px rgba(53, 189, 242, 0.22);
}

.contact-hero-form .project-focus-option {
  min-height: 44px;
  padding-block: 9px;
}

.conditional-fields {
  display: grid;
  gap: 14px;
}

.conditional-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(53, 189, 242, 0.07), rgba(255, 212, 38, 0.1)),
    #f8fcff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.conditional-panel[hidden],
.conditional-subfields[hidden],
[data-website-url-field][hidden],
[data-cloud-provider-field][hidden],
[data-ai-platform-field][hidden] {
  display: none;
}

.conditional-panel h3 {
  color: var(--ink);
  font-size: 1.1rem;
}

.conditional-question {
  display: grid;
  gap: 9px;
}

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

.choice-option {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 800;
}

.choice-option input {
  width: 17px;
  height: 17px;
  min-height: 17px;
  margin: 0;
  padding: 0;
  accent-color: var(--sky-700);
}

.choice-option:has(input:checked) {
  border-color: rgba(0, 119, 191, 0.46);
  background:
    linear-gradient(135deg, rgba(53, 189, 242, 0.16), rgba(255, 212, 38, 0.18)),
    var(--white);
}

.conditional-subfields {
  display: grid;
  gap: 12px;
}

.compact-options {
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sky-700);
  outline: 3px solid rgba(53, 189, 242, 0.22);
}

.form-submit {
  border: 0;
}

.form-status {
  min-height: 1.5em;
  color: var(--sky-700);
  font-weight: 800;
}

.site-footer {
  padding: 32px 0 44px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--black);
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
}

.footer-brand img {
  width: clamp(180px, 32vw, 270px);
  height: auto;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.footer-phone a {
  color: var(--yellow);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--facebook);
  border: 1px solid rgba(24, 119, 242, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(24, 119, 242, 0.2);
}

.social-links svg {
  width: 12px;
  height: 20px;
  fill: currentColor;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
  outline: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--facebook-dark);
  border-color: var(--facebook-dark);
}

.scroll-top-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 44;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 212, 38, 0.22), rgba(53, 189, 242, 0.18)),
    rgba(5, 8, 13, 0.7);
  border: 1px solid rgba(255, 212, 38, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(5, 8, 13, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  backdrop-filter: blur(14px);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.scroll-top-button.is-visible {
  opacity: 0.88;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button:hover,
.scroll-top-button:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(255, 212, 38, 0.78);
  outline: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(-1.2%, 0, 0);
  }
}

@keyframes mark-sweep {
  0%,
  58% {
    transform: translateX(-140%) rotate(20deg);
  }

  76%,
  100% {
    transform: translateX(140%) rotate(20deg);
  }
}

@keyframes panel-sweep {
  0%,
  48% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes notice-pop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

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

@media (min-width: 560px) {
  .shell {
    width: min(100% - 44px, var(--shell));
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .hero-brand {
    font-size: 6.4rem;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-location {
    font-size: 1.76rem;
  }

  .detail-page .detail-hero h1 {
    font-size: 1.76rem;
  }

  .detail-hero h1 {
    font-size: 3.75rem;
  }

  .detail-headline {
    font-size: 2rem;
  }

  .detail-cta-actions {
    justify-items: start;
  }

  .lead-form {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }

  .form-row-full,
  .form-submit,
  .form-status {
    grid-column: 1 / -1;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .hero {
    min-height: 86svh;
    padding: 118px 0 68px;
  }

  .hero-brand {
    font-size: 8.1rem;
  }

  .hero-headline {
    max-width: 780px;
    font-size: 2.75rem;
  }

  .hero-location {
    max-width: 1000px;
    font-size: 2.05rem;
    white-space: nowrap;
  }

  .detail-page .detail-hero h1 {
    max-width: 1000px;
    font-size: 2.05rem;
  }

  .perspective-layout {
    gap: 32px;
  }

  .perspective-block {
    padding-left: 24px;
  }

  .perspective-block h2 {
    font-size: 1.42rem;
  }

  .perspective-block p {
    font-size: 1.08rem;
  }

  .perspective-feature h2 {
    font-size: 1.72rem;
  }

  .perspective-feature p {
    font-size: 1.16rem;
  }

  .detail-hero {
    min-height: 78svh;
    padding: 122px 0 72px;
  }

  .contact-hero {
    min-height: 100svh;
    padding: 104px 0 48px;
  }

  .contact-hero-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.72fr);
    gap: 42px;
  }

  .contact-hero-copy {
    position: sticky;
    top: calc(var(--header-height) + 28px);
  }

  .contact-hero-form {
    justify-self: end;
  }

  .detail-hero h1 {
    font-size: 4.6rem;
  }

  .detail-headline {
    max-width: 800px;
    font-size: 2.35rem;
  }

  .detail-list div {
    min-height: 168px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }

  .platform-stack div {
    grid-template-columns: 150px 1fr;
    align-items: baseline;
  }

  .footer-grid {
    grid-template-columns: auto minmax(0, 1fr) auto auto auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .header-shell {
    flex-wrap: nowrap;
  }

  .mobile-header-actions {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-nav > .nav-phone-link {
    margin-right: 8px;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
  }

  .nav-social-link {
    width: 38px;
    min-height: 38px;
    background: var(--facebook);
    border-color: rgba(24, 119, 242, 0.78);
  }

  .site-nav > .nav-phone-link {
    display: inline-flex;
  }

  .site-nav > .nav-social-link {
    display: grid;
  }

  .nav-phone-link {
    min-height: 38px;
    padding: 8px 12px;
  }

  .nav-social-link:hover,
  .nav-social-link:focus-visible {
    background: var(--facebook-dark);
  }

  .site-header.is-scrolled .nav-social-link {
    background: var(--facebook);
    border-color: rgba(24, 119, 242, 0.78);
  }

  .site-header.is-scrolled .nav-social-link:hover,
  .site-header.is-scrolled .nav-social-link:focus-visible {
    background: var(--facebook-dark);
  }

  .site-header.is-scrolled .nav-phone-link {
    color: var(--black);
    background: var(--yellow);
    border-color: rgba(217, 155, 0, 0.78);
  }

  .site-header.is-scrolled .nav-phone-link:hover,
  .site-header.is-scrolled .nav-phone-link:focus-visible {
    color: var(--black);
    background: #ffe36a;
  }

  .nav-dropdown {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
  }

  .nav-dropdown-link {
    display: block;
    padding: 10px 12px;
  }

  .nav-dropdown-toggle {
    display: none;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: max-content;
    min-width: 250px;
    display: grid;
    gap: 2px;
    padding: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-submenu a {
    padding: 10px 12px;
    border-radius: 6px;
    white-space: nowrap;
  }

  .site-nav .nav-submenu a:hover,
  .site-nav .nav-submenu a:focus-visible,
  .site-header.is-scrolled .site-nav .nav-submenu a:hover,
  .site-header.is-scrolled .site-nav .nav-submenu a:focus-visible {
    background: var(--sky-50);
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    background: var(--sky-50);
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 8px;
    padding-inline: 16px;
  }

  .site-nav .nav-cta:hover,
  .site-nav .nav-cta:focus-visible {
    background: #ffe06a;
  }

  .hero {
    min-height: 86svh;
    padding: 130px 0 82px;
  }

  .hero-content {
    max-width: 940px;
  }

  .hero-brand {
    font-size: 9.4rem;
  }

  .hero-headline {
    font-size: 3.1rem;
  }

  .hero-location {
    font-size: 2.25rem;
  }

  .detail-page .detail-hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 96px 0;
  }

  .detail-section,
  .contact-page-section {
    padding: 96px 0;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
  }

  .outcomes-layout,
  .faq-layout,
  .contact-layout,
  .platform-layout,
  .detail-layout,
  .detail-cta-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .detail-layout > .section-action {
    grid-column: 2;
  }

  .website-design-page .website-support-section .detail-layout {
    grid-template-columns: minmax(270px, 0.58fr) minmax(0, 1.42fr);
  }

  .website-design-page .website-support-section .detail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .website-design-page .website-support-section .section-action .button {
    width: auto;
  }

  .detail-hero h1 {
    font-size: 5.2rem;
  }

  .detail-headline {
    font-size: 2.75rem;
  }

  .detail-cta-actions {
    justify-self: end;
  }

  .process-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 28px;
  }

  .scroll-top-button {
    right: 24px;
    bottom: 24px;
  }

  .site-footer {
    padding-bottom: 32px;
  }
}

@media (min-width: 1300px) {
  :root {
    --shell: 1280px;
  }

  h1 {
    font-size: 5rem;
  }

  .hero-brand {
    font-size: 10.5rem;
  }

  .detail-hero h1 {
    font-size: 5.8rem;
  }
}

@media (max-width: 979px) {
  :root {
    --header-height: 142px;
  }
}

@media (max-width: 759px) {
  body {
    background: linear-gradient(180deg, #ffffff 0%, #f5fbff 38%, #ffffff 100%);
  }

  .hero-image {
    animation: none;
  }

  .lead-form,
  .service-card,
  .process-card,
  .detail-card,
  .form-notice {
    box-shadow: 0 14px 34px rgba(5, 8, 13, 0.13);
  }
}

@media (max-width: 559px) {
  .header-shell {
    width: min(100% - 20px, var(--shell));
    gap: 8px;
  }

  .header-shell .audience-switcher {
    min-height: 38px;
    gap: 6px;
    padding: 7px 8px;
  }

  .header-shell .audience-switcher span {
    font-size: 0.66rem;
  }

  .header-shell .audience-switcher strong {
    font-size: 0.86rem;
  }

  .header-shell .audience-switcher svg {
    width: 14px;
    height: 14px;
  }

  .brand-image {
    width: min(40vw, 172px);
    height: auto;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    animation: none;
    transform: none;
  }

  .brand-mark::after {
    animation: none;
  }

  .audience-panel::before {
    animation: none;
  }
}
