:root {
  --surg-font: "DM Sans", sans-serif;
  --surg-font-display: "DM Serif Display", "DM Sans", serif;
  --surg-font-emoji:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
    "Twemoji Mozilla", EmojiOne, sans-serif;

  --surg-teal: #49969c;
  --surg-teal-dark: #3f8389;
  --surg-teal-soft: #e8f7f6;
}

.surg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease;
}

.surg-btn--lg {
  padding: 14px 38px;
  font-size: 15px;
}

.surg-btn--primary {
  background: var(--surg-teal);
  border-color: var(--surg-teal);
  color: #ffffff;
}

.surg-btn--primary:hover {
  background: var(--surg-teal-dark);
  border-color: var(--surg-teal-dark);
  color: #ffffff;
  transform: scale(1.05);
}

.surg-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.surg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: scale(1.05);
}

.surg-btn--outline {
  background: transparent;
  border-color: var(--surg-teal);
  color: var(--surg-teal-dark);
}

.surg-btn--outline:hover {
  background: var(--surg-teal-soft);
  color: var(--surg-teal-dark);
  transform: scale(1.05);
}

.dg-page {
  --dg-primary: #49969c;
  --dg-primary-dark: #3f8389;
  --dg-primary-soft: #e8f7f6;
  --dg-primary-soft-2: #bde6e2;
  --dg-accent: #2f8f9d;

  --dg-ink: #262f40;
  --dg-ink-2: #0d2e43;
  --dg-text: #525252;
  --dg-muted: #6c7c93;
  --dg-line: #e5eeed;

  --dg-bg: #ffffff;
  --dg-bg-alt: #f8f8f8;
  --dg-bg-cream: #f1f7f7;
  --dg-bg-dark: #082030;

  --dg-radius-sm: 10px;
  --dg-radius-md: 16px;
  --dg-radius-lg: 24px;

  --dg-font: var(--surg-font);
  --dg-font-emoji: var(--surg-font-emoji);

  font-family: var(--dg-font);
  color: var(--dg-text);
  background: #ffffff;
}

.dg-page button,
.dg-page input,
.dg-page select,
.dg-page textarea,
.dg-page a {
  font-family: inherit;
}

.dg-page section {
  position: relative;
}

.dg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dg-primary);
}

.dg-eyebrow--pill {
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.35);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
}

.dg-display {
  font-weight: 400;
  color: var(--dg-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.dg-display em {
  font-style: normal;
  font-weight: 400;
  color: var(--dg-primary);
  position: relative;
}

.dg-display em.is-underlined::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -6px;
  height: 2px;
  background: var(--dg-primary);
  opacity: 0.6;
}

.dg-section-sub {
  margin: 16px auto 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dg-text);
}

.dg-hero {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
  padding: 110px 0 90px;
  overflow: hidden;
}

.dg-hero--dark {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  color: #d8e3ec;
  padding: 110px 0 0;
}

.dg-hero--dark .dg-hero__grid {
  /* background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px); */
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, #00000000 1px);
}

.dg-hero__split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 60px 70px;
  align-items: center;
  padding-bottom: 80px;
}

.dg-hero__left {
  max-width: 620px;
}

.dg-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  /* letter-spacing: 2.4px; */
  text-transform: uppercase;
  color: #1a3c48;
  margin-bottom: 10px;
}

.dg-hero__eyebrow-dash {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: #b9cdcb;
}

.dg-hero--dark .dg-hero__title {
  color: #1a3c48;
  font-size: 60px;
  line-height: 1.05;
  /* letter-spacing: -0.01em; */
  margin-bottom: 28px;
  font-weight: 500;
}

.dg-hero--dark .dg-hero__title em {
  color: var(--dg-primary);
  font-style: normal;
  display: inline-block;
  margin-top: 4px;
}

.dg-hero--dark .dg-hero__title em.is-underlined::after {
  background: transparent;
  border-bottom: 2px dotted #8fd4cf;
  height: 0;
  bottom: -10px;
  opacity: 0.9;
  left: 0;
  right: 4%;
}

.dg-hero__title-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.dg-hero__title-link:hover,
.dg-hero__title-link:focus-visible {
  opacity: 0.85;
  text-decoration: none;
  color: inherit;
}

.dg-hero--dark .dg-hero__sub {
  color: #4b6b77;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 520px;
}

.dg-hero--dark .dg-hero__sub strong {
  color: #ffffff;
  font-weight: 600;
}

.dg-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 22px;
}

.dg-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 999px;
  border: 1px solid #49969c;
  background: transparent;
  color: #49969c;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.dg-hero__link:hover {
  background: var(--dg-primary);
  border-color: var(--dg-primary);
  color: #ffffff;
  transform: scale(1.03);
}

.dg-hero__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: #1a3c48;
}

.dg-hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.dg-hero__chips li + li::before {
  content: "·";
  margin-right: 16px;
  color: rgba(255, 255, 255, 0.25);
  margin-left: -16px;
}

.dg-hero__patent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  color: #d99a2b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.dg-hero__patent i {
  color: #d99a2b;
  font-size: 13px;
}

.dg-hero__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.dg-hero-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: #0000002b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.dg-hero-card:hover {
  background: #00000047;
  border-color: rgba(73, 150, 156, 0.35);
}

.dg-hero-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(143, 212, 207, 0.12);
  color: #8fd4cf;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dg-hero-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dg-hero-card__value {
  font-weight: 400;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.dg-hero-card__label {
  color: #c5d3d2;
  font-size: 13px;
  line-height: 1.55;
}

.dg-hero-card--note .dg-hero-card__note-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.dg-hero-card--note .dg-hero-card__icon {
  background: rgba(245, 158, 11, 0.14);
  color: #f3c573;
}

.dg-hero__strip {
  position: relative;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(73, 150, 156, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #082030 0%, #0d2e43 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dg-hero__strip-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  padding: 18px 0;
  font-size: 13px;
  color: #aebebd;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.dg-hero__strip-inner::-webkit-scrollbar {
  display: none;
  height: 0;
}

.dg-hero__strip-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
}

.dg-hero__strip-item strong {
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  font-size: 17px;
}

.dg-hero__strip-item i {
  color: #f3c573;
  margin-right: 4px;
  align-self: center;
}

.dg-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.dg-hero__inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.dg-hero__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.dg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.dg-pill--patent {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.dg-pill--patent i {
  color: #d97706;
  font-size: 14px;
}

.dg-pill--ai {
  background: rgba(73, 150, 156, 0.1);
  border: 1px solid rgba(73, 150, 156, 0.35);
  color: var(--dg-primary);
}

.dg-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dg-primary);
  display: inline-block;
}

.dg-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 22px;
}

.dg-hero__title em {
  display: inline-block;
  margin-top: 6px;
}

