@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-display: swap;
  font-weight: 900;
}

.support-root {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.support-page {
  --support-ink: #081423;
  --support-ink-soft: #193049;
  --support-muted: #5c6b7d;
  --support-blue: #2d66f5;
  --support-blue-bright: #4f82ff;
  --support-blue-soft: #e8efff;
  --support-cyan: #62d7e8;
  --support-amber: #f0a94b;
  --support-line: rgba(8, 20, 35, 0.11);
  --support-surface: #f4f7fb;
  --support-white: #ffffff;
  --support-dark: #091525;
  --support-radius: 26px;
  --support-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.055),
    0 12px 34px rgba(12, 32, 58, 0.08),
    0 28px 70px rgba(12, 32, 58, 0.06);
  margin: 0;
  overflow-x: clip;
  color: var(--support-ink);
  background: #fff;
  font-family: "Gilroy", Arial, sans-serif;
  line-height: 1.55;
}

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

.support-page h1,
.support-page h2,
.support-page h3,
.support-page p {
  margin-top: 0;
}

.support-page h1,
.support-page h2,
.support-page h3 {
  text-wrap: balance;
}

.support-page p,
.support-page li,
.support-page figcaption,
.support-page dd {
  text-wrap: pretty;
}

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

.support-page a {
  color: inherit;
}

.support-page button,
.support-page input,
.support-page textarea {
  font: inherit;
}

.support-page .container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.support-page .section {
  position: relative;
  padding: 112px 0;
}

.support-page .skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
  background: var(--support-dark);
  transition-property: transform;
  transition-duration: 180ms;
}

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

.support-page .site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(8, 20, 35, 0.07);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.support-page .header-inner {
  display: flex;
  align-items: center;
  min-height: 74px;
  gap: 30px;
}

.support-page .brand {
  display: inline-flex;
  align-items: center;
  min-width: 128px;
  min-height: 44px;
}

.support-page .brand img {
  width: 128px;
  height: 35px;
}

.support-page .main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
}

.support-page .main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #44546a;
  font-size: 14px;
  text-decoration: none;
  transition-property: color;
  transition-duration: 180ms;
}

.support-page .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  border-radius: 999px;
  background: var(--support-blue);
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.support-page .main-nav a:hover,
.support-page .main-nav a:focus-visible {
  color: var(--support-ink);
}

.support-page .main-nav a:hover::after,
.support-page .main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.support-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition-property: transform, background-color, color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.support-page .button:active {
  transform: scale(0.96);
}

.support-page .button svg {
  width: 20px;
  height: 20px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.support-page .button-dark {
  padding-left: 18px;
  padding-right: 16px;
  color: #fff;
  background: var(--support-dark);
  box-shadow: 0 8px 20px rgba(9, 21, 37, 0.16);
}

.support-page .button-dark:hover,
.support-page .button-dark:focus-visible {
  background: #152a43;
  box-shadow: 0 12px 28px rgba(9, 21, 37, 0.22);
}

.support-page .button-primary {
  color: #fff;
  background: var(--support-blue);
  box-shadow: 0 12px 28px rgba(45, 102, 245, 0.24);
}

.support-page .button-primary:hover,
.support-page .button-primary:focus-visible {
  background: #1f56de;
  box-shadow: 0 16px 34px rgba(45, 102, 245, 0.3);
}

.support-page .button-secondary {
  color: var(--support-ink);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.1),
    0 8px 24px rgba(12, 32, 58, 0.06);
}

.support-page .button-secondary:hover,
.support-page .button-secondary:focus-visible {
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.14),
    0 12px 30px rgba(12, 32, 58, 0.1);
}

.support-page .button-large {
  min-height: 54px;
  padding: 16px 21px;
  border-radius: 16px;
}

.support-page :focus-visible {
  outline: 3px solid rgba(45, 102, 245, 0.36);
  outline-offset: 3px;
}

.support-page .breadcrumbs {
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 9px;
  color: #697789;
  font-size: 13px;
}

.support-page .breadcrumbs a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 3px;
}

.support-page .support-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 86px;
  background:
    radial-gradient(circle at 85% 12%, rgba(98, 215, 232, 0.15), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(45, 102, 245, 0.13), transparent 34%),
    linear-gradient(135deg, #eef3fb 0%, #f8faff 48%, #edf5f8 100%);
}

