@font-face {
  font-family: "Avalon";
  src: url("../assets/fonts/Avalon.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #152027;
  --ink-2: #31414b;
  --muted: #66747d;
  --line: #dfe6e5;
  --paper: #ffffff;
  --soft: #f3f6f3;
  --field: #eef2ef;
  --card: #ffffff;
  --card-muted: #f8faf8;
  --hero-base: #171c20;
  --hero-base-top: #222426;
  --teal: #147d70;
  --teal-dark: #0d5f55;
  --teal-text: #0d5f55;
  --orange: #e2762d;
  --gold: #c7a04a;
  --navy: #1d3440;
  --cream: #fbfaf5;
  --shadow: 0 22px 55px rgba(21, 32, 39, 0.15);
  --radius: 8px;
  --container: 1180px;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Avalon", var(--font-display);
  --text-h1: clamp(1.85rem, 3.6vw + 0.18rem, 3.5rem);
  --text-h2: clamp(1.5rem, 2.6vw + 0.14rem, 2.45rem);
  --text-h3: clamp(1.02rem, 1.35vw + 0.16rem, 1.15rem);
  --text-lead: clamp(0.975rem, 1vw + 0.42rem, 1.125rem);
  --text-body: 1rem;
  --leading-body: 1.6;
  --leading-heading: 1.1;
  --gradient-text: linear-gradient(90deg, #ffc69a 0%, #ff9d66 38%, #e2762d 72%, #ffc69a 100%);
  --gradient-text-light: linear-gradient(90deg, #b85a1a 0%, #e2762d 42%, #ff9d66 74%, #b85a1a 100%);
  font-family: var(--font-body);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #eef7f6;
  --ink-2: #c4d2d0;
  --muted: #91a5a2;
  --line: #263b40;
  --paper: #0d171d;
  --soft: #121f25;
  --field: #17272e;
  --card: #111d23;
  --card-muted: #101c22;
  --hero-base: #0b141a;
  --hero-base-top: #101c22;
  --teal: #29c2b1;
  --teal-dark: #0b2e2c;
  --teal-text: #7ce3d7;
  --orange: #ff9650;
  --gold: #d9bd6a;
  --navy: #0b141a;
  --cream: #101b21;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: var(--leading-body);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  overflow-x: clip;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--ink);
  padding-top: 8px;
  overflow: visible;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.subpage .site-header {
  color: var(--ink);
}

.utility {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
}

.is-scrolled .utility,
.is-open .utility,
.subpage .utility {
  border-bottom-color: var(--line);
}

.utility__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility nav {
  display: flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-shell {
  position: relative;
  z-index: 2;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: min(calc(100% - 40px), 1364px);
  padding: 5px 10px 5px 12px;
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 999px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 249, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 18px 42px rgba(21, 32, 39, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 96px;
  padding: 4px 6px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 32, 39, 0.08);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  overflow: visible;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  border-color: rgba(20, 125, 112, 0.28);
  background: rgba(20, 125, 112, 0.1);
}

.site-nav > a:not(.button) {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 999px;
  color: rgba(21, 32, 39, 0.76);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

.nav-trigger {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px 0 9px;
  color: rgba(21, 32, 39, 0.76);
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  white-space: nowrap;
}

.nav-dropdown-toggle {
  width: 28px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: rgba(21, 32, 39, 0.76);
  background: transparent;
  cursor: pointer;
}

.nav-trigger:focus-visible {
  outline: 2px solid rgba(226, 118, 45, 0.72);
  outline-offset: 2px;
}

.nav-trigger:focus:not(:focus-visible),
.nav-dropdown-toggle:focus {
  outline: none;
}

.site-nav > a:not(.button):hover,
.nav-trigger:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-trigger,
.nav-dropdown.is-open .nav-dropdown-toggle {
  border-color: rgba(226, 118, 45, 0.7);
  color: var(--teal-dark);
}

.nav-dropdown {
  position: relative;
  z-index: 4;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

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

.nav-dropdown:hover,
.nav-dropdown:focus-within,
.nav-dropdown.is-open {
  border-color: rgba(226, 118, 45, 0.7);
}

.nav-dropdown.is-open {
  z-index: 50;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 100;
  min-width: 206px;
  display: grid;
  gap: 0;
  padding: 7px;
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 249, 0.98)),
    rgba(255, 255, 255, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 38px rgba(21, 32, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-menu::before {
  position: absolute;
  top: -1px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 118, 45, 0.72), transparent);
  content: "";
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu,
.nav-dropdown.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown.is-hovering .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  min-height: 36px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(21, 32, 39, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.nav-menu a + a {
  border-top: 1px solid rgba(20, 32, 39, 0.08);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--teal-dark);
  background: rgba(20, 125, 112, 0.09);
  outline: none;
}

.has-chevron::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  opacity: 0.72;
  transform: translateY(-2px) rotate(45deg);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  flex: 0 0 auto;
}

.nav-theme {
  flex: 0 0 auto;
  min-width: 58px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(20, 32, 39, 0.14);
  border-radius: 999px;
  color: rgba(21, 32, 39, 0.72);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.nav-theme::before {
  content: attr(data-theme-label);
}

.nav-theme__knob,
.nav-theme__icon {
  display: none;
}

.nav-theme:hover {
  border-color: rgba(20, 125, 112, 0.35);
  color: var(--teal-dark);
  background: rgba(20, 125, 112, 0.1);
}

.nav-theme:focus-visible {
  outline: 2px solid rgba(20, 125, 112, 0.4);
  outline-offset: 3px;
}

.nav-signin {
  min-height: 40px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 32, 39, 0.12);
  border-radius: 999px;
  color: rgba(21, 32, 39, 0.78);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-signin:hover {
  color: var(--teal-dark);
  border-color: rgba(20, 125, 112, 0.32);
  background: rgba(20, 125, 112, 0.08);
}

.nav-cta {
  min-height: 40px;
  padding: 0 20px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #17968a 0%, #147d70 55%, #0f6d61 100%);
  box-shadow: 0 10px 24px rgba(20, 125, 112, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta span {
  font-size: 1rem;
  line-height: 1;
}

.nav-cta:hover {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 125, 112, 0.24);
}

.nav-download {
  min-height: 40px;
  padding-inline: 16px 14px;
  border-color: rgba(255, 126, 49, 0.95);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #e9792f 0%, #db6b32 48%, #b6407a 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 174, 74, 0.18),
    0 12px 30px rgba(226, 118, 45, 0.28);
  white-space: nowrap;
}

.nav-download span {
  font-size: 1rem;
  line-height: 1;
}

.site-nav .button--small {
  min-height: 28px;
  padding-inline: 10px;
  font-size: 0.66rem;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  border: 2px solid var(--orange);
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #c95e19;
  border-color: #c95e19;
}

.button--small {
  min-height: 40px;
  padding-inline: 16px;
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.button--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.button--outline {
  color: var(--teal-text);
  background: transparent;
  border-color: var(--teal);
}

.button--outline:hover {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-start;
  padding: 92px 0 40px;
  overflow: hidden;
  color: #fff;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: 0;
  background:
    radial-gradient(circle at 86% 84%, rgba(226, 118, 45, 0.24), transparent 20%),
    radial-gradient(circle at 64% 12%, rgba(20, 125, 112, 0.16), transparent 28%),
    linear-gradient(180deg, var(--hero-base-top) 0%, var(--hero-base) 100%);
}

.hero--video .hero__media {
  background: #121a1f;
}

.hero__media video,
.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  background: #0a1216;
}

.hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(12, 27, 35, 0.94) 0%, rgba(12, 27, 35, 0.76) 44%, rgba(12, 27, 35, 0.2) 76%),
    linear-gradient(0deg, rgba(12, 27, 35, 0.58), rgba(12, 27, 35, 0.04) 48%),
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 255, 255, 0.035) 40px 41px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255, 255, 255, 0.035) 40px 41px);
}

.hero--video .hero__shade {
  background:
    rgba(10, 18, 22, 0.38),
    linear-gradient(90deg, rgba(8, 16, 20, 0.94) 0%, rgba(8, 16, 20, 0.84) 38%, rgba(8, 16, 20, 0.62) 62%, rgba(8, 16, 20, 0.48) 100%),
    linear-gradient(0deg, rgba(8, 16, 20, 0.62), rgba(8, 16, 20, 0.28) 55%);
}

.hero__content {
  position: relative;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.hero .eyebrow,
.image-feature .eyebrow {
  color: #ffb26f;
}

.hero .eyebrow {
  margin-bottom: 8px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--leading-heading);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  max-width: 920px;
  font-size: var(--text-h1);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.25;
}

.headline-duo {
  display: grid;
  gap: 0.06em;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.headline-duo__plain {
  display: block;
  color: inherit;
  font-style: normal;
  font-weight: 800;
}

.headline-duo__accent {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #e2762d;
  background-color: transparent;
  background-image: linear-gradient(90deg, #ffc69a 0%, #ff9d66 38%, #e2762d 72%, #ffc69a 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headline-gradient-flow 7s ease-in-out infinite;
}

.hero .headline-duo {
  font-family: var(--font-hero);
  gap: 0.08em;
  line-height: 1;
  letter-spacing: 0;
  font-size: clamp(2.55rem, 5.8vw + 0.15rem, 4.5rem);
  font-weight: 400;
}

.hero .headline-duo__plain,
.hero .headline-duo__accent {
  font-weight: 400;
  font-style: normal;
}

.hero .headline-duo__plain,
.image-feature .headline-duo__plain {
  color: #fff;
}

.page-hero .headline-duo__plain,
.section .headline-duo__plain {
  color: var(--ink);
}

.section .headline-duo__accent,
.page-hero .headline-duo__accent,
.cta-panel .headline-duo__accent {
  color: #c95e19;
  background-image: linear-gradient(90deg, #b85a1a 0%, #e2762d 42%, #ff9d66 74%, #b85a1a 100%);
  background-size: 220% 100%;
}

.text-gradient {
  display: inline;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #c95e19;
  background-color: transparent;
  background-image: linear-gradient(90deg, #b85a1a 0%, #e2762d 42%, #ff9d66 74%, #b85a1a 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headline-gradient-flow 7s ease-in-out infinite;
}

.hero .text-gradient,
.image-feature .text-gradient {
  color: #ff9d66;
  background-image: linear-gradient(90deg, #ffc69a 0%, #ff9d66 38%, #e2762d 72%, #ffc69a 100%);
  background-size: 220% 100%;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .headline-duo__accent,
  .text-gradient {
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

@keyframes headline-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .headline-duo__accent,
  .text-gradient {
    animation: none;
    background-position: 0% 50%;
  }
}

/* Contact page */
.contact-page-hero {
  padding-block: 132px 84px;
}

.contact-page-hero .page-hero__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(42px, 6vw, 88px);
}

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

.contact-availability {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--teal) 32%, var(--line));
  border-radius: 999px;
  color: var(--teal-text);
  background: color-mix(in srgb, var(--teal) 8%, var(--card));
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--teal) 16%, transparent);
  animation: softBlink 2s ease-in-out infinite;
}

.contact-page-hero .headline-duo {
  max-width: 760px;
}

.contact-page-hero .hero__lead {
  max-width: 660px;
  margin-top: 22px;
}

.contact-hero-actions {
  margin-top: 30px;
}

.contact-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 25px 0 0;
  padding: 0;
  color: var(--ink-2);
  list-style: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-hero-points li {
  position: relative;
  padding-left: 20px;
}

.contact-hero-points li::before {
  position: absolute;
  left: 0;
  color: var(--teal-text);
  content: "✓";
  font-weight: 900;
}

.contact-page .contact-hero-media {
  min-height: 470px;
  aspect-ratio: 1 / 1.04;
  border: 1px solid color-mix(in srgb, var(--teal) 24%, var(--line));
  border-radius: 18px;
  box-shadow: 0 34px 80px rgba(5, 15, 20, 0.22);
}

.contact-page .contact-hero-media::after {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 16, 21, 0.64));
  transform: none;
}

.contact-page .contact-hero-media:hover::after {
  transform: none;
}

.contact-page .contact-hero-media img {
  transition: transform 700ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.contact-page .contact-hero-media:hover img {
  transform: scale(1.035);
}

.contact-image-badge {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 11px;
  max-width: 240px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  color: #fff;
  background: rgba(10, 22, 28, 0.78);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.contact-image-badge > span {
  grid-row: 1 / 3;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(124, 227, 215, 0.48);
  border-radius: 9px;
  color: #7ce3d7;
  background: rgba(41, 194, 177, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
}

.contact-image-badge strong,
.contact-image-badge small {
  line-height: 1.2;
}

.contact-image-badge strong {
  font-size: 0.8rem;
}

.contact-image-badge small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.67rem;
}

.contact-proof {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--card);
}

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

.contact-proof__grid > div {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 22px clamp(16px, 3vw, 32px);
}

.contact-proof__grid > div + div {
  border-left: 1px solid var(--line);
}

.contact-proof strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.contact-proof span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-page .demo-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
}

.contact-page .demo-section::before {
  position: absolute;
  width: 460px;
  height: 460px;
  right: -220px;
  bottom: -240px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--orange) 10%, transparent);
  content: "";
  filter: blur(20px);
  pointer-events: none;
}

