:root {
  --blue-950: #02112b;
  --blue-900: #05255b;
  --blue-850: #08367d;
  --blue-800: #0b4ea9;
  --blue-700: #146bdb;
  --blue-600: #2f84ff;
  --blue-500: #5aa3ff;
  --blue-200: #d7e8ff;
  --blue-100: #edf5ff;
  --white: #ffffff;
  --ink-900: #061d45;
  --ink-700: #26497a;
  --ink-600: #40608d;
  --ink-500: #5d78a3;
  --surface-1: rgba(255, 255, 255, 0.85);
  --surface-2: rgba(255, 255, 255, 0.72);
  --surface-3: rgba(255, 255, 255, 0.62);
  --border-1: rgba(8, 54, 125, 0.2);
  --border-2: rgba(8, 54, 125, 0.14);
  --shadow-soft: 0 16px 44px rgba(4, 36, 86, 0.12);
  --shadow-strong: 0 26px 66px rgba(4, 36, 86, 0.18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(1200px 680px at -8% -10%, rgba(47, 132, 255, 0.3), transparent 68%),
    radial-gradient(1000px 640px at 114% 8%, rgba(20, 107, 219, 0.24), transparent 68%),
    radial-gradient(900px 560px at 50% 120%, rgba(10, 78, 169, 0.19), transparent 68%),
    linear-gradient(180deg, #f9fcff 0%, #eaf3ff 45%, #f6fafe 100%);
  min-height: 100vh;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.05;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.24) 0.4px, transparent 0.4px),
    radial-gradient(rgba(0, 0, 0, 0.2) 0.4px, transparent 0.4px);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Archivo", "Manrope", sans-serif;
  letter-spacing: -0.022em;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  background: var(--blue-800);
  color: var(--white);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.3rem;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
  background: rgba(248, 252, 255, 0.86);
  border-bottom-color: var(--border-1);
  box-shadow: 0 8px 32px rgba(2, 17, 43, 0.08);
  backdrop-filter: blur(14px);
}

.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  font-weight: 800;
  color: var(--ink-900);
  font-size: 1.12rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(6, 29, 69, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.18rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--ink-700);
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.28rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #54a7ff, #0b4ea9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-link:hover {
  opacity: 1;
  color: var(--blue-800);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(136deg, #1d7bff 0%, #0a4ea6 52%, #072d64 100%);
  box-shadow: 0 16px 35px rgba(13, 87, 190, 0.33);
  padding: 0.78rem 1.2rem;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 32%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.34) 50%, transparent 80%);
  transform: skewX(-18deg);
  transition: left 0.42s ease;
  pointer-events: none;
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(13, 87, 190, 0.38);
}

.btn-primary:hover::before {
  left: 116%;
}

.btn-apple-icon {
  width: 1.06rem;
  height: 1.06rem;
  flex: 0 0 1.06rem;
}

.btn-soft {
  color: var(--blue-900);
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(2, 17, 43, 0.1);
  padding: 0.74rem 1.12rem;
}

.btn-sm {
  font-size: 0.84rem;
  padding: 0.62rem 0.94rem;
}

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-1);
  border-radius: 10px;
  background: var(--surface-1);
  color: var(--blue-850);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  margin-top: 0.35rem;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.93);
  border-radius: 15px;
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.mobile-nav.open {
  display: grid;
  gap: 0.28rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.64rem 0.72rem;
  border-radius: 10px;
}

.mobile-nav a:hover {
  background: rgba(20, 107, 219, 0.13);
  color: var(--blue-850);
}

main {
  display: block;
}

.hero {
  min-height: 100vh;
  padding-top: 108px;
  padding-bottom: 44px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.44rem 0.86rem;
  border-radius: 999px;
  border: 1px solid var(--border-1);
  background: var(--surface-1);
  color: var(--blue-850);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(1.88rem, 4.4vw, 3.9rem);
  color: var(--ink-900);
  line-height: 1.04;
  max-width: 13ch;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 0.98rem;
}