.dg-hero__sub {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--dg-text);
}

.dg-hero__sub strong {
  color: var(--dg-ink);
  font-weight: 600;
}

.dg-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 28px;
  margin: 0 auto 50px;
  color: var(--dg-text);
  font-size: 13px;
}

.dg-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dg-trust__item i {
  font-size: 16px;
}

.dg-trust__item--secure i {
  color: #f59e0b;
}

.dg-trust__item--time i {
  color: #f59e0b;
}

.dg-trust__item--free i {
  color: var(--dg-primary);
}

.dg-trust__item--note i {
  color: #b45309;
}

.dg-chat {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-lg);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.dg-chat__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #0d2e43 0%, #14324a 100%);
  color: #ffffff;
}

.dg-chat__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #c6e1dd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.dg-chat__avatar i {
  font-size: 20px;
  color: #49969c;
}

.dg-chat__avatar img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.dg-chat__title {
  flex: 1;
  min-width: 0;
}

.dg-chat__title strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.dg-chat__title span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2px;
}

.dg-chat__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(52, 211, 153, 0.18);
  color: #34d399;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.dg-chat__status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.dg-chat__body {
  padding: 26px 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafdfd;
  max-height: 360px;
  overflow-y: auto;

  scrollbar-width: thin;
  scrollbar-color: rgba(73, 150, 156, 0.45) transparent;
}

.dg-chat__body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.dg-chat__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}

.dg-chat__body::-webkit-scrollbar-thumb {
  background: rgba(73, 150, 156, 0.45);
  border-radius: 999px;
  border: 1px solid transparent;
  background-clip: padding-box;
}

.dg-chat__body::-webkit-scrollbar-thumb:hover {
  background: rgba(73, 150, 156, 0.7);
  background-clip: padding-box;
}

.dg-chat__body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.dg-chat__body::-webkit-scrollbar-corner {
  background: transparent;
}

.dg-msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  max-width: 100%;
}

.dg-msg--bot {
  justify-content: flex-start;
  align-self: flex-start;
}

.dg-msg--user {
  justify-content: flex-end;
  align-self: flex-end;
  flex-direction: row;
}

.dg-msg__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  border: 2px solid #ffffff;
  overflow: hidden;
}

.dg-msg--bot .dg-msg__avatar {
  background: #e3f1ef;
  border: 1px solid #c6e1dd;
  color: #49969c;
}

.dg-msg--bot .dg-msg__avatar img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: block;
}

.dg-msg--user .dg-msg__avatar {
  background: #0d2e43;
  color: #ffffff;
}

.dg-msg__bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  max-width: 78%;
  word-wrap: break-word;
}

.dg-msg--bot .dg-msg__bubble {
  background: #e3f1ef;
  color: var(--dg-ink-2);
  border-bottom-left-radius: 6px;
}

.dg-msg--user .dg-msg__bubble {
  background: var(--dg-primary);
  color: #ffffff;
  border-bottom-right-radius: 6px;
}

.dg-chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  padding-left: 42px;
}

.dg-chat__chip {
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--dg-primary);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.dg-chat__chip:hover {
  background: var(--dg-primary);
  border-color: var(--dg-primary);
  color: #ffffff;
}

.dg-chat__composer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #ffffff;
  border-top: 1px solid var(--dg-line);
}

.dg-chat__composer input {
  flex: 1;
  border: 1px solid var(--dg-line);
  outline: none;
  font-size: 14px;
  background: #ffffff;
  font-family: inherit;
  color: var(--dg-ink-2);
  padding: 12px 18px;
  border-radius: 999px;
  transition: border-color 0.2s ease;
}

.dg-chat__composer input:focus {
  border-color: var(--dg-primary);
}

.dg-chat__composer input::placeholder {
  color: #9aa6b2;
}

.dg-chat__send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dg-primary);
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
  font-size: 18px;
}

.dg-chat__send:hover {
  background: var(--dg-primary-dark);
  transform: translateX(1px);
}

.dg-familiar {
  background: #fff;
  padding: 90px 0 100px;
  color: var(--dg-ink);
  text-align: center;
  overflow: hidden;
}

.dg-familiar__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.dg-familiar__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.dg-familiar .dg-eyebrow--pill {
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.35);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
}

.dg-familiar .dg-display {
  color: var(--dg-ink);
  font-size: clamp(32px, 4.6vw, 52px);
  padding-top: 12px;
}

.dg-familiar .dg-display em {
  color: var(--dg-primary);
}

.dg-familiar__copy {
  margin: 22px auto 0;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--dg-text);
}

.dg-three {
  background: var(--dg-bg-alt);
  padding: 90px 0;
}

.dg-section-head {
  max-width: 720px;
  margin: 0 auto 44px;
}

.dg-section-head--left {
  margin-left: 0;
  text-align: left;
}

.dg-section-head--left .dg-section-sub {
  margin-left: 0;
}

.dg-section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin-top: 12px;
}

.dg-card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 0;
}

.dg-feat {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dg-feat:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
}

.dg-feat__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--dg-primary-soft);
  color: var(--dg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.dg-feat__body {
  flex: 1;
  min-width: 0;
}

.dg-feat__body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dg-ink);
  margin: 0 0 6px;
}

.dg-feat__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--dg-text);
}

.dg-feat__edit {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #c2cbd5;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.dg-feat__edit:hover {
  color: var(--dg-primary);
}

.dg-who {
  background: #ffffff;
  padding: 90px 0;
}

.dg-who__inner {
  max-width: 760px;
  margin: 0;
}

.dg-quote-card {
  position: relative;
  padding: 24px 28px;
  background: #f7faf9;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-md);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dg-quote-card + .dg-quote-card {
  margin-top: 16px;
}

.dg-quote-card:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
}

.dg-quote-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--dg-primary-soft);
  color: var(--dg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-family: var(--dg-font-emoji);
}

.dg-quote-card__num {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--dg-primary-soft);
  color: var(--dg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.dg-quote-card__body {
  flex: 1;
  min-width: 0;
}

.dg-quote-card__quote {
  display: block;
  font-style: italic;
  color: var(--dg-muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.dg-quote-card__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dg-ink);
  margin: 0 0 6px;
  line-height: 1.35;
}

.dg-quote-card__desc {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--dg-text);
}

.dg-quote-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dg-primary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}

.dg-quote-card__cta:hover {
  color: var(--dg-primary-dark);
  gap: 10px;
}

.dg-how {
  background: var(--dg-bg-cream);
  padding: 90px 0 100px;
}

.dg-how__inner {
  max-width: 760px;
  margin: 0 0;
}

.dg-how__inner--cta .dg-section-head {
  margin-bottom: 28px;
}

.dg-how__cta-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}

.dg-steps {
  position: relative;
  padding-left: 32px;

  list-style: none;
  margin: 0;
}

