*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0500FF;
  --blue-dark: #0400dd;
  --blue-light: #e8e8ff;
  --dark: #1B1B1C;
  --text: #1B1B1C;
  --gray: #6b7280;
  --light-bg: #f0f2f8;
  --white: #ffffff;
  --green: #22c55e;
  --red: #ef4444;
  --orange: #f97316;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid var(--blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(5, 0, 255, 0.3);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #e8ecff 0%, #f0f2ff 40%, #dde6f8 100%);
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 0, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 12px;
  padding: 11px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* Hero Card */
.hero-card-wrap {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.trust-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 440px;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.trust-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.trust-card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
}

.trust-score-wrap {
  text-align: right;
}

.trust-score-label {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-bottom: 2px;
}

.trust-score-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--text);
}

.trust-bar {
  height: 6px;
  background: #eee;
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.trust-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--green);
  width: 70%;
  transition: width 1.2s ease;
}

.wallet-status {
  background: #f0fdf4;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #166534;
  margin-bottom: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 16px;
  border-left: 3px solid var(--green);
  position: relative;
  overflow: hidden;
}

.metric-card.blue-border {
  border-left-color: var(--blue);
}

.metric-card.orange-border {
  border-left-color: var(--orange);
}

.metric-card.red-border {
  border-left-color: var(--red);
}

.metric-label {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.metric-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
}

.metric-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 99px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 99px;
}

.metric-bar-fill.green {
  background: var(--green);
  width: 85%;
}

.metric-bar-fill.blue {
  background: var(--blue);
  width: 72%;
}

.metric-bar-fill.orange {
  background: var(--orange);
  width: 30%;
}

.metric-bar-fill.red {
  background: var(--red);
  width: 15%;
}

/* ── RISK ASSESSMENT ── */
.risk-assessment {
  margin-top: 16px;
  background: #fafafa;
  border-radius: 16px;
  padding: 18px 20px;
}

.risk-assessment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.risk-assessment-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.risk-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  border-radius: 99px;
  padding: 5px 12px;
  text-transform: uppercase;
}

.risk-badge.low {
  background: #dcfce7;
  color: #166534;
}

.risk-badge.medium {
  background: #fef9c3;
  color: #854d0e;
}

.risk-badge.high {
  background: #fee2e2;
  color: #991b1b;
}

.risk-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  font-size: 14px;
}

.risk-row-label {
  color: var(--gray);
}

.risk-row-val {
  font-weight: 700;
  color: var(--text);
}

/* ── WHAT ARE WE DOING ── */
.dark-section {
  background: var(--dark);
  padding: 100px 40px;
  color: var(--white);
}

.dark-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.dark-left h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 28px;
}

.dark-left p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.danger-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  color: var(--text);
}

.danger-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.danger-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #f9f9f9;
}

.danger-row:last-child {
  border-bottom: none;
}

.danger-pct {
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  min-width: 44px;
}

.danger-pct-bar {
  width: 40px;
  height: 3px;
  background: #fecaca;
  border-radius: 99px;
  margin-top: 4px;
}

.danger-pct-fill {
  height: 100%;
  background: var(--red);
  border-radius: 99px;
}

.danger-name {
  flex: 1;
  font-size: 15px;
  color: var(--text);
}

.danger-amt {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ── PRICING ── */
.pricing-section {
  background: var(--light-bg);
  padding: 100px 40px;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 60px;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.price-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.price-coin-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.price-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 8px;
}

.price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.price-unit {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 28px;
}

.btn-check-aml {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity 0.2s, transform 0.15s;
}

.btn-check-aml:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── PARTNERS ── */
.partners-section {
  background: var(--light-bg);
  padding: 60px 40px 100px;
  text-align: center;
}

.partners-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}

.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}

.partners-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollPartners 20s linear infinite;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-logo {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
  min-width: 200px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  gap: 10px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
  background: var(--white);
  padding: 100px 40px;
}

.faq-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

/* Left contact card column */
.faq-contact-col {
  position: sticky;
  top: 92px;
  /* below the 72px nav */
}

.faq-contact-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 32px 28px;
}

.faq-contact-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.faq-contact-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.faq-messenger-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.15s;
}

.faq-messenger-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.faq-messenger-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-messenger-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 2px;
}

.faq-messenger-sub {
  font-size: 12px;
  color: var(--gray);
}

/* Right accordion */
.faq-inner {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray);
}

