/* Hero section — homepage only (requires styles.css) */
:root {
  --hero-flow-business-width: 18.75rem;
  --hero-accent-purple-bg: #eeedfe;
  --hero-accent-purple-fg: #534ab7;
  --hero-accent-amber-bg: #faeeda;
  --hero-accent-amber-fg: #854f0b;
  --hero-accent-coral-bg: #faece7;
  --hero-accent-coral-fg: #993c1d;
  --hero-accent-gray-bg: #f1efe8;
  --hero-accent-gray-fg: #5f5e5a;
  --hero-accent-green-bg: #e1f5ee;
  --hero-accent-green-fg: #0f6e56;
  --hero-accent-green-border: #9fe1cb;
  --hero-accent-green-deep: #085041;
  --hero-accent-blue-bg: #e6f1fb;
  --hero-accent-blue-fg: #185fa5;
  --hero-accent-blue-deep: #0c447c;
  --hero-accent-purple-deep: #26215c;
  --hero-result-row-bg: color-mix(
    in srgb,
    var(--hero-accent-green-bg) 13%,
    var(--color-bg) 87%
  );
  --hero-node-mobile-border: #b5d4f4;
  --hero-node-ai-border: #afa9ec;
  --hero-node-web-border: #9fe1cb;
  --hero-node-support-border: #d3d1c7;
  --hero-brand-gradient: linear-gradient(90deg, #4da3ff 0%, #5b4dff 100%);
  --site-header-clearance: clamp(6rem, 13vh, 8rem);
}

.hero {
  --hero-pad-inline: 0;
  --hero-side-w: clamp(5.5rem, 16vw, 11rem);
  --hero-elev-highlight: rgba(255, 255, 255, 0.94);
  --hero-elev-shadow-soft: rgba(15, 23, 42, 0.06);
  --hero-elev-shadow-mid: rgba(15, 23, 42, 0.1);
  --hero-elev-shadow-deep: rgba(15, 23, 42, 0.14);
  --hero-panel-bg: linear-gradient(
    148deg,
    #ffffff 0%,
    #f8fafc 40%,
    color-mix(in srgb, var(--color-surface) 58%, #e2e8f0 42%) 100%
  );
  --hero-panel-shadow:
    0 1px 0 var(--hero-elev-highlight) inset,
    0 -1px 0 rgba(15, 23, 42, 0.05) inset,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 5px 14px var(--hero-elev-shadow-soft),
    0 14px 32px var(--hero-elev-shadow-mid),
    0 28px 56px rgba(15, 23, 42, 0.08);
  --hero-frame-color: color-mix(in srgb, var(--color-border) 82%, #64748b 18%);
  container-type: size;
  container-name: hero;
  position: relative;
  display: grid;
  grid-template-columns: var(--hero-side-w) minmax(0, 1fr) var(--hero-side-w);
  grid-template-rows: minmax(0, 0.52fr) minmax(10rem, 0.48fr);
  column-gap: clamp(0.5rem, 2vw, 1.25rem);
  row-gap: clamp(var(--space-5), 4cqh, var(--space-7));
  align-items: stretch;
  justify-items: stretch;
  flex: none;
  min-height: 100dvh;
  max-height: 100dvh;
  height: 100dvh;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.hero-glow-corner {
  position: absolute;
  z-index: 0;
  width: min(44rem, 75vw);
  height: min(44rem, 75vw);
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(26, 26, 255, 0.22) 0%,
    rgba(77, 163, 255, 0.12) 38%,
    rgba(255, 255, 255, 0) 68%
  );
  filter: blur(2px);
}

.hero-glow-corner--bottom-left {
  bottom: -22%;
  left: -14%;
}

.hero-grid-pattern {
  position: absolute;
  z-index: 0;
  grid-column: 1 / -1;
  grid-row: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  pointer-events: none;
  --hero-grid-line: color-mix(in srgb, var(--color-text) 7.5%, transparent);
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(
    ellipse 115% 95% at 50% 0%,
    black 32%,
    transparent 78%
  );
  mask-image: radial-gradient(
    ellipse 115% 95% at 50% 0%,
    black 32%,
    transparent 78%
  );
}

.hero-side--left {
  grid-column: 1;
  grid-row: 1;
}

.hero-copy {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: var(--space-3);
  min-width: 0;
  min-height: 0;
  padding-top: max(
    var(--site-header-clearance),
    calc(env(safe-area-inset-top, 0px) + 4.75rem)
  );
  padding-bottom: clamp(0.35rem, 1.5vh, 1rem);
  padding-inline: clamp(0.25rem, 2vw, 1rem);
  overflow: visible;
}

.hero-side--right {
  grid-column: 3;
  grid-row: 1;
}

.hero-side {
  --hero-side-r: clamp(2.75rem, 10vmin, 5.5rem);
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 0;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: visible;
  pointer-events: none;
  transform-style: preserve-3d;
  perspective: 1400px;
}

.hero-side__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: var(--hero-frame-color);
  filter:
    drop-shadow(0 -0.75px 0 var(--hero-elev-highlight))
    drop-shadow(0.75px 1.25px 0 rgba(15, 23, 42, 0.05))
    drop-shadow(1px 4px 10px var(--hero-elev-shadow-soft));
}

.hero-side__frame path {
  stroke: currentColor;
}

.hero-float-card {
  --float-card-width: 13.75rem;
  --card-gap-top: 1rem;
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: var(--float-card-width);
  max-width: var(--float-card-width);
  box-sizing: border-box;
  pointer-events: none;
  font-family: var(--font-sans);
  border-radius: clamp(0.55rem, 2.25vmin, 1.15rem);
  border: 0.5px solid var(--color-border);
  background: var(--color-surface);
  overflow: visible;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-bg) 65%, transparent) inset,
    0 1px 2px color-mix(in srgb, var(--color-text) 5%, transparent),
    0 6px 16px color-mix(in srgb, var(--color-text) 7%, transparent),
    0 18px 40px color-mix(in srgb, var(--color-text) 9%, transparent),
    0 32px 64px color-mix(in srgb, var(--color-primary) 7%, transparent);
}

.hero-float-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 14%;
  right: 14%;
  bottom: -0.55rem;
  height: 0.65rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-text) 16%, transparent);
  filter: blur(11px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-float-card__head,
.hero-float-card__body,
.hero-float-card__foot {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
}

.hero-side--left .HeroCardLeft {
  top: clamp(
    var(--card-gap-top),
    calc(50% + 9.25rem),
    calc(100% - var(--card-gap-top) - 8rem)
  );
  right: 0;
  left: auto;
  transform: translate(50%, -50%);
  animation: heroFloatIn 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-side--right .HeroCardRight {
  top: clamp(
    var(--card-gap-top),
    calc(50% - 1.25rem),
    calc(100% - var(--card-gap-top) - 16rem)
  );
  left: 0;
  right: auto;
  transform: translate(-50%, -50%);
  animation: heroFloatInRight 0.6s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-float-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem 0.45rem;
  border-bottom: 0.5px solid var(--color-border);
  border-radius: clamp(0.55rem, 2.25vmin, 1.15rem)
    clamp(0.55rem, 2.25vmin, 1.15rem) 0 0;
  overflow: hidden;
}

.hero-float-card__head--app {
  align-items: flex-start;
}

.hero-float-card__head--app .hero-float-card__badge--live {
  margin-left: auto;
}

.hero-float-card__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 16%, var(--color-surface) 84%);
  border: 0.5px solid color-mix(in srgb, var(--color-primary) 35%, var(--color-border) 65%);
}