.dg-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 19px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(73, 150, 156, 0.4) 0%,
    rgba(73, 150, 156, 0.1) 100%
  );
}

.dg-step {
  position: relative;
  margin-bottom: 18px;
}

.dg-step:last-child {
  margin-bottom: 0;
}

.dg-step__num {
  position: absolute;
  left: -32px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dg-primary);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  border: 4px solid var(--dg-bg-cream);
  z-index: 1;
}

.dg-step__card {
  position: relative;
  margin-left: 28px;
  background: #ffffff;
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius-md);
  padding: 22px 26px;
  overflow: hidden;
}

.dg-step__bignum {
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 44px;
  font-weight: 700;
  color: rgba(73, 150, 156, 0.18);
  line-height: 1;
  letter-spacing: -0.02em;
}

.dg-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--dg-primary-soft);
  color: var(--dg-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--dg-font-emoji);
}

.dg-step__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--dg-ink);
  margin: 0 0 6px;
}

.dg-step__desc {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--dg-text);
  max-width: 92%;
}

.dg-step__bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dg-step__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--dg-primary-soft, #e8f5f3);
  border-radius: 10px;
  font-size: 14px;
  color: var(--dg-ink, #0f172a);
  font-weight: 500;
}

.dg-step__bullet-icon,
.dg-step__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  line-height: 1;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
    "Twemoji Mozilla", "EmojiOne Color", "Android Emoji", sans-serif;
}

.dg-step__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--dg-primary-soft);
  color: var(--dg-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.dg-cta {
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(73, 150, 156, 0.1),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4faf9 100%);
  padding: 90px 0 100px;
  text-align: center;
  overflow: hidden;
}

.dg-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 25%,
    transparent 70%
  );
  pointer-events: none;
}

.dg-cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.dg-cta .dg-display {
  font-size: clamp(36px, 5.4vw, 60px);
  margin-bottom: 18px;
}

.dg-cta__sub {
  margin: 0 auto 32px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dg-text);
}

.dg-cta__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dg-cta__caption {
  font-size: 12px;
  color: var(--dg-muted);
  letter-spacing: 0.2px;
}

.dg-patent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 999px;
  color: #b45309;
  font-size: 12px;
  font-weight: 500;
}

.dg-patent i {
  font-size: 14px;
  color: #d97706;
}

.hiw-page {
  --hiw-bg-dark: #082030;
  --hiw-bg-dark-2: #0d2e43;
  --hiw-bg-dark-3: #14324a;
  --hiw-bg-cream: #f1f7f7;
  --hiw-bg-alt: #f8f8f8;
  --hiw-bg-soft: #e8f7f6;
  --hiw-card: #ffffff;
  --hiw-line: #e5eeed;
  --hiw-line-dark: rgba(255, 255, 255, 0.08);

  --hiw-teal: #49969c;
  --hiw-teal-dark: #3f8389;
  --hiw-teal-soft: #e8f7f6;
  --hiw-teal-soft-2: #bde6e2;

  --hiw-ink: #262f40;
  --hiw-ink-2: #0d2e43;
  --hiw-text: #525252;
  --hiw-muted: #6c7c93;
  --hiw-text-light: #adbecc;

  --hiw-radius-sm: 10px;
  --hiw-radius-md: 16px;
  --hiw-radius-lg: 24px;

  --hiw-font: var(--surg-font);
  --hiw-font-display: var(--surg-font-display);
  --hiw-font-emoji: var(--surg-font-emoji);

  font-family: var(--hiw-font);
  background: #ffffff;
  color: var(--hiw-text);
}

.hiw-page button,
.hiw-page input,
.hiw-page select,
.hiw-page textarea,
.hiw-page a {
  font-family: inherit;
}

.hiw-page section {
  position: relative;
}

.hiw-display {
  font-weight: 500;
  color: var(--hiw-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.hiw-display em {
  font-style: normal;
  color: var(--hiw-teal);
  font-weight: 400;
}

.hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hiw-teal-dark);
}

.hiw-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hiw-teal);
  white-space: nowrap;
}

.hiw-pill__dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hiw-teal);
  flex-shrink: 0;
}

.hiw-pill__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--hiw-teal);
  opacity: 0.7;
  animation: hiw-pulse 2s ease-out infinite;
}

@keyframes hiw-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

.hiw-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.hiw-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hiw-section-head--light .hiw-display {
  color: #ffffff;
}

.hiw-section-head--light .hiw-section-sub {
  color: var(--hiw-text-light);
}

.hiw-section-head .hiw-eyebrow,
.hiw-section-head .hiw-pill {
  margin-bottom: 18px;
}

.hiw-section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.hiw-section-sub {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hiw-text);
  max-width: 580px;
}

.hiw-section-head--center .hiw-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.hiw-hero {
  /* background:
    radial-gradient(circle at 50% 0%,
      rgba(73, 150, 156, 0.14),
      transparent 55%),
    linear-gradient(180deg, var(--hiw-bg-dark) 0%, var(--hiw-bg-dark-2) 100%); */
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  padding: 110px 0 90px;
  overflow: hidden;
  color: #1a3c48;
  text-align: center;
}

.hiw-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.hiw-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.hiw-hero__inner > .hiw-pill {
  margin-bottom: 28px;
}

.hiw-hero__title {
  color: #1a3c48;
  font-size: clamp(44px, 6vw, 60px);
  margin-bottom: 22px;
}

.hiw-hero__title em {
  color: var(--hiw-teal);
  font-style: normal;
}

.hiw-hero__sub {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
  color: #4b6b77;
}

.hiw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.35);
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  /* box-shadow:
    0 10px 25px rgba(73, 150, 156, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.02); */
  animation: fadeUp 0.6s ease 0.3s both;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  border-left: solid 3px rgb(53 144 155 / 81%);
}

/* .hiw-stats:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 35px rgba(73, 150, 156, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.03);
  border-color: rgba(73, 150, 156, 0.3);
} */

.hiw-stat {
  position: relative;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition: background 0.2s ease;
}

.hiw-stat:hover {
  background: rgba(73, 150, 156, 0.03);
}

.hiw-stat strong {
  font-size: 30px;
  font-weight: 700;
  color: #1a3c48;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hiw-stat:last-of-type strong {
  color: var(--hiw-teal, #49969c);
}

.hiw-stat span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #526770;
}

.hiw-stat:last-of-type span {
  color: #526770;
}

.hiw-stat__divider {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #edf2f7;
}

.hiw-stat:last-of-type .hiw-stat__divider {
  display: none;
}

.hiw-steps {
  background: #fff;
  padding: 100px 0;
}

.hiw-steps .hiw-section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hiw-steps__list {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 0 0 0 32px;
  max-width: 760px;
}

