:root {
  --paper: #121212;
  --ink: #f2f2f0;
  --ink-soft: #cfcfcd;
  --gray: #8a8a8a;
  --gray-light: #5a5a5a;
  --rule: #6f6f6f;
  --gut: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  text-size-adjust: 100%;
  background: #000000;
}

/* Hide only the page scrollbar; keep scrolling and nested scroll areas intact. */
html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: #000000;
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Malgun Gothic",
    sans-serif;
  line-height: 1.6;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

button {
  font: inherit;
}

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

.state-screen {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 28px 48px;
  color: var(--ink-soft);
  background: var(--paper);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.65);
  text-align: center;
  flex-direction: column;
}

.state-header {
  padding-bottom: 40px;
  color: var(--ink);
}

.state-content {
  display: flex;
  min-height: 430px;
  padding: 60px 8px;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.state-indicator {
  display: grid;
  width: 76px;
  height: 76px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  border: 1.5px dashed var(--rule);
  border-radius: 50%;
  place-items: center;
}

.state-kicker {
  margin-top: 28px;
  color: var(--gray);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.state-content h2 {
  max-width: 360px;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(27px, 7.5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.state-content > p:last-child {
  max-width: 330px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.state-footer {
  padding-top: 34px;
  color: var(--gray);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.state-footer .logo {
  margin-top: 12px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.instagram-link {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 14px auto 0;
  color: var(--ink);
  text-decoration: none;
  border-radius: 50%;
  place-items: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.instagram-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.instagram-link:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.instagram-link:active {
  transform: translateY(0);
}

.instagram-brand {
  display: block;
  width: 28px;
  height: 28px;
}

.state-screen[data-state="error"] .state-indicator,
.state-screen[data-state="invalid"] .state-indicator {
  border-style: solid;
}

.state-screen[hidden],
.receipt[hidden] {
  display: none;
}

.receipt {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 28px 64px;
  background: var(--paper);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.65);
}

.rule {
  margin: 0;
  border: 0;
  border-top: 1.5px dashed var(--rule);
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: var(--gut);
}

.c1 {
  grid-column: 1 / 2;
}

.c2-4 {
  grid-column: 2 / -1;
}

.share-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  width: 44px;
  height: 44px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--rule);
  border-radius: 50%;
  transition: transform 0.15s, opacity 0.2s;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.share-btn:active {
  transform: scale(0.92);
}

.share-btn:disabled {
  cursor: wait;
  opacity: 0.45;
}

.share-btn:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 3px;
}

.share-btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hd {
  padding-bottom: 40px;
  text-align: center;
}

.title-lockup {
  width: 82%;
  max-width: 330px;
  margin: 0 auto;
}

.title-lockup img {
  display: block;
  width: 100%;
  height: auto;
}

.title-lockup .title-wordmark {
  margin-top: 5px;
}

.hd .persona {
  margin-top: 26px;
  font-size: 15px;
  font-weight: 700;
}

.hd .persona b {
  font-weight: 800;
}

.hd .stamp {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13.5px;
}

.portrait-wrap {
  padding: 26px 0;
}

.portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  background: #1e1e1e;
}

.portrait.has-image {
  aspect-ratio: auto;
}

.photo-card-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y pinch-zoom;
  -webkit-overflow-scrolling: touch;
}

.photo-card-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.photo-card-track::-webkit-scrollbar {
  display: none;
}

.photo-card-track:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: -3px;
}

.photo-card-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.portrait:not(.has-image)::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(242, 242, 240, 0.55) 0.7px,
    transparent 1.1px
  );
  background-size: 3.5px 3.5px;
  mix-blend-mode: overlay;
}