.contact-demo-grid {
  position: relative;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  align-items: start;
  gap: clamp(48px, 7vw, 96px);
}

.contact-demo-copy {
  padding-top: 18px;
}

.contact-demo-copy > h2 {
  max-width: 560px;
  margin-top: 10px;
}

.contact-demo-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 20px;
}

.demo-steps {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.demo-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding-bottom: 26px;
}

.demo-steps li:not(:last-child)::before {
  position: absolute;
  top: 39px;
  bottom: 4px;
  left: 20px;
  width: 1px;
  background: var(--line);
  content: "";
}

.demo-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--teal) 34%, var(--line));
  border-radius: 50%;
  color: var(--teal-text);
  background: var(--card);
  font-size: 0.68rem;
  font-weight: 900;
}

.demo-steps strong {
  display: block;
  margin: 1px 0 5px;
  color: var(--ink);
}

.contact-page .demo-steps p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-card--modern {
  max-width: 100%;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding: 18px;
  border-radius: 12px;
}

.contact-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.contact-card--modern div:last-child {
  display: grid;
  gap: 2px;
}

.contact-card--modern span,
.contact-card--modern small {
  color: var(--muted);
  font-size: 0.71rem;
}

.contact-card--modern a {
  width: fit-content;
  color: var(--ink);
  font-weight: 800;
}

.demo-form-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid color-mix(in srgb, var(--teal) 24%, var(--line));
  border-radius: 20px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--teal) 7%, transparent), transparent 42%),
    var(--card);
  box-shadow: 0 30px 70px rgba(10, 27, 34, 0.14);
}

.demo-form-shell::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  content: "";
}

.demo-form-heading {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.demo-form-heading > span {
  color: var(--teal-text);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-form-heading h2 {
  margin: 7px 0 9px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.contact-page .demo-form-heading p {
  max-width: 520px;
  font-size: 0.9rem;
}

.contact-page .demo-form {
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page .demo-form:hover {
  transform: none;
  box-shadow: none;
}

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

.contact-page .demo-form label {
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
}

.contact-page .demo-form label > span {
  color: var(--orange);
}

.contact-page .demo-form input,
.contact-page .demo-form select,
.contact-page .demo-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--field);
  font: inherit;
  font-size: 0.9rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-page .demo-form input,
.contact-page .demo-form select {
  min-height: 52px;
  padding-inline: 15px;
}

.contact-page .demo-form textarea {
  min-height: 118px;
  padding: 14px 15px;
  line-height: 1.5;
  resize: vertical;
}

.contact-page .demo-form input::placeholder,
.contact-page .demo-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

.contact-page .demo-form input:focus,
.contact-page .demo-form select:focus,
.contact-page .demo-form textarea:focus {
  border-color: var(--teal);
  outline: 0;
  background: var(--card);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--teal) 14%, transparent);
}

.demo-form__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
}

.contact-page .demo-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.72rem;
}

.demo-form__privacy span {
  color: var(--teal-text);
  font-weight: 900;
}

:root[data-theme="dark"] .contact-proof {
  background: #101c22;
}

:root[data-theme="dark"] .demo-form-shell {
  background:
    linear-gradient(145deg, rgba(41, 194, 177, 0.08), transparent 42%),
    var(--card);
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.34);
}

@media (max-width: 980px) {
  .contact-page-hero .page-hero__grid,
  .contact-demo-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-page .contact-hero-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .contact-demo-grid {
    gap: 58px;
  }

  .contact-demo-copy {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .contact-page-hero {
    padding-block: 100px 52px;
  }

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

  .contact-proof__grid > div {
    min-height: 92px;
  }

  .contact-proof__grid > div:nth-child(3) {
    border-left: 0;
  }

  .contact-proof__grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-page .demo-section {
    padding-block: 76px;
  }
}

@media (max-width: 520px) {
  .contact-hero-actions,
  .contact-hero-actions .button {
    width: 100%;
  }

  .contact-hero-points {
    display: grid;
    gap: 8px;
  }

  .contact-page .contact-hero-media {
    aspect-ratio: 4 / 5;
    border-radius: 14px;
  }

  .contact-image-badge {
    top: 14px;
    right: 14px;
  }

  .contact-page .contact-hero-media figcaption {
    inset: auto 14px 14px;
  }

  .contact-proof__grid > div {
    padding: 16px 12px;
  }

  .contact-proof strong {
    font-size: 0.94rem;
  }

  .contact-proof span {
    font-size: 0.64rem;
  }

  .demo-form-shell {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }

  .demo-form__row {
    grid-template-columns: 1fr;
  }
}

/* Modern pricing experience */
.pricing-page .pricing-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 154px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(41, 194, 177, 0.14), transparent 27%),
    radial-gradient(circle at 12% 82%, rgba(255, 150, 80, 0.09), transparent 25%),
    var(--cream);
}

.pricing-page .pricing-hero::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(41, 194, 177, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(41, 194, 177, 0.035),
    0 0 0 144px rgba(41, 194, 177, 0.02);
  content: "";
  pointer-events: none;
}

.pricing-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.pricing-hero__content {
  max-width: 670px;
}

.pricing-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-hero__kicker span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.pricing-page .pricing-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.7rem, 5.1vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.pricing-page .pricing-hero .hero__lead {
  max-width: 640px;
  margin-top: 26px;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.2vw, 1.17rem);
}

.pricing-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.pricing-hero__actions .button {
  min-width: 178px;
  min-height: 54px;
  border-radius: 999px;
}

.pricing-hero__link {
  color: var(--ink);
  font-weight: 850;
}

.pricing-hero__link span {
  display: inline-block;
  margin-left: 6px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.pricing-hero__link:hover span {
  transform: translateX(4px);
}

.pricing-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  list-style: none;
}

.pricing-hero__assurances li {
  position: relative;
  padding-left: 18px;
}

.pricing-hero__assurances li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(41, 194, 177, 0.1);
  content: "";
}

.pricing-hero__visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(124, 227, 215, 0.22);
  border-radius: 28px;
  background:
    url("../assets/images/contractor-software-pricing-plans.webp") center / cover no-repeat,
    #0b141a;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
}

.pricing-hero__visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.pricing-hero__visual-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 16, 21, 0.08), rgba(7, 16, 21, 0.84)),
    linear-gradient(90deg, rgba(7, 16, 21, 0.34), transparent 70%);
}

.pricing-hero__snapshot {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: #fff;
  background: rgba(10, 21, 27, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.pricing-hero__snapshot > span,
.pricing-hero__float span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-hero__snapshot > strong {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.pricing-hero__snapshot div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-hero__snapshot i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7ce3d7;
  box-shadow: 0 0 0 5px rgba(124, 227, 215, 0.13);
}

.pricing-hero__snapshot p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.pricing-hero__float {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 14px;
  color: #fff;
  background: rgba(10, 21, 27, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.pricing-hero__float strong {
  display: block;
  margin-top: 2px;
  color: #ffad75;
  font-size: 1.12rem;
}

.pricing-proof {
  position: relative;
  z-index: 4;
  border-block: 1px solid var(--line);
  background: var(--card);
}

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

.pricing-proof__grid > div {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
}

.pricing-proof__grid > div:first-child {
  border-left: 0;
}

.pricing-proof__grid strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.pricing-proof__grid span {
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 780;
  line-height: 1.45;
}

.pricing-page .pricing-section {
  position: relative;
  padding-block: 112px;
  background:
    radial-gradient(circle at 50% 8%, rgba(41, 194, 177, 0.08), transparent 32%),
    var(--soft);
}

.pricing-page .pricing-intro {
  align-items: center;
  margin-bottom: 52px;
}

.pricing-page .pricing-intro h2 {
  max-width: 680px;
}

.pricing-intro__copy {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-page .billing-switch {
  flex: 0 0 auto;
  width: 328px;
  padding: 6px;
  border-radius: 16px;
}

.pricing-page .billing-switch__option {
  min-height: 46px;
  border-radius: 11px;
  cursor: pointer;
}

.pricing-page .pricing-grid--modern {
  gap: 22px;
}

.pricing-page .price-card--modern {
  min-height: 650px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(41, 194, 177, 0.055), transparent 34%),
    var(--card);
  box-shadow: 0 20px 54px rgba(10, 24, 30, 0.1);
}

.pricing-page .price-card--modern::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(41, 194, 177, 0.7), transparent);
  content: "";
}

.pricing-page .price-card--modern.price-card--featured {
  z-index: 2;
  border-color: rgba(41, 194, 177, 0.58);
  background:
    radial-gradient(circle at 100% 0, rgba(41, 194, 177, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(41, 194, 177, 0.1), transparent 44%),
    var(--card);
  box-shadow: 0 30px 74px rgba(8, 37, 40, 0.22);
}

.pricing-page .price-card--modern.price-card--featured::before {
  height: 5px;
  background: linear-gradient(90deg, var(--teal), #7ce3d7, var(--orange));
}

.pricing-page .price-card__head {
  min-height: 222px;
  padding: 30px 30px 24px;
  border-bottom: 0;
}

.price-card__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--teal-text);
  background: var(--soft);
  letter-spacing: 0;
}

.pricing-page .price-card__head h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.pricing-page .price-card--featured .price-card__identity {
  padding-right: 142px;
}

.pricing-page .price-card__head p {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-page .price {
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 30px 0;
}

.pricing-page .price-card__save {
  flex-basis: 100%;
  width: max-content;
  margin: 0 0 15px;
}

.pricing-page .price strong {
  font-size: clamp(3.2rem, 4.5vw, 4.45rem);
  letter-spacing: -0.055em;
}

.pricing-page .price--custom strong {
  font-size: clamp(2.7rem, 4vw, 3.7rem);
}

.pricing-page .price--custom em {
  margin-top: 7px;
}

.pricing-page .price-note {
  min-height: 45px;
  margin: 10px 30px 22px;
}

.pricing-page .price-list {
  padding-inline: 30px;
}

.pricing-page .price-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.pricing-page .price-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pricing-page .addons {
  margin: 26px 30px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.pricing-page .price-card--modern .button {
  width: calc(100% - 60px);
  min-height: 52px;
  margin: auto 30px 30px;
  border-radius: 999px;
}

.pricing-page .price-card__flag {
  top: 20px;
  right: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), #159789);
  box-shadow: 0 12px 28px rgba(20, 125, 112, 0.24);
}

.pricing-page .pricing-disclaimer {
  margin-top: 28px;
  text-align: center;
}

.pricing-compare {
  padding-block: 112px;
  background: var(--paper);
}

.pricing-compare__heading {
  align-items: end;
  margin-bottom: 40px;
}

.pricing-compare__heading h2 {
  max-width: 700px;
}

.pricing-compare__heading .button {
  border-radius: 999px;
}

.pricing-page .comparison-table {
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(10, 24, 30, 0.09);
}

.pricing-page .comparison-row > * {
  min-height: 70px;
  padding-inline: 22px;
}

.pricing-page .comparison-row--head {
  background:
    linear-gradient(110deg, rgba(41, 194, 177, 0.16), transparent 45%),
    var(--navy);
}

.pricing-page .comparison-row:nth-child(even) {
  background: rgba(41, 194, 177, 0.025);
}

.pricing-advisor {
  padding-block: 0 112px;
  background: var(--paper);
}

.pricing-advisor__panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 7vw, 100px);
  padding: clamp(38px, 6vw, 78px);
  border: 1px solid rgba(41, 194, 177, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 150, 80, 0.1), transparent 32%),
    radial-gradient(circle at 100% 100%, rgba(41, 194, 177, 0.12), transparent 36%),
    var(--soft);
}

