:root {
  --bg: #ebebe8;
  --bg-soft: #f4f4f5;
  --fg: #18181b;
  --muted: rgba(24, 24, 27, 0.68);
  --faint: rgba(24, 24, 27, 0.1);
  --accent: #0066ff;
  --border: #d4d4d8;
  --dark: #18181b;
  --light: #ebebe8;
  --success: #22c55e;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --grid-max: 1600px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--fg);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

body::selection {
  color: var(--light);
  background: var(--accent);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.page-grid,
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.page-grid {
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
  background-image: repeating-linear-gradient(
    to right,
    rgba(24, 24, 27, 0.1) 0,
    rgba(24, 24, 27, 0.1) 1px,
    transparent 1px,
    transparent calc(100% / 12)
  );
}

.noise {
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(235, 235, 232, 0.8);
  backdrop-filter: blur(10px);
  z-index: 20;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(var(--grid-max), 100%);
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(18px, 3vw, 48px);
}

.header-links,
.footer-links nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.header-links a,
.header-cta,
.eyebrow,
.section-kicker p,
.service-index,
.service-body h4,
.system-card,
.footer-links,
.status-badge {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.header-links a,
.footer-links a {
  transition: color 0.45s var(--ease);
}

.header-links a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: center;
  gap: 4px;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.04em;
}

.brand span {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.brand strong {
  font-weight: 900;
}

.header-cta {
  justify-self: end;
  padding: 14px 18px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition:
    color 0.45s var(--ease),
    background 0.45s var(--ease),
    transform 0.45s var(--ease);
}

.header-cta:hover {
  color: var(--light);
  background: var(--fg);
  transform: translateY(-1px);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - var(--header-height) - 190px);
  border-bottom: 1px solid var(--border);
}

.hero-copy {
  grid-column: 1 / span 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - var(--header-height) - 190px);
  padding: clamp(28px, 3vw, 44px) clamp(18px, 4vw, 64px);
  border-right: 1px solid var(--border);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(235, 235, 232, 0.72);
}

.status-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: var(--success);
  animation: pulse 1.8s var(--ease) infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.35;
    transform: scale(0.2);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.eyebrow {
  margin: clamp(18px, 2.2vw, 28px) 0 14px;
  color: var(--accent);
}

.hero h1,
.section-content h2,
.section-heading h2,
.split-copy h2,
.offer h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(46px, 5.25vw, 76px);
  overflow-wrap: break-word;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

.hero h1 .ai-highlight {
  position: relative;
  display: inline-block;
  margin-right: 0.08em;
  color: var(--accent);
  font-size: 1.08em;
  font-weight: 700;
  line-height: 0.74;
  text-shadow: 0.045em 0.045em 0 rgba(0, 102, 255, 0.14);
}

.hero h1 .ai-highlight::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: -0.08em;
  bottom: 0.02em;
  height: 0.12em;
  background: rgba(0, 102, 255, 0.18);
  z-index: -1;
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 1px var(--fg);
}

.hero-subheadline,
.section-lede,
.offer p,
.final-cta p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.45;
}

.hero-subheadline {
  margin: clamp(18px, 2vw, 24px) 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(20px, 2vw, 28px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    background 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.button span:last-child {
  display: inline-block;
  transition: transform 0.6s var(--ease);
}

.button:hover span:last-child {
  transform: translateX(4px) rotate(-28deg);
}

.button-primary {
  color: var(--light);
  background: var(--fg);
}

.button-primary:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
}

.button-secondary:hover {
  color: var(--light);
  background: var(--fg);
  transform: translateY(-2px);
}

.trust-line {
  max-width: 720px;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  grid-column: 8 / span 5;
  min-height: calc(100svh - var(--header-height) - 190px);
  padding: 20px;
}

.panel-frame {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  min-height: calc(100svh - var(--header-height) - 230px);
  border: 1px solid var(--fg);
  background:
    linear-gradient(135deg, rgba(0, 102, 255, 0.18), transparent 36%),
    linear-gradient(0deg, rgba(24, 24, 27, 0.78), rgba(24, 24, 27, 0.18)),
    var(--border);
  overflow: hidden;
}

.panel-image {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(235, 235, 232, 0.54);
  filter: grayscale(1);
}

.panel-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(235, 235, 232, 0.12) 14% 15%, transparent 15% 34%, rgba(235, 235, 232, 0.12) 34% 35%, transparent 35% 64%, rgba(235, 235, 232, 0.12) 64% 65%, transparent 65%),
    linear-gradient(0deg, rgba(235, 235, 232, 0.1), rgba(235, 235, 232, 0));
}

.panel-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(235, 235, 232, 0.46);
}

.panel-line-one {
  top: 18%;
}

.panel-line-two {
  top: 39%;
}

.panel-line-three {
  top: 62%;
}

.panel-line-four {
  top: 82%;
}

