:root {
  --page: #fbfdfc;
  --hero: #e9fbf1;
  --hero-soft: #f4fffa;
  --section: #f5f6fb;
  --card: #ffffff;
  --text: #33414b;
  --heading: #2f3d48;
  --muted: #5f6874;
  --soft: #8a949f;
  --green: #29ad68;
  --green-dark: #167a4b;
  --green-soft: #e6f8ee;
  --blue: #0b73d9;
  --border: #dce3e8;
  --shadow: 0 14px 34px rgba(32, 44, 54, 0.1);
  --radius: 8px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }
  50% {
    box-shadow: 0 20px 46px rgba(41, 173, 104, 0.22), 0 10px 24px rgba(32, 44, 54, 0.09);
  }
}

@keyframes scanLens {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  45% {
    transform: translate3d(-14px, -8px, 0) rotate(-4deg);
  }
  70% {
    transform: translate3d(8px, 6px, 0) rotate(3deg);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes activityMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(41, 173, 104, 0.2);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 0 0 12px rgba(41, 173, 104, 0);
  }
}

@keyframes reportScan {
  from {
    transform: translateX(-40%);
  }
  to {
    transform: translateX(140%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--page);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.has-scrolled .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(195, 204, 211, 0.9);
  box-shadow: 0 14px 32px rgba(32, 44, 54, 0.08);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #edf0f2;
  backdrop-filter: blur(16px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #242b31;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 900;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a,
.login-button,
.language-trigger,
.language-option,
.country-trigger,
.country-menu button,
.search-button,
.metrics-grid article,
.coverage-grid article,
.reason-grid article,
.signals-list article,
.faq-grid details {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 220ms ease;
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-trigger {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 12px;
  background: #f7f8fa;
  cursor: pointer;
  font-weight: 850;
}

.language-trigger:hover,
.language-picker.is-open .language-trigger {
  border-color: rgba(9, 122, 83, 0.3);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 48, 60, 0.1);
}

.language-current-flag,
.language-option-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1;
}

.language-current-name {
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-current-code {
  display: none;
}

.language-chevron {
  width: 8px;
  height: 8px;
  margin-inline: 2px 1px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.language-picker.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: 252px;
  max-height: min(520px, calc(100vh - 100px));
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(203, 214, 220, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(27, 43, 54, 0.18);
  backdrop-filter: blur(18px);
  animation: language-menu-in 160ms ease both;
}

.language-menu-heading {
  padding: 8px 10px 10px;
  color: #7a8790;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-option {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 6px 9px;
  color: var(--heading);
  border-radius: 12px;
  text-decoration: none;
}

.language-option:hover,
.language-option:focus-visible {
  outline: 0;
  color: var(--green-dark);
  background: #edf9f3;
}

.language-option.is-selected {
  color: var(--green-dark);
  background: #e7f7ef;
}

.language-option-flag {
  font-size: 1.2rem;
  text-align: center;
}

.language-option-copy {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.language-option-copy strong {
  overflow: hidden;
  font-size: 0.91rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-option-copy small {
  color: #8a959d;
  font-size: 0.7rem;
  font-weight: 900;
}

.language-option-check {
  color: var(--green-dark);
  font-weight: 950;
  text-align: center;
}

@keyframes language-menu-in {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.login-button {
  min-width: 98px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f1317;
  background: #f0f1f4;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
}

.login-button:hover,
.account-chip:not(.is-disabled):hover {
  color: var(--green-dark);
  border-color: rgba(9, 122, 83, 0.28);
  background: #eefaf4;
}

.account-chip {
  max-width: min(280px, 32vw);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #f7f8fa;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.account-chip.is-disabled {
  cursor: default;
  color: var(--heading);
  pointer-events: none;
  user-select: text;
}

.account-chip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--green-dark);
}

.account-chip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-section {
  min-height: clamp(580px, calc(100vh - 150px), 650px);
  display: flex;
  align-items: center;
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 73% 38%, rgba(41, 173, 104, 0.22), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--hero) 46%, #ffffff 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: 58px;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--heading);
  font-size: clamp(2.72rem, 4.55vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
  opacity: 0;
  animation: heroFadeUp 700ms ease forwards;
}

.hero-copy h1 span,
.section-center h2 span {
  color: var(--green);
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.55;
  opacity: 0;
  animation: heroFadeUp 700ms ease 110ms forwards;
}

.lookup-form {
  max-width: 700px;
  min-height: 70px;
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr) 132px;
  align-items: stretch;
  margin-top: 34px;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f7f7f8;
  box-shadow: 0 10px 24px rgba(43, 60, 72, 0.08);
  opacity: 0;
  transition: border-color 220ms ease, box-shadow 240ms ease, transform 220ms ease;
  animation: heroFadeUp 720ms ease 220ms forwards;
}

.lookup-form:focus-within {
  border-color: rgba(41, 173, 104, 0.42);
  box-shadow: 0 16px 34px rgba(41, 173, 104, 0.14), 0 10px 24px rgba(43, 60, 72, 0.08);
  transform: translateY(-1px);
}

.country-field,
.phone-field {
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.country-field {
  z-index: 30;
  border-right: 1px solid #e4e8ec;
}

.country-trigger {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  color: var(--heading);
  border: 0;
  background: transparent;
  padding: 0 16px;
  font-weight: 800;
  cursor: pointer;
}

.country-trigger:hover {
  background: rgba(41, 173, 104, 0.07);
}

.country-trigger img,
.country-menu img {
  width: 26px;
  height: 18px;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(20, 30, 40, 0.08);
}

.country-trigger span,
.country-menu span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-trigger strong,
.country-menu strong {
  color: var(--muted);
  font-size: 0.96rem;
}

.country-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--soft);
}

.country-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 80;
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 18px 38px rgba(32, 44, 54, 0.16);
  transform-origin: top left;
}

.country-menu:not([hidden]) {
  animation: dropdownIn 180ms ease both;
}

.country-search {
  min-height: 44px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  border: 1px solid #dfe7ec;
  border-radius: 9px;
  background: #f8fafb;
  padding: 0 10px;
}

.country-search svg {
  width: 17px;
  height: 17px;
  color: var(--soft);
}

.country-search input {
  width: 100%;
  min-width: 0;
  color: var(--heading);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.94rem;
  font-weight: 700;
}

.country-search input::placeholder {
  color: #929ca7;
}

.country-options {
  max-height: 258px;
  overflow-y: auto;
}

.country-menu button {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 0 10px;
  color: var(--heading);
  text-align: left;
  font-weight: 750;
  cursor: pointer;
}

.country-menu button:hover,
.country-menu button.is-active {
  background: var(--green-soft);
}

.phone-field {
  display: grid;
  gap: 2px;
  padding: 9px 16px 8px;
}

.phone-field span {
  color: #555d67;
  font-size: 0.86rem;
  font-weight: 700;
}

.phone-field input {
  width: 100%;
  color: var(--heading);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
}

.phone-field input::placeholder {
  transition: color 180ms ease;
}

.phone-field:focus-within span {
  color: var(--green-dark);
}

.phone-field:focus-within input::placeholder {
  color: #aab3bd;
}

.search-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: #ffffff;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  padding: 0 26px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.lookup-form .search-button {
  align-self: center;
  margin-right: 6px;
}

.search-button:hover,
.primary-link:hover {
  background: var(--green-dark);
  box-shadow: 0 12px 24px rgba(41, 173, 104, 0.24);
  transform: translateY(-1px);
}

.search-button:active,
.primary-link:active {
  transform: translateY(0) scale(0.98);
}

.form-error {
  min-height: 24px;
  margin: 10px 0 0;
  color: #b91c1c;
  font-weight: 800;
}

.trust-row {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  opacity: 0;
  animation: heroFadeUp 700ms ease 340ms forwards;
}

.trust-faces {
  display: flex;
}

.trust-faces span {
  width: 42px;
  height: 42px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  color: #ffffff;
  background: linear-gradient(135deg, #1f8f62, #35c47b);
  border: 3px solid #ffffff;
  border-radius: 50%;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(28, 48, 40, 0.16);
  opacity: 0;
  animation: heroFadeUp 520ms ease 360ms forwards;
}

.trust-faces span::before {
  content: attr(data-initial);
  position: absolute;
  opacity: 0;
}

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

.trust-faces span.photo-fallback::before {
  position: static;
  opacity: 1;
}

.trust-faces span.photo-fallback img {
  display: none;
}

.trust-faces span:nth-child(2) {
  animation-delay: 420ms;
}

.trust-faces span:nth-child(3) {
  animation-delay: 480ms;
}

.trust-faces span:nth-child(4) {
  animation-delay: 540ms;
}

.trust-faces span:nth-child(5) {
  animation-delay: 600ms;
}

.trust-faces span:nth-child(6) {
  animation-delay: 660ms;
}

.trust-faces span:first-child {
  margin-left: 0;
}

.trust-row p {
  margin: 0;
  color: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.hero-visual {
  min-height: 560px;
  position: relative;
  opacity: 0;
  animation: heroFadeUp 760ms ease 260ms forwards;
}

.hero-scroll-scene {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--hero-scroll-shift, 0px), 0) rotate(var(--hero-scroll-tilt, 0deg));
  transform-origin: 52% 48%;
  transition: transform 90ms linear;
  will-change: transform;
}

.profile-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 322px;
  min-height: 86px;
  padding: 18px 24px;
  border: 1.5px solid #5b727c;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(3px);
  animation: softFloat 6.4s ease-in-out infinite;
  will-change: transform;
}