.hero-main-icon {
  width: clamp(66px, 7vw, 96px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 44px rgba(4, 36, 86, 0.2);
  margin-bottom: 0.9rem;
  animation: heroIconFloat 6.8s ease-in-out infinite;
}

.hero-copy {
  color: var(--ink-600);
  max-width: 44ch;
  font-size: clamp(0.98rem, 1.75vw, 1.1rem);
  margin-bottom: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-bottom: 1.25rem;
}

.btn-hero {
  padding: 1.22rem 2.24rem;
  font-size: 1.26rem;
  font-weight: 800;
  box-shadow: 0 22px 46px rgba(13, 87, 190, 0.36);
}

.hero-front-badge.editors-choice-badge {
  width: min(290px, 94%);
  margin-bottom: 1rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  color: var(--ink-600);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-highlights span {
  animation: softRise 0.5s ease both;
}

.hero-highlights span:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-highlights span:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-highlights span + span::before {
  content: "•";
  margin-right: 0.52rem;
  color: var(--blue-700);
}

.hero-visual {
  position: relative;
  border-radius: 30px;
  border: 1px solid var(--border-1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(236, 246, 255, 0.86) 60%, rgba(214, 232, 255, 0.85) 100%);
  box-shadow: var(--shadow-strong);
  padding: clamp(1rem, 2vw, 1.4rem);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 107, 219, 0.28), transparent 70%);
  top: -76px;
  right: -72px;
  pointer-events: none;
}

.phone-scene {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(170px 120px at 74% 15%, rgba(58, 151, 255, 0.22), transparent 70%),
    linear-gradient(170deg, #ecf5ff 0%, #dbebff 44%, #c8e0ff 100%);
  padding: clamp(1rem, 2vw, 1.3rem);
  display: grid;
  gap: 0.75rem;
}

.scan-demo {
  gap: 0.68rem;
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-inline-badge.editors-choice-badge {
  width: min(320px, 100%);
  margin: 0.92rem auto 0;
}

.hero-badge-mascot {
  width: min(120px, 42%);
  margin: 0.6rem auto 0;
  filter: drop-shadow(0 10px 18px rgba(5, 37, 91, 0.14));
  pointer-events: none;
}

.hero-scan-summary {
  margin-top: 0.8rem;
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(170px 120px at 74% 15%, rgba(58, 151, 255, 0.18), transparent 70%),
    linear-gradient(170deg, #ecf5ff 0%, #dbebff 44%, #c8e0ff 100%);
  box-shadow: 0 14px 34px rgba(8, 54, 125, 0.13);
  max-width: 560px;
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-scan-summary.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.hero-scan-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-800);
  margin-bottom: 0.22rem;
}

.hero-scan-summary h3 {
  font-size: 1.04rem;
  color: var(--ink-900);
  margin-bottom: 0.22rem;
}

.hero-scan-score {
  font-size: 0.9rem;
  color: var(--ink-700);
  margin-bottom: 0.34rem;
}

.hero-scan-summary ul {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.22rem;
  color: var(--ink-700);
  font-size: 0.85rem;
}

.scan-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.scan-demo-title {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-850);
  font-weight: 800;
}

.scan-state-badge {
  border-radius: 999px;
  border: 1px solid rgba(8, 54, 125, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-700);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.24rem 0.56rem;
}

.scan-demo.picker-collapsed .watch-picker {
  display: none;
}

.scan-demo.chooser-open .watch-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.scan-demo.chooser-open .scan-screen {
  display: none;
}

.scan-state-badge.scanning {
  color: var(--blue-800);
  border-color: rgba(20, 107, 219, 0.34);
  background: rgba(215, 232, 255, 0.7);
}

.scan-state-badge.done-real {
  color: #0f6b49;
  border-color: rgba(15, 107, 73, 0.28);
  background: rgba(221, 243, 234, 0.84);
}

.scan-state-badge.done-fake {
  color: #8d2a2a;
  border-color: rgba(141, 42, 42, 0.28);
  background: rgba(253, 231, 231, 0.84);
}

.watch-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.watch-option {
  border: 1px solid rgba(8, 54, 125, 0.2);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.watch-option:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 107, 219, 0.45);
  box-shadow: 0 10px 22px rgba(8, 54, 125, 0.15);
}