.support-page .support-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(12, 32, 58, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 32, 58, 0.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, #000, transparent 55%);
}

.support-page .hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 58px;
}

.support-page .hero-copy {
  position: relative;
  z-index: 2;
}

.support-page .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #34577f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-page .eyebrow > i,
.support-page .eyebrow > span,
.support-page .hero-eyebrow > i {
  display: inline-block;
  width: 26px;
  height: 2px;
  flex: 0 0 26px;
  border-radius: 999px;
  background: var(--support-blue);
}

.support-page .eyebrow-light {
  color: #b9c9de;
}

.support-page .eyebrow-light > span {
  background: var(--support-cyan);
}

.support-page .support-hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--support-ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(43px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.support-page .hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #42566e;
  font-size: 19px;
  line-height: 1.56;
}

.support-page .hero-lead strong {
  color: var(--support-ink);
  font-weight: 600;
}

.support-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-page .assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 26px 0 0;
  padding: 0;
  color: #52667d;
  font-size: 13px;
  list-style: none;
}

.support-page .assurances li {
  position: relative;
  padding-left: 17px;
}

.support-page .assurances li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--support-blue);
  box-shadow: 0 0 0 4px rgba(45, 102, 245, 0.1);
}

.support-page .support-founder-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 10px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--support-shadow);
}

.support-page .support-founder-visual img {
  width: 100%;
  aspect-ratio: 1.599 / 1;
  border-radius: 25px;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.support-page .visual-tag {
  position: absolute;
  top: 27px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #dce9ff;
  background: rgba(7, 18, 33, 0.78);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.support-page .visual-tag i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--support-cyan);
  box-shadow: 0 0 0 5px rgba(98, 215, 232, 0.14);
}

.support-page .support-founder-visual figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 16px 18px;
  border-radius: 17px;
  color: #fff;
  background: rgba(7, 18, 33, 0.82);
  backdrop-filter: blur(12px);
}

.support-page .support-founder-visual figcaption small,
.support-page .support-founder-visual figcaption strong {
  display: block;
}

.support-page .support-founder-visual figcaption small {
  margin-bottom: 5px;
  color: #9eb6d5;
  font-size: 11px;
  text-transform: uppercase;
}

.support-page .support-founder-visual figcaption strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.support-page .answer-band {
  padding: 56px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(45, 102, 245, 0.22), transparent 28%),
    var(--support-dark);
}

.support-page .answer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 150px minmax(0, 1fr) 280px;
  gap: 42px;
}

.support-page .answer-grid h2 {
  margin-bottom: 14px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(27px, 3.3vw, 43px);
  line-height: 1.08;
}

.support-page .answer-grid p {
  margin-bottom: 0;
  color: #b8c7da;
  font-size: 17px;
}

.support-page .answer-roles {
  margin: 0;
}

.support-page .answer-roles div {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-page .answer-roles dt {
  color: var(--support-cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-page .answer-roles dd {
  margin: 4px 0 0;
  color: #d5dfec;
  font-size: 14px;
}

.support-page .split-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.7fr);
  gap: 64px;
  margin-bottom: 44px;
}

.support-page .split-intro h2,
.support-page .section-heading h2,
.support-page .case-heading h2,
.support-page .metrics-copy h2,
.support-page .brief-copy h2,
.support-page .faq-heading h2 {
  margin-bottom: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.support-page .split-intro > p {
  margin-bottom: 3px;
  color: var(--support-muted);
  font-size: 17px;
}

.support-page .dispatcher-section {
  overflow: hidden;
  background: #fff;
}

.support-page .issue-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 22px;
  background: #eef3f9;
}

.support-page .issue-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 15px;
  color: #52657c;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition-property: transform, background-color, color, box-shadow;
  transition-duration: 180ms;
}

.support-page .issue-tabs button:active {
  transform: scale(0.96);
}

.support-page .issue-tabs button[aria-selected="true"] {
  color: var(--support-ink);
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.055),
    0 8px 22px rgba(12, 32, 58, 0.08);
}

.support-page .issue-tabs svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-page .dispatch-console {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.77fr) 130px minmax(0, 1.23fr);
  gap: 12px;
  min-height: 430px;
  padding: 42px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 10%, rgba(98, 215, 232, 0.08), transparent 30%),
    linear-gradient(145deg, #0d1b2d, #081321);
  box-shadow: 0 34px 80px rgba(5, 17, 32, 0.18);
}