.profile-card.card-main {
  width: 475px;
  min-height: 126px;
  left: 210px;
  top: 170px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  animation: softFloat 6.2s ease-in-out infinite, pulseGlow 5.4s ease-in-out infinite;
}

.card-top {
  left: 280px;
  top: 72px;
  animation-delay: 0.2s;
}

.card-mid {
  left: 280px;
  top: 316px;
  animation-delay: 0.7s;
}

.card-low {
  left: 280px;
  top: 422px;
  animation-delay: 1.05s;
}

.card-bottom {
  left: 280px;
  top: 532px;
  animation-delay: 1.38s;
}

.avatar {
  width: 46px;
  height: 46px;
  position: relative;
  flex: 0 0 auto;
  border: 2px solid #506a76;
  border-radius: 50%;
}

.avatar::before,
.avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #415965;
  border-radius: 50%;
}

.avatar::before {
  top: 7px;
  width: 18px;
  height: 18px;
}

.avatar::after {
  bottom: 7px;
  width: 31px;
  height: 18px;
  border-radius: 18px 18px 8px 8px;
}

.avatar.active {
  width: 72px;
  height: 72px;
  border-color: #4a6570;
}

.avatar.active::before,
.avatar.active::after {
  background: var(--green);
}

.avatar.active::before {
  top: 12px;
  width: 30px;
  height: 30px;
}

.avatar.active::after {
  bottom: 9px;
  width: 48px;
  height: 28px;
}

.profile-card div {
  flex: 1;
  display: grid;
  gap: 10px;
}

.profile-card i {
  display: block;
  height: 6px;
  background: #415965;
}

.profile-card i:nth-child(1) {
  width: 42%;
}

.profile-card i:nth-child(2) {
  width: 92%;
}

.profile-card i:nth-child(3) {
  width: 68%;
}

.profile-card i.green-line {
  width: 44%;
  background: var(--green);
}

.profile-card i.short {
  width: 76%;
}

.check-mark {
  position: absolute;
  top: -18px;
  right: -20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(41, 173, 104, 0.24);
}

.check-mark svg {
  width: 28px;
  height: 28px;
  stroke-width: 4;
}

.magnifier {
  position: absolute;
  right: 64px;
  bottom: 54px;
  width: 108px;
  height: 108px;
  border: 10px solid #3daf74;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.9), 8px 10px 0 rgba(31, 86, 58, 0.13);
  animation: scanLens 6.8s ease-in-out infinite;
  will-change: transform;
}

.magnifier span {
  position: absolute;
  width: 84px;
  height: 14px;
  left: -64px;
  bottom: -30px;
  background: linear-gradient(90deg, #128254, #29ad68);
  border-radius: 10px;
  transform: rotate(-32deg);
  transform-origin: right center;
  box-shadow: 0 7px 0 rgba(31, 86, 58, 0.16);
}

.metrics-strip {
  position: relative;
  z-index: 2;
  background: #ffffff;
  padding: 18px 0;
  border-top: 1px solid rgba(220, 227, 232, 0.75);
}

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

.metrics-grid article {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(220, 227, 232, 0.95);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfc 100%);
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(34, 50, 64, 0.06);
}

.metrics-grid span {
  color: var(--heading);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.metrics-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.activity-band {
  overflow: hidden;
  border-bottom: 1px solid rgba(220, 227, 232, 0.75);
  background: #ffffff;
  padding: 14px 0;
}

.activity-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  animation: activityMarquee 28s linear infinite;
}

.activity-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border: 1px solid #dce6e2;
  border-radius: 999px;
  background: #fbfdfc;
  padding: 8px 16px;
  color: #46525d;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(34, 50, 64, 0.06);
}

.activity-track em {
  font-style: normal;
}

.activity-track svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.trust-strip {
  background: #fbfdfc;
  padding: 44px 0 24px;
}

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

.trust-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  min-height: 168px;
  padding: 26px 28px;
  box-shadow: 0 12px 28px rgba(34, 50, 64, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.trust-grid svg {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 13px;
}

.trust-grid strong {
  display: block;
  color: var(--heading);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
}

.trust-grid article > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.48;
}

.logos-band {
  padding: 66px 0 58px;
  background: #ffffff;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  color: #9aa2aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0.86;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].reveal-pending {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal].is-visible {
  animation: revealUp 680ms ease forwards;
}

.coverage-grid article:hover,
.metrics-grid article:hover,
.trust-grid article:hover,
.process-grid article:hover,
.reason-grid article:hover,
.signals-list article:hover,
.report-preview:hover,
.faq-grid details:hover {
  border-color: rgba(41, 173, 104, 0.28);
  box-shadow: 0 16px 34px rgba(34, 50, 64, 0.1);
  transform: translateY(-3px);
}

.coverage-section,
.report-preview-section,
.process-section,
.signals-section {
  background: #ffffff;
  padding: 92px 0;
}