.watch-option.active {
  border-color: rgba(20, 107, 219, 0.65);
  box-shadow: 0 0 0 2px rgba(20, 107, 219, 0.25);
}

.watch-option img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.watch-option-name {
  display: block;
  font-size: 0.67rem;
  line-height: 1.25;
  color: var(--ink-700);
  font-weight: 700;
  padding: 0.34rem 0.4rem 0.4rem;
}

.scan-screen {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(8, 54, 125, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.scan-screen img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.scan-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(2, 17, 43, 0.18), rgba(2, 17, 43, 0.06));
}

.scan-status {
  position: absolute;
  left: 0.55rem;
  top: 0.55rem;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(8, 54, 125, 0.22);
  color: var(--blue-900);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  max-width: calc(100% - 5.2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.scan-percent {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(2, 17, 43, 0.45);
  font-size: 0.8rem;
  font-family: "Archivo", sans-serif;
  letter-spacing: 0.02em;
}

.scan-choose-btn {
  position: absolute;
  right: 0.56rem;
  bottom: 0.56rem;
  border: 1px solid rgba(8, 54, 125, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-850);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.34rem 0.66rem;
  cursor: pointer;
  display: none;
  z-index: 2;
  pointer-events: auto;
}

.scan-screen.report-ready .scan-choose-btn {
  display: inline-flex;
}

.scan-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 14%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(90, 163, 255, 0.9) 45%, rgba(255, 255, 255, 0.95) 50%, rgba(90, 163, 255, 0.9) 55%, transparent 100%);
  box-shadow: 0 0 10px rgba(90, 163, 255, 0.9);
  opacity: 0;
}

.scan-screen.is-scanning .scan-line {
  opacity: 1;
  animation: scanSweep 1.5s linear infinite;
}

.factor-report-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
  color: var(--ink-700);
  font-size: 0.82rem;
}

.factor-report-item {
  border: 1px solid rgba(8, 54, 125, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.38rem 0.48rem;
  line-height: 1.35;
}

.factor-report-item strong {
  color: var(--ink-900);
}

.factor-badge {
  display: inline-block;
  margin-left: 0.35rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.12rem 0.38rem;
  vertical-align: 1px;
}

.factor-badge.pass {
  color: #0f6b49;
  background: rgba(221, 243, 234, 0.88);
}

.factor-badge.warn {
  color: #8a5a08;
  background: rgba(255, 239, 207, 0.9);
}

.factor-badge.fail {
  color: #8d2a2a;
  background: rgba(253, 231, 231, 0.88);
}

.risk-result {
  margin-bottom: 0.35rem;
  font-family: "Archivo", sans-serif;
  font-size: 0.95rem;
  color: var(--ink-800);
}

.risk-result.is-real {
  color: #0f6b49;
}

.risk-result.is-fake {
  color: #8d2a2a;
}

.phone-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 54, 125, 0.16);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(8, 54, 125, 0.1);
  padding: 0.78rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-card h3 {
  font-size: 1rem;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}

.phone-card p {
  font-size: 0.86rem;
  color: var(--ink-700);
}

.score-row {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0.55rem;
}

.score-meter {
  position: relative;
  flex: 1;
  height: 9px;
  border-radius: 999px;
  background: rgba(11, 78, 169, 0.14);
  overflow: hidden;
}

.score-meter > span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--score, 78%);
  background: linear-gradient(90deg, #53b2ff 0%, #0f72e8 45%, #0a4ea6 100%);
  border-radius: inherit;
}

.score-value {
  font-family: "Archivo", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  min-width: 2.6ch;
  text-align: right;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.decor {
  position: absolute;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 28px rgba(5, 37, 91, 0.15));
  opacity: 0.9;
  z-index: 2;
}

.decor img {
  width: 100%;
}

.decor-hero-1 {
  width: clamp(88px, 11vw, 138px);
  top: 9%;
  right: 4.2%;
  animation: floatY 7s ease-in-out infinite;
}