.pricing-advisor__intro {
  align-self: center;
}

.pricing-advisor__intro p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.pricing-advisor__intro a {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  color: var(--teal-text);
  font-weight: 850;
}

.pricing-advisor__steps {
  display: grid;
}

.pricing-advisor__steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.pricing-advisor__steps article:first-child {
  border-top: 0;
}

.pricing-advisor__steps article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: var(--teal);
  font-family: var(--font-display);
  font-size: 0.78rem;
  box-shadow: 0 12px 28px rgba(20, 125, 112, 0.18);
}

.pricing-advisor__steps h3 {
  margin: 0 0 6px;
}

.pricing-advisor__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-final-cta .cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 34px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 150, 80, 0.18), transparent 26%),
    linear-gradient(125deg, rgba(41, 194, 177, 0.12), transparent 46%),
    var(--card);
}

.pricing-final-cta .cta-panel h2 {
  max-width: 760px;
}

.pricing-final-cta .cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-final-cta .cta-panel .button {
  min-width: 245px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .pricing-page .pricing-hero {
    min-height: auto;
    padding: 128px 0 72px;
  }

  .pricing-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .pricing-hero__content {
    max-width: 760px;
  }

  .pricing-hero__visual {
    min-height: 460px;
  }

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

  .pricing-proof__grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .pricing-proof__grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .pricing-advisor__panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-final-cta .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .pricing-page .pricing-hero {
    padding: 100px 0 58px;
  }

  .pricing-page .pricing-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .pricing-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pricing-hero__actions .button {
    width: 100%;
  }

  .pricing-hero__link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .pricing-hero__assurances {
    display: grid;
    gap: 12px;
  }

  .pricing-hero__visual {
    min-height: 390px;
    border-radius: 20px;
  }

  .pricing-hero__snapshot {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .pricing-hero__float {
    top: 16px;
    right: 16px;
  }

  .pricing-proof__grid {
    grid-template-columns: 1fr;
  }

  .pricing-proof__grid > div {
    min-height: 86px;
    padding: 18px 12px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .pricing-proof__grid > div:first-child {
    border-top: 0;
  }

  .pricing-page .pricing-section,
  .pricing-compare {
    padding-block: 80px;
  }

  .pricing-page .pricing-intro {
    margin-bottom: 34px;
  }

  .pricing-page .billing-switch {
    width: 100%;
  }

  .pricing-page .price-card__head {
    padding: 26px 24px 20px;
  }

  .pricing-page .price-card--featured .price-card__identity {
    padding-right: 126px;
  }

  .pricing-page .price,
  .pricing-page .price-list {
    padding-inline: 24px;
  }

  .pricing-page .price-note {
    margin-inline: 24px;
  }

  .pricing-page .addons {
    margin-inline: 24px;
  }

  .pricing-page .price-card--modern .button {
    width: calc(100% - 48px);
    margin-inline: 24px;
  }

  .pricing-advisor {
    padding-bottom: 80px;
  }

  .pricing-advisor__panel,
  .pricing-final-cta .cta-panel {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .pricing-advisor__steps article {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .pricing-advisor__steps article > span {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .pricing-final-cta .cta-panel .button {
    min-width: 0;
    width: 100%;
  }
}

p,
li,
dd,
label,
summary,
input,
select {
  letter-spacing: 0;
}

.hero__lead {
  max-width: 740px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-lead);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero__stats div {
  min-height: 88px;
  padding: 14px;
  background: var(--card);
}

.hero__stats dt {
  margin-bottom: 4px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--ink);
}

.hero__stats dd {
  margin: 0;
  color: var(--muted);
}

.stat-strip {
  padding: 12px 0;
  background: var(--soft);
}

.page-hero {
  position: relative;
  padding: 124px 0 68px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 125, 112, 0.1), rgba(226, 118, 45, 0.08)),
    var(--cream);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(21, 32, 39, 0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(21, 32, 39, 0.05) 39px 40px);
  pointer-events: none;
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
}

.page-hero .hero__lead {
  color: var(--ink-2);
}

.media-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(20, 125, 112, 0.12), rgba(226, 118, 45, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(21, 32, 39, 0.05) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(21, 32, 39, 0.05) 31px 32px),
    var(--card);
  box-shadow: 0 18px 45px rgba(21, 32, 39, 0.08);
}

.media-card::before,
.media-card::after {
  position: absolute;
  content: "";
  border-radius: 8px;
  pointer-events: none;
}

.media-card::before {
  width: 72%;
  aspect-ratio: 1.55;
  border: 2px dashed rgba(20, 125, 112, 0.28);
  transform: rotate(-3deg);
}

.media-card::after {
  width: 56%;
  aspect-ratio: 1.55;
  border: 2px solid rgba(226, 118, 45, 0.18);
  transform: translate(24px, 22px) rotate(3deg);
}

.media-card span {
  position: relative;
  z-index: 1;
  max-width: 260px;
  padding: 10px 14px;
  border: 1px dashed rgba(20, 125, 112, 0.44);
  border-radius: 8px;
  color: var(--muted);
  background: color-mix(in srgb, var(--card) 76%, transparent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.media-card--dark {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(20, 125, 112, 0.26), rgba(226, 118, 45, 0.12)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.07) 35px 36px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.07) 35px 36px),
    var(--navy);
  box-shadow: var(--shadow);
}

.media-card--dark span {
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(12, 27, 35, 0.36);
}

.media-card--image {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border-style: solid;
}

.media-card--image::before,
.media-card--image::after {
  display: none;
}

.media-card--image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.support-hero-media,
.contact-hero-media {
  margin: 0;
}

.support-hero-media figcaption,
.contact-hero-media figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #fff;
  background: rgba(11, 20, 26, 0.76);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.proof-band {
  background: var(--teal-dark);
  color: #fff;
}

.proof-band__inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  font-family: var(--font-hero);
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw + 0.2rem, 1.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 100px 0;
}

.section--muted {
  background: var(--soft);
}

.intro-grid,
.split,
.demo-grid,
.faq-grid,
.support-grid,
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.intro-grid p,
.product-copy p,
.image-feature p,
.demo-grid p,
.support-grid p {
  margin: 0;
  color: var(--ink-2);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.1rem);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > a {
  color: var(--teal-text);
  font-weight: 900;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.process article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.feature-card {
  min-height: 260px;
  padding: 28px;
}

.feature-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card p,
.process p,
.price-card p,
.price-card li,
.detail-list p,
.faq-list p,
blockquote cite,
.demo-form label,
.faq-list summary {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal-text);
  font-weight: 900;
}

.product-section {
  background: var(--cream);
}

.product-copy p {
  margin: 20px 0 0;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  content: "✓";
  display: grid;
  place-items: center;
  font-size: 0.78rem;
}

.dashboard {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-muted);
  box-shadow: var(--shadow);
}

.dashboard__top {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard__top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #bdc8c5;
}

.dashboard__top strong {
  margin-left: 10px;
}

.dashboard__body {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 430px;
}

.dashboard__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-top: 24px;
  background: var(--navy);
}

.dashboard__rail span {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.dashboard__rail .active {
  background: var(--orange);
}

.dashboard__main {
  padding: 22px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-row div,
.takeoff-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.metric-row div {
  min-height: 114px;
  padding: 16px;
}

.metric-row small,
.metric-row em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.metric-row strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(1.1rem, 2vw, 1.75rem);
}

.takeoff-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  margin-top: 14px;
  padding: 18px;
}

.plan-lines {
  position: relative;
  min-height: 240px;
  border: 1px solid #c8d3d0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 23px, #d7e0dd 24px, transparent 25px),
    linear-gradient(0deg, transparent 23px, #d7e0dd 24px, transparent 25px),
    #f5f8f7;
  background-size: 48px 48px;
}

.plan-lines span {
  position: absolute;
  border: 3px solid var(--teal);
  border-radius: 3px;
}

.plan-lines span:nth-child(1) {
  inset: 28px 36px 128px 32px;
}

.plan-lines span:nth-child(2) {
  inset: 116px 112px 42px 48px;
  border-color: var(--orange);
}

.plan-lines span:nth-child(3) {
  inset: 86px 42px 72px 174px;
  border-color: var(--gold);
}

.plan-lines span:nth-child(4) {
  inset: 42px 180px 156px 72px;
  border-color: var(--navy);
}

.line-items {
  display: grid;
  align-content: start;
  gap: 10px;
}

.line-items div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--field);
}

.line-items span {
  color: var(--ink-2);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process article {
  position: relative;
  min-height: 248px;
  padding: 28px;
}

.process span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-weight: 900;
}

.image-feature {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.image-feature__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 39, 0.9), rgba(20, 32, 39, 0.58), rgba(20, 32, 39, 0.2)),
    radial-gradient(circle at 82% 38%, rgba(32, 224, 209, 0.28), transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.07) 43px 44px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.07) 43px 44px),
    #142027;
}

.image-feature__media::before,
.image-feature__media::after {
  display: none;
}

.image-feature__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.image-feature__media::after {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background: linear-gradient(90deg, rgba(8, 16, 20, 0.96) 0%, rgba(8, 16, 20, 0.86) 38%, rgba(8, 16, 20, 0.24) 72%, rgba(8, 16, 20, 0.08) 100%);
  pointer-events: none;
}

.image-feature__video {
  position: absolute;
  right: clamp(28px, 9vw, 140px);
  top: 92px;
  width: min(44vw, 620px);
  height: 360px;
  border: 1px solid rgba(226, 118, 45, 0.5);
  border-radius: 14px;
  object-fit: contain;
  object-position: center;
  background: #0a1216;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.image-feature__media:has(.image-feature__video)::after {
  display: block;
  position: absolute;
  content: "";
  pointer-events: none;
  right: clamp(28px, 9vw, 140px);
  top: 92px;
  width: min(44vw, 620px);
  height: 360px;
  border-radius: 14px;
  background: rgba(8, 16, 20, 0.45);
  z-index: 2;
}

.image-feature__content {
  position: relative;
}

.image-feature__content > div {
  max-width: 640px;
}

.image-feature p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.detail-list {
  display: grid;
  gap: 18px;
}

.detail-list div {
  padding: 28px;
  border-left: 5px solid var(--teal);
  background: var(--card);
}

.detail-list h3 {
  margin-bottom: 8px;
}

.detail-list p {
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-section {
  background:
    linear-gradient(180deg, var(--card) 0%, var(--card) 48%, var(--soft) 48%, var(--soft) 100%);
}

.pricing-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.pricing-intro h2 {
  max-width: 790px;
}

.billing-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: min(100%, 316px);
  padding: 5px;
  border: 1px solid rgba(136, 151, 164, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(15, 25, 31, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.billing-switch__option {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: default;
}

.billing-switch__option.is-active {
  color: #0d171d;
  background: linear-gradient(135deg, #7ce3d7, #29c2b1);
  box-shadow: 0 10px 24px rgba(41, 194, 177, 0.26);
}

.billing-switch__badge {
  position: absolute;
  right: 10px;
  top: -16px;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 150, 80, 0.5);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 150, 80, 0.95), rgba(226, 118, 45, 0.9));
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(226, 118, 45, 0.22);
}

.pricing-grid--modern {
  gap: 20px;
  scroll-margin-top: 132px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 474px;
  padding: 30px;
}

.price-card--featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price-card__flag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card p {
  min-height: 76px;
}

.price-card strong {
  display: block;
  margin: 10px 0 18px;
  color: var(--teal-text);
  font-size: 1.1rem;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding-left: 20px;
}

.price-card .button {
  margin-top: auto;
}

.price-card--modern {
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(20, 125, 112, 0.05), transparent 28%),
    var(--card);
  box-shadow: 0 18px 46px rgba(21, 32, 39, 0.08);
}