.support-page .incoming-message,
.support-page .ticket-card {
  position: relative;
  border-radius: 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.support-page .incoming-message {
  padding: 27px;
}

.support-page .message-signal {
  display: flex;
  gap: 5px;
  margin-bottom: 22px;
}

.support-page .message-signal i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--support-cyan);
}

.support-page .message-signal i:nth-child(2) {
  opacity: 0.62;
}

.support-page .message-signal i:nth-child(3) {
  opacity: 0.32;
}

.support-page .incoming-message small,
.support-page .ticket-head small {
  color: #96aac3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-page .incoming-message blockquote {
  margin: 12px 0 24px;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
}

.support-page .message-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.support-page .message-meta span {
  padding: 6px 8px;
  border-radius: 8px;
  color: #b9cae0;
  background: rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.support-page .dispatch-route {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.support-page .dispatch-route span {
  position: absolute;
  inset: 0;
  transform: scaleX(0.75);
  transform-origin: left;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--support-cyan), var(--support-blue-bright));
}

.support-page .dispatch-route i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(98, 215, 232, 0.9);
}

.support-page .ticket-card {
  padding: 26px;
}

.support-page .ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.support-page .ticket-head strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.support-page .priority-ring {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  transform: rotate(-90deg);
}

.support-page .priority-ring circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 5px;
}

.support-page .priority-ring .priority-progress {
  stroke: var(--support-cyan);
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 43;
  transition-property: stroke, stroke-dashoffset;
  transition-duration: 360ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.support-page .ticket-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.support-page .ticket-grid div {
  min-height: 92px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.support-page .ticket-grid dt {
  margin-bottom: 6px;
  color: #8fa5c0;
  font-size: 10px;
  text-transform: uppercase;
}

.support-page .ticket-grid dd {
  margin: 0;
  color: #eef5ff;
  font-size: 14px;
  font-weight: 600;
}

.support-page .ticket-action {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0 0;
  color: #bdd0e8;
  font-size: 13px;
}

.support-page .ticket-action > span:first-child {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 0.46em;
  border-radius: 50%;
  background: var(--support-cyan);
  box-shadow: 0 0 0 5px rgba(98, 215, 232, 0.12);
}

.support-page .ticket-action strong {
  color: #fff;
  white-space: nowrap;
}

.support-page .audience-section {
  background: var(--support-surface);
}

.support-page .section-heading {
  max-width: 800px;
  margin-bottom: 42px;
}

.support-page .audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.support-page .audience-card {
  min-height: 310px;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--support-shadow);
  transition-property: transform, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.support-page .audience-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.075),
    0 18px 38px rgba(12, 32, 58, 0.11),
    0 32px 72px rgba(12, 32, 58, 0.07);
}

.support-page .audience-card svg {
  width: 44px;
  height: 44px;
  margin-bottom: 52px;
  padding: 10px;
  border-radius: 14px;
  color: var(--support-blue);
  background: var(--support-blue-soft);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.support-page .audience-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.support-page .audience-card p {
  margin-bottom: 0;
  color: var(--support-muted);
}

.support-page .tasks-section {
  background: #fff;
}

.support-page .task-ledger {
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-page .task-ledger li {
  display: grid;
  align-items: center;
  grid-template-columns: 60px 58px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 4px;
  border-top: 1px solid var(--support-line);
}

.support-page .task-ledger li:last-child {
  border-bottom: 1px solid var(--support-line);
}

.support-page .task-ledger > li > span {
  color: #526276;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 600;
}

.support-page .task-ledger svg {
  width: 52px;
  height: 52px;
  padding: 13px;
  border-radius: 16px;
  color: var(--support-blue);
  background: #eef3ff;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.support-page .task-ledger h3 {
  margin-bottom: 5px;
  font-size: 22px;
}

.support-page .task-ledger p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--support-muted);
}

.support-page .operating-section {
  background: #eef3f9;
}

.support-page .operating-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-page .operating-card {
  min-height: 360px;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--support-shadow);
}

.support-page .operating-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 54px;
  color: #526276;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
}

.support-page .operating-card svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 15px;
  color: var(--support-blue);
  background: var(--support-blue-soft);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.support-page .operating-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.16;
}