.decor-hero-2 {
  width: clamp(76px, 9.5vw, 116px);
  left: 4.4%;
  bottom: 12%;
  animation: floatY 8s ease-in-out infinite 1.2s;
}

.section {
  padding: 86px 0;
  position: relative;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.45rem;
}

.section-kicker {
  color: var(--blue-800);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 800;
  margin-bottom: 0.52rem;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--ink-900);
  line-height: 1.08;
  margin-bottom: 0.62rem;
}

.section-intro {
  color: var(--ink-600);
  font-size: 1.02rem;
}

.workflow-grid,
.features-grid,
.trust-grid,
.legal-grid {
  display: grid;
  gap: 0.95rem;
}

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

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-1);
  background: var(--surface-1);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 107, 219, 0.16), transparent 70%);
  pointer-events: none;
}

.card h3 {
  font-size: 1.16rem;
  color: var(--ink-900);
  margin-bottom: 0.44rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--ink-600);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 78, 169, 0.34);
  box-shadow: 0 22px 44px rgba(8, 54, 125, 0.16);
}

.icon-pill {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #2c8aff, #0d57be);
  color: var(--white);
  margin-bottom: 0.66rem;
  box-shadow: 0 11px 22px rgba(13, 87, 190, 0.26);
}

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

.auth-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1rem;
  align-items: stretch;
}

.auth-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-1);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(226, 240, 255, 0.89));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2vw, 1.5rem);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.auth-panel h3 {
  font-size: 1.36rem;
  color: var(--ink-900);
  margin-bottom: 0.6rem;
}

.auth-panel p {
  color: var(--ink-600);
  font-size: 0.96rem;
}

.factor-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.62rem;
}

.factor-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.82);
  padding: 0.66rem 0.74rem;
}

.factor-row strong {
  color: var(--ink-900);
  font-size: 0.9rem;
}

.badge {
  border-radius: 999px;
  background: rgba(20, 107, 219, 0.12);
  border: 1px solid rgba(20, 107, 219, 0.2);
  color: var(--blue-850);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.27rem 0.56rem;
}

.auth-note {
  margin-top: 0.84rem;
  font-size: 0.82rem;
  color: var(--ink-500);
}

.badge-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-1);
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
  min-height: 100%;
  padding: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.badge-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px 180px at 50% 18%, rgba(47, 132, 255, 0.28), transparent 70%),
    radial-gradient(280px 220px at 80% 88%, rgba(11, 78, 169, 0.2), transparent 70%);
  pointer-events: none;
}

.editors-choice-badge {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  display: grid;
  place-items: center;
  transition: transform 0.35s ease;
}

.editors-choice-badge::before {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 107, 219, 0.3), transparent 72%);
  filter: blur(28px);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.editors-choice-badge img {
  width: 100%;
  height: auto;
  transform-origin: center;
  filter: drop-shadow(0 0 16px rgba(20, 107, 219, 0.2));
}

.editors-choice-badge:hover {
  transform: scale(1.045);
}

.editors-choice-badge:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.faq-list {
  display: grid;
  gap: 0.72rem;
}

.faq-item {
  border: 1px solid var(--border-1);
  border-radius: 14px;
  background: var(--surface-1);
  box-shadow: 0 8px 24px rgba(2, 17, 43, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--ink-900);
  font: inherit;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.faq-btn .plus {
  color: var(--blue-800);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-btn .plus {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s ease;
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content > div {
  overflow: hidden;
}

.faq-content p {
  color: var(--ink-600);
  font-size: 0.94rem;
  padding: 0 1rem 0.95rem;
}

.cta-panel {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-1);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.94), rgba(224, 240, 255, 0.9));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.15rem, 3vw, 2rem);
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.cta-panel h2 {
  max-width: 19ch;
  margin: 0 auto 0.62rem;
}

.cta-panel p {
  color: var(--ink-600);
  max-width: 56ch;
  margin: 0 auto 1rem;
}

.foot {
  border-top: 1px solid var(--border-1);
  padding: 2.1rem 0;
  margin-top: 0.6rem;
}