.hero-float-card__icon-box {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: var(--radius-sm);
  color: var(--color-bg);
  background: var(--color-primary);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--color-primary) 45%, transparent);
}

.hero-float-card__icon-svg {
  display: block;
}

.hero-float-card__titles {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-float-card__title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

.hero-float-card__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.12rem 0 0;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-muted-text);
}

.hero-float-card__pulse {
  position: relative;
  flex-shrink: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-status-positive);
}

.hero-float-card__pulse::after {
  content: "";
  position: absolute;
  inset: -0.2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-status-positive) 55%, transparent);
  animation: heroPulseRipple 1.8s ease-out infinite;
}

.hero-float-card__badge {
  flex-shrink: 0;
  padding: 0.12rem 0.38rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-float-card__badge--live,
.hero-float-card__badge--done {
  color: var(--color-status-positive);
  background: var(--color-status-positive-bg);
}

.hero-float-card__badge--review {
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 14%, var(--color-surface) 86%);
}

.hero-float-card__badge--soon {
  color: var(--color-muted-text);
  background: color-mix(in srgb, var(--color-muted-text) 12%, var(--color-surface) 88%);
}

.hero-float-card__body {
  padding: 0.5rem 0.65rem;
  overflow: hidden;
}

.HeroCardRight > .hero-float-card__body:last-child {
  border-radius: 0 0 clamp(0.55rem, 2.25vmin, 1.15rem)
    clamp(0.55rem, 2.25vmin, 1.15rem);
}

.hero-float-card__body--chat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-chat-msg {
  max-width: 92%;
}

.hero-chat-msg p {
  margin: 0;
  padding: 0.35rem 0.45rem;
  font-size: 0.625rem;
  line-height: 1.35;
  border-radius: 0.55rem;
}

.hero-chat-msg--user {
  align-self: flex-end;
}

.hero-chat-msg--user p {
  color: var(--color-bg);
  background: var(--color-text);
}

.hero-chat-msg--ai {
  align-self: flex-start;
}

.hero-chat-msg--ai p {
  color: var(--color-text);
  background: color-mix(in srgb, var(--color-border) 35%, var(--color-surface) 65%);
  border: 0.5px solid color-mix(in srgb, var(--color-border) 80%, transparent);
}

.hero-chat-msg--typing {
  padding: 0.35rem 0.55rem;
  background: color-mix(in srgb, var(--color-border) 35%, var(--color-surface) 65%);
  border: 0.5px solid color-mix(in srgb, var(--color-border) 80%, transparent);
  border-radius: 0.55rem;
}

.hero-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  height: 0.65rem;
}

.hero-chat-typing span {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--color-muted-text);
  animation: heroTypingBounce 0.9s ease-in-out infinite;
}

.hero-chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-float-card__foot {
  padding: 0.2rem 0.65rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: right;
  color: var(--color-muted-text);
  border-radius: 0 0 clamp(0.55rem, 2.25vmin, 1.15rem)
    clamp(0.55rem, 2.25vmin, 1.15rem);
  overflow: hidden;
}

.hero-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-checklist__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0;
  border-bottom: 0.5px solid var(--color-border);
}

.hero-checklist__row:last-of-type {
  border-bottom: none;
}

.hero-checklist__dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
}

.hero-checklist__dot--done {
  background: var(--color-status-positive);
}

.hero-checklist__dot--active {
  background: var(--color-primary);
}

.hero-checklist__dot--muted {
  background: color-mix(in srgb, var(--color-muted-text) 55%, var(--color-border) 45%);
}

.hero-checklist__label {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text);
}

.hero-progress {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 0.5px solid var(--color-border);
}

.hero-progress__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--color-muted-text);
}

.hero-progress__track {
  height: 0.25rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-muted-text) 14%, var(--color-surface) 86%);
  overflow: hidden;
}

.hero-progress__fill {
  height: 100%;
  width: 75%;
  border-radius: inherit;
  background: var(--color-primary);
  animation: heroProgressPulse 2.4s ease-in-out infinite;
}

@keyframes heroFloatIn {
  from {
    opacity: 0;
    transform: translate(50%, calc(-50% - 1rem));
  }
  to {
    opacity: 1;
    transform: translate(50%, -50%);
  }
}

@keyframes heroFloatInRight {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 1rem));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes heroPulseRipple {
  0% {
    transform: scale(0.55);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

@keyframes heroTypingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-0.18rem);
  }
}

@keyframes heroProgressPulse {
  0%,
  100% {
    width: 72%;
  }
  50% {
    width: 88%;
  }
}

.hero-title {
  width: 80%;
  max-width: 80%;
  margin: 0 auto;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-text);
}

.gradient-primary {
  background: var(--hero-brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.switch-wrap {
  display: inline-grid;
  margin-left: 0.2ch;
  vertical-align: baseline;
}

.switch-word {
  grid-area: 1 / 1;
  justify-self: start;
  width: max-content;
  text-align: left;
  white-space: nowrap;
  font-weight: 800;
  opacity: 0;
  animation: switchWordCycle 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  will-change: opacity;
}

.switch-word:nth-child(1) {
  animation-delay: 0s;
}

.switch-word:nth-child(2) {
  animation-delay: -4s;
}

.switch-word:nth-child(3) {
  animation-delay: -8s;
}

.switch-word:nth-child(4) {
  animation-delay: -12s;
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-text);
}

.hero-description {
  width: min(940px, 100%);
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--color-muted-text);
}

.hero-cta {
  margin-top: clamp(0.35rem, 1.2vw, 0.85rem);
}

.hero-connect-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.65rem 0.65rem 0.65rem 1.65rem;
  border: none;
  border-radius: 999px;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(
    105deg,
    #3d9bff 0%,
    #4da3ff 38%,
    #5b6dff 72%,
    #6b5cff 100%
  );
  box-shadow: none;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    filter 0.22s ease;
  overflow: hidden;
}

.hero-connect-btn__shine {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 55%
  );
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.hero-connect-btn__label {
  position: relative;
  z-index: 1;
}

.hero-connect-btn__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.2, 0.64, 1),
    background 0.22s ease;
}

.hero-connect-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: none;
}

.hero-connect-btn:hover .hero-connect-btn__shine {
  transform: translateX(120%) skewX(-18deg);
}

.hero-connect-btn:hover .hero-connect-btn__icon {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.3);
}