.system-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(380px, calc(100% - 68px));
  padding: 18px;
  border: 1px solid rgba(235, 235, 232, 0.54);
  color: var(--light);
  background: rgba(24, 24, 27, 0.56);
  backdrop-filter: blur(16px);
}

.system-card-header,
.system-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.system-card-header {
  margin-bottom: 26px;
}

.system-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.system-card dt {
  white-space: nowrap;
}

.system-card dd {
  position: relative;
  width: 120px;
  height: 8px;
  margin: 3px 0 0;
  border: 1px solid rgba(235, 235, 232, 0.42);
}

.system-card dd span {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--accent);
}

.system-card p {
  margin: 24px 0 0;
}

.marquee {
  height: 92px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-soft);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  height: 100%;
  gap: clamp(22px, 4vw, 56px);
  padding-inline: 24px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

.marquee-track span,
.marquee-track em {
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.marquee-track em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
}

.marquee-track span:nth-child(4n + 2),
.marquee-track span:nth-child(4n + 4) {
  color: var(--accent);
  font-size: clamp(28px, 4vw, 58px);
  -webkit-text-stroke: 0;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-block {
  border-bottom: 1px solid var(--border);
}

.section-kicker {
  grid-column: 1 / span 3;
  padding: clamp(24px, 4.5vw, 56px) clamp(18px, 3vw, 48px);
  border-right: 1px solid var(--border);
}

.section-kicker p {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
  color: var(--accent);
}

.section-content {
  grid-column: 4 / span 9;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 84px);
}

.section-content h2,
.section-heading h2,
.split-copy h2,
.offer h2,
.final-cta h2 {
  max-width: 1080px;
  font-size: clamp(38px, 5.4vw, 86px);
}

.section-lede {
  margin: clamp(24px, 4vw, 44px) 0 0;
}

.pain-list,
.tag-list,
.feature-list {
  display: grid;
  margin-top: clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--border);
}

.pain-list li,
.tag-list li,
.feature-list li {
  position: relative;
  padding: 17px 0 17px 30px;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: clamp(16px, 1.35vw, 20px);
}

.pain-list li::before,
.tag-list li::before,
.feature-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.section-heading h2 {
  grid-column: 4 / span 9;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 84px);
}

.service-list {
  border-top: 1px solid var(--border);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(96px, 12.5vw) 1fr;
  min-height: 230px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row::after {
  content: "View";
  position: absolute;
  top: 50%;
  right: clamp(18px, 5vw, 84px);
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  color: var(--light);
  background: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(18px, -50%);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.service-row::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(38vw, 560px);
  background:
    linear-gradient(90deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.04)),
    repeating-linear-gradient(135deg, rgba(24, 24, 27, 0.7) 0 1px, rgba(235, 235, 232, 0.1) 1px 14px);
  clip-path: inset(0 0 0 100%);
  filter: grayscale(1);
  mix-blend-mode: multiply;
  transition: clip-path 0.6s var(--ease);
}

.service-row:hover::before {
  clip-path: inset(0 0 0 0);
}

.service-row:hover::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.service-index {
  padding: 34px clamp(18px, 3vw, 48px);
  border-right: 1px solid var(--border);
  color: var(--accent);
}

.service-body {
  position: relative;
  max-width: 1120px;
  padding: clamp(28px, 4vw, 56px) clamp(18px, 5vw, 84px);
  z-index: 1;
}

.service-body h3,
.process-list h3,
.offer h3 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  transition: font-style 0.45s var(--ease);
}

.service-row:hover h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.service-body p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
}

.service-body h4 {
  margin: 24px 0 12px;
  color: var(--accent);
}

.service-body ul,
.offer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 900px;
}

.service-body li,
.offer li {
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: rgba(244, 244, 245, 0.52);
  font-size: 14px;
}

.service-body a {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--fg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition:
    color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.service-body a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

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

.tag-list li {
  padding-right: 24px;
}

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

.process-list {
  display: grid;
  margin-top: clamp(26px, 4vw, 52px);
  border-top: 1px solid var(--border);
}

.process-list li {
  display: grid;
  grid-template-columns: minmax(70px, 120px) 1fr;
  gap: clamp(18px, 3vw, 44px);
  padding: clamp(22px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--border);
}

.process-list span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.process-list p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
}

.split-copy {
  grid-column: 1 / span 5;
  min-height: 430px;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 84px);
  border-right: 1px solid var(--border);
}

.feature-list {
  grid-column: 6 / span 7;
  align-self: stretch;
  margin-top: 0;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 84px);
  border-top: 0;
}

.feature-list li:first-child {
  border-top: 1px solid var(--border);
}

.offer {
  background: var(--fg);
  color: var(--light);
}

.offer-inner {
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 84px);
}

.offer .eyebrow {
  margin-top: 0;
}

.offer p {
  color: rgba(235, 235, 232, 0.74);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 86px);
  margin-top: clamp(28px, 4vw, 52px);
}