.price-card--modern.price-card--featured {
  border-color: rgba(20, 125, 112, 0.55);
  background:
    linear-gradient(180deg, rgba(20, 125, 112, 0.12), transparent 32%),
    var(--card);
  transform: translateY(-12px);
}

.price-card--modern .price-card__flag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
}

.price-card__head {
  min-height: 196px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--line);
}

.price-card__head p {
  min-height: auto;
  margin-bottom: 0;
}

.price-card__save {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 10px;
  border: 1px solid rgba(226, 118, 45, 0.34);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(226, 118, 45, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 26px 28px 0;
}

.price strong {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.75rem, 4vw, 4rem);
  line-height: 0.95;
}

.price em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.price__was {
  color: #8a969c;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: line-through;
}

.price--custom {
  display: block;
}

.price--custom strong,
.price--custom em {
  display: block;
}

.price-note {
  min-height: 48px;
  margin: 10px 28px 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 28px;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
}

.price-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

.addons {
  display: grid;
  gap: 8px;
  margin: 24px 28px;
  padding: 16px;
  border: 1px dashed #c9d6d2;
  border-radius: 8px;
  background: var(--soft);
}

.addons h4 {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.addons span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.price-card--modern .button {
  width: calc(100% - 56px);
  margin: auto 28px 28px;
}

.pricing-disclaimer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 45px rgba(21, 32, 39, 0.06);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > * {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-left: 1px solid var(--line);
}

.comparison-row > *:first-child {
  border-left: 0;
  color: var(--ink);
  font-weight: 850;
}

.comparison-row strong {
  color: var(--teal-text);
  font-size: 0.94rem;
}

.comparison-row--head {
  color: #fff;
  background: var(--navy);
}

.comparison-row--head > *:first-child,
.comparison-row--head strong,
.comparison-row--head span {
  color: #fff;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.76);
}

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

.support-items span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.support-visual {
  position: relative;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #0b141a;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.support-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.support-visual figcaption {
  position: absolute;
  inset: auto 14px 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 6px;
  color: #fff;
  background: rgba(11, 20, 26, 0.8);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 800;
}

.workflow-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.workflow-hero-facts span {
  display: inline-grid;
  gap: 2px;
  min-width: 136px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 18, 23, 0.44);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
}

.workflow-hero-facts strong {
  color: #fff;
  font-size: 0.9rem;
}

.workflow-jumpbar {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 10px 24px rgba(21, 32, 39, 0.06);
}

.workflow-jumpbar .container {
  display: flex;
  gap: 8px;
  padding-block: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.workflow-jumpbar a {
  min-height: 40px;
  display: inline-flex;
  flex: none;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow-jumpbar a:hover,
.workflow-jumpbar a:focus-visible {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.workflow-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.workflow-section-heading > p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.section--dark .workflow-section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(8, minmax(190px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 0 8px;
  overflow-x: auto;
  list-style: none;
}

.workflow-map li {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.workflow-map li > span {
  display: grid;
  width: 40px;
  height: 34px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.workflow-map li:nth-child(even) > span {
  background: var(--orange);
}

.workflow-map strong {
  margin-top: 28px;
  color: var(--ink);
}

.workflow-map small {
  margin-top: 7px;
  color: var(--ink-2);
  line-height: 1.45;
}

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

.workflow-stage-grid > article {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.workflow-stage-grid header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.workflow-stage-grid header > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
}

.workflow-stage-grid article:nth-child(even) header > span {
  background: var(--orange);
}

.workflow-stage-grid header small {
  display: block;
  margin-bottom: 2px;
  color: var(--teal-text);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-stage-grid > article > p {
  margin: 0 0 22px;
  color: var(--ink-2);
  line-height: 1.65;
}

.workflow-stage-grid dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.workflow-stage-grid dl > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.workflow-stage-grid dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.workflow-stage-grid dd {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.55;
}

.workflow-status-grid,
.workflow-exception-grid,
.workflow-rhythm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.workflow-status-grid article,
.workflow-rhythm-grid article {
  min-height: 235px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.workflow-status-grid article > span,
.workflow-rhythm-grid article > span {
  display: inline-block;
  margin-bottom: 38px;
  color: #ffb26f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-status-grid h3,
.workflow-rhythm-grid h3 {
  margin-bottom: 10px;
  color: #fff;
}

.workflow-status-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.workflow-version-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.workflow-version-grid > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.workflow-revision-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-revision-list li {
  display: grid;
  gap: 4px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--card);
}

.workflow-revision-list li:nth-child(even) {
  border-left-color: var(--orange);
}

.workflow-revision-list strong {
  color: var(--ink);
}

.workflow-revision-list span {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}

.workflow-version-visual {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.workflow-version-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.workflow-version-visual figcaption {
  position: absolute;
  inset: auto 18px 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  color: #fff;
  background: rgba(9, 20, 26, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(21, 32, 39, 0.07);
}

.workflow-role-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  text-align: left;
}

.workflow-role-table th,
.workflow-role-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  line-height: 1.55;
  vertical-align: top;
}

.workflow-role-table thead th {
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-role-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.workflow-role-table tbody tr:last-child > * {
  border-bottom: 0;
}

.workflow-exception-grid > article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--card);
}

.workflow-exception-grid > article:nth-child(even) {
  border-top-color: var(--orange);
}

.workflow-exception-grid article > span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-exception-grid h3 {
  margin-bottom: 10px;
}

.workflow-exception-grid p,
.workflow-exception-grid small {
  color: var(--ink-2);
  line-height: 1.6;
}

.workflow-exception-grid small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-text);
  font-weight: 800;
}

.workflow-rhythm-grid ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.workflow-map li,
.workflow-stage-grid > article,
.workflow-status-grid article,
.workflow-revision-list li,
.workflow-version-visual,
.workflow-exception-grid > article,
.workflow-rhythm-grid article,
.workflow-jumpbar a {
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.workflow-map li:hover,
.workflow-stage-grid > article:hover,
.workflow-status-grid article:hover,
.workflow-revision-list li:hover,
.workflow-version-visual:hover,
.workflow-exception-grid > article:hover,
.workflow-rhythm-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 125, 112, 0.38);
  box-shadow: 0 22px 48px rgba(21, 32, 39, 0.14);
}

@media (max-width: 900px) {
  .workflow-status-grid,
  .workflow-exception-grid,
  .workflow-rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .workflow-section-heading,
  .workflow-stage-grid,
  .workflow-version-grid,
  .workflow-status-grid,
  .workflow-exception-grid,
  .workflow-rhythm-grid {
    grid-template-columns: 1fr;
  }

  .workflow-section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .workflow-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-hero-facts span {
    min-width: 0;
  }

  .workflow-stage-grid dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .workflow-status-grid article,
  .workflow-exception-grid > article,
  .workflow-rhythm-grid article {
    min-height: 0;
  }

  .workflow-version-visual,
  .workflow-version-visual img {
    min-height: 360px;
  }
}

@media (max-width: 460px) {
  .workflow-hero-facts {
    grid-template-columns: 1fr;
  }
}

.features-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.features-hero-facts span {
  display: inline-grid;
  gap: 2px;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 18, 23, 0.44);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
}

.features-hero-facts strong {
  color: #fff;
  font-size: 0.9rem;
}

.features-jumpbar {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 10px 24px rgba(21, 32, 39, 0.06);
}

.features-jumpbar .container {
  display: flex;
  gap: 8px;
  padding-block: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.features-jumpbar a {
  min-height: 40px;
  display: inline-flex;
  flex: none;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 850;
}

.features-jumpbar a:hover,
.features-jumpbar a:focus-visible {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.features-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.features-section-heading > p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.section--dark .features-section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-capability-grid article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--teal) 7%, transparent), transparent 44%),
    var(--card);
}

.feature-capability-grid article > span {
  display: grid;
  width: 43px;
  height: 34px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature-capability-grid article:nth-child(4n + 2) > span,
.feature-capability-grid article:nth-child(4n + 4) > span {
  background: var(--orange);
}

.feature-capability-grid h3 {
  margin-bottom: 10px;
}

.feature-capability-grid p,
.feature-capability-grid li {
  color: var(--ink-2);
  line-height: 1.6;
}

.feature-capability-grid ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0 18px;
  font-size: 0.88rem;
}

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

.estimate-path-grid > article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 16px 38px rgba(21, 32, 39, 0.07);
}

.estimate-path-grid figure {
  height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.estimate-path-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estimate-path-grid article > div {
  padding: clamp(24px, 4vw, 36px);
}

.estimate-path-grid article > div > span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-path-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.estimate-path-grid p,
.estimate-path-grid li,
.estimate-path-grid small {
  color: var(--ink-2);
  line-height: 1.65;
}

.estimate-path-grid ol {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding-left: 20px;
}

.estimate-path-grid small {
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.blueprint-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blueprint-process li {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.blueprint-process li > span {
  display: grid;
  width: 38px;
  height: 32px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 0.7rem;
  font-weight: 900;
}

.blueprint-process strong {
  margin-top: 28px;
  color: #fff;
}

.blueprint-process small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.feature-human-review {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 178, 111, 0.38);
  border-left: 4px solid #ffb26f;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.65;
}

.feature-human-review strong {
  color: #fff;
}

.feature-human-review span {
  color: rgba(255, 255, 255, 0.74);
}

.customer-cash-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.customer-cash-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.customer-cash-grid article > span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal-text);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.customer-cash-grid h3 {
  margin-bottom: 10px;
}

.customer-cash-grid p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.6;
}

.features-assistant-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.features-assistant-grid > div > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.features-assistant-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.features-assistant-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 20, 26, 0.1), rgba(9, 20, 26, 0.9));
}

.features-assistant-visual img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.features-assistant-visual figcaption {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(9, 20, 26, 0.78);
  backdrop-filter: blur(12px);
}

.features-assistant-visual figcaption span {
  color: #ffb26f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.features-assistant-visual figcaption small {
  color: rgba(255, 255, 255, 0.7);
}

.feature-admin-grid,
.feature-operations-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-admin-grid article {
  min-height: 260px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.feature-admin-grid article > span {
  display: inline-block;
  margin-bottom: 38px;
  color: #ffb26f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-admin-grid h3 {
  margin-bottom: 10px;
  color: #fff;
}

.feature-admin-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.feature-operations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-operations-grid article {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.feature-operations-grid strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.feature-operations-grid span {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.feature-capability-grid article,
.estimate-path-grid > article,
.blueprint-process li,
.customer-cash-grid article,
.features-assistant-visual,
.feature-admin-grid article,
.feature-operations-grid article,
.features-jumpbar a {
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.feature-capability-grid article:hover,
.estimate-path-grid > article:hover,
.blueprint-process li:hover,
.customer-cash-grid article:hover,
.features-assistant-visual:hover,
.feature-admin-grid article:hover,
.feature-operations-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 125, 112, 0.38);
  box-shadow: 0 22px 48px rgba(21, 32, 39, 0.14);
}

@media (max-width: 1120px) {
  .feature-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blueprint-process,
  .customer-cash-grid {
    grid-template-columns: repeat(6, minmax(200px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
  }

  .customer-cash-grid {
    grid-template-columns: repeat(5, minmax(220px, 1fr));
  }

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

@media (max-width: 700px) {
  .features-section-heading,
  .feature-capability-grid,
  .estimate-path-grid,
  .features-assistant-grid,
  .feature-admin-grid,
  .feature-operations-grid {
    grid-template-columns: 1fr;
  }

  .features-section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .features-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .features-hero-facts span {
    min-width: 0;
  }

  .feature-capability-grid article,
  .feature-admin-grid article,
  .feature-operations-grid article {
    min-height: 0;
  }

  .feature-capability-grid ul {
    margin-top: 20px;
  }

  .estimate-path-grid figure {
    height: 220px;
  }

  .feature-human-review {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}

@media (max-width: 460px) {
  .features-hero-facts {
    grid-template-columns: 1fr;
  }
}

.trades-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.trades-hero-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 18, 23, 0.44);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
  font-weight: 850;
}

.trades-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.trades-section-heading > p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.section--dark .trades-section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.trade-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trade-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--teal) 7%, transparent), transparent 44%),
    var(--card);
}