.hero-connect-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.hero-connect-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hero-flow {
  --hero-flow-card-size: clamp(11rem, min(18.75rem, 42cqh), 18.75rem);
  --hero-flow-hub-width: clamp(26rem, 42vw, 34rem);
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: calc(var(--hero-flow-card-size) + clamp(var(--space-5), 4cqh, var(--space-7)));
  max-height: none;
  margin-top: 0;
  padding-bottom: clamp(calc(var(--space-5) * 3), 10.5cqh, calc(var(--space-7) * 3));
  padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
  box-sizing: border-box;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  column-gap: 0;
}

.hero-flow-core {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: grid;
  grid-template-columns:
    var(--hero-flow-business-width)
    minmax(0, var(--hero-flow-hub-width))
    var(--hero-flow-business-width);
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: max-content;
  pointer-events: none;
  overflow: visible;
}

.hero-flow-core .hero-flow-card--business {
  grid-column: 1;
  grid-row: 1;
  height: auto;
  align-self: center;
  min-height: 0;
  position: relative;
  z-index: 3;
}

.hero-flow-core .hero-flow-hub {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  width: 100%;
  max-width: var(--hero-flow-hub-width);
  min-width: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-flow-core .hero-flow-card--results {
  grid-column: 3;
  grid-row: 1;
  height: auto;
  align-self: center;
  min-height: 0;
  position: relative;
  z-index: 3;
}

.hero-flow-rail--left {
  grid-column: 1;
  grid-row: 1;
}

.hero-flow-rail--right {
  grid-column: 3;
  grid-row: 1;
}

.hero-flow-rail {
  position: relative;
  z-index: 0;
  align-self: center;
  min-width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  color: var(--hero-frame-color);
}

.hero-flow-rail__svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1.75px;
  overflow: visible;
  transform: translateY(-50%);
  filter:
    drop-shadow(0 -0.75px 0 var(--hero-elev-highlight))
    drop-shadow(0.75px 1.25px 0 rgba(15, 23, 42, 0.05))
    drop-shadow(1px 4px 10px var(--hero-elev-shadow-soft));
}

.hero-flow-rail--left .hero-flow-rail__svg {
  left: 0;
  width: calc(100% + 4px);
}

.hero-flow-rail--right .hero-flow-rail__svg {
  right: 0;
  left: auto;
  width: calc(100% + 4px);
}

.hero-flow-hub {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-flow-diagram {
  display: block;
  width: 100%;
  max-width: var(--hero-flow-hub-width);
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-flow-core .hero-flow-card {
  flex-shrink: 0;
  align-self: center;
}

.hero-flow-card {
  position: relative;
  flex-shrink: 0;
  width: var(--hero-flow-card-size);
  height: var(--hero-flow-card-size);
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  align-self: center;
  border-radius: clamp(0.65rem, 1.8vmin, 0.95rem);
  box-sizing: border-box;
  padding: clamp(0.45rem, 1.15cqh, 0.65rem) clamp(0.5rem, 1.25cqh, 0.72rem);
  border: 1px solid color-mix(in srgb, var(--color-border) 68%, #ffffff 32%);
  background: var(--hero-panel-bg);
  box-shadow: var(--hero-panel-shadow);
}

.hero-flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -8px 14px rgba(15, 23, 42, 0.035);
}

.hero-flow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.35) 0%,
    transparent 45%,
    rgba(15, 23, 42, 0.035) 100%
  );
}

.hero-flow-card.hero-flow-card--business,
.hero-flow-card.hero-flow-card--results {
  display: flex;
  flex-direction: column;
  width: var(--hero-flow-business-width);
  height: auto;
  min-height: 0;
  max-width: var(--hero-flow-business-width);
  aspect-ratio: auto;
  padding: 0;
  border: 0.5px solid var(--color-border);
  background: var(--color-bg);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-bg) 65%, transparent) inset,
    0 1px 2px color-mix(in srgb, var(--color-text) 5%, transparent),
    0 6px 16px color-mix(in srgb, var(--color-text) 7%, transparent),
    0 18px 40px color-mix(in srgb, var(--color-text) 9%, transparent),
    0 32px 64px color-mix(in srgb, var(--color-primary) 7%, transparent);
  overflow: hidden;
}

.hero-flow-core .hero-flow-card.hero-flow-card--business,
.hero-flow-core .hero-flow-card.hero-flow-card--results {
  overflow: visible;
}

.hero-flow-core .hero-flow-card.hero-flow-card--business .hero-business-card__body,
.hero-flow-core .hero-flow-card.hero-flow-card--results .hero-result-card__body {
  overflow: hidden;
}

.hero-flow-card.hero-flow-card--business,
.hero-flow-card.hero-flow-card--results {
  border-radius: 20px;
}

.hero-flow-card.hero-flow-card--business .hero-business-card__head,
.hero-flow-card.hero-flow-card--results .hero-result-card__head {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.hero-flow-card.hero-flow-card--business .hero-business-card__body,
.hero-flow-card.hero-flow-card--results .hero-result-card__body {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  flex: 1 1 auto;
}

.hero-flow-card.hero-flow-card--business::before,
.hero-flow-card.hero-flow-card--results::before {
  content: none;
  display: none;
}

.hero-flow-card.hero-flow-card--results::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -2;
  inset: -3px;
  border-radius: 23px;
  background: var(--hero-brand-gradient);
  opacity: 0.42;
  filter: blur(14px);
  pointer-events: none;
}

.hero-flow-card.hero-flow-card--business::after,
.hero-flow-card.hero-flow-card--results::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  inset: auto;
  left: 14%;
  right: 14%;
  bottom: -0.55rem;
  height: 0.65rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-text) 16%, transparent);
  filter: blur(11px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-flow-card.hero-flow-card--results::after {
  left: 10%;
  right: 10%;
  bottom: -0.85rem;
  height: 0.85rem;
  background: var(--hero-brand-gradient);
  opacity: 0.62;
  filter: blur(18px);
}

.hero-flow-card.hero-flow-card--business {
  background:
    radial-gradient(
      120% 80% at 100% 0%,
      color-mix(in srgb, var(--color-primary) 7%, transparent) 0%,
      transparent 55%
    ),
    var(--color-bg);
}

.hero-flow-card.hero-flow-card--results {
  border: 1.5px solid transparent;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(var(--color-bg), var(--color-bg)),
    var(--hero-brand-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-bg) 70%, transparent) inset,
    0 1px 2px rgba(77, 163, 255, 0.14),
    0 6px 18px rgba(77, 163, 255, 0.24),
    0 14px 32px rgba(77, 163, 255, 0.18),
    0 22px 44px rgba(91, 77, 255, 0.22),
    0 32px 64px rgba(91, 77, 255, 0.16);
}

.hero-business-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--color-border);
  position: relative;
  background: linear-gradient(
    125deg,
    color-mix(in srgb, var(--color-primary) 9%, var(--color-bg) 91%) 0%,
    var(--color-bg) 62%
  );
}