.why-section,
.faq-section {
  background: var(--section);
  padding: 92px 0;
}

.section-center {
  text-align: center;
}

.section-center h2,
.signals-layout h2,
.faq-layout h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.12;
  font-weight: 900;
}

.section-center p,
.signals-layout p,
.faq-layout p {
  max-width: 760px;
  margin: 28px auto 0;
  color: #565d68;
  font-size: 1.45rem;
  line-height: 1.55;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
}

.coverage-grid article,
.reason-grid article,
.faq-grid details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(34, 50, 64, 0.08);
}

.coverage-grid article {
  padding: 36px 22px;
}

.coverage-grid strong {
  display: block;
  color: var(--green);
  font-size: 2.8rem;
  font-weight: 900;
}

.coverage-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.coverage-map {
  position: relative;
  min-height: 280px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(41, 173, 104, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(41, 173, 104, 0.06) 1px, transparent 1px),
    #fbfdfc;
  background-size: 64px 64px;
  box-shadow: 0 16px 34px rgba(34, 50, 64, 0.08);
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 54px 70px;
  border: 1px dashed rgba(47, 61, 72, 0.16);
  border-radius: 50%;
}

.coverage-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 173, 104, 0.09) 46%, transparent 62%);
  animation: reportScan 7s ease-in-out infinite;
}

.coverage-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  border: 1px solid rgba(41, 173, 104, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(34, 50, 64, 0.11);
  transform: translate(-50%, -50%);
  animation: mapPulse 4.8s ease-in-out infinite;
}

.coverage-map span:nth-child(2n) {
  animation-delay: 0.8s;
}

.coverage-map span:nth-child(3n) {
  animation-delay: 1.4s;
}

.report-preview-section {
  background: var(--section);
}

.report-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 58px;
  align-items: center;
}

.report-copy h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.12;
  font-weight: 900;
}

.report-copy h2 span,
.process-section h2 span {
  color: var(--green);
}

.report-copy p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.62;
}

.report-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(34, 50, 64, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.report-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 173, 104, 0.08) 42%, transparent 60%);
  animation: reportScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.preview-header,
.preview-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.preview-header {
  padding: 22px 24px;
  border-bottom: 1px solid #e5eaee;
  color: var(--heading);
}

.preview-header span {
  font-weight: 900;
}

.preview-header strong {
  font-size: 1.08rem;
}

.preview-row {
  min-height: 62px;
  padding: 16px 24px;
  border-bottom: 1px solid #eef1f3;
}

.preview-row:last-child {
  border-bottom: 0;
}

.preview-row:nth-child(even) {
  background: #f8faf9;
}

.preview-row span {
  color: var(--heading);
  font-weight: 850;
}

.preview-row b {
  color: #2f3d48;
  font-size: 0.98rem;
}

.preview-row svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.locked {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(41, 173, 104, 0.22);
  border-radius: 999px;
  background: rgba(230, 248, 238, 0.9);
  padding: 6px 12px;
  color: var(--green-dark) !important;
  filter: blur(0.2px);
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  text-align: left;
}

.process-grid article {
  position: relative;
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(34, 50, 64, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.process-grid article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(47, 61, 72, 0.16);
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
}

.process-grid svg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 12px;
}

.process-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--heading);
  font-size: 1.22rem;
  font-weight: 900;
}

.process-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 46px;
  text-align: left;
}

.reason-grid article {
  min-height: 260px;
  padding: 34px;
}

.reason-grid span {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  border: 3px solid #dc6d00;
  border-left-color: #4b1f52;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.reason-grid p {
  margin: 26px 0 0;
  color: var(--heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.55;
}

.signals-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.signals-layout p,
.faq-layout p {
  margin-left: 0;
}

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

.signals-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(34, 50, 64, 0.07);
}

.signals-list svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.signals-list span {
  color: var(--heading);
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  padding: 22px 24px;
}

.faq-grid summary {
  color: var(--heading);
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer {
  background: #f7f7f8;
  padding: 50px 0 42px;
}

.footer-topline {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d8dde2;
  color: #585f69;
  font-weight: 700;
}

.footer-topline a {
  text-decoration: none;
}

.footer-topline span {
  width: 1px;
  background: #c9ced4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1.28fr 0.9fr 0.9fr;
  gap: 54px;
  padding: 26px 0 42px;
  border-bottom: 1px solid #d8dde2;
}

.footer-grid h3 {
  margin: 0 0 24px;
  color: #4c525c;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 18px;
  color: #565d68;
  text-decoration: none;
  font-size: 1.05rem;
}

.footer-brand p {
  margin: 30px 0 0;
  color: #5d646e;
  line-height: 1.55;
}

.support-pill {
  width: max-content;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 16px;
  box-shadow: 0 7px 20px rgba(34, 50, 64, 0.08);
}

.support-pill svg {
  width: 18px;
  height: 18px;
}

.legal-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 46px;
  align-items: end;
  padding-top: 38px;
}

.legal-note p {
  margin: 0;
  color: #565d68;
  font-size: 0.98rem;
  line-height: 1.55;
}

.footer-language {
  display: grid;
  gap: 6px;
  border-radius: var(--radius);
  background: #f0f1f3;
  padding: 14px 16px;
}

.footer-language > span {
  color: #666d76;
  font-size: 0.9rem;
}

.footer-language .language-picker,
.footer-language .language-trigger {
  width: 100%;
}

.footer-language .language-trigger {
  justify-content: flex-start;
  background: #ffffff;
}

.footer-language .language-chevron {
  margin-inline-start: auto;
}

.footer-language .language-menu {
  top: auto;
  bottom: calc(100% + 10px);
}