.mobile-sticky-cta {
  display: none;
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.foot p {
  color: var(--ink-500);
  font-size: 0.88rem;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.foot-links a {
  text-decoration: none;
  color: var(--blue-850);
  font-size: 0.88rem;
  font-weight: 700;
}

.foot-links a:hover {
  text-decoration: underline;
}

.page-main {
  padding-top: 116px;
  padding-bottom: 48px;
  min-height: calc(100vh - 88px);
}

.page-header {
  text-align: center;
  margin-bottom: 1.05rem;
}

.page-header h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  color: var(--ink-900);
  margin-bottom: 0.6rem;
}

.page-header p {
  color: var(--ink-600);
  max-width: 66ch;
  margin: 0 auto;
}

.page-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-1);
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--blue-850);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.42rem 0.75rem;
}

.legal-card,
.support-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-1);
  background: var(--surface-1);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.legal-stack {
  display: grid;
  gap: 0.9rem;
}

.legal-stack section {
  border: 1px solid var(--border-2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.85rem 0.95rem;
}

.legal-stack h2 {
  font-size: 1.08rem;
  color: var(--ink-900);
  margin-bottom: 0.42rem;
}

.legal-stack p,
.legal-stack li {
  color: var(--ink-600);
  font-size: 0.93rem;
}

.legal-stack ul,
.legal-stack ol {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.32rem;
}

.contact-card {
  text-align: center;
}

.contact-email {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-email:hover {
  text-decoration: underline;
}

.note-box {
  border: 1px solid rgba(11, 78, 169, 0.2);
  background: rgba(215, 232, 255, 0.55);
  border-radius: 12px;
  color: var(--ink-700);
  font-size: 0.86rem;
  padding: 0.62rem 0.7rem;
  margin-top: 0.7rem;
}

.list-tight {
  margin: 0;
  padding-left: 1.06rem;
  display: grid;
  gap: 0.42rem;
}

.certificate-page .page-main {
  padding-top: 128px;
}

.certificate-shell {
  display: grid;
  gap: 1rem;
}

.certificate-page .page-header {
  text-align: center;
  margin-bottom: 0.45rem;
}

.certificate-hero-mark {
  max-width: 940px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(8, 54, 125, 0.2);
  background:
    radial-gradient(260px 160px at 17% 16%, rgba(90, 163, 255, 0.17), transparent 72%),
    linear-gradient(162deg, rgba(255, 255, 255, 0.94), rgba(226, 240, 255, 0.9));
  box-shadow: 0 18px 40px rgba(8, 54, 125, 0.12);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.certificate-hero-mark img {
  width: 82px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(4, 36, 86, 0.18);
}

.certificate-hero-mark .page-pill {
  margin-bottom: 0.52rem;
}

.certificate-hero-mark h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  margin-bottom: 0.34rem;
}

.certificate-hero-mark p {
  color: var(--ink-600);
  max-width: 58ch;
}

.certificate-hero-chips {
  margin-top: 0.66rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.certificate-hero-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(8, 54, 125, 0.2);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-700);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.certificate-lookup-card {
  padding: clamp(1rem, 2.2vw, 1.26rem);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.certificate-lookup-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(90, 163, 255, 0.14), transparent 52%),
    radial-gradient(320px 150px at 100% 0%, rgba(20, 107, 219, 0.18), transparent 70%);
  pointer-events: none;
}

.certificate-lookup-form {
  position: relative;
  display: grid;
  gap: 0.58rem;
}

.certificate-lookup-form label {
  color: var(--ink-900);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.certificate-lookup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.62rem;
}

.certificate-lookup-row input {
  height: 52px;
  border: 1px solid rgba(8, 54, 125, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink-900);
  font-size: 1rem;
  font-family: "Archivo", "Manrope", sans-serif;
  letter-spacing: 0.01em;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.certificate-lookup-row input:focus {
  outline: none;
  border-color: rgba(20, 107, 219, 0.58);
  box-shadow: 0 0 0 3px rgba(20, 107, 219, 0.17);
}

.certificate-lookup-row .btn {
  min-height: 52px;
  padding-inline: 1.22rem;
}

.certificate-help {
  color: var(--ink-500);
  font-size: 0.83rem;
}

.certificate-state-card {
  border-radius: 18px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  padding: 0.92rem 1rem 0.92rem 1.12rem;
  position: relative;
  overflow: hidden;
}

.certificate-state-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: rgba(20, 107, 219, 0.42);
}

.certificate-state-card h2 {
  font-size: 1.28rem;
  margin-bottom: 0.18rem;
  color: var(--ink-900);
}

.certificate-state-card p {
  color: var(--ink-600);
}

.certificate-state-card.state-loading {
  border-color: rgba(20, 107, 219, 0.34);
  background: rgba(215, 232, 255, 0.5);
}

.certificate-state-card.state-loading::before {
  background: rgba(20, 107, 219, 0.7);
}

.certificate-state-card.state-success {
  border-color: rgba(15, 107, 73, 0.28);
  background: rgba(221, 243, 234, 0.58);
}

.certificate-state-card.state-success::before {
  background: rgba(15, 107, 73, 0.75);
}

.certificate-state-card.state-warning {
  border-color: rgba(138, 90, 8, 0.26);
  background: rgba(255, 239, 207, 0.64);
}

.certificate-state-card.state-warning::before {
  background: rgba(138, 90, 8, 0.75);
}

.certificate-state-card.state-error {
  border-color: rgba(141, 42, 42, 0.26);
  background: rgba(253, 231, 231, 0.64);
}

.certificate-state-card.state-error::before {
  background: rgba(141, 42, 42, 0.75);
}

.certificate-content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.certificate-card {
  padding: clamp(1rem, 2.4vw, 1.3rem);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(4, 36, 86, 0.12);
}

.certificate-card h2 {
  font-size: 1.28rem;
  color: var(--ink-900);
  margin-bottom: 0.72rem;
}

.certificate-card-identity,
.certificate-card-watch,
.certificate-card-analysis,
.certificate-card-actions {
  grid-column: span 6;
}

.certificate-card-evidence {
  grid-column: 1 / -1;
}

.certificate-grid {
  display: grid;
  gap: 0.66rem;
}

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

.cert-field {
  border: 1px solid rgba(8, 54, 125, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.72rem 0.76rem;
}

.cert-field-full {
  grid-column: 1 / -1;
}

.cert-label {
  color: var(--ink-500);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.24rem;
}

.cert-value {
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

#certIdValue,
#certReference,
#certSerial {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.96rem;
}

#certVerificationUrl {
  color: var(--blue-800);
  text-decoration: none;
}

#certVerificationUrl:hover {
  text-decoration: underline;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.4ch;
  border-radius: 999px;
  border: 1px solid var(--border-1);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.58rem;
}