.trade-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(20, 125, 112, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.trade-card:nth-child(3n + 2) > span {
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(226, 118, 45, 0.2);
}

.trade-card:nth-child(3n) > span {
  background: var(--navy);
}

.trade-card h3 {
  margin-bottom: 10px;
}

.trade-card p,
.trade-card li {
  color: var(--ink-2);
  line-height: 1.6;
}

.trade-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 22px 0 0 18px;
  font-size: 0.9rem;
}

.trade-measure-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trade-measure-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.trade-measure-grid article > span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--teal-text);
  background: color-mix(in srgb, var(--teal) 11%, transparent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-measure-grid h3 {
  margin-bottom: 10px;
}

.trade-measure-grid p,
.trade-measure-grid small {
  color: var(--ink-2);
  line-height: 1.55;
}

.trade-measure-grid strong {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-size: 0.82rem;
}

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

.trades-platform-grid article {
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.trades-platform-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
}

.trades-platform-grid h3 {
  margin-bottom: 10px;
  color: #fff;
}

.trades-platform-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.trades-canada-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.trades-canada-grid > div:first-child > p:not(.eyebrow) {
  margin: 20px 0 26px;
  color: var(--ink-2);
  line-height: 1.7;
}

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

.trades-benefit-list article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.trades-benefit-list strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.trades-benefit-list span {
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.55;
}

.trade-card,
.trade-measure-grid article,
.trades-platform-grid article,
.trades-benefit-list article {
  transition:
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.trade-card:hover,
.trade-measure-grid article:hover,
.trades-platform-grid article:hover,
.trades-benefit-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 125, 112, 0.38);
  box-shadow: 0 22px 48px rgba(21, 32, 39, 0.14);
}

@media (max-width: 1100px) {
  .trade-card-grid,
  .trades-platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trade-measure-grid {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
  }
}

@media (max-width: 700px) {
  .trades-section-heading,
  .trade-card-grid,
  .trades-platform-grid,
  .trades-canada-grid,
  .trades-benefit-list {
    grid-template-columns: 1fr;
  }

  .trades-section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .trade-card,
  .trade-measure-grid article,
  .trades-platform-grid article,
  .trades-benefit-list article {
    min-height: 0;
  }

  .trade-card ul {
    margin-top: 20px;
  }
}

/* Trades catalogue: editorial, service-led presentation. */
.trades-page .trades-page-hero {
  min-height: clamp(330px, 38vh, 390px);
  display: grid;
  align-items: center;
  padding-top: clamp(88px, 8vw, 104px);
  padding-bottom: clamp(24px, 3vw, 34px);
}

.trades-page .trades-page-hero .page-hero__grid {
  width: min(calc(100% - 40px), 1364px);
  grid-template-columns: minmax(0, 1fr);
  justify-content: start;
}

.trades-page .trades-page-hero .page-hero__grid > div {
  position: relative;
  padding-left: clamp(18px, 3vw, 38px);
}

.trades-page .trades-page-hero .page-hero__grid > div::before {
  position: absolute;
  inset: 4px auto 4px 0;
  width: 3px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--orange), var(--teal));
  content: "";
}

.trades-page .trades-page-hero .headline-duo {
  max-width: none;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.trades-page .trades-page-hero .hero__lead {
  max-width: 1120px;
  margin-top: 12px;
  font-size: clamp(0.94rem, 1.1vw, 1.05rem);
}

.trades-page .trades-page-hero .media-card {
  display: none;
}

.trades-page .trades-page-hero .hero__actions {
  display: inline-flex;
  margin-top: 16px;
  vertical-align: middle;
}

.trades-page .trades-page-hero .trades-hero-points {
  display: inline-flex;
  margin: 16px 0 0 12px;
  vertical-align: middle;
}

.trades-page .trades-page-hero .trades-hero-points span {
  position: relative;
  padding-left: 29px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 18, 23, 0.56);
}

.trades-page .trades-page-hero .trades-hero-points span::before {
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(41, 194, 177, 0.12);
  content: "";
}

.trades-page #trade-directory {
  position: relative;
  margin: 16px;
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2vw, 28px);
  overflow: hidden;
}

.trades-page #trade-directory::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 3%, color-mix(in srgb, var(--teal) 10%, transparent), transparent 25%),
    radial-gradient(circle at 94% 96%, color-mix(in srgb, var(--orange) 8%, transparent), transparent 24%);
  pointer-events: none;
  content: "";
}

.trades-page #trade-directory > .container {
  position: relative;
}

.trades-page #trade-directory .trades-section-heading {
  max-width: 860px;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 auto clamp(42px, 6vw, 72px);
  text-align: center;
}

.trades-page #trade-directory .trades-section-heading > p {
  max-width: 720px;
  margin-inline: auto;
}

.trades-page .trade-card-grid {
  counter-reset: trade-card;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 30px);
}

.trades-page .trade-card {
  counter-increment: trade-card;
  isolation: isolate;
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 24px;
  align-content: start;
  padding: clamp(26px, 3vw, 38px);
  border-color: color-mix(in srgb, var(--line) 86%, var(--teal));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--teal) 7%, transparent), transparent 40%),
    var(--card);
  box-shadow: 0 16px 40px rgba(21, 32, 39, 0.07);
  overflow: hidden;
}

.trades-page .trade-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), color-mix(in srgb, var(--teal) 12%, transparent));
  content: "";
}

.trades-page .trade-card::after {
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: -1;
  color: color-mix(in srgb, var(--ink) 4%, transparent);
  font-family: var(--font-display);
  font-size: 5.8rem;
  font-weight: 900;
  line-height: 1;
  content: counter(trade-card, decimal-leading-zero);
}

.trades-page .trade-card:nth-child(3n + 2)::before {
  background: linear-gradient(180deg, var(--orange), color-mix(in srgb, var(--orange) 12%, transparent));
}

.trades-page .trade-card > span,
.trades-page .trade-card:nth-child(3n + 2) > span,
.trades-page .trade-card:nth-child(3n) > span {
  position: relative;
  grid-row: 1 / span 3;
  width: 72px;
  height: 72px;
  align-self: start;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--teal) 32%, var(--line));
  border-radius: 16px;
  color: var(--teal-text);
  background: color-mix(in srgb, var(--teal) 10%, var(--card));
  box-shadow: none;
  font-size: 0.9rem;
}

.trades-page .trade-card > span::before {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  content: "Trade " counter(trade-card, decimal-leading-zero);
}

.trades-page .trade-card h3 {
  max-width: 21ch;
  margin: 2px 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.trades-page .trade-card p {
  margin: 0;
}

.trades-page .trade-card ul {
  grid-column: 2;
  align-self: end;
  gap: 10px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trades-page .trade-card li {
  position: relative;
  padding-left: 28px;
  font-size: 0.88rem;
}

.trades-page .trade-card li::before {
  position: absolute;
  top: 0.28em;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-text);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  font-size: 0.68rem;
  font-weight: 900;
  content: "✓";
}

.trades-page .trade-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--teal) 48%, var(--line));
  box-shadow: 0 24px 55px rgba(21, 32, 39, 0.14);
}

.trades-page .trade-measure-grid {
  gap: 16px;
}

.trades-page .trade-measure-grid article {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.trades-page .trades-platform-grid article,
.trades-page .trades-benefit-list article {
  border-radius: 14px;
}

.trades-page .trades-platform-grid article {
  position: relative;
  background:
    linear-gradient(145deg, rgba(41, 194, 177, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.trades-page .trades-platform-grid span {
  border-radius: 10px;
}

.trades-page .trades-benefit-list article {
  position: relative;
  justify-content: flex-start;
  padding-top: 54px;
}

.trades-page .trades-benefit-list article::before {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 20px;
  height: 4px;
  border-radius: 10px;
  background: var(--orange);
  box-shadow: 10px 0 0 color-mix(in srgb, var(--teal) 65%, transparent);
  content: "";
}

@media (max-width: 820px) {
  .trades-page .trade-card-grid {
    grid-template-columns: 1fr;
  }

  .trades-page .trades-page-hero {
    min-height: 0;
    padding-top: 88px;
    padding-bottom: 30px;
  }

  .trades-page .trades-page-hero .hero__actions,
  .trades-page .trades-page-hero .trades-hero-points {
    display: flex;
  }

  .trades-page .trades-page-hero .trades-hero-points {
    margin: 14px 0 0;
  }
}

@media (max-width: 560px) {
  .trades-page #trade-directory {
    margin: 8px;
    border-radius: 16px;
  }

  .trades-page .trades-page-hero .page-hero__grid > div {
    padding-left: 16px;
  }

  .trades-page .trades-page-hero .headline-duo {
    font-size: clamp(2.15rem, 10.5vw, 2.9rem);
  }

  .trades-page .trade-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px;
  }

  .trades-page .trade-card > span,
  .trades-page .trade-card:nth-child(3n + 2) > span,
  .trades-page .trade-card:nth-child(3n) > span {
    grid-row: auto;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
  }

  .trades-page .trade-card > span::before {
    top: 76px;
  }

  .trades-page .trade-card h3 {
    margin-top: 22px;
  }

  .trades-page .trade-card ul {
    grid-column: 1;
  }
}

.support-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.support-hero-facts span {
  display: inline-grid;
  gap: 2px;
  min-width: 128px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(8, 18, 23, 0.42);
  backdrop-filter: blur(8px);
  font-size: 0.74rem;
}

.support-hero-facts strong {
  color: #fff;
  font-size: 0.94rem;
}

.support-jumpbar {
  border-block: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 92%, transparent);
  box-shadow: 0 10px 24px rgba(21, 32, 39, 0.06);
}

.support-jumpbar .container {
  display: flex;
  gap: 8px;
  padding-block: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.support-jumpbar a {
  min-height: 40px;
  display: inline-flex;
  flex: none;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink-2);
  background: var(--card);
  font-size: 0.78rem;
  font-weight: 850;
}

.support-jumpbar a:hover,
.support-jumpbar a:focus-visible {
  color: #fff;
  border-color: var(--teal);
  background: var(--teal);
}

.support-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  margin-bottom: 40px;
}

.support-section-heading > p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.7;
}

.section--dark .support-section-heading > p {
  color: rgba(255, 255, 255, 0.72);
}

.support-step-grid,
.support-troubleshooting-grid,
.support-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-step-grid article,
.support-troubleshooting-grid article,
.support-channel-grid article {
  position: relative;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.support-step-grid article > span,
.support-resource-card__number {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  place-items: center;
  margin-bottom: 24px;
  padding-inline: 8px;
  border-radius: 6px;
  color: #fff;
  background: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.support-step-grid h3,
.support-resource-card h3,
.support-troubleshooting-grid h3,
.support-channel-grid h3,
.support-integration-list h3 {
  margin-bottom: 10px;
}

.support-step-grid p,
.support-resource-card p,
.support-troubleshooting-grid li,
.support-channel-grid p,
.support-integration-list li {
  color: var(--ink-2);
  line-height: 1.65;
}

.support-step-grid article > small,
.support-resource-card > small {
  display: block;
  margin-top: 20px;
  color: var(--teal-text);
  font-weight: 850;
  line-height: 1.5;
}

.support-tip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(20, 125, 112, 0.28);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  color: var(--ink-2);
  background: color-mix(in srgb, var(--teal) 7%, var(--card));
  line-height: 1.65;
}

.support-tip strong {
  color: var(--ink);
}

.support-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-resource-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.support-resource-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--ink-2);
  line-height: 1.55;
}

.support-resource-card > small {
  margin-top: auto;
  padding-top: 24px;
}

.support-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-workflow li {
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.support-workflow li > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.support-workflow strong {
  color: #fff;
  font-size: 1.1rem;
}

.support-workflow small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.support-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 16px 36px rgba(21, 32, 39, 0.07);
}

.support-role-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  text-align: left;
}

.support-role-table th,
.support-role-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  line-height: 1.55;
  vertical-align: top;
}