[hidden] {
  display: none !important;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .signals-layout,
html[dir="rtl"] .faq-layout,
html[dir="rtl"] .reason-grid,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .legal-note {
  text-align: right;
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 40px, 1040px);
  }

  .hero-grid,
  .signals-layout,
  .faq-layout,
  .report-preview-layout,
  .legal-note {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .profile-card.card-main {
    left: 120px;
  }

  .card-top,
  .card-mid,
  .card-low,
  .card-bottom {
    left: 180px;
  }

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

  .report-preview-layout {
    gap: 34px;
  }
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 46px 0 62px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .hero-copy p,
  .section-center p,
  .signals-layout p,
  .faq-layout p {
    font-size: 1.08rem;
  }

  .lookup-form,
  .metrics-grid,
  .coverage-grid,
  .trust-grid,
  .process-grid,
  .reason-grid,
  .signals-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .lookup-form {
    grid-template-columns: 124px minmax(0, 1fr);
    padding: 8px;
    overflow: visible;
  }

  .country-field {
    min-height: 58px;
    position: static;
    border-right: 1px solid #e4e8ec;
    border-bottom: 1px solid #e4e8ec;
  }

  .phone-field {
    min-height: 58px;
    border-bottom: 1px solid #e4e8ec;
    padding: 7px 12px 6px;
  }

  .country-trigger {
    min-height: 58px;
    grid-template-columns: 26px auto 16px;
    gap: 7px;
    padding: 0 10px;
  }

  .country-trigger span {
    display: none;
  }

  .country-trigger strong {
    font-size: 0.9rem;
  }

  .phone-field span {
    font-size: 0.78rem;
  }

  .phone-field input {
    font-size: 1rem;
  }

  .country-menu {
    top: 70px;
    left: 8px;
    right: 8px;
    width: auto;
  }

  .lookup-form .search-button {
    grid-column: 1 / -1;
    width: 100%;
    margin: 0;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    display: none;
  }

  .logos-row,
  .footer-topline {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .reason-grid {
    gap: 18px;
  }

  .reason-grid article {
    min-height: 0;
  }

  .activity-track {
    animation-duration: 22s;
  }

  .metrics-strip {
    padding: 14px 0;
  }

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

  .coverage-map {
    min-height: 220px;
  }

  .report-preview-layout {
    grid-template-columns: 1fr;
  }

  .report-preview {
    width: 100%;
  }

  .preview-header,
  .preview-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .process-grid article {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1040px);
  }

  .brand span {
    font-size: 1.25rem;
  }

  .header-inner,
  .header-actions {
    gap: 8px;
  }

  .language-picker {
    min-width: 72px;
  }

  .language-trigger {
    width: 72px;
    min-height: 42px;
    justify-content: center;
    gap: 6px;
    padding: 0 8px;
  }

  .language-current-name {
    display: none;
  }

  .language-current-code {
    display: inline;
    font-size: 0.82rem;
  }

  .language-menu {
    width: min(278px, calc(100vw - 28px));
    border-radius: 15px;
  }

  .login-button {
    min-width: 76px;
    min-height: 42px;
  }

  .account-chip {
    max-width: 40vw;
    min-height: 42px;
    padding: 0 10px;
  }

  .section-center h2,
  .signals-layout h2,
  .faq-layout h2,
  .report-copy h2 {
    font-size: 2rem;
  }

  .coverage-section,
  .report-preview-section,
  .process-section,
  .why-section,
  .signals-section,
  .faq-section {
    padding: 62px 0;
  }

  .trust-strip {
    padding-top: 28px;
  }

  .trust-grid article {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 0;
    column-gap: 14px;
    padding: 18px;
  }

  .trust-grid svg {
    width: 40px;
    height: 40px;
  }

  .reason-grid article {
    padding: 20px;
  }

  .reason-grid span {
    width: 48px;
    height: 48px;
  }

  .reason-grid p {
    margin-top: 16px;
    font-size: 1.05rem;
  }

  .activity-track span {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.84rem;
  }

  .metrics-grid {
    gap: 8px;
  }

  .metrics-grid article {
    min-height: 78px;
    padding: 13px 12px;
  }

  .metrics-grid span {
    font-size: 1.36rem;
  }

  .metrics-grid p {
    font-size: 0.8rem;
  }

  .lookup-form {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .country-trigger {
    grid-template-columns: 26px auto 16px;
    gap: 6px;
    padding: 0 8px;
  }

  .country-trigger strong {
    font-size: 0.96rem;
  }

  .phone-field {
    padding-left: 10px;
    padding-right: 10px;
  }

  .coverage-map {
    margin-top: 26px;
    min-height: 190px;
  }

  .coverage-map::before {
    inset: 44px 30px;
  }

  .coverage-map span {
    min-width: 48px;
    height: 32px;
    font-size: 0.84rem;
  }

  .report-copy p {
    font-size: 1rem;
  }

  .preview-header,
  .preview-row {
    gap: 9px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .preview-row {
    min-height: 58px;
  }

  .preview-row b {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-copy h1,
  .hero-copy p,
  .lookup-form,
  .trust-row,
  .hero-visual,
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .profile-card,
  .profile-card.card-main,
  .magnifier,
  .activity-track,
  .coverage-map::after,
  .coverage-map span,
  .report-preview::before {
    animation: none !important;
  }
}

/* 2026 landing experience: product-led motion and transparent report story */
:root {
  --page-progress: 0;
  --ink: #17272f;
  --green-bright: #23c875;
}

.scroll-progress {
  width: 100%;
  height: 3px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright));
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(35, 200, 117, 0.45);
}

html[dir="rtl"] .scroll-progress span {
  transform-origin: right center;
}

.hero-section {
  min-height: clamp(660px, calc(100vh - 68px), 790px);
  position: relative;
  isolation: isolate;
  padding: 62px 0 68px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(239, 255, 247, 0.84)),
    radial-gradient(circle at 18% 20%, rgba(35, 200, 117, 0.14), transparent 29%),
    radial-gradient(circle at 82% 45%, rgba(41, 173, 104, 0.22), transparent 34%),
    #ffffff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.38;
  background-image: radial-gradient(rgba(22, 122, 75, 0.18) 0.8px, transparent 0.8px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent 3%, #000 34%, transparent 94%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(41, 173, 104, 0.14);
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
  animation: softFloat 8s ease-in-out infinite;
}

.hero-orb-one {
  width: 360px;
  height: 360px;
  top: 8%;
  right: 7%;
  background: rgba(213, 250, 231, 0.45);
}

.hero-orb-two {
  width: 180px;
  height: 180px;
  left: -55px;
  bottom: 6%;
  background: rgba(230, 248, 238, 0.7);
  animation-delay: 1.2s;
}

.hero-grid {
  width: min(1260px, calc(100% - 64px));
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: clamp(36px, 5vw, 76px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-eyebrow {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(22, 122, 75, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  padding: 9px 14px;
  color: #40505a;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(34, 64, 50, 0.07);
  opacity: 0;
  animation: heroFadeUp 650ms ease 40ms forwards;
}

.hero-eyebrow > span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(35, 200, 117, 0.13);
  animation: mapPulse 3s ease-in-out infinite;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(3.15rem, 5.15vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.hero-copy h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(100deg, #116c45 5%, #28c978 82%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 670px;
  color: #4a5b65;
  font-size: clamp(1.08rem, 1.65vw, 1.32rem);
}

.hero-message-capability {
  max-width: 735px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
  border: 1px solid rgba(24, 153, 88, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 11px;
  box-shadow: 0 12px 30px rgba(25, 91, 60, 0.07);
  opacity: 0;
  animation: heroFadeUp 700ms ease 170ms forwards;
}

.message-capability-mark,
.hero-chat-head > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 11px;
  background: linear-gradient(145deg, #168354, #27bb70);
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(22, 131, 84, 0.2);
}

.hero-message-capability > div {
  min-width: 0;
}

.hero-message-capability strong {
  display: block;
  color: var(--heading);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-message-capability em,
.hero-chat-head em {
  display: grid;
  place-items: center;
  min-height: 26px;
  border: 1px solid rgba(118, 86, 199, 0.18);
  border-radius: 8px;
  background: rgba(118, 86, 199, 0.09);
  color: #6247ab;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
}

.hero-message-capability + .lookup-form {
  margin-top: 14px;
}

.lookup-form {
  max-width: 735px;
  min-height: 78px;
  grid-template-columns: 250px minmax(190px, 1fr) 136px;
  margin-top: 30px;
  border-color: rgba(44, 65, 75, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 22px 60px rgba(22, 74, 51, 0.13), 0 5px 16px rgba(34, 50, 64, 0.06);
  backdrop-filter: blur(14px);
}

.country-trigger {
  min-height: 76px;
}

.lookup-form .search-button {
  border-radius: 13px;
  background: linear-gradient(135deg, #168354, #27bb70);
  box-shadow: 0 10px 20px rgba(26, 151, 91, 0.22);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 2px;
  opacity: 0;
  animation: heroFadeUp 700ms ease 310ms forwards;
}

.hero-assurances > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #51616a;
  font-size: 0.82rem;
  font-weight: 750;
}

.hero-assurances i {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 50%;
  background: rgba(35, 200, 117, 0.13);
  font-size: 0.72rem;
  font-style: normal;
}

.trust-row {
  margin-top: 18px;
}

.trust-row p {
  max-width: 330px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-visual {
  min-height: 590px;
  border-radius: 44% 56% 50% 50% / 48% 42% 58% 52%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.92), rgba(215, 251, 232, 0.2) 57%, transparent 72%);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 70px 10px;
  border: 1px dashed rgba(22, 122, 75, 0.19);
  border-radius: 50%;
  animation: scanLens 12s ease-in-out infinite;
}

.hero-visual::after {
  inset: 120px 60px;
  border-style: solid;
  opacity: 0.5;
  animation-direction: reverse;
}

.profile-card {
  z-index: 2;
  border-color: rgba(54, 83, 92, 0.46);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 36px rgba(27, 61, 47, 0.08);
  backdrop-filter: blur(12px);
}

.profile-card.card-main {
  z-index: 4;
  left: 58px;
  top: 190px;
  width: min(480px, calc(100% - 34px));
  border-color: rgba(22, 122, 75, 0.36);
}

.hero-chat-preview {
  width: min(430px, calc(100% - 58px));
  min-height: 190px;
  position: absolute;
  z-index: 5;
  top: 338px;
  left: 92px;
  overflow: hidden;
  border: 1px solid rgba(22, 122, 75, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  box-shadow: 0 24px 52px rgba(22, 74, 51, 0.14);
  backdrop-filter: blur(16px);
  animation: heroChatFloat 6.2s ease-in-out infinite;
}

.hero-chat-head {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 10px;
}

.hero-chat-head > span {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 0.74rem;
}

.hero-chat-head strong {
  overflow: hidden;
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-chat-bubbles {
  display: grid;
  gap: 7px;
  margin: 14px 0;
}

.hero-chat-bubbles i {
  width: 61%;
  height: 12px;
  display: block;
  border-radius: 9px 9px 9px 3px;
  background: #e7eeeb;
  animation: chatBubbleSignal 4.2s ease-in-out infinite;
}

.hero-chat-bubbles i:nth-child(2) {
  width: 74%;
  margin-left: auto;
  border-radius: 9px 9px 3px 9px;
  background: rgba(41, 173, 104, 0.26);
  animation-delay: 520ms;
}

.hero-chat-bubbles i:nth-child(3) { width: 49%; animation-delay: 1.04s; }

.hero-chat-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.hero-chat-stages span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #68757d;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-chat-stages b {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  border-radius: 50%;
  background: var(--green-dark);
  font-size: 0.58rem;
}

.card-top { left: 112px; top: 68px; }
.card-mid { left: 135px; top: 350px; }
.card-low { left: 74px; top: 458px; }
.card-bottom { display: none; }

.visual-signal {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 220px;
  border: 1px solid rgba(22, 122, 75, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px 10px 10px;
  color: #38505a;
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(26, 73, 52, 0.13);
  backdrop-filter: blur(12px);
  animation: softFloat 5.8s ease-in-out infinite;
}

.visual-signal > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
}

.signal-carrier { top: 130px; left: 0; animation-delay: 0.5s; }
.signal-trust { right: 0; bottom: 96px; animation-delay: 1.1s; }

.magnifier {
  z-index: 7;
  right: 10px;
  bottom: 46px;
  box-shadow: 0 24px 50px rgba(20, 92, 58, 0.19);
}

@keyframes heroChatFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.25deg); }
  50% { transform: translate3d(0, -9px, 0) rotate(0.35deg); }
}

@keyframes chatBubbleSignal {
  0%, 100% { opacity: 0.48; transform: scaleX(0.92); transform-origin: left; }
  45%, 70% { opacity: 1; transform: scaleX(1); }
}

.trust-strip {
  position: relative;
  padding: 70px 0 82px;
  background: #ffffff;
}

.trust-grid article {
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(34, 50, 64, 0.07);
}

.report-story-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: 84px;
  padding: 112px 0;
  background:
    radial-gradient(circle at 82% 24%, rgba(41, 173, 104, 0.14), transparent 28%),
    linear-gradient(180deg, #f4faf7, #ffffff);
}

.report-story-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.report-story-copy {
  position: sticky;
  top: 130px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-story-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.report-story-copy > p {
  margin: 24px 0 0;
  color: #596973;
  font-size: 1.13rem;
  line-height: 1.7;
}

.report-limit-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 30px;
  border: 1px solid rgba(22, 122, 75, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 17px;
}

.report-limit-note > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border-radius: 50%;
  background: var(--green-dark);
  font-family: Georgia, serif;
  font-weight: 900;
}

.report-limit-note p {
  margin: 0;
  color: #53636c;
  font-size: 0.91rem;
  line-height: 1.55;
}

.report-stack {
  display: grid;
  gap: 20px;
  transform: translate3d(0, var(--report-scroll-shift, 0px), 0);
  transition: transform 100ms linear;
  will-change: transform;
}

.report-window {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(44, 65, 75, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(22, 74, 51, 0.13);
}

.report-chat-flow {
  min-height: 202px;
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(260px, 1.28fr);
  align-items: center;
  gap: 26px;
  padding: 28px 30px;
}

.report-chat-bubbles {
  display: grid;
  gap: 11px;
}

.report-chat-bubbles span {
  width: 76%;
  height: 25px;
  display: block;
  border-radius: 13px 13px 13px 4px;
  background: #e7eeeb;
  animation: chatBubbleSignal 4.6s ease-in-out infinite;
}

.report-chat-bubbles span:nth-child(2),
.report-chat-bubbles span:nth-child(4) {
  width: 88%;
  margin-left: auto;
  border-radius: 13px 13px 4px 13px;
  background: rgba(41, 173, 104, 0.25);
}

.report-chat-bubbles span:nth-child(2) { animation-delay: 420ms; }
.report-chat-bubbles span:nth-child(3) { width: 58%; animation-delay: 840ms; }
.report-chat-bubbles span:nth-child(4) { width: 68%; animation-delay: 1.26s; }

.report-analysis-steps {
  display: grid;
  gap: 9px;
}

.report-analysis-steps > span {
  min-height: 42px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(44, 65, 75, 0.11);
  border-radius: 11px;
  background: rgba(248, 251, 249, 0.88);
  padding: 7px 9px;
  animation: analysisStepPulse 5.4s ease-in-out infinite;
  animation-delay: calc(var(--analysis-step) * 650ms);
}

.report-analysis-steps i,
.report-analysis-steps b {
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
}

.report-analysis-steps i {
  width: 26px;
  height: 26px;
  color: #ffffff;
  background: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
}

.report-analysis-steps strong {
  min-width: 0;
  color: #4d5d66;
  font-size: 0.76rem;
  font-weight: 850;
}

.report-analysis-steps b {
  width: 22px;
  height: 22px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 0.68rem;
}

@keyframes analysisStepPulse {
  0%, 100% { border-color: rgba(44, 65, 75, 0.11); transform: translateX(0); }
  30%, 48% { border-color: rgba(41, 173, 104, 0.38); transform: translateX(-4px); }
}

.report-window-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e4ebe7;
  padding: 0 18px;
  background: rgba(248, 251, 249, 0.9);
}

.report-window-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c7d2cc;
}

.report-window-bar i:nth-child(3) { background: var(--green); }

.report-window-bar strong {
  margin-left: auto;
  color: #53616a;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.report-identity {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
  padding: 44px 40px;
}

.report-avatar {
  width: 82px;
  height: 82px;
  position: relative;
  border: 2px solid #52706b;
  border-radius: 50%;
  background: linear-gradient(145deg, #edfaf3, #d9f5e7);
}

.report-avatar::before,
.report-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
}

.report-avatar::before { width: 24px; height: 24px; top: 16px; border-radius: 50%; }
.report-avatar::after { width: 48px; height: 25px; bottom: 13px; border-radius: 28px 28px 12px 12px; }

.report-identity > div { display: grid; gap: 14px; }
.report-identity i { height: 11px; border-radius: 99px; background: #dfe7e3; }
.report-identity i:first-child { width: 48%; background: rgba(41, 173, 104, 0.55); }
.report-identity b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--green);
}

.report-scan-line {
  width: 38%;
  height: 2px;
  position: absolute;
  top: 48px;
  bottom: 0;
  left: -40%;
  margin: auto 0;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  box-shadow: 0 0 26px 12px rgba(35, 200, 117, 0.11);
  animation: reportStoryScan 4.8s ease-in-out infinite;
}

@keyframes reportStoryScan {
  0%, 15% { transform: translateX(0); opacity: 0; }
  35%, 70% { opacity: 1; }
  88%, 100% { transform: translateX(390%); opacity: 0; }
}

@keyframes trustedSignalMarquee {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.report-signal-grid {
  display: grid;
  gap: 13px;
}

.lookup-privacy-note {
  width: max-content;
  max-width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: -2px;
  border: 1px solid rgba(22, 131, 84, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 13px 8px 9px;
  color: #51616a;
  box-shadow: 0 8px 22px rgba(34, 64, 50, 0.055);
  opacity: 0;
  animation: heroFadeUp 700ms ease 290ms forwards;
}

.lookup-privacy-note > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #168354, #27bb70);
  font-size: 0.75rem;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(22, 131, 84, 0.2);
}

.lookup-privacy-note p {
  margin: 0;
  color: inherit;
  font-size: 0.83rem;
  line-height: 1.4;
  font-weight: 750;
  opacity: 1;
  animation: none;
}

.lookup-privacy-note + .trust-row {
  max-width: 700px;
  margin-top: 22px;
  border-top: 1px solid rgba(44, 65, 75, 0.1);
  padding-top: 18px;
}

.signal-marquee-section {
  overflow: hidden;
  padding: 42px 0 52px;
  border-top: 1px solid rgba(44, 65, 75, 0.08);
  border-bottom: 1px solid rgba(44, 65, 75, 0.08);
  background: #ffffff;
}

.signal-marquee-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.signal-marquee-heading > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(41, 173, 104, 0.11);
}

.signal-marquee-heading h2 {
  margin: 0;
  color: #5f6871;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.signal-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.signal-marquee-track {
  width: max-content;
  display: flex;
  animation: trustedSignalMarquee 38s linear infinite;
  will-change: transform;
}

.signal-marquee:hover .signal-marquee-track {
  animation-play-state: paused;
}

.signal-marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(56px, 6vw, 104px);
  padding-right: clamp(56px, 6vw, 104px);
}

.signal-marquee-group > span {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 0;
  background: transparent;
  padding: 8px 0;
  color: #8a949b;
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: none;
}

.signal-marquee-group i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #758188;
  border-radius: 50%;
  background: #f1f4f3;
  font-style: normal;
  font-weight: 900;
}

html[dir="rtl"] .signal-marquee-track {
  animation-direction: normal;
}

.report-signal-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  border: 1px solid rgba(55, 76, 84, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 20px 22px;
  box-shadow: 0 12px 30px rgba(34, 50, 64, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.report-signal-grid article:hover {
  border-color: rgba(41, 173, 104, 0.34);
  box-shadow: 0 20px 42px rgba(34, 75, 55, 0.1);
  transform: translateX(-4px);
}

.analysis-card {
  --analysis-tone: #168354;
  --analysis-soft: rgba(22, 131, 84, 0.1);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-left: 3px solid var(--analysis-tone) !important;
  background:
    radial-gradient(circle at 100% 0%, var(--analysis-soft), transparent 42%),
    rgba(255, 255, 255, 0.92) !important;
}

.analysis-card::before {
  content: "";
  width: 88px;
  height: 88px;
  position: absolute;
  z-index: -1;
  right: -48px;
  bottom: -52px;
  border: 14px solid var(--analysis-soft);
  border-radius: 50%;
  transition: transform 260ms ease;
}

.analysis-card:hover::before {
  transform: scale(1.22);
}

.analysis-tone-1 {
  --analysis-tone: #168354;
  --analysis-soft: rgba(22, 131, 84, 0.11);
}

.analysis-tone-2 {
  --analysis-tone: #2879c9;
  --analysis-soft: rgba(40, 121, 201, 0.11);
}

.analysis-tone-3 {
  --analysis-tone: #7656c7;
  --analysis-soft: rgba(118, 86, 199, 0.11);
}

.analysis-tone-4 {
  --analysis-tone: #c47a18;
  --analysis-soft: rgba(196, 122, 24, 0.11);
}

.analysis-card .report-signal-number {
  color: var(--analysis-tone);
  opacity: 0.58;
}

.analysis-card .report-signal-check {
  color: var(--analysis-tone);
  background: var(--analysis-soft);
}

.analysis-card strong {
  letter-spacing: -0.01em;
}

html[dir="rtl"] .analysis-card {
  border-right: 3px solid var(--analysis-tone) !important;
  border-left-width: 1px !important;
}

.report-signal-number {
  color: rgba(22, 122, 75, 0.32);
  font-size: 1.35rem;
  font-weight: 950;
}

.report-signal-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.03rem;
}

.report-signal-grid p {
  margin: 6px 0 0;
  color: #68757d;
  font-size: 0.88rem;
  line-height: 1.45;
}

.report-signal-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  border-radius: 50%;
  background: var(--green-soft);
  font-weight: 900;
}

[data-reveal].reveal-pending[data-reveal="left"] { transform: translate3d(-34px, 12px, 0); }
[data-reveal].reveal-pending[data-reveal="right"] { transform: translate3d(34px, 12px, 0); }
[data-reveal].is-visible { animation-delay: var(--reveal-delay, 0ms); }

/* Compact, scroll-led storytelling for the information-heavy homepage sections. */
.story-coverage {
  overflow: hidden;
  scroll-margin-top: 84px;
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 194, 116, 0.12), transparent 30%),
    linear-gradient(135deg, #f7fcf9 0%, #ffffff 54%, #f3faf7 100%);
}