.faq-answer {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ── FOOTER ── */
.footer-wrap {
  background: var(--light-bg);
  padding: 40px 40px 60px;
}

footer {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 0 60px rgba(5, 0, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--blue);
}

/* Contact links */
.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  margin-bottom: 12px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--blue);
}

/* Social buttons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: var(--light-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.social-btn:hover {
  background: #e0e4f0;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #f0f0f0;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .hero-inner,
  .dark-inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ── CHECKING PAGE ── */
.check-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #e8ecff 0%, #f0f2ff 50%, #dde6f8 100%);
  display: flex;
  flex-direction: column;
}

.check-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
}

.back-btn {
  background: #f0f2f8;
  color: #1B1B1C;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.back-btn:hover {
  background: #e0e4f0;
}

.check-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 80px;
}

.check-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 5px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.check-hero-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid var(--blue);
}

.check-page-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.check-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 20px;
}

.check-card-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.2;
}

.check-card-sub {
  font-size: 14px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}

.network-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.network-option {
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  background: var(--white);
}

.network-option:hover {
  border-color: #b8c0ff;
  background: #f8f8ff;
}

.network-option.selected {
  border-color: var(--blue);
  background: #f0f0ff;
}

.network-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.network-info {
  flex: 1;
}

.network-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 3px;
}

.network-desc {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 8px;
}

.network-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.network-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--light-bg);
  color: #374151;
  border-radius: 99px;
  padding: 3px 12px;
}

.network-option.selected .network-tag {
  background: #e0e0ff;
  color: var(--text);
}

.network-radio {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.network-option.selected .network-radio {
  border-color: var(--blue);
  background: var(--blue);
}

.network-radio-check {
  display: none;
}

.network-option.selected .network-radio-check {
  display: block;
}

.btn-start {
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.2px;
}

.btn-start:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(5, 0, 255, 0.3);
}

.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(240, 242, 248, 0.85);
  backdrop-filter: blur(6px);
  z-index: 50;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loading-overlay.active {
  display: flex;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 5px solid #e0e4f0;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.loading-sub {
  font-size: 14px;
  color: var(--gray);
  margin-top: -12px;
}

.results-panel {
  display: none;
  width: 100%;
  max-width: 480px;
  margin-top: 20px;
}

.results-panel.visible {
  display: block;
}

.result-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.result-title {
  font-size: 17px;
  font-weight: 900;
}

.result-badge-safe {
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 800;
  border-radius: 99px;
  padding: 5px 14px;
}

.result-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.result-score-label {
  font-size: 13px;
  color: var(--gray);
}

.result-score-val {
  font-size: 22px;
  font-weight: 900;
}

.result-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 99px;
  margin-bottom: 20px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 99px;
  width: 0%;
  transition: width 1.4s ease;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid #f5f5f5;
  font-size: 14px;
}

.result-row-label {
  color: var(--gray);
}

.result-row-val {
  font-weight: 700;
  color: var(--text);
}

.result-row-val.safe {
  color: var(--green);
}

.result-row-val.warn {
  color: var(--orange);
}

@media (max-width: 520px) {
  .check-header {
    padding: 0 16px;
  }

  .check-main {
    padding: 32px 12px 60px;
  }

  .check-card {
    padding: 24px 18px;
    border-radius: 18px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .dark-section,
  .pricing-section,
  .partners-section,
  .faq-section {
    padding: 70px 20px;
  }

  .footer-wrap {
    padding: 24px 20px 40px;
  }

  footer {
    padding: 32px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }
}

/* -- WALLET MODAL -- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.wallet-modal {
  background: #1B1B1C;
  width: 90%;
  max-width: 380px;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  color: #fff;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.modal-close {
  background: #2D2D2E;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #404041;
}

.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wallet-item {
  background: #2D2D2E;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.wallet-item:hover {
  background: #383839;
}

.wallet-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.wallet-name {
  font-size: 16px;
  font-weight: 700;
  flex: 1;
}

.wallet-tag {
  font-size: 10px;
  font-weight: 800;
  border-radius: 6px;
  padding: 5px 10px;
  letter-spacing: 0.5px;
}

.wallet-tag.hardware {
  background: rgba(79, 70, 229, 0.2);
  color: #A5B4FC;
}

.wallet-tag.popular {
  background: rgba(59, 130, 246, 0.2);
  color: #93C5FD;
}

.wallet-icon-box span {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}