.hiw-steps__list::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 32px;
  left: 19px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(73, 150, 156, 0.55) 0%,
    rgba(73, 150, 156, 0.1) 100%
  );
}

.hiw-step {
  position: relative;
  margin-bottom: 22px;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step__num {
  position: absolute;
  left: -32px;
  top: 0px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hiw-teal);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 4px solid var(--hiw-bg-cream);
  z-index: 1;
}

.hiw-step__card {
  position: relative;
  margin-left: 28px;
  background: var(--hiw-card);
  border: 1px solid var(--hiw-line);
  border-radius: var(--hiw-radius-md);
  padding: 26px 30px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.hiw-step__card:hover {
  border-color: rgba(73, 150, 156, 0.55);
  transform: translateY(-2px);
}

.hiw-step__bignum {
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 50px;
  font-weight: 600;
  color: #e6f4f3;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hiw-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--hiw-teal-soft);
  color: var(--hiw-teal-dark);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-step__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--hiw-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.hiw-step__desc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hiw-text);
}

.hiw-step__bullets {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-step__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--hiw-bg-soft);
  border-radius: var(--hiw-radius-sm);
  font-size: 14px;
  color: var(--hiw-ink-2);
  font-weight: 500;
}

.hiw-step__bullet-icon,
.hiw-step__pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--hiw-teal-dark);
}

.hiw-step__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--hiw-teal-soft);
  border: 1px solid rgba(73, 150, 156, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--hiw-teal-dark);
  letter-spacing: 0.1px;
}

.hiw-deliverable {
  background: #fbfbfb;
  padding: 100px 0;
}

.hiw-deliverable__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.hiw-deliverable-card {
  position: relative;
  padding: 30px 28px;
  background: var(--hiw-card);
  border: 1px solid var(--hiw-line);
  border-radius: var(--hiw-radius-md);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}

.hiw-deliverable-card:hover {
  background: linear-gradient(
    160deg,
    var(--hiw-bg-dark) 0%,
    var(--hiw-bg-dark-2) 100%
  );
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 22px 48px -28px rgba(8, 32, 48, 0.28);
}

.hiw-deliverable-card:hover .hiw-deliverable-card__title {
  color: #ffffff;
}

.hiw-deliverable-card:hover .hiw-deliverable-card__desc {
  color: var(--hiw-text-light);
}

.hiw-deliverable-card__title,
.hiw-deliverable-card__desc {
  transition: color 0.3s ease;
}

.hiw-deliverable-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--hiw-teal-soft);
  color: var(--hiw-teal-dark);
  font-size: 24px;
  line-height: 1;
}

.hiw-deliverable-card:hover .hiw-deliverable-card__icon {
  background: rgba(143, 212, 207, 0.14);
  color: #8fd4cf;
}

.hiw-deliverable-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--hiw-ink);
  margin: 0;
  letter-spacing: -0.005em;
}

.hiw-deliverable-card__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--hiw-text);
}

.hiw-spectrum {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  padding: 100px 0;
  overflow: hidden;
  color: #1a3c48;
}

.hiw-spectrum__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.hiw-spectrum .container {
  position: relative;
}

.hiw-spectrum__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hiw-spectrum-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.25);
  border-radius: var(--hiw-radius-md);
  /* box-shadow: 0 4px 20px rgba(73, 150, 156, 0.06); */
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hiw-spectrum-item:hover {
  background: #ffffff;
  border-color: #49969c;
  /* box-shadow: 0 8px 30px rgba(73, 150, 156, 0.12); */
  transform: translateY(-2px);
}

.hiw-spectrum-item__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(73, 150, 156, 0.12);
  color: #1a3c48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(73, 150, 156, 0.35);
}

.hiw-spectrum-item__body {
  flex: 1;
  min-width: 0;
}

.hiw-spectrum-item__body h3 {
  font-size: 17px;
  font-weight: 600;
  color: #1a3c48;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}

.hiw-spectrum-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #4b6b77;
}

.hiw-cta {
  background: #ffffff;
  padding: 80px 0 100px;
}

.hiw-cta__card {
  position: relative;
  margin: 0 auto;
  max-width: 1120px;
  padding: 70px 24px;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(73, 150, 156, 0.14),
      transparent 60%
    ),
    linear-gradient(135deg, var(--hiw-bg-dark) 0%, var(--hiw-bg-dark-3) 100%);
  border-radius: var(--hiw-radius-lg);
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.hiw-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.hiw-cta__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hiw-cta__inner .hiw-display {
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 50px);
  margin-bottom: 18px;
}

.hiw-cta__inner .hiw-display em {
  color: var(--hiw-teal);
}

.hiw-cta__sub {
  margin: 0 auto 30px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--hiw-text-light);
}

.hiw-cta__caption {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(184, 197, 212, 0.7);
  letter-spacing: 0.2px;
}

.gh-page {
  --gh-bg-dark: #082030;
  --gh-bg-dark-2: #0d2e43;
  --gh-bg-dark-3: #14324a;
  --gh-bg-cream: #f1f7f7;
  --gh-bg-alt: #f5f6f7;
  --gh-card: #ffffff;
  --gh-line: #e5eeed;

  --gh-teal: #49969c;
  --gh-teal-dark: #3f8389;
  --gh-teal-soft: #e8f7f6;

  --gh-ink: #262f40;
  --gh-ink-2: #0d2e43;
  --gh-text: #525252;
  --gh-muted: #6c7c93;
  --gh-text-light: #adbecc;

  --gh-warn: #ef4f6f;
  --gh-warn-soft: #fce7e9;

  --gh-radius-sm: 10px;
  --gh-radius-md: 16px;
  --gh-radius-lg: 24px;

  --gh-font: var(--surg-font);
  --gh-font-display: var(--surg-font-display);
  --gh-font-emoji: var(--surg-font-emoji);

  font-family: var(--gh-font);
  background: #ffffff;
  color: var(--gh-text);
}

.gh-page button,
.gh-page input,
.gh-page select,
.gh-page textarea,
.gh-page a {
  font-family: inherit;
}

.gh-page section {
  position: relative;
}

.gh-display {
  font-weight: 400;
  color: var(--gh-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.gh-display em {
  font-style: normal;
  color: var(--gh-teal);
  font-weight: 400;
}

.gh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gh-teal-dark);
}

.gh-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gh-teal);
  white-space: nowrap;
}

.gh-pill__dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gh-teal);
  flex-shrink: 0;
}

.gh-pill__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gh-teal);
  opacity: 0.7;
  animation: gh-pulse 2s ease-out infinite;
}

@keyframes gh-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

.gh-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.gh-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gh-section-head .gh-eyebrow,
.gh-section-head .gh-pill {
  margin-bottom: 18px;
}

.gh-section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.gh-section-sub {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gh-text);
  max-width: 560px;
}