.coverage-story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(46px, 7vw, 92px);
  align-items: center;
}

.coverage-story-copy {
  margin: 0;
  padding: 0;
  text-align: left;
}

.coverage-story-copy h2 {
  margin: 22px 0 0;
  color: var(--heading);
  font-size: clamp(2.45rem, 4.2vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.coverage-story-copy p {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(41, 173, 104, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(34, 50, 64, 0.07);
}

.story-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: storySignal 1.8s ease-in-out infinite;
}

.story-kicker i:nth-child(2) { animation-delay: 180ms; }
.story-kicker i:nth-child(3) { animation-delay: 360ms; }

.coverage-story-cards {
  position: relative;
  grid-template-columns: 1fr;
  gap: 12px;
}

.coverage-story-cards::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 27px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--green), #66b6e5, #8d74dc);
  opacity: 0.28;
}

.coverage-story-cards article {
  position: relative;
  overflow: hidden;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 116px;
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(34, 50, 64, 0.065);
}

.coverage-story-cards article:nth-child(2) .seo-feature-icon {
  color: #176f9c;
  background: #e9f6fd;
}

.coverage-story-cards article:nth-child(3) .seo-feature-icon {
  color: #6248a8;
  background: #f0edfb;
}

.coverage-story-cards article::after,
.process-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.44) 48%, transparent 66%);
  transform: translateX(-130%);
}