.portrait-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.portrait .ph {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 20px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.portrait .ph[hidden] {
  display: none;
}

.photo-card-pagination {
  display: flex;
  min-height: 24px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}

.photo-card-pagination[hidden] {
  display: none;
}

.photo-card-dot {
  display: grid;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.photo-card-dot::before {
  width: 6px;
  height: 6px;
  content: "";
  background: var(--gray-light);
  border-radius: 50%;
  transition: background-color 0.18s, transform 0.18s;
}

.photo-card-dot[aria-current="true"]::before {
  background: var(--ink);
  transform: scale(1.12);
}

.photo-card-dot:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: -2px;
}

.portrait .frame {
  display: flex;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  font-size: 24px;
  border: 1.5px dashed var(--gray-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.type {
  padding: 36px 0 40px;
  text-align: center;
}

.type h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.type p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
}

.sect-h {
  padding: 38px 0 8px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.analysis-section > .sect-h {
  padding-bottom: 30px;
  border-top: 1.5px dashed var(--rule);
}

.five-elements-block {
  padding: 32px 0 50px;
  color: var(--ink);
}

.five-elements-block[hidden] {
  display: none;
}

.five-elements-title {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.five-elements-headline {
  margin: 0;
  color: var(--ink);
  font-size: clamp(12px, 3.8vw, 15.5px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}

.five-elements-chart {
  width: 100%;
  margin-top: 0;
  aspect-ratio: 1 / 1;
}

.five-elements-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.five-elements-grid polygon,
.five-elements-grid line {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
}

.five-elements-grid polygon {
  opacity: 0.2;
  stroke-dasharray: 2 5;
}

.five-elements-grid line {
  opacity: 0.12;
}

.five-elements-data {
  transform: scale(0);
  transform-box: view-box;
  transform-origin: 180px 190px;
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.five-elements-block.in .five-elements-data {
  transform: scale(1);
}

.five-elements-area {
  fill: currentColor;
  fill-opacity: 0.14;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.five-elements-node {
  fill: currentColor;
}

.five-elements-label {
  fill: currentColor;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.five-elements-label-value {
  font-size: 11px;
  font-weight: 300;
  opacity: 0.72;
}

.five-elements-label:not(.is-primary):not(.is-secondary) {
  opacity: 0.58;
}

.five-elements-label.is-primary,
.five-elements-label.is-secondary {
  font-weight: 800;
  opacity: 1;
}

.five-elements-label.is-primary .five-elements-label-value,
.five-elements-label.is-secondary .five-elements-label-value {
  font-weight: 600;
  opacity: 0.72;
}

.five-elements-description {
  max-width: 410px;
  margin: 2px auto 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
  text-align: center;
}

.three-sections-block {
  padding: 32px 0 50px;
  color: var(--ink);
  border-top: 1.5px dashed var(--rule);
}

.three-sections-block[hidden] {
  display: none;
}

.three-sections-title {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.three-sections-headline {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(12px, 3.8vw, 15.5px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.6;
  text-align: center;
  overflow-wrap: anywhere;
  white-space: normal;
  word-break: keep-all;
}

.three-sections-chart {
  width: 100%;
  margin: 20px 0 18px;
  aspect-ratio: 380 / 340;
}

.three-sections-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.three-sections-draft-grid,
.three-sections-face,
.three-sections-landmark,
.three-sections-face-point,
.three-sections-zone-edge,
.three-sections-zone-center,
.three-sections-focus-bracket,
.three-sections-scan {
  fill: none;
  stroke: currentColor;
  vector-effect: non-scaling-stroke;
}

.three-sections-draft-grid {
  stroke-width: 0.7;
  stroke-dasharray: 2 5;
  opacity: 0.1;
}

.three-sections-face {
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.42;
}

.three-sections-landmark {
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.38;
}

.three-sections-face-fill {
  fill: currentColor;
  opacity: 0.018;
}

.three-sections-face-point {
  stroke-width: 1.15;
  opacity: 0.44;
}

.three-sections-zone-fill {
  fill: currentColor;
  fill-opacity: 0.025;
  transition: fill-opacity 0.45s ease;
}

.three-sections-zone.is-primary .three-sections-zone-fill {
  fill-opacity: 0.16;
}

.three-sections-zone.is-balanced .three-sections-zone-fill {
  fill-opacity: 0.07;
}

.three-sections-zone-edge {
  stroke-width: 0.8;
  opacity: 0.3;
  transition: opacity 0.45s ease, stroke-width 0.45s ease;
}

.three-sections-zone.is-primary .three-sections-zone-edge,
.three-sections-zone.is-balanced .three-sections-zone-edge {
  stroke-width: 1.45;
  opacity: 0.92;
}

.three-sections-zone-center {
  stroke-width: 0.7;
  stroke-dasharray: 2 5;
  opacity: 0.18;
}

.three-sections-focus-bracket {
  stroke-width: 1.15;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  opacity: 0.88;
  transition: stroke-dashoffset 0.85s ease 0.35s;
}

.three-sections-block.is-animating .three-sections-focus-bracket,
.three-sections-block.is-complete .three-sections-focus-bracket {
  stroke-dashoffset: 0;
}

.three-sections-focus-caption,
.three-sections-label {
  fill: currentColor;
  font-family: inherit;
}

.three-sections-focus-caption {
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.45s ease 0.4s;
}

.three-sections-block.is-animating .three-sections-focus-caption,
.three-sections-block.is-complete .three-sections-focus-caption {
  opacity: 0.9;
}

.three-sections-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
  opacity: 0.48;
}

.three-sections-label.is-primary,
.three-sections-label.is-balanced {
  font-weight: 800;
  opacity: 1;
}

.three-sections-label-value {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.72;
}

.three-sections-point {
  fill: currentColor;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.three-sections-block.is-complete .three-sections-point {
  animation: three-sections-point-pop 0.62s ease-out both;
}

.three-sections-block.is-complete .three-sections-point:nth-child(2) {
  animation-delay: 0.08s;
}

.three-sections-scan {
  stroke-width: 1.15;
  opacity: 0;
}

.three-sections-block.is-complete .three-sections-scan {
  animation: three-sections-scan 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.three-sections-description {
  max-width: 410px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
  text-align: center;
}

@keyframes three-sections-point-pop {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  65% {
    opacity: 1;
    transform: scale(1.5);
  }

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

@keyframes three-sections-scan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  16% {
    opacity: 0.95;
  }

  82% {
    opacity: 0.42;
  }

  100% {
    opacity: 0;
    transform: translateY(var(--three-sections-scan-distance));
  }
}

.trait {
  padding: 6px 0;
}

.trait .row {
  padding: 13px 0;
  border-top: 1.5px dashed var(--rule);
  border-bottom: 1.5px dashed var(--rule);
  align-items: baseline;
}

.trait .row .k {
  font-size: 15px;
  font-weight: 700;
}

.trait .row .v {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: left;
}

.trait-overall .row {
  display: block;
  padding-top: 32px;
  border-bottom: 0;
}

.trait-overall .row .k {
  font-size: 20px;
}

.trait-overall .row .v {
  margin-top: 8px;
}

.quote-row {
  margin: 18px 0 26px;
  align-items: center;
}

.trait-overall .quote-row {
  display: block;
}

.trait .body {
  padding: 20px 0 6px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.925;
}

.trait-overall .overall-description {
  padding-bottom: 32px;
}

.quote {
  margin: 0;
  padding: 4px 0 4px 18px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.75;
  border-left: 2px dashed var(--ink);
}

.quote-emoji {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  justify-self: center;
}

.life-intro {
  padding: 14px 0 6px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.8;
}

.graph-wrap {
  padding: 18px 0 10px;
  color: var(--ink);
}

.graph-wrap[hidden] {
  display: none;
}

.graph-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

.life-chart-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.life-curve {
  stroke-dasharray: var(--life-path-length);
  stroke-dashoffset: var(--life-path-length);
  transition: stroke-dashoffset 1.9s cubic-bezier(0.45, 0.05, 0.2, 1) 0.15s;
}

.life-chart-node {
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--node-delay);
}

.graph-wrap.in .life-chart-fade {
  opacity: 1;
}

.graph-wrap.in .life-curve {
  stroke-dashoffset: 0;
}

.graph-wrap.in .life-chart-node {
  transform: scale(1);
}

.stage {
  padding: 20px 0;
  border-top: 1.5px dashed var(--rule);
  align-items: flex-start;
}

.stage:last-of-type {
  border-bottom: 1.5px dashed var(--rule);
}

.stage .k {
  min-width: 0;
}

.stage .k b {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
}

.stage .k span {
  display: block;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 700;
}

.stage-content {
  color: var(--ink-soft);
}

.stage-headline {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.stage-description {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
}

.life-advice {
  margin: 22px 0 26px;
  padding: 4px 0;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.75;
  text-align: left;
}

.menu-recommendation[hidden] {
  display: none;
}

.menu-title {
  padding-bottom: 20px;
  text-align: left;
}

.menu-figure {
  margin: 0;
}

.menu-visual {
  position: relative;
  width: 100%;
  margin: 2px 0 18px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1e1e1e;
}

.menu-visual:not(.has-image)::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(242, 242, 240, 0.55) 0.7px,
    transparent 1.1px
  );
  background-size: 3.5px 3.5px;
  mix-blend-mode: overlay;
}

.menu-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-image[hidden] {
  display: none;
}

.menu-placeholder {
  position: absolute;
  inset: 0;
}

.menu-placeholder[hidden] {
  display: none;
}

.menu-visual .ph {
  position: absolute;
  inset: 0;
  display: flex;
  padding: 20px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.menu-visual .frame {
  display: flex;
  width: 64px;
  height: 64px;
  font-size: 24px;
  border: 1.5px dashed var(--gray-light);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.menu-description {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 15.5px;
  letter-spacing: -0.025em;
  line-height: 1.8;
  text-align: left;
  word-break: keep-all;
}

.menu-description span {
  display: block;
}

.menu-store[hidden] {
  display: none;
}

.menu-store {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border: 0;
  border-top: 1.5px dashed var(--rule);
}

.menu-store div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.menu-store div + div {
  margin-top: 8px;
}

.menu-store dt,
.menu-store dd {
  margin: 0;
}

.menu-store dt {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.menu-store dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.55;
  word-break: keep-all;
}

.menu-list {
  margin: 0 0 26px;
  padding: 17px 0;
  border-top: 1.5px dashed var(--rule);
  border-bottom: 1.5px dashed var(--rule);
  list-style: none;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.6;
  text-align: left;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-items li + li::before {
  margin: 0 10px;
  color: var(--ink-soft);
  content: "/";
  font-weight: 400;
}

#closing-title {
  padding-top: 16px;
  text-align: center;
}

.fact-section {
  border-bottom: 1.5px dashed var(--rule);
}

.fact-body {
  padding: 14px 0 42px;
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
  color: var(--ink-soft);
}

.ft {
  padding-top: 8px;
  text-align: center;
}

.footer-qr {
  width: clamp(88px, 32vw, 176px);
  margin: 64px auto 64px;
}

.footer-qr[hidden] {
  display: none;
}

.footer-qr img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 12px;
}

.print-code-row {
  display: flex;
  width: 100%;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.print-code-row[hidden] {
  display: none;
}

.print-code-row span {
  color: var(--ink-soft);
  font-weight: 300;
}

.print-code-row b {
  padding-left: 0.2em;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.2em;
}

.compatibility-scan-button {
  display: flex;
  width: 236px;
  min-height: 46px;
  margin: 20px 0 0 50%;
  padding: 11px 18px;
  color: var(--paper);
  cursor: pointer;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.4;
  transform: translateX(-50%);
  transition: opacity 0.2s, transform 0.15s;
  align-items: center;
  justify-content: center;
  gap: 9px;
  -webkit-tap-highlight-color: transparent;
}

.compatibility-scan-button[hidden] {
  display: none;
}

.compatibility-scan-button:active {
  transform: translateX(-50%) scale(0.97);
}

.compatibility-scan-button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.compatibility-scan-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scanner-modal {
  position: fixed;
  z-index: 1000;
  display: grid;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  inset: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  place-items: center;
}

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

.scanner-screen {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 42px 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.65);
  flex-direction: column;
}

.scanner-modal .scanner-screen {
  min-height: 0;
  max-height: calc(100dvh - 48px);
  margin: 0;
  overflow-y: auto;
}

.scanner-modal.is-standalone {
  padding: 0;
  background: #000000;
  place-items: start center;
}

.scanner-modal.is-standalone .scanner-screen {
  min-height: 100dvh;
  max-height: none;
}

.scanner-screen[hidden],
.compatibility-receipt[hidden] {
  display: none;
}

.scanner-content {
  display: flex;
  padding: 28px 0 26px;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.scanner-content h1 {
  font-size: clamp(24px, 6.8vw, 30px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.28;
  text-align: center;
}

.scanner-description {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.scanner-camera {
  position: relative;
  width: min(100%, 42dvh);
  margin: 20px auto 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #080808;
  border: 1px solid var(--gray-light);
}

.scanner-camera video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-guide {
  position: absolute;
  inset: 14%;
  pointer-events: none;
}

.scanner-guide i {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--ink);
  border-style: solid;
}

.scanner-guide i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.scanner-guide i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.scanner-guide i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.scanner-guide i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.scanner-complete {
  position: absolute;
  z-index: 2;
  display: none;
  padding: 24px;
  color: var(--ink);
  background: rgba(8, 8, 8, 0.78);
  inset: 0;
  place-items: center;
}

.scanner-complete strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.scanner-screen[data-scanner-state="complete"] .scanner-complete {
  display: grid;
}

.scanner-screen[data-scanner-state="complete"] .scanner-guide {
  opacity: 0.24;
}

.scanner-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

.scanner-alert {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 44px), 360px);
  margin: 0;
  padding: 18px 16px;
  color: var(--ink);
  background: #1a1a1a;
  border: 1px solid var(--rule);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.58);
  font-size: 13.5px;
  line-height: 1.6;
  text-align: center;
  transform: translate(-50%, -50%);
}

.scanner-modal.has-scanner-alert::before {
  position: absolute;
  z-index: 5;
  background: rgba(0, 0, 0, 0.56);
  content: "";
  inset: 0;
  pointer-events: none;
}

.scanner-alert[hidden] {
  display: none;
}

.scanner-actions {
  display: flex;
  width: 100%;
  margin-top: 14px;
  gap: 10px;
}

.scanner-actions button {
  min-height: 44px;
  padding: 10px 17px;
  color: var(--ink);
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  font-size: 13.5px;
  font-weight: 750;
  flex: 1;
}

.scanner-actions button[hidden] {
  display: none;
}

.scanner-actions button.is-result {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.scanner-actions button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.compatibility-header {
  padding-bottom: 34px;
}

.compatibility-receipt {
  --compatibility-panel: #181818;
  --compatibility-line: #333333;
  --compatibility-line-soft: #292929;
  --compatibility-hot: var(--ink);
  --compatibility-muted: #7a7a7a;
  --compatibility-faint: #4a4a4a;
}

.compatibility-pair {
  display: grid;
  padding: 26px 0 32px;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
  column-gap: 7px;
  align-items: center;
}

.compatibility-person {
  min-width: 0;
  margin: 0;
}

.compatibility-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 0.66;
  overflow: hidden;
  background: #1e1e1e;
}

.compatibility-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(242, 242, 240, 0.46) 0.65px,
    transparent 1.05px
  );
  background-size: 3.5px 3.5px;
  mix-blend-mode: overlay;
}

.compatibility-photo.has-image::after {
  display: none;
}

.compatibility-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compatibility-photo img[hidden],
.compatibility-photo.has-image .compatibility-photo-placeholder {
  display: none;
}

.compatibility-photo-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  color: var(--gray);
  place-items: center;
}

.compatibility-photo-placeholder span {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1.5px dashed var(--gray-light);
  border-radius: 50%;
  place-items: center;
}

.compatibility-person figcaption {
  display: flex;
  margin-top: 17px;
  flex-direction: column;
  align-items: center;
}

.compatibility-person figcaption strong {
  color: var(--ink);
  font-size: clamp(16px, 4.8vw, 21px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.4;
  text-align: center;
}

.compatibility-person-meta {
  margin-top: 3px;
  color: var(--compatibility-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-align: center;
}

.compatibility-person-meta[hidden] {
  display: none;
}

.compatibility-cross {
  color: var(--ink-soft);
  font-size: 23px;
  font-weight: 250;
  line-height: 1;
  text-align: center;
  padding-bottom: 70px;
}

.compatibility-result-section {
  position: relative;
}

.compatibility-score {
  padding: 48px 4px 18px;
  text-align: center;
}

.compatibility-section-label {
  color: var(--compatibility-muted);
  font-size: 11px;
  font-weight: 700;
  text-indent: 0.24em;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-align: center;
}

.compatibility-score-value {
  position: relative;
  width: fit-content;
  margin: 16px auto 0;
  color: var(--compatibility-hot);
  line-height: 0.86;
}

.compatibility-score-value strong {
  display: block;
  text-indent: -0.065em;
  font-size: clamp(78px, 23vw, 104px);
  font-weight: 800;
  letter-spacing: -0.065em;
}

.compatibility-score-value sup {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.compatibility-grade {
  display: inline-block;
  min-width: 86px;
  margin-top: 22px;
  padding: 6px 17px;
  color: var(--compatibility-hot);
  border: 1.5px solid var(--compatibility-hot);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.compatibility-score-bar {
  height: 4px;
  margin-top: 28px;
  overflow: hidden;
  background: var(--compatibility-line-soft);
  border-radius: 2px;
}

.compatibility-score-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--compatibility-hot);
  border-radius: inherit;
}

.compatibility-score-axis {
  display: grid;
  margin-top: 8px;
  color: var(--compatibility-faint);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.compatibility-score-axis > :first-child {
  justify-self: start;
}

.compatibility-score-axis > :nth-child(2) {
  justify-self: center;
}

.compatibility-score-axis > :last-child {
  justify-self: end;
}

.compatibility-combination {
  padding: 50px 0 56px;
  text-align: center;
}

.compatibility-combination.compatibility-is-legacy {
  min-height: 330px;
  padding-top: 60px;
  padding-bottom: 70px;
}

.compatibility-combination h2 {
  font-size: clamp(34px, 10.5vw, 47px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.compatibility-combination.compatibility-is-legacy h2 {
  font-size: clamp(29px, 8vw, 38px);
  line-height: 1.25;
}

.compatibility-phrase {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.compatibility-comment {
  margin: 30px auto 0;
  padding: 22px 20px;
  color: var(--ink);
  background: var(--compatibility-panel);
  border-left: 1.5px dashed var(--ink);
  border-radius: 3px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.7;
  white-space: pre-line;
}

.compatibility-combination.compatibility-is-legacy .compatibility-comment {
  padding: 0;
  color: var(--ink-soft);
  background: transparent;
  border-left: 0;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
}

.compatibility-reading {
  margin: 26px auto 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  letter-spacing: -0.02em;
  line-height: 1.95;
  text-align: left;
}

.compatibility-phrase[hidden],
.compatibility-comment[hidden],
.compatibility-reading[hidden],
.compatibility-grade[hidden],
.compatibility-score[hidden],
.compatibility-insights[hidden],
.compatibility-result-rule[hidden],
.compatibility-gap[hidden] {
  display: none;
}

.compatibility-result-rule {
  margin: 0;
}

.compatibility-insights {
  padding-top: 44px;
}

.compatibility-element {
  padding-bottom: 46px;
}

.compatibility-element-diagram {
  min-height: 288px;
  margin-top: 20px;
}

.compatibility-element-diagram svg {
  display: block;
  width: 100%;
  max-width: 290px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.compatibility-element-diagram > p {
  padding: 76px 0;
  color: var(--compatibility-muted);
  font-size: 13px;
  text-align: center;
}

.compatibility-element-edge {
  stroke: var(--compatibility-line);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
}

.compatibility-element-flow {
  stroke: var(--compatibility-flow-color, var(--compatibility-hot));
  stroke-width: 2.25;
  stroke-linecap: round;
}

.compatibility-element-clash {
  fill: none;
  stroke: var(--compatibility-hot);
  stroke-width: 1.75;
  stroke-linecap: round;
}

.compatibility-element-clash-backdrop {
  fill: var(--paper);
}

.compatibility-element-ring {
  fill: none;
  stroke: var(--compatibility-element-color);
  stroke-width: 2;
}

.compatibility-element-node circle {
  fill: var(--paper);
  stroke: var(--compatibility-line);
  stroke-width: 1;
}

.compatibility-element-node text {
  fill: var(--compatibility-faint);
  font-size: 14px;
  font-weight: 500;
}

.compatibility-element-node.compatibility-is-active circle {
  fill: var(--compatibility-element-color);
  stroke: var(--compatibility-element-color);
}

.compatibility-element-node.compatibility-is-active text {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 750;
}

.compatibility-element-caption {
  fill: var(--compatibility-muted);
  font-size: 11.5px;
  letter-spacing: -0.01em;
}

.compatibility-coverage {
  padding: 0 0 46px;
}

#compatibility-coverage-list {
  margin-top: 22px;
}

.compatibility-coverage-item {
  display: grid;
  margin-bottom: 9px;
  padding: 13px 16px;
  background: var(--compatibility-panel);
  border-left: 3px solid var(--compatibility-zone-color, var(--compatibility-faint));
  border-radius: 3px;
  grid-template-areas:
    "zone owner"
    "role owner";
  grid-template-columns: minmax(96px, 0.2fr) minmax(0, 1.8fr);
  column-gap: 18px;
  row-gap: 2px;
  align-items: center;
}

.compatibility-coverage-zone {
  color: var(--compatibility-muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.45;
  grid-area: zone;
}

.compatibility-coverage-role {
  color: var(--compatibility-zone-color, var(--compatibility-muted));
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.5;
  grid-area: role;
}

.compatibility-coverage-owner {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: left;
  grid-area: owner;
  justify-self: start;
}

.compatibility-coverage-owner em {
  color: var(--compatibility-muted);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 400;
}

.compatibility-coverage-item.compatibility-is-empty {
  background: #141414;
  border-left-style: dashed;
  border-left-color: #333333;
}

.compatibility-coverage-item.compatibility-is-empty .compatibility-coverage-zone {
  color: #505050;
}

.compatibility-coverage-item.compatibility-is-empty .compatibility-coverage-role {
  color: #666666;
}

.compatibility-coverage-item.compatibility-is-empty .compatibility-coverage-owner {
  color: #565656;
  font-weight: 650;
}

.compatibility-duties .compatibility-section-label {
  margin-bottom: 20px;
}

.compatibility-duty {
  display: flex;
  padding: 32px 0;
  border-bottom: 1.5px dashed var(--rule);
  font-size: 13.5px;
  gap: 8px;
}

.compatibility-duty:first-child {
  border-top: 1.5px dashed var(--rule);
}

.compatibility-duty strong {
  flex: 0 0 104px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.6;
}

.compatibility-duty span {
  min-width: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}

.compatibility-gap {
  border-bottom: none;
}

.compatibility-gap strong {
  color: var(--compatibility-hot);
}

.compatibility-gap span {
  color: var(--ink);
  font-weight: 650;
}

.compatibility-footer {
  padding-top: 0;
}

.ft .legal {
  color: var(--ink-soft);
  margin-top: 42px;
  font-size: 12.5px;
  line-height: 1.8;
}

.ft .logo {
  margin-top: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.toast {
  position: fixed;
  bottom: 34px;
  left: 50%;
  z-index: 99;
  padding: 13px 22px;
  color: var(--paper);
  pointer-events: none;
  background: var(--ink);
  border-radius: 999px;
  opacity: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.35s, transform 0.35s;
}

.toast.on {
  opacity: 1;
  transform: translateX(-50%);
}

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

.rv {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.hd.rv {
  opacity: 1;
  transform: none;
}

.hd.rv .title-lockup,
.hd.rv .persona,
.hd.rv .stamp {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hd.rv.in .title-lockup {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.hd.rv.in .persona {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

.hd.rv.in .stamp {
  opacity: 1;
  transform: none;
  transition-delay: 0.6s;
}

@media (min-width: 481px) {
  body {
    padding: 40px 0;
  }

  .state-screen {
    min-height: calc(100vh - 80px);
  }

  .scanner-screen {
    min-height: calc(100vh - 80px);
  }

  .receipt {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .scanner-modal:not(.is-standalone) .scanner-screen {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

@media (max-width: 360px) {
  .state-screen,
  .receipt,
  .scanner-screen {
    padding-right: 22px;
    padding-left: 22px;
  }

  .compatibility-score-value strong {
    font-size: 76px;
  }

  .compatibility-combination h2 {
    font-size: 34px;
  }

  .compatibility-duty {
    gap: 11px;
  }

  .compatibility-duty strong {
    flex-basis: 88px;
  }
}

@media (max-height: 740px) {
  .scanner-content {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .scanner-content h1 {
    font-size: clamp(22px, 6.3vw, 26px);
  }

  .scanner-description {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.45;
  }

  .scanner-camera {
    width: min(100%, 34dvh);
    margin-top: 12px;
  }

  .scanner-status {
    min-height: 20px;
    margin-top: 8px;
    font-size: 12.5px;
  }

  .scanner-alert {
    padding: 15px 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .scanner-actions {
    margin-top: 8px;
  }

  .scanner-actions button {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 13px;
  }

}

@media (prefers-reduced-motion: no-preference) {
  .state-screen[data-state="loading"] .state-indicator,
  .state-screen[data-state="pending"] .state-indicator {
    animation: state-pulse 1.4s ease-in-out infinite;
  }

  .receipt {
    animation: fadeup 0.5s ease both;
  }

  .compatibility-result-section {
    animation: compatibility-rise 0.55s cubic-bezier(0.2, 0.8, 0.3, 1) both;
  }

  .compatibility-combination {
    animation-delay: 0.08s;
  }

  .compatibility-element {
    animation-delay: 0.14s;
  }

  .compatibility-coverage {
    animation-delay: 0.2s;
  }

  .compatibility-duties {
    animation-delay: 0.26s;
  }

  .compatibility-score-bar span {
    transition: width 1.1s cubic-bezier(0.2, 0.8, 0.3, 1) 0.25s;
  }

  .compatibility-element-flow {
    animation: compatibility-flow-dash 1.1s linear infinite;
    stroke-dasharray: 8 6;
  }

  .compatibility-element-ring {
    animation: compatibility-ring-pulse 2s ease-out infinite 0.3s;
  }

  .compatibility-element-clash {
    animation: compatibility-clash-in 0.5s ease-out both 0.45s;
  }

  .compatibility-element-node {
    animation: compatibility-node-pop 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) both;
    animation-delay: var(--compatibility-delay, 0ms);
    transform-box: fill-box;
    transform-origin: center;
  }

  @keyframes state-pulse {
    0%,
    100% {
      border-color: var(--gray-light);
      opacity: 0.65;
      transform: scale(0.96);
    }

    50% {
      border-color: var(--ink-soft);
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeup {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes compatibility-rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes compatibility-flow-dash {
    to {
      stroke-dashoffset: -24;
    }
  }

  @keyframes compatibility-node-pop {
    from {
      opacity: 0;
      transform: scale(0.72);
    }

    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes compatibility-ring-pulse {
    0% {
      opacity: 0.9;
      r: 26;
    }

    70%,
    100% {
      opacity: 0;
      r: 38;
    }
  }

  @keyframes compatibility-clash-in {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv,
  .hd.rv .title-lockup,
  .hd.rv .persona,
  .hd.rv .stamp {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .life-chart-fade {
    opacity: 1 !important;
    transition: none !important;
  }

  .life-curve {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }

  .life-chart-node {
    transform: scale(1) !important;
    transition: none !important;
  }

  .five-elements-data {
    transform: scale(1) !important;
    transition: none !important;
  }

  .three-sections-focus-bracket {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }

  .three-sections-focus-caption,
  .three-sections-point {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }

  .three-sections-scan {
    animation: none !important;
  }

  .compatibility-result-section,
  .compatibility-element-flow,
  .compatibility-element-ring,
  .compatibility-element-clash,
  .compatibility-element-node,
  .compatibility-score-bar span {
    animation: none !important;
    transition: none !important;
  }

  .compatibility-element-flow {
    stroke-dasharray: none;
  }

}