.gh-section-head--center .gh-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.gh-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--gh-teal-soft);
  border: 1px solid rgba(73, 150, 156, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gh-teal-dark);
  letter-spacing: 0.1px;
  white-space: normal;
}

.gh-info-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: var(--gh-teal-dark, var(--gh-teal));
}

.gh-hero {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  padding: 110px 0 90px;
  overflow: hidden;
  color: #1a3c48;
}

.gh-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.gh-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gh-hero__inner > .gh-pill {
  margin-bottom: 28px;
}

.gh-hero__title {
  color: #1a3c48;
  font-size: clamp(42px, 6vw, 60px);
  margin-bottom: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.gh-hero__title em {
  color: var(--gh-teal);
  font-style: normal;
}

.gh-hero__sub {
  margin: 0 0 36px;
  font-size: 15px;
  line-height: 1.75;
  color: #4b6b77;
}

.gh-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gh-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(73, 150, 156, 0.35);
  border-radius: 999px;
  font-size: 13px;
  color: #1a3c48;
  font-weight: 500;
  /* box-shadow: 0 2px 8px rgba(73, 150, 156, 0.08); */
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* .gh-stat-chip:hover {
  border-color: rgba(73, 150, 156, 0.35);
  box-shadow: 0 4px 12px rgba(73, 150, 156, 0.14);
} */

.gh-stat-chip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--gh-teal, #49969c);
}

.gh-problem {
  background: #fff;
  padding: 100px 0;
}

.gh-problem__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gh-problem-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: var(--gh-card);
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gh-problem-card:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(8, 32, 48, 0.25);
}

.gh-problem-card__num {
  flex-shrink: 0;
  font-size: 50px;
  color: #e6f4f3;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-top: 2px;
  min-width: 28px;
}

.gh-problem-card__body {
  flex: 1;
  min-width: 0;
}

.gh-problem-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gh-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.gh-problem-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gh-text);
  margin: 0 0 14px;
}

.gh-alt {
  background: var(--gh-bg-cream);
  padding: 100px 0;
}

.gh-compare {
  max-width: 880px;
  margin: 0 auto;
  background: var(--gh-card);
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius-md);
  overflow: hidden;
}

.gh-compare__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gh-compare__col {
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.005em;
}

.gh-compare__col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
}

.gh-compare__col--bad {
  background: var(--gh-warn-soft);
  color: var(--gh-warn);
}

.gh-compare__col--good {
  background: var(--gh-teal);
  color: #ffffff;
}

.gh-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gh-line);
}

.gh-compare__cell {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--gh-ink);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.gh-compare__cell + .gh-compare__cell {
  border-left: 1px solid var(--gh-line);
}

.gh-compare__cell--bad {
  color: var(--gh-text);
}

.gh-compare__cell--bad span {
  color: var(--gh-muted);
  font-weight: 700;
  margin-top: 1px;
}

.gh-compare__cell--good span {
  color: var(--gh-teal-dark);
  font-weight: 700;
  margin-top: 1px;
}

.gh-diff {
  background: #ffffff;
  padding: 100px 0;
}

.gh-diff__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

.gh-diff-card {
  padding: 32px 30px;
  background: var(--gh-card);
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.gh-diff-card:not(.gh-diff-card--dark):hover {
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(73, 150, 156, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--gh-bg-dark) 0%, var(--gh-bg-dark-2) 100%);
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -32px rgba(8, 32, 48, 0.28);
}

.gh-diff-card:not(.gh-diff-card--dark):hover h3 {
  color: #ffffff;
}

.gh-diff-card:not(.gh-diff-card--dark):hover p {
  color: var(--gh-text-light);
}

.gh-diff-card:not(.gh-diff-card--dark):hover .gh-diff-card__icon {
  background: rgba(73, 150, 156, 0.18);
}

.gh-diff-card:not(.gh-diff-card--dark):hover .gh-info-pill {
  background: rgba(73, 150, 156, 0.18);
  border-color: rgba(73, 150, 156, 0.4);
  color: var(--gh-teal);
}

.gh-diff-card--dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -30px rgba(8, 32, 48, 0.55);
}

.gh-diff-card h3,
.gh-diff-card p,
.gh-diff-card .gh-diff-card__icon,
.gh-diff-card .gh-info-pill {
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.gh-diff-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(73, 150, 156, 0.1);
  color: var(--gh-teal);
  font-size: 24px;
  line-height: 1;
  background: var(--gh-teal-soft);
  border-radius: 50%;
}

.gh-diff-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gh-ink);
  margin: 0;
  letter-spacing: -0.005em;
}

.gh-diff-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gh-text);
  margin: 0;
}

.gh-diff-card .gh-info-pill {
  align-self: flex-start;
  margin-top: 4px;
}

.gh-diff-card--dark {
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(73, 150, 156, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--gh-bg-dark) 0%, var(--gh-bg-dark-2) 100%);
  border-color: transparent;
  color: #ffffff;
}

.gh-diff-card--dark h3 {
  color: #ffffff;
}

.gh-diff-card--dark p {
  color: var(--gh-text-light);
}

.gh-diff-card--dark .gh-diff-card__icon {
  background: rgba(73, 150, 156, 0.18);
}

.gh-diff-card--dark .gh-info-pill {
  background: rgba(73, 150, 156, 0.18);
  border-color: rgba(73, 150, 156, 0.4);
  color: var(--gh-teal);
}

.gh-stories {
  background: var(--gh-bg-cream);
  padding: 100px 0;
}

.gh-stories__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.gh-story-card {
  position: relative;
  padding: 26px 32px;
  background: var(--gh-card);
  border: 1px solid var(--gh-line);
  border-radius: var(--gh-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gh-story-card:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(8, 32, 48, 0.25);
}

.gh-story-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--gh-font-display);
  font-style: italic;
  font-size: 44px;
  color: rgba(73, 150, 156, 0.22);
  line-height: 1;
  pointer-events: none;
}

.gh-story-card__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: #f5b700;
  margin-bottom: 14px;
}

.gh-story-card__quote {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.gh-story-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gh-line);
}

.gh-story-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.gh-story-card__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gh-teal-soft);
  color: var(--gh-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.gh-story-card__author > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gh-story-card__author strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--gh-ink);
  line-height: 1.2;
}

.gh-story-card__author span {
  font-size: 12px;
  color: var(--gh-muted);
  line-height: 1.4;
}

.gh-cta {
  background: #ffffff;
  padding: 80px 0 100px;
}

.gh-cta__card {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  padding: 70px 24px;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(73, 150, 156, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, var(--gh-bg-dark) 0%, var(--gh-bg-dark-3) 100%);
  border-radius: var(--gh-radius-lg);
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.gh-cta__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.gh-cta__inner {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.gh-cta__inner .gh-display {
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 50px);
  margin-bottom: 18px;
}

.gh-cta__inner .gh-display em {
  color: var(--gh-teal);
}

.gh-cta__sub {
  margin: 0 auto 30px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gh-text-light);
}