.process-story {
  overflow: hidden;
  scroll-margin-top: 84px;
  padding: 78px 0 84px;
}

.process-story .section-center > h2 {
  font-size: clamp(2.45rem, 4.2vw, 3.9rem);
  letter-spacing: -0.045em;
}

.process-story .section-center > p {
  max-width: 780px;
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.process-journey {
  position: relative;
  margin-top: 38px;
}

.process-progress {
  position: absolute;
  z-index: 0;
  top: 31px;
  right: 15%;
  left: 15%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebe8;
}

.process-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-dark), #28c879, #75d9a7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.process-story.is-story-active .process-progress span { transform: scaleX(1); }

.process-story .process-grid {
  position: relative;
  z-index: 1;
  gap: 16px;
  margin-top: 0;
}

.process-story .process-grid article {
  display: flex;
  min-height: 188px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
}

.process-story .process-grid article > span {
  position: relative;
  top: auto;
  right: auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border: 8px solid #ffffff;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 1px rgba(41, 173, 104, 0.22), 0 10px 22px rgba(22, 127, 76, 0.2);
  font-size: 1rem;
}

.process-story .process-grid strong {
  margin-top: 18px;
}

.process-story .process-grid p {
  margin-top: 8px;
}

html.story-motion-ready [data-story-card] {
  opacity: 0.28;
  transform: translate3d(0, 24px, 0) scale(0.985);
  transition:
    opacity 520ms ease calc(var(--story-index) * 150ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--story-index) * 150ms),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