.hero-business-card__head-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--color-primary);
  background: linear-gradient(
    145deg,
    var(--color-bg) 0%,
    color-mix(in srgb, var(--color-primary) 16%, var(--color-surface) 84%) 100%
  );
  box-shadow:
    0 0 0 0.5px color-mix(in srgb, var(--color-primary) 35%, var(--color-border) 65%),
    0 4px 14px color-mix(in srgb, var(--color-primary) 18%, transparent);
}

.hero-business-card__head-icon i {
  font-size: 14px;
  line-height: 1;
}

.hero-business-card__head-icon svg {
  display: block;
}

.hero-business-card__head-text {
  min-width: 0;
}

.hero-business-card__head-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

.hero-business-card__head-sub {
  margin: 0.15rem 0 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-muted-text);
}

.hero-business-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px 16px;
  position: relative;
}

.hero-flow-card--business .hero-business-card__body,
.hero-flow-card--results .hero-result-card__body {
  --hero-flow-row-connector-icon: 28px;
  --hero-flow-row-connector-body-pad-inline: 16px;
  --hero-flow-row-connector-body-pad-block: 12px;
  --hero-flow-row-connector-row-pad-inline: 10px;
  --hero-flow-row-connector-row-pad-block: 7px;
}

.hero-flow-card--business .hero-business-row__icon,
.hero-flow-card--results .hero-result-row__icon {
  width: var(--hero-flow-row-connector-icon);
  height: var(--hero-flow-row-connector-icon);
}

.hero-flow-card--business .hero-business-card__body::before,
.hero-flow-card--results .hero-result-card__body::before {
  content: "";
  position: absolute;
  left: calc(
    var(--hero-flow-row-connector-body-pad-inline) +
      var(--hero-flow-row-connector-row-pad-inline) + var(--hero-flow-row-connector-icon) / 2
  );
  top: calc(
    var(--hero-flow-row-connector-body-pad-block) + var(--hero-flow-row-connector-row-pad-block) +
      var(--hero-flow-row-connector-icon) / 2
  );
  bottom: calc(
    var(--hero-flow-row-connector-body-pad-block) + var(--hero-flow-row-connector-row-pad-block) +
      var(--hero-flow-row-connector-icon) / 2
  );
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-flow-card--business .hero-business-card__body::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--color-primary) 28%, var(--color-border) 72%) 12%,
    color-mix(in srgb, var(--color-primary) 22%, var(--color-border) 78%) 88%,
    transparent 100%
  );
}

.hero-business-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 7px 10px;
  border-radius: 8px;
  border: 0.5px solid color-mix(in srgb, var(--color-border) 88%, var(--color-bg) 12%);
  background: linear-gradient(
    118deg,
    var(--color-bg) 0%,
    color-mix(in srgb, var(--color-surface-secondary) 88%, var(--color-bg) 12%) 100%
  );
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-business-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.28) 0%,
    transparent 38%
  );
  pointer-events: none;
}

.hero-flow-card--business .hero-business-card__head-title {
  font-weight: 700;
  color: color-mix(in srgb, var(--color-text) 94%, #000000 6%);
}

.hero-flow-card--business .hero-business-card__head-sub {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 62%, var(--color-muted-text) 38%);
}

.hero-flow-card--business .hero-business-row__label {
  font-weight: 700;
  color: color-mix(in srgb, var(--color-text) 92%, #000000 8%);
  letter-spacing: 0.01em;
}

.hero-flow-card--business .hero-business-row__note {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 52%, var(--color-muted-text) 48%);
}

.hero-business-row__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 0.5px color-mix(in srgb, currentColor 22%, transparent),
    0 3px 10px color-mix(in srgb, currentColor 14%, transparent);
}

.hero-business-row__icon i {
  font-size: 14px;
  line-height: 1;
}

.hero-business-row__icon svg {
  display: block;
}

.hero-business-row__text {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-business-row__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.hero-business-row__note {
  margin: 0.12rem 0 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-muted-text);
}

.hero-business-row--idea .hero-business-row__icon {
  color: var(--hero-accent-purple-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-purple-bg) 100%
  );
}

.hero-business-row--idea {
  border-color: color-mix(in srgb, var(--hero-accent-purple-fg) 18%, var(--color-border) 82%);
}

.hero-business-row--manual .hero-business-row__icon {
  color: var(--hero-accent-amber-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-amber-bg) 100%
  );
}

.hero-business-row--manual {
  border-color: color-mix(in srgb, var(--hero-accent-amber-fg) 16%, var(--color-border) 84%);
}

.hero-business-row--web .hero-business-row__icon {
  color: var(--hero-accent-coral-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-coral-bg) 100%
  );
}

.hero-business-row--web {
  border-color: color-mix(in srgb, var(--hero-accent-coral-fg) 16%, var(--color-border) 84%);
}

.hero-business-row--support .hero-business-row__icon {
  color: var(--hero-accent-gray-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-gray-bg) 100%
  );
}

.hero-business-row--support {
  border-color: color-mix(in srgb, var(--hero-accent-gray-fg) 14%, var(--color-border) 86%);
}

.hero-result-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--color-border);
  position: relative;
  background: var(--color-bg);
}

.hero-flow-card--results .hero-result-card__head {
  background: var(--color-bg);
}

.hero-result-card__head-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--hero-accent-green-fg);
  background: linear-gradient(
    145deg,
    var(--color-bg) 0%,
    var(--hero-accent-green-bg) 100%
  );
  box-shadow:
    0 0 0 0.5px color-mix(in srgb, var(--hero-accent-green-fg) 32%, var(--color-border) 68%),
    0 4px 14px color-mix(in srgb, var(--hero-accent-green-fg) 16%, transparent);
}

.hero-result-card__head-icon i {
  font-size: 14px;
  line-height: 1;
}

.hero-result-card__head-icon svg {
  display: block;
}

.hero-result-card__head-text {
  min-width: 0;
}

.hero-result-card__head-title {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-text);
}

.hero-result-card__head-sub {
  margin: 0.15rem 0 0;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-muted-text);
}

.hero-result-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px 16px;
  position: relative;
  background: var(--color-bg);
}

.hero-flow-card--results .hero-result-card__body {
  background: var(--color-bg);
}

.hero-flow-card--results .hero-result-card__body::before {
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--hero-accent-green-fg) 26%, var(--color-border) 74%) 12%,
    color-mix(in srgb, var(--hero-accent-green-fg) 20%, var(--color-border) 80%) 88%,
    transparent 100%
  );
}

.hero-result-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 7px 10px;
  border-radius: 8px;
  border: 0.5px solid color-mix(in srgb, var(--hero-accent-green-border) 75%, var(--color-border) 25%);
  background: linear-gradient(
    118deg,
    var(--color-bg) 0%,
    var(--hero-result-row-bg) 100%
  );
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-result-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.28) 0%,
    transparent 38%
  );
  pointer-events: none;
}

.hero-result-row__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 0.5px color-mix(in srgb, currentColor 22%, transparent),
    0 3px 10px color-mix(in srgb, currentColor 14%, transparent);
}

.hero-result-row__icon i {
  font-size: 14px;
  line-height: 1;
}

.hero-result-row__icon svg {
  display: block;
}