.support-page .operating-card p {
  margin-bottom: 0;
  color: var(--support-muted);
}

.support-page .boundary-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 30%, rgba(45, 102, 245, 0.22), transparent 30%),
    linear-gradient(145deg, #0c1b2e, #07121f);
}

.support-page .boundary-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
}

.support-page .boundary-copy h2 {
  margin-bottom: 22px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.support-page .boundary-copy > p {
  color: #bac9db;
  font-size: 17px;
}

.support-page .boundary-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.support-page .boundary-copy li {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b7c7da;
}

.support-page .boundary-copy li strong {
  color: #fff;
}

.support-page .confidence-console {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.support-page .confidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.support-page .confidence-head span {
  color: #a9bbd1;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-page .confidence-head strong {
  color: var(--support-cyan);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
}

.support-page .confidence-console label {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  min-height: 55px;
  padding: 9px 12px;
  border-radius: 13px;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 160ms;
}

.support-page .confidence-console label:hover {
  background: rgba(255, 255, 255, 0.05);
}

.support-page .confidence-console input {
  position: absolute;
  opacity: 0;
}

.support-page .confidence-console label > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition-property: background-color, transform, box-shadow;
  transition-duration: 180ms;
}

.support-page .confidence-console input:focus-visible + span {
  outline: 3px solid rgba(98, 215, 232, 0.32);
  outline-offset: 2px;
}

.support-page .confidence-console input:checked + span {
  transform: scale(1.04);
  background: var(--support-blue);
  box-shadow: 0 0 0 5px rgba(45, 102, 245, 0.15);
}

.support-page .confidence-console svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.support-page .confidence-console em {
  color: #dce6f3;
  font-style: normal;
}

.support-page .confidence-console > p {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 14px;
  color: #a9bdd4;
  background: rgba(3, 10, 18, 0.28);
  font-size: 13px;
}

.support-page .confidence-console.is-complete > p {
  color: #dffcff;
  background: rgba(98, 215, 232, 0.13);
}

.support-page .case-section {
  background: #f2f5f9;
}

.support-page .case-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.support-page .case-heading > div {
  max-width: 850px;
}

.support-page .case-heading > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex: 0 0 auto;
  color: #1f55d9;
  font-weight: 600;
  text-decoration: none;
}

.support-page .case-heading > a svg {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition-property: transform;
  transition-duration: 180ms;
}

.support-page .case-heading > a:hover svg {
  transform: translateX(4px);
}

.support-page .case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.33fr) minmax(300px, 0.67fr);
  gap: 14px;
}

.support-page .case-layout figure {
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--support-shadow);
}

.support-page .case-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.support-page .case-main img {
  min-height: 570px;
}

.support-page .case-main figcaption {
  padding: 18px 20px;
  color: #53657b;
  font-size: 14px;
}

.support-page .case-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.support-page .case-side img {
  min-height: 264px;
}

.support-page .case-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 16px;
  padding: 24px 26px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--support-shadow);
}

.support-page .case-proof p {
  max-width: 850px;
  margin-bottom: 0;
  color: #4e6075;
}

.support-page .case-proof strong {
  color: var(--support-ink);
}

.support-page .case-proof a {
  min-width: 220px;
  color: var(--support-blue);
  font-weight: 600;
}

.support-page .integrations-section {
  background: #fff;
}

.support-page .integration-map {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(180px, 1fr) 110px minmax(280px, 1.2fr) 110px minmax(180px, 1fr);
  gap: 14px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(45, 102, 245, 0.08), transparent 33%),
    #f3f6fa;
}

.support-page .map-column {
  display: grid;
  gap: 8px;
}

.support-page .map-column strong {
  margin-bottom: 4px;
  color: #748398;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-page .map-column span {
  padding: 13px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.055),
    0 5px 14px rgba(12, 32, 58, 0.045);
  font-size: 14px;
}

.support-page .map-core {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  padding: 28px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, #16335a, #0b1b30);
  box-shadow: 0 24px 58px rgba(12, 32, 58, 0.2);
  text-align: center;
}