.offer h3 {
  color: var(--light);
}

.offer ul {
  margin-top: 24px;
}

.offer li {
  border-color: rgba(235, 235, 232, 0.24);
  background: rgba(235, 235, 232, 0.06);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(235, 235, 232, 0.28);
}

.contact-card .status-badge {
  border-color: rgba(235, 235, 232, 0.28);
  background: rgba(235, 235, 232, 0.06);
}

.contact-card > a:not(.button) {
  width: fit-content;
  border-bottom: 1px solid rgba(235, 235, 232, 0.6);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  transition:
    color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.contact-card > a:not(.button):hover {
  color: var(--accent);
  border-color: var(--accent);
}

.offer .button-primary {
  color: var(--fg);
  border-color: var(--light);
  background: var(--light);
}

.offer .button-primary:hover {
  color: var(--light);
  border-color: var(--accent);
  background: var(--accent);
}

.faq-list {
  display: grid;
  margin-top: clamp(24px, 3.5vw, 44px);
  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  cursor: pointer;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.45s var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 780px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 84px);
  border-bottom: 1px solid var(--border);
}

.final-cta .eyebrow {
  margin-top: 0;
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: min(100%, 360px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--light);
  background: var(--dark);
}

.footer-marquee {
  position: absolute;
  right: -4vw;
  bottom: -5vw;
  color: rgba(235, 235, 232, 0.1);
  font-size: 20vw;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  white-space: nowrap;
}

.footer-main,
.footer-links {
  position: relative;
  z-index: 1;
  width: min(var(--grid-max), 100%);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 84px);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 36px;
  align-items: end;
  padding-top: clamp(58px, 9vw, 128px);
  padding-bottom: clamp(58px, 9vw, 128px);
}

.footer-brand {
  display: inline-block;
  font-size: clamp(48px, 8vw, 132px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.footer-main p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(235, 235, 232, 0.68);
  font-size: clamp(17px, 1.5vw, 22px);
}

.footer-email {
  width: fit-content;
  border-bottom: 1px solid rgba(235, 235, 232, 0.6);
  font-size: clamp(30px, 4vw, 66px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  transition:
    color 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.footer-email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(235, 235, 232, 0.18);
  color: rgba(235, 235, 232, 0.8);
}

.footer-links p {
  margin: 0;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--light);
}

@media (max-width: 1080px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
  }

  .brand {
    flex: 0 1 auto;
  }

  .header-links {
    display: none;
  }

  .hero,
  .section-grid,
  .split-panel {
    display: block;
  }

  .hero-copy,
  .hero-panel,
  .section-kicker,
  .section-content,
  .split-copy,
  .feature-list {
    min-height: auto;
    border-right: 0;
  }

  .hero-copy,
  .section-kicker,
  .section-content,
  .split-copy,
  .feature-list {
    padding-inline: clamp(18px, 5vw, 54px);
  }

  .section-kicker {
    padding-bottom: 0;
  }

  .section-kicker p {
    position: static;
  }

  .hero-panel {
    padding-inline: clamp(18px, 5vw, 54px);
    padding-bottom: clamp(28px, 6vw, 64px);
  }

  .panel-frame {
    position: relative;
    top: 0;
    min-height: 560px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    padding-inline: clamp(18px, 5vw, 54px);
  }

  .service-row {
    grid-template-columns: 86px 1fr;
  }

  .service-row::before,
  .service-row::after {
    display: none;
  }

  .tag-list,
  .offer-grid,
  .final-cta,
  .footer-main,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .feature-list {
    padding-top: 0;
  }

  .split-copy {
    min-height: auto;
  }

  .footer-links nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    padding-inline: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .header-cta {
    flex: 0 0 auto;
    width: min(150px, 42vw);
    max-width: 150px;
    padding: 11px 12px;
    text-align: center;
    font-size: 9px;
    line-height: 1.25;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 41px);
    line-height: 0.9;
  }

  .hero-copy {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .hero-copy > * {
    max-width: 100%;
  }

  .hero-subheadline,
  .section-lede,
  .offer p,
  .final-cta p {
    font-size: 15.5px;
    line-height: 1.42;
  }

  .eyebrow,
  .status-badge,
  .button {
    letter-spacing: 0.08em;
  }

  .eyebrow {
    margin-top: 20px;
    max-width: min(100%, 310px);
    font-size: 9px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .hero-subheadline {
    max-width: min(100%, 330px);
    overflow-wrap: break-word;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero-panel {
    display: none;
  }

  .service-row {
    display: block;
  }

  .service-index {
    border-right: 0;
    padding-bottom: 0;
  }

  .service-body {
    padding-top: 18px;
  }

  .service-body ul,
  .offer ul {
    display: grid;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .contact-card > a:not(.button),
  .footer-email {
    overflow-wrap: anywhere;
  }

  .marquee {
    height: 92px;
  }

  .footer-links {
    align-items: start;
  }
}

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