.hero-result-row__text {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.hero-result-row__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
}

.hero-result-row__note {
  margin: 0.12rem 0 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-muted-text);
}

.hero-result-row__badge {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 1px 4px color-mix(in srgb, currentColor 12%, transparent);
}

.hero-result-row--live .hero-result-row__icon,
.hero-result-row--support .hero-result-row__icon {
  color: var(--hero-accent-green-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-green-bg) 100%
  );
}

.hero-result-row--live,
.hero-result-row--support {
  border-color: color-mix(in srgb, var(--hero-accent-green-fg) 22%, var(--color-border) 78%);
}

.hero-result-row--live .hero-result-row__badge,
.hero-result-row--support .hero-result-row__badge {
  color: var(--hero-accent-green-deep);
  background: var(--hero-accent-green-bg);
}

.hero-result-row--ai .hero-result-row__icon {
  color: var(--hero-accent-purple-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-purple-bg) 100%
  );
}

.hero-result-row--ai {
  border-color: color-mix(in srgb, var(--hero-accent-purple-fg) 18%, var(--color-border) 82%);
}

.hero-result-row--ai .hero-result-row__badge {
  color: var(--hero-accent-purple-deep);
  background: var(--hero-accent-purple-bg);
}

.hero-result-row--growth .hero-result-row__icon {
  color: var(--hero-accent-blue-fg);
  background: linear-gradient(
    150deg,
    var(--color-bg) 0%,
    var(--hero-accent-blue-bg) 100%
  );
}

.hero-result-row--growth {
  border-color: color-mix(in srgb, var(--hero-accent-blue-fg) 18%, var(--color-border) 82%);
}

.hero-result-row--growth .hero-result-row__badge {
  color: var(--hero-accent-blue-deep);
  background: var(--hero-accent-blue-bg);
}

.hero-flow-card--results .hero-result-card__head-title {
  font-weight: 700;
  color: color-mix(in srgb, var(--color-text) 94%, #000000 6%);
}

.hero-flow-card--results .hero-result-card__head-sub {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 62%, var(--color-muted-text) 38%);
}

.hero-flow-card--results .hero-result-row__label {
  font-weight: 700;
  color: color-mix(in srgb, var(--color-text) 92%, #000000 8%);
  letter-spacing: 0.01em;
}

.hero-flow-card--results .hero-result-row__note {
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text) 52%, var(--color-muted-text) 48%);
}

.hero-flow-card--results .hero-result-row__badge {
  font-weight: 600;
}