.support-role-table thead th {
  color: #fff;
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-role-table tbody th {
  color: var(--ink);
  font-weight: 900;
}

.support-role-table tbody tr:last-child > * {
  border-bottom: 0;
}

.support-integration-list {
  display: grid;
  gap: 18px;
}

.support-integration-list article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.support-integration-list article > span,
.support-channel-grid article > span {
  display: inline-block;
  margin-bottom: 16px;
  color: #ffb26f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-integration-list ol,
.support-troubleshooting-grid ol {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
}

.support-integration-list li {
  color: rgba(255, 255, 255, 0.74);
}

.support-troubleshooting-grid article {
  border-top: 4px solid var(--teal);
}

.support-troubleshooting-grid article:nth-child(even) {
  border-top-color: var(--orange);
}

.support-channel-grid article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
}

.support-channel-grid article > span {
  color: var(--orange);
}

.support-channel-grid .text-link,
.support-channel-grid .button {
  width: fit-content;
  margin-top: auto;
}

.support-channel-card--guide {
  color: #fff;
  border-color: transparent !important;
  background:
    linear-gradient(135deg, rgba(20, 125, 112, 0.92), rgba(12, 27, 35, 0.96)),
    var(--navy) !important;
}

.support-channel-card--guide h3,
.support-channel-card--guide p {
  color: #fff;
}

.support-channel-card--guide > span {
  color: #ffd1ac !important;
}

.support-faq-intro {
  margin: 20px 0 0;
  color: var(--ink-2);
  line-height: 1.65;
}

.support-page-hero .button--ghost {
  backdrop-filter: blur(8px);
}

.support-step-grid article,
.support-resource-card,
.support-troubleshooting-grid article,
.support-channel-grid article,
.support-integration-list article,
.support-workflow li,
.support-jumpbar a {
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.support-step-grid article:hover,
.support-resource-card:hover,
.support-troubleshooting-grid article:hover,
.support-channel-grid article:hover,
.support-integration-list article:hover,
.support-workflow li:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(21, 32, 39, 0.14);
}

@media (max-width: 980px) {
  .support-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-workflow {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    padding-bottom: 8px;
    overflow-x: auto;
  }
}

@media (max-width: 700px) {
  .support-section-heading,
  .support-step-grid,
  .support-resource-grid,
  .support-troubleshooting-grid,
  .support-channel-grid {
    grid-template-columns: 1fr;
  }

  .support-section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .support-resource-card {
    min-height: 0;
  }

  .support-tip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .support-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-hero-facts span {
    min-width: 0;
  }
}

@media (max-width: 460px) {
  .support-hero-facts {
    grid-template-columns: 1fr;
  }
}

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

blockquote {
  margin: 0;
  padding: 36px;
  border-radius: 8px;
  background: var(--cream);
}

blockquote p {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.35;
}

blockquote cite {
  font-style: normal;
  font-weight: 800;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.6rem;
  line-height: 1;
}

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

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.demo-section {
  background: var(--cream);
}

.cta-panel {
  max-width: 920px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-2);
  font-size: 1.1rem;
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.contact-card a,
.contact-card span {
  color: var(--muted);
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 45px rgba(21, 32, 39, 0.08);
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 800;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
}

.demo-form input:focus,
.demo-form select:focus {
  outline: 3px solid rgba(20, 125, 112, 0.18);
  border-color: var(--teal);
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(20, 125, 112, 0.28);
  background: #1a1f23;
  color: #c8d4d1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.floating-image-gallery {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 14px);
  padding-block: clamp(8px, 1vw, 14px);
  overflow: hidden;
  opacity: 0.48;
  pointer-events: none;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

.floating-image-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 22, 0.92), rgba(12, 38, 39, 0.7) 50%, rgba(7, 18, 22, 0.92)),
    linear-gradient(180deg, rgba(7, 18, 22, 0.68), rgba(7, 15, 18, 0.92));
}

.floating-image-gallery__row {
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.floating-image-gallery__track,
.floating-image-gallery__group {
  display: flex;
  height: 100%;
}

.floating-image-gallery__track {
  width: max-content;
  animation: footer-gallery-scroll 64s linear infinite;
  will-change: transform;
}

.floating-image-gallery__group {
  flex: none;
  gap: clamp(8px, 1vw, 14px);
  padding-right: clamp(8px, 1vw, 14px);
}

.floating-image-gallery__row:nth-child(2) .floating-image-gallery__track {
  animation-direction: reverse;
  animation-duration: 72s;
}

.floating-image-gallery__row:nth-child(3) .floating-image-gallery__track {
  animation-duration: 68s;
}

.floating-image-gallery__group img {
  display: block;
  width: clamp(190px, 22vw, 340px);
  height: 100%;
  flex: none;
  border-radius: 12px;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.06);
}

.floating-image-gallery--hero {
  z-index: 1;
  opacity: 0.52;
}

.floating-image-gallery--hero::after {
  background:
    linear-gradient(90deg, rgba(8, 18, 23, 0.94) 0%, rgba(8, 28, 31, 0.72) 50%, rgba(8, 18, 23, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 18, 22, 0.54), rgba(7, 15, 18, 0.78));
}

.page-hero.has-floating-image-gallery {
  isolation: isolate;
  background: #0d1a1f;
}

.page-hero.has-floating-image-gallery::before {
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.035) 39px 40px);
}

.page-hero.has-floating-image-gallery .page-hero__grid {
  z-index: 2;
}

.page-hero.has-floating-image-gallery h1,
.page-hero.has-floating-image-gallery .headline-duo__plain {
  color: #fff;
}

.page-hero.has-floating-image-gallery .hero__lead {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero.has-floating-image-gallery .eyebrow {
  color: #ffb26f;
}

@keyframes footer-gallery-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-image-gallery__track {
    animation-play-state: paused;
  }
}

.footer a[href^="mailto:"],
.footer-powered a {
  text-transform: none;
  letter-spacing: 0;
}

.footer > .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(24px, 5vw, 64px);
}

.footer-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 0 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  order: -1;
  margin: 0;
  padding: 0 0 36px;
  border-top: 0;
  border-bottom: 1px solid rgba(136, 151, 164, 0.18);
}

.brand--footer {
  width: 136px;
  margin-bottom: 12px;
  padding: 6px 8px;
  background: #fff;
  box-shadow: none;
}

.footer-brand-row p {
  max-width: 420px;
  margin: 0;
  color: #8fa39e;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.6;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  max-width: 360px;
  color: #7d8f8a;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: right;
}

.footer-tags span {
  display: inline;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #8fa39e;
  background: transparent;
  font-size: inherit;
  font-weight: 500;
}

.footer-tags span:not(:last-child)::after {
  margin-inline: 10px;
  color: #5f6f6b;
  content: "·";
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 40px;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #7d8f8a;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-pill-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-pill-list a {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #c8d4d1;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  transition: color 160ms ease;
}

.footer-pill-list a:hover,
.footer-pill-list a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-pill-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 10px;
}