.support-page .map-core svg {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  padding: 13px;
  border-radius: 20px;
  color: var(--support-cyan);
  background: rgba(255, 255, 255, 0.08);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.support-page .map-core strong {
  font-size: 22px;
}

.support-page .map-core small {
  margin-top: 6px;
  color: #a6bad2;
}

.support-page .map-flow {
  display: grid;
  gap: 8px;
}

.support-page .map-flow i {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(45, 102, 245, 0.15);
}

.support-page .map-flow i b {
  position: absolute;
  inset: 0;
  display: block;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, var(--support-blue), transparent);
}

.support-page .metrics-section {
  color: #fff;
  background: #0a1626;
}

.support-page .metrics-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 80px;
}

.support-page .metrics-copy h2 {
  color: #fff;
}

.support-page .metrics-copy .eyebrow {
  color: #a8bdd5;
}

.support-page .metrics-copy p:last-child {
  margin: 24px 0 0;
  color: #afc0d4;
  font-size: 17px;
}

.support-page .metric-ledger {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.support-page .metric-ledger article {
  display: flex;
  align-items: center;
  min-height: 136px;
  gap: 16px;
  padding: 21px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.09);
}

.support-page .metric-ledger svg {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  padding: 10px;
  border-radius: 14px;
  color: var(--support-cyan);
  background: rgba(98, 215, 232, 0.1);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.support-page .metric-ledger strong,
.support-page .metric-ledger span {
  display: block;
}

.support-page .metric-ledger strong {
  margin-bottom: 5px;
  font-size: 18px;
}

.support-page .metric-ledger span {
  color: #aebed1;
  font-size: 13px;
}

.support-page .process-section {
  background: #fff;
}

.support-page .process-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-page .process-rail li {
  position: relative;
  min-height: 260px;
  padding: 25px;
  border-radius: 22px;
  background: #f4f7fb;
  box-shadow: 0 0 0 1px rgba(8, 20, 35, 0.05);
}

.support-page .process-rail > li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 58px;
  border-radius: 14px;
  color: var(--support-blue);
  background: #fff;
  box-shadow: 0 8px 20px rgba(12, 32, 58, 0.07);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
}

.support-page .process-rail h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.support-page .process-rail p {
  margin-bottom: 0;
  color: var(--support-muted);
}

.support-page .fit-section {
  background: #edf2f8;
}

.support-page .fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.support-page .fit-card,
.support-page .price-card {
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--support-shadow);
}

.support-page .fit-card {
  background: #fff;
}

.support-page .fit-card > svg {
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  padding: 12px;
  border-radius: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.support-page .fit-yes > svg {
  color: #0e8d74;
  background: #e5f7f2;
}

.support-page .fit-no > svg {
  color: #b26036;
  background: #fff0e6;
}

.support-page .fit-card h2,
.support-page .price-card h2 {
  margin-bottom: 18px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.support-page .fit-card ul {
  margin: 0;
  padding-left: 19px;
  color: var(--support-muted);
}

.support-page .fit-card li + li {
  margin-top: 8px;
}

.support-page .price-card {
  grid-column: 1 / -1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(220px, 260px);
  gap: 36px;
  color: #fff;
  background: linear-gradient(135deg, #17365e, #0a1a2e);
}

.support-page .price-card .eyebrow {
  align-self: start;
}

.support-page .price-card h2 {
  margin-bottom: 0;
}

.support-page .price-card p {
  margin-bottom: 0;
  color: #b8c8da;
}

.support-page .price-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 13px;
  color: #10233b;
  background: #fff;
  font-weight: 600;
  text-align: center;
}

.support-page .related-section {
  background: #fff;
}

.support-page .related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.support-page .related-card {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border-radius: 21px;
  background: #f3f6fa;
  text-decoration: none;
  transition-property: transform, background-color, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.support-page .related-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: var(--support-shadow);
}

.support-page .related-card span {
  color: #56667a;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-page .related-card strong {
  max-width: 210px;
  margin-top: auto;
  font-size: 22px;
  line-height: 1.18;
}

.support-page .related-card svg {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 22px;
  height: 22px;
  color: var(--support-blue);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition-property: transform;
  transition-duration: 180ms;
}

.support-page .related-card:hover svg {
  transform: translateX(4px);
}

.support-page .brief-section {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 102, 245, 0.22), transparent 30%),
    #091525;
}

.support-page .brief-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1.15fr);
  gap: 80px;
}

.support-page .brief-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: #b3c3d6;
  font-size: 17px;
}