.status-valid {
  color: #0f6b49;
  border-color: rgba(15, 107, 73, 0.24);
  background: rgba(221, 243, 234, 0.84);
}

.status-revoked {
  color: #8d2a2a;
  border-color: rgba(141, 42, 42, 0.24);
  background: rgba(253, 231, 231, 0.84);
}

.status-superseded {
  color: #8a5a08;
  border-color: rgba(138, 90, 8, 0.23);
  background: rgba(255, 239, 207, 0.86);
}

.certificate-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
}

.certificate-image-card {
  display: block;
  border: 1px solid var(--border-2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(4, 36, 86, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.certificate-image-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 107, 219, 0.35);
  box-shadow: 0 16px 30px rgba(4, 36, 86, 0.16);
}

.certificate-image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.certificate-qr {
  margin-top: 0.92rem;
  border: 1px dashed rgba(8, 54, 125, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  padding: 0.66rem;
  max-width: 240px;
}

.certificate-qr img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.36rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.auth-panel:hover,
.badge-wrap:hover,
.cta-panel:hover,
.faq-item:hover,
.phone-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 78, 169, 0.3);
  box-shadow: 0 20px 42px rgba(8, 54, 125, 0.14);
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

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

@keyframes scanSweep {
  0% {
    top: 12%;
  }
  100% {
    top: 88%;
  }
}

@keyframes wreath-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes badge-bounce {
  0% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-6px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes heroIconFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 44px rgba(4, 36, 86, 0.2);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(4, 36, 86, 0.24);
  }
}

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