.hero-services {
  margin: var(--space-2) 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.7rem;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  font-weight: 600;
  color: var(--color-text);
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.03em;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, #ffffff 80%);
  background: color-mix(in srgb, var(--color-primary) 5%, #ffffff 95%);
  color: var(--color-text);
  text-decoration: none;
}

.service-pill:hover {
  border-color: color-mix(in srgb, var(--color-primary) 38%, #ffffff 62%);
  background: color-mix(in srgb, var(--color-primary) 10%, #ffffff 90%);
  color: var(--color-text);
}

.hero-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.hero-icon {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 1.05rem;
  line-height: 1;
}

.hero-icon i {
  color: var(--color-primary);
  font-size: 0.95rem;
}

@keyframes switchWordCycle {
  0% {
    opacity: 0;
  }
  7% {
    opacity: 1;
  }
  18% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (min-width: 1440px) {
  :root {
    --hero-flow-business-width: 19.75rem;
    --site-header-clearance: clamp(6.25rem, 12vh, 8.25rem);
  }

  .hero {
    --hero-side-w: clamp(6rem, 14vw, 12rem);
    column-gap: clamp(0.85rem, 1.75vw, 1.35rem);
  }

  .hero-title {
    font-size: clamp(2.1rem, 4.35vw, 4.15rem);
  }

  .hero-subtitle {
    font-size: clamp(1.55rem, 2.95vw, 2.5rem);
  }

  .hero-description {
    font-size: clamp(1.02rem, 1.55vw, 1.25rem);
  }

  .hero-float-card {
    --float-card-width: 14.5rem;
  }

  .hero-flow {
    --hero-flow-card-size: clamp(11.5rem, min(19.5rem, 42cqh), 19.5rem);
    --hero-flow-hub-width: clamp(28rem, 41vw, 36rem);
  }

  .hero-glow-corner {
    width: min(48rem, 68vw);
    height: min(48rem, 68vw);
  }

}

@media (min-width: 1920px) {
  :root {
    --hero-flow-business-width: 24.5rem;
    --site-header-clearance: clamp(7rem, 10vh, 9.5rem);
  }

  .hero {
    --hero-side-w: clamp(9rem, 10vw, 16.5rem);
    column-gap: clamp(1.25rem, 2.2vw, 2.25rem);
  }

  .hero-title {
    font-size: clamp(3rem, 4.2vw, 5.25rem);
    max-width: min(80%, 64rem);
  }

  .hero-subtitle {
    font-size: clamp(1.85rem, 2.5vw, 3rem);
  }

  .hero-description {
    font-size: clamp(1.15rem, 1.35vw, 1.5rem);
    width: min(56rem, 72%);
  }

  .hero-connect-btn {
    min-height: 3.85rem;
    padding: 0.8rem 0.85rem 0.8rem 2rem;
    font-size: 1.2rem;
  }

  .hero-float-card {
    --float-card-width: 18.5rem;
  }

  .hero-float-card__title {
    font-size: 0.9rem;
  }

  .hero-float-card__subtitle {
    font-size: 0.75rem;
  }

  .hero-flow {
    --hero-flow-card-size: clamp(13.5rem, min(23rem, 38cqh), 23rem);
    --hero-flow-hub-width: clamp(38rem, 42vw, 52rem);
    padding-inline: clamp(1.25rem, 2.5vw, 2.5rem);
  }

  .hero-flow-card.hero-flow-card--business,
  .hero-flow-card.hero-flow-card--results {
    border-radius: 24px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 14px 18px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding: 16px 20px;
    gap: 12px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    --hero-flow-row-connector-body-pad-inline: 20px;
    --hero-flow-row-connector-body-pad-block: 16px;
  }

  .hero-business-card__head-icon,
  .hero-result-card__head-icon {
    width: 36px;
    height: 36px;
  }

  .hero-business-card__head-title,
  .hero-result-card__head-title {
    font-size: 15px;
  }

  .hero-business-card__head-sub,
  .hero-result-card__head-sub {
    font-size: 13px;
  }

  .hero-business-row__label,
  .hero-result-row__label {
    font-size: 13px;
  }

  .hero-business-row__note,
  .hero-result-row__note {
    font-size: 12px;
  }

}

@media (min-width: 2560px) {
  :root {
    --hero-flow-business-width: 33rem;
    --site-header-clearance: clamp(8rem, 9.5vh, 11rem);
  }

  .hero {
    --hero-side-w: clamp(12rem, 9.5vw, 21.5rem);
    column-gap: clamp(1.65rem, 2.65vw, 3rem);
    row-gap: clamp(var(--space-7), 5.25cqh, calc(var(--space-8) * 1.35));
  }

  .hero-copy {
    gap: var(--space-5);
    padding-inline: clamp(1.15rem, 3.2vw, 2.25rem);
  }

  .hero-title {
    font-size: clamp(4.25rem, 3.00vw, 7rem);
    max-width: min(82%, 76rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: clamp(2.25rem, 2.35vw, 3.65rem);
  }

  .hero-description {
    font-size: clamp(1.32rem, 1.28vw, 1.50rem);
    width: 100%;
    max-width: min(90rem, 100%);
    line-height: 1.5;
  }

  .hero-connect-btn {
    min-height: 4.5rem;
    padding: 0.95rem 1.05rem 0.95rem 2.4rem;
    font-size: 1.38rem;
    gap: 0.9rem;
  }

  .hero-connect-btn__icon {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.1rem;
  }

  .hero-float-card {
    --float-card-width: 24rem;
  }

  .hero-float-card__title {
    font-size: 1.05rem;
  }

  .hero-float-card__subtitle {
    font-size: 0.86rem;
  }

  .hero-float-card__body {
    padding: 0.9rem 0.95rem;
  }

  .hero-side--left .HeroCardLeft {
    --float-card-width: 23.75rem;
    --card-gap-top: 1.15rem;
    top: clamp(
      var(--card-gap-top),
      calc(50% + 9.25rem),
      calc(100% - var(--card-gap-top) - 11.5rem)
    );
  }

  .hero-side--left .HeroCardLeft .hero-float-card__head {
    gap: 0.65rem;
    padding: 0.75rem 0.9rem 0.65rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__avatar {
    width: 2.125rem;
    height: 2.125rem;
    font-size: 0.75rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__title {
    font-size: 1.32rem;
    line-height: 1.3;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__subtitle {
    font-size: 1.08rem;
    gap: 0.45rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__pulse {
    width: 0.5rem;
    height: 0.5rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__body--chat {
    min-height: 12.5rem;
    gap: 0.55rem;
    padding: 1.05rem 1.1rem 1.15rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-msg p {
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.5rem 0.6rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-msg--typing {
    padding: 0.5rem 0.7rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-typing {
    height: 0.85rem;
    gap: 0.28rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-typing span {
    width: 0.3rem;
    height: 0.3rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__foot {
    font-size: 0.85rem;
    padding: 0.35rem 0.9rem 0.6rem;
  }

  .hero-side--right .HeroCardRight {
    --float-card-width: 23.75rem;
    --card-gap-top: 1.15rem;
    top: clamp(
      var(--card-gap-top),
      calc(50% - 1.25rem),
      calc(100% - var(--card-gap-top) - 11.5rem)
    );
  }

  .hero-side--right .HeroCardRight .hero-float-card__head {
    gap: 0.65rem;
    padding: 0.75rem 0.9rem 0.65rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__icon-box {
    width: 2.125rem;
    height: 2.125rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__icon-svg {
    width: 14px;
    height: 14px;
  }

  .hero-side--right .HeroCardRight .hero-float-card__title {
    font-size: 1.32rem;
    line-height: 1.3;
  }

  .hero-side--right .HeroCardRight .hero-float-card__subtitle {
    font-size: 1.08rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__badge {
    font-size: 0.72rem;
    padding: 0.18rem 0.48rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__body--checklist {
    min-height: 12.5rem;
    padding: 1.05rem 1.1rem 1.15rem;
  }

  .hero-side--right .HeroCardRight .hero-checklist__row {
    gap: 0.45rem;
    padding: 0.48rem 0;
  }

  .hero-side--right .HeroCardRight .hero-checklist__dot {
    width: 0.45rem;
    height: 0.45rem;
  }

  .hero-side--right .HeroCardRight .hero-checklist__label {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .hero-side--right .HeroCardRight .hero-progress {
    margin-top: 0.55rem;
    padding-top: 0.55rem;
  }

  .hero-side--right .HeroCardRight .hero-progress__labels {
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
  }

  .hero-side--right .HeroCardRight .hero-progress__track {
    height: 0.32rem;
  }

  .hero-flow {
    --hero-flow-card-size: clamp(16rem, min(28rem, 36cqh), 28rem);
    --hero-flow-hub-width: clamp(52rem, 48vw, 74rem);
    padding-inline: clamp(1.65rem, 3.2vw, 3.25rem);
    padding-bottom: clamp(calc(var(--space-7) * 2), 12.5cqh, calc(var(--space-8) * 2.65));
  }

  .hero-flow-card.hero-flow-card--business,
  .hero-flow-card.hero-flow-card--results {
    border-radius: 28px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 17px 24px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 20px 26px;
    gap: 15px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    --hero-flow-row-connector-body-pad-inline: 26px;
    --hero-flow-row-connector-body-pad-block: 20px;
    --hero-flow-row-connector-row-pad-inline: 15px;
    --hero-flow-row-connector-row-pad-block: 12px;
    --hero-flow-row-connector-icon: 38px;
  }

  .hero-business-card__head-icon,
  .hero-result-card__head-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .hero-business-card__head-icon i,
  .hero-result-card__head-icon i {
    font-size: 19px;
  }

  .hero-business-card__head-title,
  .hero-result-card__head-title {
    font-size: 18px;
  }

  .hero-business-card__head-sub,
  .hero-result-card__head-sub {
    font-size: 15px;
  }

  .hero-business-row,
  .hero-result-row {
    padding: 12px 15px;
    gap: 0.8rem;
    border-radius: 11px;
  }

  .hero-business-row__icon,
  .hero-result-row__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero-business-row__icon i,
  .hero-result-row__icon i {
    font-size: 18px;
  }

  .hero-business-row__label,
  .hero-result-row__label {
    font-size: 15px;
  }

  .hero-business-row__note,
  .hero-result-row__note {
    font-size: 14px;
  }

  .hero-result-row__badge {
    font-size: 12px;
    padding: 0.3rem 0.62rem;
  }

  .hero-glow-corner {
    width: min(66rem, 68vw);
    height: min(66rem, 68vw);
  }

  .hero-grid-pattern {
    background-size: 52px 52px;
  }

}

@media (min-width: 3140px) {
  :root {
    --hero-flow-business-width: 46rem;
    --site-header-clearance: clamp(9rem, 10.5vh, 13rem);
  }

  .hero {
    /* ~12.25vw ≈ 30rem @ 3840 — room for ~28rem float cards + frame */
    --hero-side-w: clamp(24rem, 12.25vw, 38rem);
    column-gap: clamp(2rem, 2.1vw, 3.85rem);
    row-gap: clamp(var(--space-7), 5.75cqh, calc(var(--space-8) * 1.65));
  }

  .hero-side {
    --hero-side-r: clamp(4rem, 7.5vmin, 7rem);
  }

  .hero-copy {
    gap: var(--space-6);
    padding-inline: clamp(1.35rem, 2.6vw, 3rem);
  }

  .hero-title {
    font-size: clamp(5.85rem, 2.65vw, 10rem);
    max-width: min(84%, 94rem);
  }

  .hero-subtitle {
    font-size: clamp(2.85rem, 1.85vw, 5rem);
  }

  .hero-description {
    font-size: clamp(1.65rem, 0.98vw, 2.35rem);
    max-width: min(112rem, 100%);
  }

  .hero-connect-btn {
    min-height: 5.15rem;
    padding: 1.05rem 1.15rem 1.05rem 2.85rem;
    font-size: 1.75rem;
    gap: 1.05rem;
  }

  .hero-connect-btn__icon {
    width: 3.05rem;
    height: 3.05rem;
    font-size: 1.28rem;
  }

  .hero-side--left .HeroCardLeft,
  .hero-side--right .HeroCardRight {
    --float-card-width: 34rem;
    --card-gap-top: 1.55rem;
  }

  .hero-side--left .HeroCardLeft {
    top: clamp(
      var(--card-gap-top),
      calc(50% + 12.25rem),
      calc(100% - var(--card-gap-top) - 18rem)
    );
  }

  .hero-side--right .HeroCardRight {
    top: clamp(
      var(--card-gap-top),
      calc(50% - 1.25rem),
      calc(100% - var(--card-gap-top) - 18rem)
    );
  }

  .hero-side--left .HeroCardLeft .hero-float-card__head,
  .hero-side--right .HeroCardRight .hero-float-card__head {
    gap: 0.95rem;
    padding: 1.08rem 1.3rem 0.98rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__avatar,
  .hero-side--right .HeroCardRight .hero-float-card__icon-box {
    width: 3.05rem;
    height: 3.05rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__avatar {
    font-size: 1.06rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__icon-svg {
    width: 21px;
    height: 21px;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__title,
  .hero-side--right .HeroCardRight .hero-float-card__title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__subtitle,
  .hero-side--right .HeroCardRight .hero-float-card__subtitle {
    font-size: 1.62rem;
    gap: 0.52rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__pulse {
    width: 0.58rem;
    height: 0.58rem;
  }

  .hero-side--right .HeroCardRight .hero-float-card__badge {
    font-size: 1.05rem;
    padding: 0.26rem 0.66rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__body--chat,
  .hero-side--right .HeroCardRight .hero-float-card__body--checklist {
    min-height: 19rem;
    padding: 1.5rem 1.55rem 1.62rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__body--chat {
    gap: 0.8rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-msg p {
    font-size: 1.32rem;
    line-height: 1.4;
    padding: 0.7rem 0.85rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-msg--typing {
    padding: 0.65rem 0.85rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-typing {
    height: 1rem;
    gap: 0.34rem;
  }

  .hero-side--left .HeroCardLeft .hero-chat-typing span {
    width: 0.36rem;
    height: 0.36rem;
  }

  .hero-side--left .HeroCardLeft .hero-float-card__foot {
    font-size: 1.25rem;
    padding: 0.42rem 1.05rem 0.72rem;
  }

  .hero-side--right .HeroCardRight .hero-checklist__row {
    gap: 0.55rem;
    padding: 0.58rem 0;
  }

  .hero-side--right .HeroCardRight .hero-checklist__dot {
    width: 0.58rem;
    height: 0.58rem;
  }

  .hero-side--right .HeroCardRight .hero-checklist__label {
    font-size: 1.32rem;
    line-height: 1.35;
  }

  .hero-side--right .HeroCardRight .hero-progress {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
  }

  .hero-side--right .HeroCardRight .hero-progress__labels {
    margin-bottom: 0.48rem;
    font-size: 1.2rem;
  }

  .hero-side--right .HeroCardRight .hero-progress__track {
    height: 0.42rem;
  }

  .hero-flow {
    --hero-flow-card-size: clamp(19rem, min(35rem, 36cqh), 35rem);
    --hero-flow-hub-width: clamp(62rem, 41vw, 100rem);
    padding-inline: clamp(2rem, 2.6vw, 4.1rem);
    padding-bottom: clamp(calc(var(--space-7) * 2), 13.5cqh, calc(var(--space-8) * 3));
  }

  .hero-flow-card.hero-flow-card--business,
  .hero-flow-card.hero-flow-card--results {
    border-radius: 34px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head {
    border-top-left-radius: 34px;
    border-top-right-radius: 34px;
    padding: 26px 36px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    padding: 28px 37px;
    gap: 21px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body,
  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    --hero-flow-row-connector-body-pad-inline: 37px;
    --hero-flow-row-connector-body-pad-block: 28px;
    --hero-flow-row-connector-row-pad-inline: 21px;
    --hero-flow-row-connector-row-pad-block: 17px;
    --hero-flow-row-connector-icon: 56px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head-icon,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head-icon i,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head-icon i {
    font-size: 31px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head-title,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head-title {
    font-size: 33px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-text);
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head-sub,
  .hero-flow-card.hero-flow-card--results .hero-result-card__head-sub {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
    color: color-mix(in srgb, var(--color-text) 88%, var(--color-muted-text) 12%);
  }

  .hero-flow-card.hero-flow-card--business .hero-business-row,
  .hero-flow-card.hero-flow-card--results .hero-result-row {
    padding: 17px 21px;
    gap: 1.05rem;
    border-radius: 14px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-row__icon,
  .hero-flow-card.hero-flow-card--results .hero-result-row__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-row__icon i,
  .hero-flow-card.hero-flow-card--results .hero-result-row__icon i {
    font-size: 29px;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-row__label,
  .hero-flow-card.hero-flow-card--results .hero-result-row__label {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text);
    letter-spacing: 0.01em;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-row__note,
  .hero-flow-card.hero-flow-card--results .hero-result-row__note {
    margin-top: 0.22rem;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    color: color-mix(in srgb, var(--color-text) 86%, var(--color-muted-text) 14%);
  }

  .hero-flow-card.hero-flow-card--results .hero-result-row__badge {
    font-size: 18px;
    font-weight: 700;
    padding: 0.38rem 0.75rem;
  }

  .hero-glow-corner {
    width: min(86rem, 64vw);
    height: min(86rem, 64vw);
  }

  .hero-grid-pattern {
    background-size: 66px 66px;
  }

}

@container hero (max-height: 760px) {
  @media (min-width: 721px) {
  .hero {
      grid-template-rows: minmax(0, 0.48fr) minmax(9rem, 0.52fr);
      row-gap: var(--space-3);
    }

  .hero-title {
      font-size: clamp(1.85rem, 3.8vw, 3.2rem);
    }

  .hero-subtitle {
      font-size: clamp(1.25rem, 2.6vw, 2rem);
    }

  .hero-description {
      font-size: clamp(0.92rem, 1.45cqh, 1.05rem);
      line-height: 1.5;
    }

  .hero-flow {
      --hero-flow-card-size: clamp(10rem, min(16.5rem, 38cqh), 16.5rem);
      min-height: calc(var(--hero-flow-card-size) + var(--space-3));
      height: 100%;
      max-height: none;
    }
}
}

@container hero (max-height: 640px) {
  @media (min-width: 721px) {
  .hero {
      grid-template-rows: minmax(0, 0.46fr) minmax(8rem, 0.54fr);
      row-gap: var(--space-2);
    }

  .hero-flow {
      --hero-flow-card-size: clamp(9rem, min(13.5rem, 34cqh), 13.5rem);
      min-height: calc(var(--hero-flow-card-size) + var(--space-2));
      height: 100%;
      max-height: none;
    }
}
}

@media (max-height: 820px) and (min-width: 721px) {
  .hero {
    container-type: normal;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow: visible;
    grid-template-rows: auto auto;
    align-content: start;
    row-gap: var(--space-3);
    padding-bottom: var(--space-6);
  }

  .hero-copy {
    padding-top: clamp(4.5rem, 10vh, var(--site-header-clearance));
    gap: var(--space-2);
  }

  .hero-flow {
    height: auto;
    align-self: start;
    min-height: 0;
  }
}

@media (max-height: 480px) and (min-width: 721px) {
  .hero-copy {
    padding-top: max(3.75rem, calc(env(safe-area-inset-top, 0px) + 3.25rem));
  }

  .hero-title {
    font-size: clamp(1.45rem, 4.5vw, 2rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2.8vw, 1.35rem);
  }

  .hero-description {
    font-size: clamp(0.88rem, 2.2vw, 1rem);
  }
}

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    row-gap: clamp(1rem, 3vh, 1.35rem);
    container-type: normal;
    min-height: 100dvh;
    height: auto;
    max-height: none;
    overflow: visible;
    padding-bottom: clamp(var(--space-5), 5vh, var(--space-7));
  }

  .hero-side--left,
  .hero-side--right {
    display: none;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    gap: 0.9rem;
    align-items: flex-start;
    text-align: left;
    padding-inline: max(1rem, env(safe-area-inset-left, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
    padding-top: max(
      clamp(5.25rem, 11vh, 6.75rem),
      calc(env(safe-area-inset-top, 0px) + 4.25rem)
    );
  }

  @media (max-height: 600px) {
  .hero-copy {
      padding-top: max(3.35rem, calc(env(safe-area-inset-top, 0px) + 2.85rem));
      gap: 0.65rem;
    }

  .hero-title {
      font-size: clamp(1.5rem, 7.5vw, 1.85rem);
    }
}

  @media (max-height: 480px) {
  .hero-copy {
      padding-top: max(3.5rem, calc(env(safe-area-inset-top, 0px) + 3rem));
      gap: 0.65rem;
    }
}

  .hero-flow {
    --hero-flow-card-size: min(100%, clamp(9rem, 72vw, 14rem));
    grid-column: 1 / -1;
    grid-row: 2;
    transform: none;
    width: min(100%, 20rem);
    justify-self: center;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    padding-top: clamp(0.5rem, 1.5vh, 1rem);
    padding-bottom: clamp(var(--space-5), 4vh, var(--space-6));
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    row-gap: 0;
    column-gap: 0;
    align-items: center;
    overflow: visible;
  }

  .hero-flow-core {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3.5vh, 1.35rem);
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    isolation: isolate;
  }

  .hero-flow-core .hero-flow-card--business,
  .hero-flow-core .hero-flow-hub,
  .hero-flow-core .hero-flow-card--results {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
  }

  .hero-flow-core .hero-flow-card--business {
    position: relative;
    z-index: 2;
    overflow: visible;
  }

  .hero-flow-core .hero-flow-hub {
    position: relative;
    width: 100%;
    max-width: 100%;
    z-index: 0;
    margin: 0;
    overflow: visible;
  }

  .hero-flow-diagram {
    display: block;
    max-width: min(100%, var(--hero-flow-hub-width));
    margin-inline: auto;
    border-radius: 12px;
    vertical-align: middle;
  }

  .hero-flow-card.hero-flow-card--business {
    border-radius: 20px;
    border-bottom: 0.5px solid var(--color-border);
  }

  .hero-flow-card.hero-flow-card--results {
    border-radius: 20px;
    border: 1.5px solid transparent;
    background-color: var(--color-bg);
    background-image:
      linear-gradient(var(--color-bg), var(--color-bg)),
      var(--hero-brand-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
      0 1px 0 color-mix(in srgb, var(--color-bg) 70%, transparent) inset,
      0 2px 6px rgba(77, 163, 255, 0.12),
      0 8px 20px rgba(77, 163, 255, 0.2),
      0 14px 36px rgba(91, 77, 255, 0.18);
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__head {
    border-radius: 20px 20px 0 0;
  }

  .hero-flow-card.hero-flow-card--business .hero-business-card__body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .hero-flow-card.hero-flow-card--results .hero-result-card__head {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: var(--color-bg);
  }

  .hero-flow-card.hero-flow-card--results .hero-result-card__body {
    border-radius: 0 0 20px 20px;
  }

  .hero-flow-core .hero-flow-card--results {
    position: relative;
    z-index: 2;
    margin-top: clamp(0.75rem, 2.5vh, 1.1rem);
    overflow: visible;
    transform: translateZ(0);
  }

  .hero-flow-card.hero-flow-card--results::before {
    top: -2px;
    right: -3px;
    bottom: -3px;
    left: -3px;
    border-radius: 22px;
  }

  .hero-flow-rail {
    display: none;
  }

  .hero-flow-core .hero-flow-card {
    transform: none;
  }

  .hero-flow-card.hero-flow-card--business,
  .hero-flow-card.hero-flow-card--results {
    width: min(100%, var(--hero-flow-business-width));
    max-width: min(100%, var(--hero-flow-business-width));
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
    font-size: clamp(1.7rem, 8.4vw, 2.35rem);
    line-height: 1.18;
  }

  .switch-wrap {
    margin-left: 0.12ch;
  }

  .hero-subtitle {
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: clamp(1.15rem, 5.4vw, 1.45rem);
    line-height: 1.28;
  }

  .hero-description {
    width: 100%;
    max-width: 100%;
    text-align: left;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .hero-cta {
    align-self: flex-start;
  }

  .hero-services {
    gap: 0.45rem 0.55rem;
    font-size: 0.9rem;
  }

  .service-pill {
    padding: 0.24rem 0.62rem;
  }

  .hero-icons {
    gap: 0.5rem;
    margin-top: 0.2rem;
  }

  .hero-icon {
    width: 1.9rem;
    height: 1.9rem;
  }

  .hero-icon i {
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    padding-inline: max(0.75rem, env(safe-area-inset-left, 0px))
      max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .hero-title {
    font-size: clamp(1.55rem, 9vw, 2rem);
  }

  .hero-subtitle {
    font-size: 1.06rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .hero-flow {
    width: min(100%, 18rem);
    min-height: clamp(10.5rem, 28cqh, 14rem);
    height: 100%;
    max-height: none;
  }

  .hero-services {
    font-size: 0.84rem;
    gap: 0.4rem 0.5rem;
  }

  .service-pill {
    padding: 0.22rem 0.56rem;
  }
}