.gh-cta__caption {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(184, 197, 212, 0.7);
  letter-spacing: 0.2px;
}

.pr-page {
  --pr-bg-dark: #082030;
  --pr-bg-dark-2: #0d2e43;
  --pr-bg-dark-3: #14324a;
  --pr-bg-cream: #f1f7f7;
  --pr-bg-alt: #f5f6f7;
  --pr-card: #ffffff;
  --pr-line: #e5eeed;

  --pr-teal: #49969c;
  --pr-teal-dark: #3f8389;
  --pr-teal-soft: #e8f7f6;

  --pr-ink: #262f40;
  --pr-ink-2: #0d2e43;
  --pr-text: #525252;
  --pr-muted: #6c7c93;
  --pr-text-light: #adbecc;

  --pr-radius-sm: 10px;
  --pr-radius-md: 16px;
  --pr-radius-lg: 24px;

  --pr-font: var(--surg-font);
  --pr-font-emoji: var(--surg-font-emoji);

  font-family: var(--pr-font);
  background: #ffffff;
  color: var(--pr-text);
}

.pr-page button,
.pr-page input,
.pr-page select,
.pr-page textarea,
.pr-page a {
  font-family: inherit;
}

.pr-page section {
  position: relative;
}

.pr-display {
  font-weight: 400;
  color: var(--pr-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.pr-display em {
  font-style: normal;
  color: var(--pr-teal);
  font-weight: 400;
}

.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pr-teal-dark);
}

.pr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  background: rgba(73, 150, 156, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pr-teal);
  white-space: nowrap;
}

.pr-pill__dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pr-teal);
  flex-shrink: 0;
}

.pr-pill__dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pr-teal);
  opacity: 0.7;
  animation: pr-pulse 2s ease-out infinite;
}

@keyframes pr-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

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

.pr-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: left;
}

.pr-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pr-section-head .pr-eyebrow,
.pr-section-head .pr-pill {
  margin-bottom: 18px;
}

.pr-section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.pr-section-sub {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--pr-text);
  max-width: 580px;
}

.pr-section-head--center .pr-section-sub {
  margin-left: auto;
  margin-right: auto;
}

.pr-info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--pr-teal-soft);
  border: 1px solid rgba(73, 150, 156, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-teal-dark);
  letter-spacing: 0.1px;
}

.pr-info-pill--strong {
  background: var(--pr-teal);
  border-color: var(--pr-teal);
  color: #ffffff;
}

.pr-hero {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(73, 150, 156, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(189, 230, 226, 0.35),
      transparent 55%
    ),
    linear-gradient(135deg, #f4fbfc 0%, #eaf7f8 45%, #ddf2f4 100%);
  padding: 110px 0 90px;
  overflow: hidden;
  color: #1a3c48;
}

.pr-hero__rings {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(73, 150, 156, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 150, 156, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 75%
  );
  pointer-events: none;
}

.pr-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.pr-hero__inner > .pr-pill {
  margin-bottom: 28px;
}

.pr-hero__title {
  color: #1a3c48;
  font-size: clamp(42px, 6vw, 60px);
  margin-bottom: 22px;
  line-height: 1.15;
  font-weight: 500;
}

.pr-hero__title em {
  color: var(--pr-teal, #49969c);
  font-style: normal;
}

.pr-hero__sub {
  max-width: 540px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.75;
  color: #4b6b77;
}

.pr-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  justify-content: center;
}

.pr-hero__ctas .surg-btn--ghost {
  background: transparent;
  border-color: var(--pr-teal, #49969c);
  color: var(--pr-teal, #49969c);
}

.pr-hero__ctas .surg-btn--ghost:hover {
  background: var(--pr-teal, #49969c);
  border-color: var(--pr-teal, #49969c);
  color: #ffffff;
}

.pr-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-color: rgba(73, 150, 156, 0.35);
  background: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  border-left: solid 3px rgb(53 144 155 / 81%);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.pr-hero-stat {
  position: relative;
  padding: 20px 14px;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  transition: background 0.2s ease;
}

.pr-hero-stat:hover {
  background: rgba(73, 150, 156, 0.03);
}

.pr-hero-stat:not(:last-of-type) {
  border-right: 1px solid #edf2f7;
}

.pr-hero-stat__num {
  font-size: 30px;
  line-height: 1;
  color: #1a3c48;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
}

.pr-hero-stat__num--accent {
  color: var(--pr-teal, #49969c);
}

.pr-hero-stat__label {
  font-size: 13px;
  color: #526770;
  letter-spacing: 0.2px;
  font-weight: 500;
}

.pr-why {
  background: #fff;
  padding: 100px 0;
}

.pr-why__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pr-why-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 30px;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  transition: 0.3s ease-in all;
}

.pr-why-card:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(8, 32, 48, 0.25);
  transition: 0.3s ease-in all;
}

.pr-why-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pr-teal-dark);
  background: var(--pr-teal-soft);
  border-radius: 12px;
  margin-top: 2px;
}

.pr-why-card__body {
  flex: 1;
  min-width: 0;
}

.pr-why-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pr-ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.pr-why-card__body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-text);
  margin: 0 0 14px;
}

.pr-how {
  background: var(--pr-bg-cream);
  padding: 100px 0;
}

.pr-how__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

.pr-step-card {
  position: relative;
  padding: 32px 30px 30px;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-md);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.pr-step-card:hover {
  background: linear-gradient(
    160deg,
    var(--pr-bg-dark) 0%,
    var(--pr-bg-dark-2) 100%
  );
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -32px rgba(8, 32, 48, 0.28);
}

.pr-step-card:hover h3 {
  color: #ffffff;
}

.pr-step-card:hover p {
  color: var(--pr-text-light);
}

.pr-step-card:hover .pr-step-card__num {
  color: rgba(255, 255, 255, 0.85);
}

.pr-step-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 50px;
  line-height: 1;
  color: #e6f4f3;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  pointer-events: none;
}

.pr-step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e8f7f6;
  color: var(--pr-teal-dark);
  font-size: 20px;
  line-height: 1;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.pr-step-card:hover .pr-step-card__icon {
  background: rgba(73, 150, 156, 0.18);
  color: #8fd4cf;
}

.pr-step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pr-ink);
  margin: 0;
  letter-spacing: -0.005em;
  transition: color 0.3s ease;
}

.pr-step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-text);
  margin: 0;
  transition: color 0.3s ease;
}

.pr-profile {
  background: #fff;
  padding: 100px 0;
}

.pr-profile-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(8, 32, 48, 0.28);
}