.support-page .brief-copy ul {
  margin: 28px 0 0;
  padding: 0;
  color: #d5e0ed;
  list-style: none;
}

.support-page .brief-copy li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-page .brief-copy li::before {
  position: absolute;
  top: 18px;
  left: 2px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--support-cyan);
}

.support-page .lead-form {
  padding: 29px;
  border-radius: 26px;
  color: var(--support-ink);
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
}

.support-page .lead-form label {
  display: block;
  margin-bottom: 16px;
}

.support-page .lead-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #3f536b;
  font-size: 13px;
  font-weight: 600;
}

.support-page .lead-form input,
.support-page .lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid #cbd5e2;
  border-radius: 13px;
  color: var(--support-ink);
  background: #f9fbfd;
  resize: vertical;
  transition-property: border-color, background-color, box-shadow;
  transition-duration: 170ms;
}

.support-page .lead-form textarea {
  min-height: 112px;
}

.support-page .lead-form input:focus,
.support-page .lead-form textarea:focus {
  border-color: var(--support-blue);
  outline: 0;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 102, 245, 0.11);
}

.support-page .lead-form .button {
  width: 100%;
}

.support-page .form-consent {
  margin: 13px 0 0;
  color: #59697d;
  font-size: 11px;
  text-align: center;
}

.support-page .form-consent a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  text-underline-offset: 2px;
}

.support-page .form-status {
  display: none;
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: 11px;
  font-size: 13px;
}

.support-page .form-status.is-visible {
  display: block;
}

.support-page .form-status.is-success {
  color: #0d6655;
  background: #e7f7f2;
}

.support-page .form-status.is-error {
  color: #943939;
  background: #fff0f0;
}

.support-page .lead-form.is-loading {
  opacity: 0.78;
}

.support-page .faq-section {
  background: #f4f7fb;
}

.support-page .faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.support-page .faq-heading {
  position: sticky;
  top: 110px;
}

.support-page .faq-heading p:last-child {
  margin-top: 22px;
  color: var(--support-muted);
}

.support-page .faq-list {
  display: grid;
  gap: 10px;
}

.support-page .faq-item {
  overflow: hidden;
  border-radius: 17px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(8, 20, 35, 0.055),
    0 7px 18px rgba(12, 32, 58, 0.045);
  transition-property: box-shadow;
  transition-duration: 180ms;
}

.support-page .faq-item[open] {
  box-shadow:
    0 0 0 1px rgba(45, 102, 245, 0.18),
    0 14px 32px rgba(12, 32, 58, 0.08);
}

.support-page .faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.support-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.support-page .faq-item summary > span {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 10px;
  background: #eef3ff;
}

.support-page .faq-item summary > span::before,
.support-page .faq-item summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--support-blue);
  transition-property: transform, opacity;
  transition-duration: 180ms;
}

.support-page .faq-item summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.support-page .faq-item[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.support-page .faq-item > div {
  padding: 0 72px 20px 20px;
  color: var(--support-muted);
}

.support-page .faq-item p {
  margin-bottom: 0;
}

.support-page .author-section {
  padding: 30px 0;
  background: #fff;
}

.support-page .author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 19px;
  background: #f4f7fb;
}

.support-page .author-bar img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.support-page .author-bar div {
  display: grid;
}

.support-page .author-bar small {
  color: #566579;
  font-size: 10px;
  text-transform: uppercase;
}

.support-page .author-bar strong {
  font-size: 16px;
}

.support-page .author-bar span {
  color: #59697d;
  font-size: 12px;
}

.support-page .author-bar a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-left: auto;
  color: var(--support-blue);
  font-weight: 600;
}

.support-page .footer-directory {
  padding: 72px 0 22px;
  color: #d4deea;
  background: #07111e;
}

.support-page .footer-main {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
}

.support-page .footer-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  filter: brightness(0) invert(1);
}

.support-page .footer-brand-block p {
  margin: 18px 0 22px;
  color: #8599b1;
  font-size: 14px;
}

.support-page .footer-contact {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
}

.support-page .footer-directory-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.55fr 1fr 0.8fr;
  gap: 35px;
}

.support-page .footer-column {
  display: flex;
  flex-direction: column;
}

.support-page .footer-column strong,
.support-page .footer-insights strong {
  margin-bottom: 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-page .footer-column a,
.support-page .footer-insights a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #92a4ba;
  font-size: 13px;
  text-decoration: none;
  transition-property: color, transform;
  transition-duration: 160ms;
}