.footer-pill-list--compact a {
  min-height: auto;
  padding: 0;
  font-size: 0.84rem;
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.legal-content article,
.legal-notice {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 14px 34px rgba(21, 32, 39, 0.06);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.legal-content h3 {
  margin-top: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--ink-2);
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.legal-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(20, 125, 112, 0.28);
  border-radius: 8px;
  color: var(--teal-text);
  background: rgba(20, 125, 112, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-contact__stack {
  display: grid;
  gap: 14px;
}

.footer-column.footer-contact {
  overflow: visible;
}

.footer-contact p {
  margin: 0;
}

.footer-contact__stack > p {
  display: grid;
  gap: 3px;
}

.footer-contact span {
  color: #7d8f8a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact a {
  color: #e2ebe8;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  outline: none;
}

.service-area {
  display: grid;
  gap: 6px;
}

.service-area__label {
  color: #7d8f8a;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-area__dropdown {
  position: relative;
  z-index: 2;
}

.service-area__dropdown.is-open {
  z-index: 20;
}

.service-area__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(136, 151, 164, 0.22);
  border-radius: 8px;
  color: #e2ebe8;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.service-area__trigger:hover {
  border-color: rgba(20, 125, 112, 0.45);
  color: #fff;
  background: rgba(20, 125, 112, 0.08);
}

.service-area__chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
  transition: transform 180ms ease;
}

.service-area__dropdown.is-open .service-area__chevron {
  transform: rotate(-135deg) translateY(2px);
}

.service-area__menu {
  position: absolute;
  top: calc(100% + 8px);
  bottom: auto;
  left: 0;
  right: 0;
  z-index: 30;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(136, 151, 164, 0.32);
  border-radius: 12px;
  background: rgba(26, 31, 35, 0.98);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

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

.service-area__menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  color: #e2ebe8;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease;
}

.service-area__menu li::before {
  content: "";
  width: 14px;
  flex-shrink: 0;
  text-align: center;
}

.service-area__menu li.is-selected::before {
  content: "✓";
  font-size: 0.82rem;
  font-weight: 900;
}

.service-area__menu li:hover,
.service-area__menu li:focus-visible {
  background: rgba(20, 125, 112, 0.1);
  outline: none;
}

.service-area__menu li.is-selected {
  font-weight: 800;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 151, 164, 0.24);
  border-radius: 8px;
  color: #aebdb8;
  background: transparent;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(20, 125, 112, 0.5);
  background: rgba(20, 125, 112, 0.1);
  color: #fff;
  outline: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 0;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(136, 151, 164, 0.18);
  color: #7d8f8a;
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-bottom__meta {
  display: grid;
  gap: 4px;
}

.footer-powered {
  margin: 0;
  color: #6f817c;
  font-size: 0.78rem;
}

.footer-powered a {
  color: #9aaba6;
  font-weight: 500;
}

.footer-powered a:hover,
.footer-powered a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-bottom nav a {
  color: #8fa39e;
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-bottom nav a:hover,
.footer-bottom nav a:focus-visible {
  color: #fff;
  outline: none;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}

@media (max-width: 980px) {
  .utility {
    display: none;
  }

  .nav-shell {
    min-height: 46px;
  }

  .brand {
    width: 94px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 54px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(20, 32, 39, 0.12);
    border-radius: 18px;
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 249, 0.98)),
      rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

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

  .site-nav a,
  .nav-trigger,
  .nav-dropdown-toggle {
    padding: 0 16px;
  }

  .site-nav > a:not(.button) {
    width: 100%;
    justify-content: space-between;
    color: rgba(21, 32, 39, 0.82);
    background: rgba(20, 32, 39, 0.04);
  }

  .nav-dropdown {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 12px;
    background: rgba(20, 32, 39, 0.04);
  }

  .nav-dropdown:hover,
  .nav-dropdown:focus-within,
  .nav-dropdown.is-open {
    border-color: rgba(116, 130, 145, 0.5);
  }

  .nav-trigger {
    width: 100%;
    color: rgba(21, 32, 39, 0.82);
  }

  .nav-dropdown-toggle {
    width: 46px;
    justify-self: end;
  }

  .nav-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition:
      max-height 180ms ease,
      margin 180ms ease,
      padding 180ms ease,
      visibility 180ms ease;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-dropdown.is-open .nav-menu {
    max-height: 260px;
    margin-top: 2px;
    padding: 0 12px 10px;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    transform: none;
  }

  @media (hover: hover) {
    .nav-dropdown:hover:not(.is-open) .nav-menu,
    .nav-dropdown:focus-within:not(.is-open) .nav-menu {
      max-height: 0;
      margin-top: 0;
      padding: 0;
      visibility: hidden;
      pointer-events: none;
    }
  }

  .nav-menu a {
    min-height: 34px;
    padding: 0 8px 0 18px;
    border-radius: 6px;
    color: rgba(21, 32, 39, 0.72);
    font-size: 0.76rem;
  }

  .nav-menu a + a {
    border-top-color: rgba(20, 32, 39, 0.07);
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 8px;
  }

  .nav-signin,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .nav-cta {
    grid-column: 1 / -1;
  }

  .nav-theme {
    width: 44px;
    height: 40px;
  }

  .nav-download {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
  }

  .hero__stats,
  .feature-grid,
  .process,
  .process--six,
  .pricing-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split,
  .demo-grid,
  .faq-grid,
  .support-grid,
  .product-grid,
  .page-hero__grid,
  .takeoff-panel {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .page-hero__grid,
  .intro-grid {
    gap: 28px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > a {
    display: inline-block;
    margin-top: 18px;
  }

  .pricing-intro {
    display: grid;
  }

  .billing-switch {
    width: min(100%, 320px);
    min-width: 0;
  }

  .price-card--modern.price-card--featured {
    transform: none;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    padding-top: 6px;
  }

  .nav-shell {
    min-height: 46px;
    gap: 10px;
    width: min(calc(100% - 24px), 1364px);
    padding: 5px 10px 5px 12px;
  }

  .brand {
    width: 90px;
  }

  .site-nav {
    top: 54px;
    left: 12px;
    right: 12px;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav > a:not(.button),
  .nav-trigger,
  .nav-menu a {
    min-height: 40px;
  }

  .hero {
    padding-top: 78px;
    padding-bottom: 28px;
  }

  .page-hero {
    padding: 86px 0 44px;
  }

  h1 {
    line-height: 1.14;
    letter-spacing: -0.025em;
  }

  h2 {
    line-height: 1.16;
    letter-spacing: -0.02em;
  }

  h3 {
    line-height: 1.28;
  }

  .hero__lead {
    margin-top: 10px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 16px;
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(12, 27, 35, 0.94), rgba(12, 27, 35, 0.72));
  }

  .hero--video .hero__shade {
    background:
      rgba(10, 18, 22, 0.42),
      linear-gradient(90deg, rgba(8, 16, 20, 0.94), rgba(8, 16, 20, 0.72) 58%, rgba(8, 16, 20, 0.52) 100%);
  }

  .image-feature__video,
  .image-feature__media:has(.image-feature__video)::after {
    right: 14px;
    top: auto;
    bottom: 24px;
    width: min(74vw, 100%);
    height: 220px;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__stats,
  .feature-grid,
  .process,
  .process--six,
  .pricing-grid,
  .testimonial-grid,
  .support-items,
  .footer-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .footer-brand-row {
    display: grid;
    align-items: start;
    gap: 16px;
    padding-bottom: 28px;
  }

  .footer-tags {
    justify-content: flex-start;
    max-width: none;
    text-align: left;
  }

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

  .footer-bottom {
    display: grid;
    gap: 14px;
    align-items: start;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .footer-bottom nav {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .floating-image-gallery {
    opacity: 0.4;
  }

  .floating-image-gallery__group img {
    width: clamp(150px, 54vw, 230px);
    border-radius: 8px;
  }

  .hero__stats {
    margin-top: 16px;
  }

  .hero__stats div {
    min-height: auto;
    padding: 12px;
  }

  .hero__stats dt {
    font-size: 1.05rem;
  }

  .hero__stats dd {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .section {
    padding: 56px 0;
  }

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

  .section-heading > a {
    margin-top: 12px;
  }

  .proof-band__inner {
    min-height: auto;
    padding: 14px 0;
    font-size: 0.92rem;
    gap: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .dashboard__body {
    grid-template-columns: 48px 1fr;
  }

  .dashboard__main {
    padding: 14px;
  }

  .plan-lines {
    min-height: 190px;
  }

  .line-items div {
    display: grid;
    justify-content: stretch;
    padding-block: 10px;
  }

  .price-card,
  .feature-card,
  .process article,
  blockquote {
    padding: 24px;
  }

  .price-card--modern {
    min-height: auto;
    padding: 0;
  }

  .price-card__head {
    min-height: auto;
    padding: 24px 24px 18px;
  }

  .price,
  .price-list {
    padding-inline: 24px;
  }

  .price-note {
    margin-inline: 24px;
  }

  .addons {
    margin-inline: 24px;
  }

  .price-card--modern .button {
    width: calc(100% - 48px);
    margin-inline: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav-shell {
    width: min(calc(100% - 20px), 1364px);
  }

  .hero,
  .page-hero {
    padding-top: 78px;
  }

  .section {
    padding: 44px 0;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero__lead,
  .intro-grid p,
  .product-copy p,
  .image-feature p,
  .demo-grid p,
  .support-grid p {
    font-size: 0.95rem;
  }

  .button {
    font-size: 0.92rem;
  }

  .price-card,
  .feature-card,
  .process article,
  blockquote {
    padding: 20px;
  }
}

/* Site-wide motion layer */
html.has-reveal {
  scroll-padding-top: 78px;
}

@media (max-width: 700px) {
  html.has-reveal {
    scroll-padding-top: 66px;
  }
}

a,
.button,
.brand,
.site-nav > a,
.nav-theme,
.nav-signin,
.nav-cta,
.nav-download,
.feature-card,
.price-card,
.process article,
.detail-list div,
.support-items span,
details,
.dashboard,
.media-card,
.demo-form,
.contact-card,
blockquote,
.line-items div,
.metric-row div,
.takeoff-panel {
  transition:
    color 220ms ease,
    opacity 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.site-header {
  animation: headerDrop 620ms cubic-bezier(0.2, 0.78, 0.22, 1) both;
}

.has-reveal .reveal-on-scroll {
  transition:
    opacity 760ms ease,
    transform 880ms cubic-bezier(0.2, 0.78, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.has-reveal .reveal-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translate3d(52px, 78px, 0) scale(0.982);
}

.has-reveal .hero__content.reveal-on-scroll:not(.is-visible),
.has-reveal .page-hero__grid.reveal-on-scroll:not(.is-visible) {
  transform: translate3d(68px, 96px, 0) scale(0.976);
}

.has-reveal .reveal-on-scroll.is-visible {
  opacity: 1;
}

.utility a:hover,
.text-link:hover,
.section-heading > a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.site-nav > a:not(.button):hover {
  color: var(--teal-dark);
  transform: translateY(-2px);
}

.footer a:hover {
  transform: none;
}

.button:hover,
.nav-download:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(226, 118, 45, 0.28);
}

.brand:hover,
.nav-theme:hover,
.nav-signin:hover,
.feature-card:hover,
.price-card:hover,
.process article:hover,
.detail-list div:hover,
.support-items span:hover,
details:hover,
.dashboard:hover,
.media-card:hover,
.demo-form:hover,
.contact-card:hover,
blockquote:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 54px rgba(21, 32, 39, 0.14);
}

/* Theme states */
:root[data-theme="dark"] body {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(41, 194, 177, 0.12), transparent 30%),
    radial-gradient(circle at 10% 38%, rgba(255, 150, 80, 0.08), transparent 30%),
    var(--paper);
}

:root[data-theme="dark"] .site-header,
:root[data-theme="dark"] .site-header.is-scrolled,
:root[data-theme="dark"] .site-header.is-open,
:root[data-theme="dark"] .subpage .site-header {
  color: #fff;
}

:root[data-theme="dark"] .nav-shell {
  border-color: rgba(124, 227, 215, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 25, 31, 0.96), rgba(8, 14, 18, 0.96)),
    rgba(8, 14, 18, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 58px rgba(0, 0, 0, 0.5);
}

:root[data-theme="dark"] .brand,
:root[data-theme="dark"] .brand--footer {
  background: rgba(255, 255, 255, 0.96);
}

:root[data-theme="dark"] .nav-theme {
  border-color: rgba(124, 227, 215, 0.32);
  color: rgba(238, 247, 246, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .nav-dropdown {
  border-color: rgba(124, 227, 215, 0.22);
  background: rgba(9, 18, 23, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .nav-trigger,
:root[data-theme="dark"] .nav-dropdown-toggle {
  color: rgba(238, 247, 246, 0.86);
}

:root[data-theme="dark"] .nav-menu {
  border-color: rgba(124, 227, 215, 0.18);
  background:
    linear-gradient(180deg, rgba(15, 25, 31, 0.98), rgba(8, 14, 18, 0.98)),
    rgba(8, 14, 18, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 38px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] .nav-menu a {
  color: rgba(238, 247, 246, 0.84);
}

:root[data-theme="dark"] .nav-menu a + a {
  border-top-color: rgba(255, 255, 255, 0.07);
}

:root[data-theme="dark"] .nav-menu a:hover,
:root[data-theme="dark"] .nav-menu a:focus-visible {
  color: #fff;
  background: rgba(41, 194, 177, 0.12);
}

:root[data-theme="dark"] .nav-signin {
  color: rgba(238, 247, 246, 0.92);
  border-color: rgba(124, 227, 215, 0.32);
  background: rgba(15, 30, 36, 0.9);
}

:root[data-theme="dark"] .nav-signin:hover {
  color: #fff;
  border-color: rgba(124, 227, 215, 0.55);
  background: rgba(20, 38, 46, 0.96);
}

:root[data-theme="dark"] .nav-cta {
  border-color: #29c2b1;
  background: linear-gradient(135deg, #29c2b1 0%, #1a8f82 60%, #147d70 100%);
  box-shadow: 0 10px 24px rgba(41, 194, 177, 0.24);
}

:root[data-theme="dark"] .nav-cta:hover {
  border-color: #29c2b1;
  background: linear-gradient(135deg, #34d0be 0%, #1f9a8c 60%, #178a7c 100%);
  box-shadow: 0 12px 26px rgba(41, 194, 177, 0.3);
}

:root[data-theme="dark"] .site-nav > a:not(.button) {
  border-color: rgba(124, 227, 215, 0.22);
  color: rgba(238, 247, 246, 0.86);
  background: rgba(9, 18, 23, 0.66);
}

:root[data-theme="dark"] .site-nav > a:not(.button):hover {
  color: #fff;
}

:root[data-theme="dark"] .site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(41, 194, 177, 0.16);
}

@media (max-width: 980px) {
  :root[data-theme="dark"] .site-nav {
    color: #fff;
    border-color: rgba(91, 111, 133, 0.5);
    background: rgba(28, 30, 33, 0.96);
  }

  :root[data-theme="dark"] .site-nav > a:not(.button),
  :root[data-theme="dark"] .nav-dropdown {
    color: rgba(244, 247, 247, 0.9);
    background: rgba(255, 255, 255, 0.07);
  }

  :root[data-theme="dark"] .nav-trigger,
  :root[data-theme="dark"] .nav-dropdown-toggle {
    color: rgba(244, 247, 247, 0.9);
  }

  :root[data-theme="dark"] .nav-menu a {
    color: rgba(244, 247, 247, 0.72);
  }

  :root[data-theme="dark"] .nav-menu a + a {
    border-top-color: rgba(255, 255, 255, 0.05);
  }
}

:root[data-theme="dark"] .hero__media,
:root[data-theme="dark"] .image-feature__media,
:root[data-theme="dark"] .media-card--dark {
  background:
    radial-gradient(circle at 82% 26%, rgba(41, 194, 177, 0.2), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(255, 150, 80, 0.12), transparent 26%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.055) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.055) 39px 40px),
    #0b141a;
}

:root[data-theme="dark"] .page-hero {
  background:
    linear-gradient(135deg, rgba(41, 194, 177, 0.08), rgba(255, 150, 80, 0.06)),
    var(--cream);
}

:root[data-theme="dark"] .page-hero::before {
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255, 255, 255, 0.045) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgba(255, 255, 255, 0.045) 39px 40px);
}

:root[data-theme="dark"] .page-hero h1,
:root[data-theme="dark"] .price strong,
:root[data-theme="dark"] .comparison-row > *:first-child {
  color: var(--ink);
}

:root[data-theme="dark"] .section--muted,
:root[data-theme="dark"] .product-section,
:root[data-theme="dark"] .demo-section,
:root[data-theme="dark"] .pricing-section {
  background: var(--soft);
}

:root[data-theme="dark"] .hero__stats,
:root[data-theme="dark"] .comparison-table {
  background: var(--line);
  border-color: var(--line);
}

:root[data-theme="dark"] .hero__stats div,
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .price-card,
:root[data-theme="dark"] .price-card--modern,
:root[data-theme="dark"] .process article,
:root[data-theme="dark"] .detail-list div,
:root[data-theme="dark"] details,
:root[data-theme="dark"] .demo-form,
:root[data-theme="dark"] .contact-card,
:root[data-theme="dark"] blockquote,
:root[data-theme="dark"] .comparison-table,
:root[data-theme="dark"] .metric-row div,
:root[data-theme="dark"] .takeoff-panel,
:root[data-theme="dark"] .line-items div,
:root[data-theme="dark"] .media-card,
:root[data-theme="dark"] .legal-content article,
:root[data-theme="dark"] .legal-notice {
  background:
    linear-gradient(180deg, rgba(41, 194, 177, 0.035), transparent 36%),
    var(--card);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .price-card--modern.price-card--featured {
  border-color: rgba(41, 194, 177, 0.56);
  background:
    linear-gradient(180deg, rgba(41, 194, 177, 0.12), transparent 36%),
    var(--card);
}

:root[data-theme="dark"] .dashboard {
  background: var(--card-muted);
}

:root[data-theme="dark"] .plan-lines {
  border-color: var(--line);
  background:
    linear-gradient(90deg, transparent 23px, rgba(255, 255, 255, 0.06) 24px, transparent 25px),
    linear-gradient(0deg, transparent 23px, rgba(255, 255, 255, 0.06) 24px, transparent 25px),
    var(--card-muted);
  background-size: 48px 48px;
}

:root[data-theme="dark"] .addons {
  border-color: var(--line);
  background: var(--soft);
}

:root[data-theme="dark"] .comparison-row--head {
  background: var(--field);
}

:root[data-theme="dark"] .footer {
  background: #0c1216;
  border-top-color: rgba(41, 194, 177, 0.22);
}

:root[data-theme="dark"] .footer-panel {
  background: transparent;
}

:root[data-theme="dark"] .service-area__menu {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(18, 26, 32, 0.94);
}

:root[data-theme="dark"] .service-area__menu li {
  color: #eef5f3;
}

:root[data-theme="dark"] .service-area__menu li:hover,
:root[data-theme="dark"] .service-area__menu li:focus-visible {
  background: rgba(41, 194, 177, 0.14);
}

:root[data-theme="dark"] .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .button--ghost:hover {
  color: var(--ink);
  background: var(--card);
  border-color: var(--card);
}

:root[data-theme="dark"] .button--outline {
  color: var(--teal-text);
  border-color: rgba(124, 227, 215, 0.72);
}

:root[data-theme="dark"] .line-items div:hover,
:root[data-theme="dark"] .metric-row div:hover {
  background: color-mix(in srgb, var(--teal) 12%, var(--card));
}

:root[data-theme="dark"] .brand:hover,
:root[data-theme="dark"] .nav-theme:hover,
:root[data-theme="dark"] .feature-card:hover,
:root[data-theme="dark"] .price-card:hover,
:root[data-theme="dark"] .process article:hover,
:root[data-theme="dark"] .detail-list div:hover,
:root[data-theme="dark"] .support-items span:hover,
:root[data-theme="dark"] details:hover,
:root[data-theme="dark"] .dashboard:hover,
:root[data-theme="dark"] .media-card:hover,
:root[data-theme="dark"] .demo-form:hover,
:root[data-theme="dark"] .contact-card:hover,
:root[data-theme="dark"] blockquote:hover {
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.feature-card:hover,
.price-card:hover,
.process article:hover,
.detail-list div:hover,
details:hover,
.contact-card:hover {
  border-color: rgba(20, 125, 112, 0.34);
}

.feature-card__icon,
.process span,
.price-card__flag,
.proof-band__inner span {
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 280ms cubic-bezier(0.2, 0.78, 0.22, 1);
}

.feature-card:hover .feature-card__icon,
.process article:hover span,
.price-card:hover .price-card__flag {
  transform: translateY(-4px) rotate(-3deg);
  background: var(--orange);
}

.line-items div:hover,
.metric-row div:hover {
  transform: translateX(-6px);
  background: #e5ede9;
}

.takeoff-panel:hover,
.media-card:hover,
.dashboard:hover {
  border-color: rgba(226, 118, 45, 0.36);
}

.plan-lines span {
  animation: planPulse 3.8s ease-in-out infinite;
}

.dashboard__rail span {
  animation: softBlink 3.2s ease-in-out infinite;
}

.dashboard__rail span:nth-child(2) {
  animation-delay: 180ms;
}

.dashboard__rail span:nth-child(3) {
  animation-delay: 360ms;
}

.dashboard__rail span:nth-child(4) {
  animation-delay: 540ms;
}

.media-card::before,
.media-card::after,
.image-feature__media::before,
.image-feature__media::after {
  transition:
    transform 700ms cubic-bezier(0.2, 0.78, 0.22, 1),
    opacity 700ms ease;
}

.media-card:hover::before {
  transform: translate(-10px, -8px) rotate(-5deg);
}

.media-card:hover::after {
  transform: translate(34px, 30px) rotate(5deg);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

@keyframes planPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.012);
  }
}

@keyframes softBlink {
  0%,
  100% {
    opacity: 0.64;
  }

  50% {
    opacity: 1;
  }
}

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

  .has-reveal .reveal-on-scroll,
  .has-reveal .reveal-on-scroll:not(.is-visible),
  .has-reveal .hero__content.reveal-on-scroll:not(.is-visible),
  .has-reveal .page-hero__grid.reveal-on-scroll:not(.is-visible) {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.page-hero.has-floating-image-gallery .contact-hero-points {
  color: rgba(255, 255, 255, 0.72);
}

/* Pricing readability and modern payment cards */
.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__kicker {
  color: #8be4da;
}

.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__link {
  color: #f7fbfa;
}

.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__link:hover,
.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__link:focus-visible {
  color: #fff;
}

.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__assurances {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-page .pricing-hero.has-floating-image-gallery .pricing-hero__assurances li::before {
  background: #7ce3d7;
  box-shadow: 0 0 0 4px rgba(124, 227, 215, 0.16);
}

:root[data-theme="light"] .pricing-page .billing-switch {
  border-color: #cbd8d5;
  background: #e9efed;
  background-image: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(21, 32, 39, 0.1);
}

:root[data-theme="light"] .pricing-page .billing-switch__option {
  color: #3c4b53;
}

:root[data-theme="light"] .pricing-page .billing-switch__option.is-active {
  color: #fff;
  background: linear-gradient(135deg, #147d70, #0d665c);
  box-shadow: 0 10px 22px rgba(20, 125, 112, 0.24);
}

:root[data-theme="dark"] .pricing-page .billing-switch__option:not(.is-active) {
  color: #b8c8c6;
}

.pricing-page .pricing-grid--modern {
  gap: 24px;
  align-items: stretch;
}

.pricing-page .price-card--modern {
  isolation: isolate;
  min-height: 700px;
  border: 1px solid color-mix(in srgb, var(--teal) 18%, var(--line));
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0, rgba(41, 194, 177, 0.11), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--card) 96%, var(--teal)) 0%, var(--card) 34%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 60px rgba(21, 32, 39, 0.11);
}

.pricing-page .price-card--modern::before {
  height: 6px;
  background: linear-gradient(90deg, var(--teal), #65d7ca 60%, transparent);
}

.pricing-page .price-card--modern[data-plan="company"]::before {
  background: linear-gradient(90deg, var(--orange), #f3b070, transparent);
}

.pricing-page .price-card__head {
  min-height: 226px;
  padding: 34px 32px 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(41, 194, 177, 0.07), transparent 58%);
}

.pricing-page .price-card__identity {
  margin-bottom: 26px;
}

.pricing-page .price-card__number {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.pricing-page .price-card__head h3 {
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
  letter-spacing: -0.035em;
}

.pricing-page .price {
  min-height: 126px;
  align-content: flex-end;
  margin: 0 24px;
  padding: 22px 8px 0;
}

.pricing-page .price strong {
  font-size: clamp(3.45rem, 4.8vw, 4.8rem);
}

.pricing-page .price em {
  padding-bottom: 7px;
  font-size: 0.82rem;
  font-weight: 850;
}

.pricing-page .price-card__save {
  min-height: 28px;
  margin-bottom: 14px;
  border-color: rgba(226, 118, 45, 0.28);
  background: rgba(226, 118, 45, 0.09);
}

.pricing-page .price-note {
  min-height: 48px;
  margin: 8px 32px 20px;
  font-size: 0.87rem;
  line-height: 1.5;
}

.pricing-page .price-card__features-title {
  min-height: 38px;
  margin: 0;
  padding: 0 32px 12px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-page .price-list {
  gap: 0;
  padding-inline: 32px;
}

.pricing-page .price-list li {
  min-height: 43px;
  display: flex;
  align-items: center;
  padding: 10px 0 10px 31px;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}

.pricing-page .price-list li::before {
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.pricing-page .addons {
  margin: 26px 32px;
  padding: 18px;
  border-style: solid;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(41, 194, 177, 0.07), transparent),
    var(--soft);
}

.pricing-page .price-card--modern .button {
  width: calc(100% - 64px);
  min-height: 54px;
  margin: auto 32px 32px;
  border-radius: 14px;
}

.pricing-page .price-card--modern.price-card--featured {
  z-index: 2;
  border-color: rgba(124, 227, 215, 0.48);
  background:
    radial-gradient(circle at 100% 0, rgba(41, 194, 177, 0.25), transparent 34%),
    linear-gradient(160deg, #152b34 0%, #0c1b22 70%);
  box-shadow:
    0 34px 80px rgba(8, 25, 31, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  transform: translateY(-12px);
}

.pricing-page .price-card--modern.price-card--featured::before {
  background: linear-gradient(90deg, #7ce3d7, #29c2b1 58%, #ff9650);
}

.pricing-page .price-card--featured .price-card__head {
  border-bottom-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(124, 227, 215, 0.12), transparent 60%);
}

.pricing-page .price-card--featured .price-card__identity,
.pricing-page .price-card--featured .price-card__head p,
.pricing-page .price-card--featured .price-note,
.pricing-page .price-card--featured .price-list li,
.pricing-page .price-card--featured .addons span {
  color: rgba(239, 248, 247, 0.76);
}

.pricing-page .price-card--featured .price-card__number {
  color: #9aeee5;
  border-color: rgba(124, 227, 215, 0.3);
  background: rgba(124, 227, 215, 0.09);
}

.pricing-page .price-card--featured h3,
.pricing-page .price-card--featured .price strong,
.pricing-page .price-card--featured .price-card__features-title,
.pricing-page .price-card--featured .addons h4 {
  color: #fff;
}

.pricing-page .price-card--featured .price__was {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-page .price-card--featured .price em {
  color: rgba(255, 255, 255, 0.66);
}

.pricing-page .price-card--featured .price-card__save {
  color: #ffb27c;
  border-color: rgba(255, 150, 80, 0.34);
  background: rgba(255, 150, 80, 0.1);
}

.pricing-page .price-card--featured .price-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-page .price-card--featured .price-list li::before {
  color: #0c1b22;
  background: #7ce3d7;
}

.pricing-page .price-card--featured .addons {
  border-color: rgba(124, 227, 215, 0.2);
  background: rgba(255, 255, 255, 0.055);
}

.pricing-page .price-card--featured .button {
  color: #fff;
  background: linear-gradient(135deg, #ed843f, #d96724);
  box-shadow: 0 14px 30px rgba(226, 118, 45, 0.24);
}

.pricing-page .price-card--featured:hover {
  transform: translateY(-18px);
}

@media (max-width: 980px) {
  .pricing-page .price-card--modern,
  .pricing-page .price-card--modern.price-card--featured {
    min-height: auto;
    transform: none;
  }

  .pricing-page .price-card--featured:hover {
    transform: translateY(-7px);
  }
}

@media (max-width: 700px) {
  .pricing-page .price-card__head {
    min-height: auto;
    padding: 28px 24px 22px;
  }

  .pricing-page .price {
    min-height: 116px;
    margin-inline: 18px;
    padding-inline: 6px;
  }

  .pricing-page .price-note {
    margin-inline: 24px;
  }

  .pricing-page .price-card__features-title,
  .pricing-page .price-list {
    padding-inline: 24px;
  }

  .pricing-page .addons {
    margin-inline: 24px;
  }

  .pricing-page .price-card--modern .button {
    width: calc(100% - 48px);
    margin-inline: 24px;
    margin-bottom: 24px;
  }
}