.pr-profile-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(73, 150, 156, 0.18), transparent 55%),
    linear-gradient(135deg, var(--pr-bg-dark) 0%, var(--pr-bg-dark-2) 100%);
  color: #ffffff;
}

.pr-profile-card__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pr-teal-soft);
  color: var(--pr-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.pr-profile-card__id {
  flex: 1;
  min-width: 0;
}

.pr-profile-card__id h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}

.pr-profile-card__id p {
  font-size: 13px;
  color: var(--pr-text-light);
  margin: 0 0 8px;
  line-height: 1.4;
}

.pr-profile-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(73, 150, 156, 0.18);
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pr-teal);
  letter-spacing: 0.1px;
}

.pr-profile-card__verified i {
  font-size: 13px;
  line-height: 1;
}

.pr-profile-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 24px 24px 16px;
  background: #ffffff;
}

.pr-profile-card__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 18px 12px;
  background: var(--pr-bg-cream);
  border: 1px solid rgba(73, 150, 156, 0.1);
  border-radius: var(--pr-radius-sm);
}

.pr-profile-card__stat-num {
  font-size: 34px;
  line-height: 1;
  color: var(--pr-ink-2);
  font-weight: 400;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  letter-spacing: -0.01em;
}

.pr-profile-card__stat-unit {
  font-size: 20px;
  color: var(--pr-teal-dark);
  margin-left: 1px;
}

.pr-profile-card__stat-label {
  font-size: 12px;
  color: var(--pr-muted);
  letter-spacing: 0.1px;
  font-weight: 400;
}

.pr-profile-card__section {
  margin: 4px 24px 16px;
  padding: 18px 22px;
  background: var(--pr-bg-cream);
  border: 1px solid rgba(73, 150, 156, 0.1);
  border-radius: var(--pr-radius-sm);
}

.pr-profile-card__section-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--pr-teal-dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pr-profile-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pr-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: #ffffff;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pr-ink);
}

.pr-chip--accent {
  background: var(--pr-teal-soft);
  border-color: rgba(73, 150, 156, 0.45);
  color: var(--pr-teal-dark);
  font-weight: 600;
}

.pr-profile-card__match {
  margin: 0 24px 24px;
  padding: 14px 22px;
  background: var(--pr-teal-soft);
  border: 1px solid rgba(73, 150, 156, 0.2);
  border-radius: var(--pr-radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.pr-profile-card__match-head {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-teal-dark);
  letter-spacing: 0.1px;
}

.pr-profile-card__match-bar {
  position: relative;
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  overflow: hidden;
}

.pr-profile-card__match-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pr-teal-dark), var(--pr-teal));
  border-radius: 999px;
}

.pr-profile-card__match-pct {
  flex-shrink: 0;
  font-size: 22px;
  color: var(--pr-teal-dark);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.pr-profile-shot {
  width: 700px;
  margin: 0 auto;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-lg);
  overflow: hidden;
  height: 550px;
}

.pr-profile-shot__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pr-stories {
  background: var(--pr-bg-cream);
  padding: 100px 0;
}

.pr-stories__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.pr-story-card {
  position: relative;
  padding: 26px 32px;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pr-story-card:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -28px rgba(8, 32, 48, 0.25);
}

.pr-story-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: var(--pr-font-display);
  font-style: italic;
  font-size: 44px;
  color: rgba(73, 150, 156, 0.22);
  line-height: 1;
  pointer-events: none;
}

.pr-story-card__stars {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: #f5b700;
  margin-bottom: 14px;
}

.pr-story-card__quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-ink-2);
  margin: 0 0 18px;
  font-style: italic;
}

.pr-story-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pr-line);
}

.pr-story-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.pr-story-card__avatar {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pr-teal-soft);
  color: var(--pr-teal-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.pr-story-card__author > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pr-story-card__author strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-ink);
  line-height: 1.2;
}

.pr-story-card__author span {
  font-size: 12px;
  color: var(--pr-muted);
  line-height: 1.4;
}

.pr-pricing {
  background: var(--pr-bg-alt);
  padding: 100px 0;
}

.pr-pricing__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}

.pr-plan {
  position: relative;
  padding: 32px 34px;
  background: var(--pr-card);
  border: 1px solid var(--pr-line);
  border-radius: var(--pr-radius-md);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pr-plan:hover {
  border-color: rgba(73, 150, 156, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -32px rgba(8, 32, 48, 0.25);
}

.pr-plan__eyebrow {
  margin-bottom: 16px;
}

.pr-plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(73, 150, 156, 0.18);
  border: 1px solid rgba(73, 150, 156, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--pr-teal);
  margin-bottom: 16px;
}

.pr-plan__badge span {
  font-size: 8px;
  line-height: 1;
}

.pr-plan__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--pr-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.pr-plan__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-text);
  margin: 0 0 22px;
}

.pr-plan__features {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--pr-ink);
}

.pr-plan__features li i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pr-teal-soft);
  color: var(--pr-teal-dark);
  border-radius: 50%;
  font-size: 12px;
  margin-top: 1px;
}

.pr-plan__cta {
  width: 100%;
}

.pr-cta {
  background: #ffffff;
  padding: 80px 0 100px;
}

.pr-cta__card {
  position: relative;
  margin: 0 auto;
  max-width: 880px;
  padding: 70px 24px;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(73, 150, 156, 0.18),
      transparent 60%
    ),
    linear-gradient(135deg, var(--pr-bg-dark) 0%, var(--pr-bg-dark-3) 100%);
  border-radius: var(--pr-radius-lg);
  text-align: center;
  overflow: hidden;
  color: #ffffff;
}

.pr-cta__rings {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 30%,
    transparent 80%
  );
  pointer-events: none;
}

.pr-cta__inner {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.pr-cta__inner .pr-display {
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 48px);
  margin-bottom: 18px;
}

.pr-cta__inner .pr-display em {
  color: var(--pr-teal);
}

.pr-cta__sub {
  margin: 0 auto 28px;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--pr-text-light);
}

.pr-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pr-plan--pro {
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(73, 150, 156, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--pr-bg-dark) 0%, var(--pr-bg-dark-2) 100%);
  border-color: transparent;
  color: #ffffff;
}

.pr-plan--pro .pr-plan__title {
  color: #ffffff;
}

.pr-plan--pro .pr-plan__desc {
  color: var(--pr-text-light);
}

.pr-plan--pro .pr-plan__features li {
  color: #ffffff;
}

.pr-plan--pro .pr-plan__features li i {
  background: rgba(73, 150, 156, 0.22);
  color: var(--pr-teal);
}