.support-page .footer-column a:hover,
.support-page .footer-column a:focus-visible,
.support-page .footer-insights a:hover,
.support-page .footer-insights a:focus-visible {
  transform: translateX(2px);
  color: #fff;
}

.support-page .footer-column a[aria-current="page"],
.support-page .footer-insights a[aria-current="page"] {
  color: var(--support-cyan);
}

.support-page .footer-secondary {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.support-page .footer-insights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 22px;
}

.support-page .footer-insights strong {
  width: 100%;
}

.support-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #70839a;
  font-size: 12px;
}

.support-page .footer-bottom div {
  display: flex;
  gap: 20px;
}

.support-page .footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}

.support-page .mobile-cta {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #fff;
  background: var(--support-blue);
  box-shadow: 0 14px 34px rgba(17, 49, 108, 0.34);
  font-weight: 600;
  text-decoration: none;
  transition-property: transform, opacity;
  transition-duration: 180ms;
}

.support-page .mobile-cta svg {
  width: 20px;
  height: 20px;
  margin-left: 9px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.support-page .mobile-cta:active {
  transform: scale(0.96);
}

.support-page .mobile-cta.is-hidden {
  transform: translateY(90px);
  opacity: 0;
  pointer-events: none;
}

.support-page .reveal {
  visibility: visible;
}

@media (min-width: 821px) {
  .support-page .support-founder-visual {
    transform-origin: 50% 50%;
  }
}

@media (max-width: 1100px) {
  .support-page .main-nav {
    display: none;
  }

  .support-page .header-cta {
    margin-left: auto;
  }

  .support-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .support-page .support-founder-visual img {
    max-height: 650px;
  }

  .support-page .answer-grid {
    grid-template-columns: 130px 1fr;
  }

  .support-page .answer-roles {
    display: grid;
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .support-page .dispatch-console {
    grid-template-columns: 0.9fr 70px 1.1fr;
    padding: 30px;
  }

  .support-page .audience-grid,
  .support-page .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-page .boundary-grid,
  .support-page .metrics-grid,
  .support-page .brief-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .support-page .operating-grid {
    grid-template-columns: 1fr;
  }

  .support-page .integration-map {
    grid-template-columns: 1fr 70px 1.15fr 70px 1fr;
    padding: 24px;
  }

  .support-page .price-card {
    grid-template-columns: 1fr 1fr;
  }

  .support-page .price-card .eyebrow {
    grid-column: 1 / -1;
  }

  .support-page .price-card a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .support-page .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .support-page .container {
    width: min(100% - 32px, 680px);
  }

  .support-page .section {
    padding: 78px 0;
  }

  .support-page .header-inner {
    min-height: 66px;
  }

  .support-page .header-cta {
    display: none;
  }

  .support-page .breadcrumbs {
    overflow: hidden;
    white-space: nowrap;
  }

  .support-page .support-hero {
    padding: 36px 0 62px;
  }

  .support-page .support-hero h1 {
    font-size: clamp(41px, 13vw, 64px);
  }

  .support-page .hero-lead {
    font-size: 17px;
  }

  .support-page .hero-actions {
    display: grid;
  }

  .support-page .support-founder-visual {
    padding: 7px;
    border-radius: 25px;
  }

  .support-page .support-founder-visual img {
    min-height: 440px;
    border-radius: 18px;
    object-position: 61% center;
  }

  .support-page .support-founder-visual figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .support-page .visual-tag {
    top: 19px;
    left: 19px;
  }

  .support-page .answer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .support-page .answer-roles {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .support-page .split-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .support-page .issue-tabs {
    grid-template-columns: 1fr;
  }

  .support-page .issue-tabs button {
    justify-content: flex-start;
  }

  .support-page .dispatch-console {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
  }

  .support-page .dispatch-route {
    width: 3px;
    height: 62px;
    justify-self: center;
  }

  .support-page .dispatch-route span {
    transform: scaleY(0.75);
    transform-origin: top;
    background: linear-gradient(180deg, var(--support-cyan), var(--support-blue-bright));
  }

  .support-page .dispatch-route i {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .support-page .audience-grid {
    grid-template-columns: 1fr;
  }

  .support-page .audience-card {
    min-height: 250px;
  }

  .support-page .audience-card svg {
    margin-bottom: 34px;
  }

  .support-page .task-ledger li {
    align-items: start;
    grid-template-columns: 44px 48px 1fr;
    gap: 12px;
  }

  .support-page .operating-card {
    min-height: 0;
  }

  .support-page .task-ledger svg {
    width: 46px;
    height: 46px;
    padding: 11px;
  }

  .support-page .boundary-grid {
    grid-template-columns: 1fr;
  }

  .support-page .case-heading {
    align-items: start;
    flex-direction: column;
  }

  .support-page .case-layout {
    grid-template-columns: 1fr;
  }

  .support-page .case-main img,
  .support-page .case-side img {
    min-height: 0;
    aspect-ratio: 1.46 / 1;
  }

  .support-page .case-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .support-page .case-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-page .integration-map {
    grid-template-columns: 1fr;
  }

  .support-page .map-flow {
    display: flex;
    height: 46px;
    justify-content: center;
  }

  .support-page .map-flow i {
    width: 2px;
    height: 46px;
  }

  .support-page .map-flow i:not(:first-child) {
    display: none;
  }

  .support-page .map-flow i b {
    transform: translateY(-100%);
    background: linear-gradient(180deg, transparent, var(--support-blue), transparent);
  }

  .support-page .metric-ledger {
    grid-template-columns: 1fr;
  }

  .support-page .process-rail {
    grid-template-columns: 1fr;
  }

  .support-page .process-rail li {
    min-height: 220px;
  }

  .support-page .process-rail > li > span {
    margin-bottom: 42px;
  }

  .support-page .fit-grid {
    grid-template-columns: 1fr;
  }

  .support-page .price-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .support-page .price-card .eyebrow,
  .support-page .price-card a {
    grid-column: auto;
  }

  .support-page .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-page .brief-grid {
    grid-template-columns: 1fr;
  }

  .support-page .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-page .faq-heading {
    position: static;
  }

  .support-page .footer-directory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-page .mobile-cta {
    display: flex;
  }

  .support-page .footer-directory {
    padding-bottom: 90px;
  }
}

@media (max-width: 560px) {
  .support-page .container {
    width: min(100% - 28px, 520px);
  }

  .support-page .section {
    padding: 66px 0;
  }

  .support-page .support-hero h1 {
    font-size: clamp(39px, 13.5vw, 56px);
  }

  .support-page .hero-actions .button {
    width: 100%;
  }

  .support-page .assurances {
    display: grid;
  }

  .support-page .support-founder-visual img {
    min-height: 420px;
    object-position: 65% center;
  }

  .support-page .support-founder-visual figcaption strong {
    font-size: 12px;
  }

  .support-page .split-intro h2,
  .support-page .section-heading h2,
  .support-page .case-heading h2,
  .support-page .metrics-copy h2,
  .support-page .brief-copy h2,
  .support-page .faq-heading h2 {
    font-size: clamp(31px, 10.3vw, 45px);
  }

  .support-page .incoming-message,
  .support-page .ticket-card {
    padding: 21px;
  }

  .support-page .ticket-grid {
    grid-template-columns: 1fr;
  }

  .support-page .ticket-grid div {
    min-height: 78px;
  }

  .support-page .ticket-action {
    flex-wrap: wrap;
  }

  .support-page .task-ledger li {
    grid-template-columns: 38px 1fr;
  }

  .support-page .task-ledger svg {
    grid-column: 2;
    grid-row: 1;
  }

  .support-page .task-ledger div {
    grid-column: 1 / -1;
  }

  .support-page .confidence-console {
    padding: 20px 14px;
  }

  .support-page .case-side {
    grid-template-columns: 1fr;
  }

  .support-page .case-proof {
    padding: 20px;
  }

  .support-page .related-grid {
    grid-template-columns: 1fr;
  }

  .support-page .related-card {
    min-height: 210px;
  }

  .support-page .lead-form {
    padding: 22px 18px;
  }

  .support-page .faq-item > div {
    padding-right: 20px;
  }

  .support-page .author-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .support-page .author-bar a {
    width: 100%;
    margin-left: 70px;
  }

  .support-page .footer-directory-grid {
    grid-template-columns: 1fr;
  }

  .support-page .footer-bottom {
    flex-direction: column;
  }
}

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

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