html.story-motion-ready .is-story-active [data-story-card] {
  opacity: 1;
  transform: none;
}

.is-story-active [data-story-card]::after {
  animation: storySweep 1.15s ease-out calc(220ms + var(--story-index) * 150ms) both;
}

.why-section {
  padding: 76px 0;
}

.why-section .section-center > h2 {
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  letter-spacing: -0.04em;
}

.why-section .section-center > p {
  margin-top: 20px;
  font-size: 1.08rem;
}

.why-section .reason-grid {
  gap: 16px;
  margin-top: 36px;
}

.why-section .reason-grid article {
  min-height: 190px;
  padding: 24px;
}

.why-section .reason-grid span {
  width: 50px;
  height: 50px;
  border-width: 2px;
  font-size: 1rem;
}

.why-section .reason-grid p {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.48;
}

@keyframes storySignal {
  0%, 100% { opacity: 0.35; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes storySweep {
  from { transform: translateX(-130%); }
  to { transform: translateX(130%); }
}

html[dir="rtl"] .hero-copy h1 span { margin-left: auto; }
html[dir="rtl"] .report-window-bar strong { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .report-signal-grid article:hover { transform: translateX(4px); }
html[dir="rtl"] .hero-chat-bubbles i:nth-child(2),
html[dir="rtl"] .report-chat-bubbles span:nth-child(2),
html[dir="rtl"] .report-chat-bubbles span:nth-child(4) { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .report-analysis-steps > span { animation-name: analysisStepPulseRtl; }

@keyframes analysisStepPulseRtl {
  0%, 100% { border-color: rgba(44, 65, 75, 0.11); transform: translateX(0); }
  30%, 48% { border-color: rgba(41, 173, 104, 0.38); transform: translateX(4px); }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 28px;
  }

  .hero-copy h1 { font-size: clamp(3rem, 5.8vw, 4.25rem); }
  .lookup-form { grid-template-columns: 205px minmax(170px, 1fr) 118px; }
  .country-trigger { padding-inline: 11px; gap: 7px; }
  .hero-visual { min-height: 550px; }
  .profile-card.card-main { left: 20px; }
  .card-top { left: 70px; }
  .card-mid { left: 82px; }
  .card-low { left: 28px; }
  .signal-carrier { left: -10px; }
  .signal-trust { right: -4px; }
  .hero-chat-preview { left: 36px; width: min(420px, calc(100% - 44px)); }
  .report-story-layout { grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.25fr); gap: 42px; }
  .coverage-story-layout { grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.28fr); gap: 38px; }
}

@media (max-width: 900px) {
  .hero-section { min-height: auto; padding: 54px 0 68px; }
  .hero-grid { width: min(100% - 40px, 740px); grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-eyebrow { margin-inline: auto; }
  .hero-copy h1, .hero-copy > p, .lookup-form { margin-inline: auto; }
  .hero-message-capability { max-width: 680px; margin-inline: auto; text-align: left; }
  .hero-copy h1 span { margin-inline: auto; }
  .hero-assurances, .trust-row { justify-content: center; }
  .trust-row { flex-direction: row; align-items: center; }
  .trust-row p { text-align: left; }
  .lookup-privacy-note { justify-content: center; }
  .hero-visual { display: none; }
  .report-stack { transform: none; }
  .report-story-layout { grid-template-columns: 1fr; }
  .report-story-copy { position: static; text-align: center; }
  .report-story-copy > p { max-width: 680px; margin-inline: auto; }
  .report-limit-note { max-width: 680px; margin-inline: auto; text-align: left; }
  .report-chat-flow { grid-template-columns: minmax(150px, 0.68fr) minmax(270px, 1.32fr); }
  .coverage-story-layout { grid-template-columns: 1fr; gap: 32px; }
  .coverage-story-copy { text-align: center; }
  .coverage-story-copy p { margin-inline: auto; }
  .story-coverage, .process-story { padding: 62px 0; }
}

@media (max-width: 560px) {
  .hero-grid { width: min(100% - 28px, 540px); }
  .hero-copy {
    width: 100%;
    min-width: 0;
    overflow: visible;
  }
  .hero-eyebrow { display: none; }
  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 10.7vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
  }
  .hero-copy h1 span {
    width: 100%;
    max-width: 100%;
  }
  .hero-copy > p {
    width: 100%;
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .hero-message-capability {
    width: 100%;
    min-height: 46px;
    grid-template-columns: 32px minmax(0, 1fr) 30px;
    gap: 8px;
    margin-top: 14px;
    padding: 6px 8px;
    border-radius: 12px;
  }
  .message-capability-mark { width: 32px; height: 32px; border-radius: 9px; }
  .hero-message-capability strong { overflow: hidden; font-size: 0.77rem; text-overflow: ellipsis; white-space: nowrap; }
  .hero-message-capability + .lookup-form { margin-top: 12px; }
  .lookup-form { margin-top: 20px; }
  .hero-copy .lookup-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 0;
    border-radius: 14px;
    padding: 4px;
  }
  .hero-copy .country-field,
  .hero-copy .phone-field {
    min-width: 0;
    min-height: 46px;
  }
  .hero-copy .country-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding-inline: 8px;
  }
  .hero-copy .country-trigger img {
    width: 23px;
    height: 16px;
  }
  .hero-copy .country-trigger strong {
    flex: 0 0 auto;
    overflow: visible;
    color: var(--heading);
    font-size: 1rem;
    text-overflow: clip;
  }
  .hero-copy .phone-field {
    display: flex;
    align-items: center;
    padding: 0 9px;
  }
  .hero-copy .phone-field > span {
    display: none;
  }
  .hero-copy .phone-field input {
    min-width: 0;
    font-size: 0.96rem;
    line-height: 1.2;
  }
  .hero-copy .lookup-form .search-button {
    min-height: 46px;
    border-radius: 10px;
    font-size: 0.96rem;
  }
  .hero-copy .form-error {
    width: 100%;
    max-width: 100%;
    min-height: 14px;
    margin-top: 6px;
    font-size: 0.8rem;
  }
  .hero-assurances { display: grid; justify-content: start; width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .hero-copy .lookup-privacy-note {
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    text-align: left;
  }
  .lookup-privacy-note p {
    min-width: 0;
    font-size: 0.75rem;
    line-height: 1.35;
  }
  .lookup-privacy-note + .trust-row {
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
  }
  .trust-faces span {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }
  .trust-row p {
    max-width: 146px;
    text-align: left;
    font-size: 0.77rem;
    line-height: 1.4;
  }
  .account-chip {
    max-width: 112px;
    padding-inline: 8px;
    font-size: 0.76rem;
  }
  .signal-marquee-section { padding: 27px 0 31px; }
  .signal-marquee-heading {
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .signal-marquee-group { gap: 38px; padding-right: 38px; }
  .signal-marquee-group > span { gap: 9px; padding: 7px 0; font-size: 0.92rem; }
  .signal-marquee-group i { width: 29px; height: 29px; }
  .trust-strip { padding: 30px 0 32px; }
  .story-coverage { padding: 52px 0; }
  .coverage-story-layout { width: min(100% - 28px, 540px); gap: 26px; }
  .coverage-story-copy h2 { margin-top: 16px; font-size: 2rem; }
  .coverage-story-copy p { margin-top: 14px; font-size: 0.94rem; line-height: 1.52; }
  .coverage-story-cards { gap: 10px; }
  .coverage-story-cards::before { left: 22px; }
  .coverage-story-cards article {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 0;
    column-gap: 12px;
    padding: 16px;
  }
  .coverage-story-cards article > span:last-child { font-size: 0.86rem; line-height: 1.4; }
  .process-story { padding: 54px 0; }
  .process-story .section-center > h2 { font-size: 2rem; }
  .process-story .section-center > p { margin-top: 14px; font-size: 0.94rem; }
  .process-journey { margin-top: 28px; }
  .process-progress {
    top: 30px;
    bottom: 30px;
    left: 29px;
    right: auto;
    width: 3px;
    height: auto;
  }
  .process-progress span {
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }
  .process-story.is-story-active .process-progress span { transform: scaleY(1); }
  .process-story .process-grid { grid-template-columns: 1fr; gap: 10px; }
  .process-story .process-grid article {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
  }
  .process-story .process-grid article > span { grid-row: 1 / span 2; width: 54px; height: 54px; }
  .process-story .process-grid strong { margin: 3px 0 0 12px; }
  .process-story .process-grid p { margin: 7px 0 0 12px; font-size: 0.9rem; }
  .report-story-section { padding: 64px 0; }
  .report-window { min-height: 200px; }
  .report-window-bar strong {
    max-width: 72%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .report-chat-flow {
    min-height: 218px;
    grid-template-columns: minmax(82px, 0.58fr) minmax(170px, 1.42fr);
    gap: 12px;
    padding: 18px 14px;
  }
  .report-chat-bubbles { gap: 8px; }
  .report-chat-bubbles span { height: 18px; }
  .report-analysis-steps { gap: 7px; }
  .report-analysis-steps > span {
    min-height: 38px;
    grid-template-columns: 23px minmax(0, 1fr) 20px;
    gap: 6px;
    padding: 6px;
  }
  .report-analysis-steps i { width: 23px; height: 23px; }
  .report-analysis-steps b { width: 20px; height: 20px; }
  .report-analysis-steps strong { font-size: 0.66rem; line-height: 1.2; }
  .report-identity { grid-template-columns: 58px minmax(0, 1fr) 32px; gap: 14px; padding: 36px 20px; }
  .report-avatar { width: 58px; height: 58px; }
  .report-avatar::before { width: 18px; height: 18px; top: 10px; }
  .report-avatar::after { width: 36px; height: 20px; bottom: 8px; }
  .report-identity b { width: 32px; height: 32px; }
  .report-signal-grid article { grid-template-columns: 32px minmax(0, 1fr) 28px; gap: 11px; min-height: 104px; padding: 16px 14px; }
  .report-signal-number { font-size: 1rem; }
  .report-signal-check { width: 27px; height: 27px; }

  .why-section {
    padding-block: 56px;
  }

  .why-section .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .why-section .reason-grid article {
    min-height: 174px;
    padding: 16px;
    border-radius: 14px;
  }

  .why-section .reason-grid span {
    width: 38px;
    height: 38px;
    border-width: 2px;
    font-size: 0.88rem;
  }

  .why-section .reason-grid p {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .report-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .report-signal-grid article {
    min-height: 166px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
  }

  .report-signal-grid p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 0.8rem;
  }

  .report-signal-check {
    position: absolute;
    top: 13px;
    right: 13px;
  }

  html[dir="rtl"] .report-signal-check {
    right: auto;
    left: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-assurances,
  .hero-orb,
  .hero-eyebrow > span,
  .visual-signal,
  .hero-visual::before,
  .hero-visual::after,
  .report-scan-line,
  .hero-chat-preview,
  .hero-chat-bubbles i,
  .report-chat-bubbles span,
  .report-analysis-steps > span {
    animation: none !important;
  }

  .lookup-privacy-note {
    opacity: 1 !important;
    animation: none !important;
  }

  .signal-marquee-track {
    animation: none !important;
  }

  .hero-scroll-scene,
  .report-stack {
    transform: none !important;
    transition: none !important;
  }

  .hero-eyebrow,
  .hero-assurances,
  .hero-message-capability {
    opacity: 1 !important;
  }

  .story-kicker i,
  .is-story-active [data-story-card]::after {
    animation: none !important;
  }

  [data-story-card],
  .process-progress span {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