.error-section {
  width: 100%;
  text-align: center;
  background-image:
    radial-gradient(
      circle at 50% 30%,
      rgba(27, 160, 170, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size:
    100% 100%,
    40px 40px,
    40px 40px;
  background-color: #03141e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-direction: column;
}

/* Upper Image Section */
.error-image-container {
  position: relative;
  margin-bottom: 0px;
  display: inline-block;
}

/* Floating SVG Animation */
.illustration-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0px 15px 30px rgba(0, 240, 255, 0.15));
  animation: floatAnimation 4s ease-in-out infinite;
  width: 400px;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Lower Text Section */
.error-text-container {
  padding: 0 15px;
}

.page-badge {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.page-badge::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
}

.error-code {
  font-size: 130px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #ffffff 60%, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.error-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.error-desc {
  color: #8fa0ac;
  font-size: 18px;
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

/* Buttons CSS */
.btn-group-custom {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 33px;
}

.btn-teal-filled {
  background: var(--surg-teal);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--surg-teal);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(27, 160, 170, 0.3);
  text-decoration: none;
  border-radius: 36px;
}

.btn-teal-filled:hover {
  background: var(--surg-teal-dark);
  border-color: var(--surg-teal-dark);
  color: #ffffff;
  transform: scale(1.05);
}

.btn-teal-outline {
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-teal-outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  transform: translateY(-2px);
}

.error-image-container img {
  max-width: 400px;
}

/* ==========================================================================
   Decision Guide Hero — Mock Care Plan Card
   ========================================================================== */
.dg-hero__right-preview {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
}

.dg-preview-stack {
  position: relative;
  width: 100%;
  min-height: auto;
  padding-right: 0px;
  padding-bottom: 16px;
}

.dg-preview-card--stack {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background: #ffffff;
  border: 1px solid #edf2f7;
  padding: 10px;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dg-preview-card--stack-1 {
  z-index: 2;
  transform: translate(8px, 8px);
}

.dg-preview-card--stack-2 {
  z-index: 1;
  transform: translate(14px, 14px);
}

.dg-preview-card {
  width: 100%;
  border-radius: 16px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  box-shadow:
    0 10px 20px rgba(73, 150, 156, 0.03),
    0 2px 4px rgba(73, 150, 156, 0.02);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.dg-preview-card--main {
  position: relative;
  width: 100%;
  background: #ffffff;
  z-index: 3;
  /* box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16); */
  box-shadow:
    0 10px 20px rgba(73, 150, 156, 0.03),
    0 2px 4px rgba(73, 150, 156, 0.02);
  border: 1px solid #edf2f7;
  overflow: visible;
  padding: 10px;
}

.dg-preview-card__inner {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

/* Floating badge */
.dg-preview-badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0f2942;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  z-index: 10;
}

.dg-preview-badge i {
  font-size: 14px;
  color: #0d9488;
}

/* Card Header */
.dg-preview-header {
  position: relative;
  border-radius: 15px 15px 0 0;
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(120deg, #2f8f9d 0%, #49969c 55%, #5bbfb6 100%);
  color: #ffffff;
  isolation: isolate;
  text-align: left;
}

.dg-preview-header-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: 0;
  pointer-events: none;
}

.dg-preview-header-shape--1 {
  width: 160px;
  height: 160px;
  top: -60px;
  right: -40px;
}

.dg-preview-header-shape--2 {
  width: 90px;
  height: 90px;
  bottom: -40px;
  right: 120px;
  background: rgba(255, 255, 255, 0.08);
}

.dg-preview-header-shape--3 {
  width: 50px;
  height: 50px;
  top: 30px;
  right: 200px;
  background: rgba(255, 255, 255, 0.18);
}

.dg-preview-header-spark {
  position: absolute;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}

.dg-preview-header-spark--1 {
  top: 18px;
  right: 50px;
  transform: rotate(15deg);
  font-size: 16px !important;
}

.dg-preview-header-spark--2 {
  bottom: 18px;
  right: 15px;
  transform: rotate(-12deg);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px !important;
}

.dg-preview-header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
}

.dg-preview-header-mark {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.dg-preview-header-mark i {
  color: #ffffff;
  font-size: 14px !important;
}

.dg-preview-header-brand {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.dg-preview-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.4px;
  backdrop-filter: blur(4px);
  margin-left: 2px;
  color: #ffffff;
}

.dg-preview-header-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fef0d6;
  box-shadow: 0 0 0 2px rgba(254, 240, 214, 0.3);
}

.dg-preview-header-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
  line-height: 1.15;
  z-index: 2;
  position: relative;
  font-family: inherit;
}

.dg-preview-header-title span {
  color: #fef0d6;
  font-weight: 700;
}

.dg-preview-header-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 400;
  line-height: 1.45;
  z-index: 2;
  position: relative;
}

.dg-preview-header-sub strong {
  font-weight: 700;
  color: #ffffff;
}

/* Card Body */
.dg-preview-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #ffffff;
  text-align: left;
}

.dg-preview-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-preview-section__title {
  font-size: 15px;
  font-weight: 700;
  color: #0f2942;
  margin: 0;
}

.dg-preview-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dg-preview-summary-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dg-preview-summary-list i {
  color: #49969c;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.dg-preview-skeleton {
  height: 10px;
  background: #cbd5e1;
  border-radius: 999px;
  opacity: 0.35;
}

.dg-preview-skeleton--w-90 {
  width: 85%;
}

.dg-preview-skeleton--w-75 {
  width: 70%;
}

.dg-preview-skeleton--w-60 {
  width: 55%;
}

/* Conditions Section */
.dg-preview-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dg-preview-view-all {
  font-size: 13px;
  font-weight: 600;
  color: #49969c;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.dg-preview-view-all:hover {
  opacity: 0.8;
}

.dg-preview-conditions-box {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dg-preview-condition-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.dg-preview-condition-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f7f6;
  color: #49969c;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dg-preview-condition-name {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  width: 140px;
  text-align: left;
  flex-shrink: 0;
}

.dg-preview-match-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-align: center;
  flex-shrink: 0;
  min-width: 96px;
}

.dg-preview-match-badge--high {
  background: #dcfce7;
  color: #15803d;
}

.dg-preview-match-badge--medium {
  background: #dbeafe;
  color: #1d4ed8;
}

.dg-preview-match-badge--low {
  background: #f3e8ff;
  color: #7c3aed;
}

.dg-preview-progress-track {
  flex: 1;
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.dg-preview-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6bbfb6 0%, #2f8f9d 100%);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.dg-preview-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: dg-shimmer 2s infinite linear;
}

@keyframes dg-shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* Footer Tabs */
.dg-preview-footer {
  display: flex;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.dg-preview-tab {
  flex: 1;
  padding: 12px 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  text-decoration: none !important;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.dg-preview-tab i {
  font-size: 15px;
  line-height: 1;
  color: inherit;
}

.dg-preview-tab:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

.dg-preview-tab--active {
  color: #0f2942;
  border-bottom-color: #0d9488;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .dg-preview-stack {
    margin-top: 30px;
  }
}