.wreath-float {
  animation: wreath-float 6s ease-in-out infinite;
}

.editors-choice-badge:hover .wreath-float {
  animation: badge-bounce 0.8s ease-in-out;
  filter: drop-shadow(0 0 18px rgba(20, 107, 219, 0.34));
}

@media (max-width: 1020px) {
  .hero-grid,
  .auth-layout {
    grid-template-columns: 1fr;
  }

  .certificate-content {
    grid-template-columns: 1fr;
  }

  .certificate-card-identity,
  .certificate-card-watch,
  .certificate-card-analysis,
  .certificate-card-actions,
  .certificate-card-evidence {
    grid-column: 1 / -1;
  }

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

  .decor-hero-1 {
    right: 1.1rem;
    top: 8%;
  }

  .decor-hero-2 {
    left: 1.1rem;
    bottom: 9%;
  }
}

@media (max-width: 780px) {
  body.has-mobile-sticky-cta {
    padding-bottom: calc(106px + env(safe-area-inset-bottom, 0px));
  }

  .container {
    padding: 0 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 30px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 1.02rem 1.22rem;
  }

  .hero-front-badge.editors-choice-badge {
    width: min(250px, 88%);
  }

  .section {
    padding: 64px 0;
  }

  .workflow-grid,
  .features-grid,
  .trust-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .certificate-page .page-main {
    padding-top: 102px;
  }

  .certificate-hero-mark {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.7rem;
    padding: 0.85rem 0.8rem;
  }

  .certificate-hero-mark img {
    margin: 0 auto;
    width: 74px;
    border-radius: 18px;
  }

  .certificate-hero-mark h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .certificate-lookup-row {
    grid-template-columns: 1fr;
  }

  .certificate-grid.two-col {
    grid-template-columns: 1fr;
  }

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

  .certificate-qr {
    max-width: 100%;
  }

  .nav-shell {
    height: 72px;
  }

  .decor {
    opacity: 0.72;
  }

  .decor-hero-1 {
    width: 88px;
    right: 0.55rem;
    top: 7%;
  }

  .decor-hero-2 {
    display: none;
  }

  .watch-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .scan-demo.chooser-open .watch-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-option-name {
    font-size: 0.65rem;
  }

  .scan-status {
    max-width: calc(100% - 4.5rem);
  }

  .hero-inline-badge.editors-choice-badge {
    width: min(260px, 88%);
  }

  .hero-scan-summary {
    margin-top: 0.58rem;
    padding: 0.72rem 0.74rem;
  }

  .hero-title-wrap {
    margin-bottom: 0.72rem;
  }

  .hero-main-icon {
    width: 72px;
    margin-bottom: 0.7rem;
    border-radius: 18px;
  }

  .hero-badge-mascot {
    width: min(102px, 38%);
    margin-top: 0.45rem;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 130;
    padding: 0.85rem 0.9rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(233, 244, 255, 0) 0%, rgba(233, 244, 255, 0.94) 38%, rgba(233, 244, 255, 0.99) 100%);
    transform: translateY(120%);
    transition: transform 0.3s ease;
  }

  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }

  .mobile-sticky-shell {
    border: 1px solid rgba(8, 54, 125, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 38px rgba(4, 36, 86, 0.2);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .mobile-sticky-copy {
    min-width: 0;
    flex: 1;
    padding-left: 0.25rem;
  }

  .mobile-sticky-copy p:first-child {
    font-size: 0.72rem;
    color: var(--ink-600);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky-copy p:last-child {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    white-space: nowrap;
    background: linear-gradient(136deg, #1d7bff 0%, #0a4ea6 52%, #072d64 100%);
    color: var(--white);
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.86rem;
    padding: 0.66rem 0.9rem;
    box-shadow: 0 10px 20px rgba(13, 87, 190, 0.3);
  }

  .mobile-sticky-btn svg {
    width: 16px;
    height: 16px;
  }
}

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