/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --dark: #222222;
  --mid: #555555;
  --muted: #888888;
  --border: #e0e0e0;
  --border-dark: #282828;
  --bg: #ffffff;
  --bg-gray: #f6f6f6;
  --bg-dark: #0a0a0a;
  --text: #0a0a0a;
  --text-light: #f0f0f0;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--black);
  color: #fff;
  border: 2.5px solid var(--black);
  box-shadow: 4px 4px 0 var(--border);
}

.btn-dark:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--border);
}

.btn-dark:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--border);
}

.btn-outline {
  background: #ffffff;
  color: var(--black);
  border: 2.5px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}

.btn-outline:hover {
  background: var(--bg-gray);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.btn-outline:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-white {
  background: #fff;
  color: var(--black);
  border: 2.5px solid #fff;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: var(--bg-gray);
  border-color: var(--bg-gray);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.2);
}

.btn-white:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.2);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0; /* Removing standard gap for visual collision */
  font-weight: 700;
  font-family: var(--font-display);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.04em;
  -webkit-text-stroke: 0;
}

.brand-mark-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-mark-img.bm-light,
.page-header-dark .brand-mark-img,
.footer .brand-mark-img {
  filter: invert(1);
}


.bn-light {
  color: #f0f0f0;
  -webkit-text-stroke: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.4rem 0.85rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--black);
  background: var(--bg-gray);
}

.nav-link-active {
  color: var(--black);
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 1rem 24px 1.5rem;
  gap: 0.25rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile-link {
  padding: 0.6rem 0;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.nav-mobile-link:hover {
  color: var(--black);
}

.nav-mobile-cta {
  margin-top: 0.75rem;
  width: 100%;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 96px;
  overflow: hidden;
  background: #fff;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, #e8e8e8 1px, transparent 1px), linear-gradient(to bottom, #e8e8e8 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  pointer-events: none;
}

.hero>.container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--mid);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.title-accent {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
  text-decoration-color: var(--black);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  perspective: 1000px;
}

.cube-anim {
  position: relative;
  width: 280px;
  height: 280px;
  background: #ffffff;
  border: 4px solid var(--black);
  border-radius: 32px;
  box-shadow: 12px 12px 0 var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cube-anim .main-node {
  width: 112px;
  height: 112px;
  background: var(--black);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseNode 3s infinite;
  box-shadow: 0 0 0 8px rgba(10, 10, 10, 0.05);
  position: relative;
  z-index: 5;
}

.cube-anim .floater {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: 3px solid var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--black);
  z-index: 15;
}

.floater.f1 { top: -25px; left: -25px; animation: float1 4s ease-in-out infinite; }
.floater.f2 { top: -25px; right: -25px; animation: float2 5s ease-in-out infinite; }
.floater.f3 { bottom: -25px; right: 45px; animation: float3 6s ease-in-out infinite; }

.scanner-line {
  position: absolute;
  left: 24px;
  right: 24px;
  width: calc(100% - 48px);
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.03) 80%, rgba(10, 10, 10, 0.1) 100%);
  border-bottom: 3px solid var(--black);
  z-index: 10;
  animation: scanOver 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes pulseNode {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.2); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 24px rgba(10, 10, 10, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(10, 10, 10, 0); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(-10deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(15px) rotate(15deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes scanOver {
  0%, 100% { top: 10%; opacity: 0; }
  15% { opacity: 1; }
  85% { top: 70%; opacity: 1; }
}

@media (max-width: 992px) {
  .hero {
    padding: 120px 0 80px;
  }
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }
  .title-accent {
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
  }
  .hero-description {
    max-width: 500px;
    margin: 0 0 2.5rem 0;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-stats {
    justify-content: flex-start;
    margin-top: 3.5rem;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  padding: 120px 0 64px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.page-header-dark {
  background: var(--bg-dark);
  border-bottom-color: var(--border-dark);
}

.page-header>.container {
  position: relative;
  z-index: 1;
}

.page-header-inner {
  max-width: 700px;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.page-title-light {
  color: #f0f0f0;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 540px;
}

.page-subtitle-light {
  color: rgba(255, 255, 255, 0.45);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-gray);
}

.trust-bar-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.trust-logo-item:hover {
  opacity: 1;
}

.wallet-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 88px 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-gray {
  background: var(--bg-gray);
}

.section-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag-light {
  color: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.section-title-light {
  color: #f0f0f0;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.45);
}

/* ===== HOME: FEATURE GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.feature-card:hover {
  background: var(--bg-gray);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  transition: opacity var(--transition);
}

.feature-link:hover {
  opacity: 0.6;
}

/* ===== HOME: NUMBERS GRID ===== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.numbers-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.numbers-card:last-child {
  border-right: none;
}

.numbers-card:hover {
  background: #fff;
}

.numbers-val {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.numbers-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.numbers-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.hiw-steps {
  display: flex;
  flex-direction: column;
}

.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.hiw-step:last-child {
  border-bottom: none;
}

.hiw-step-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hiw-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
}

.hiw-line {
  flex: 1;
  width: 1px;
  background: var(--border);
  margin-left: 20px;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 650;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hiw-desc {
  font-size: 0.925rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hiw-callout {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-left: 3px solid var(--black);
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 0.5rem;
}

.hiw-callout strong {
  color: var(--black);
}

/* ===== TECH GRID ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-card {
  background: #fff;
  padding: 2rem;
  transition: background var(--transition);
}

.tech-card:hover {
  background: #fafafa;
}

.tech-title {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.tech-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ===== SECURITY ===== */
.sec-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sec-principle {
  background: var(--black-3);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-dark);
  transition: background var(--transition);
}

.sec-principle:hover {
  background: var(--dark);
}

.sec-p-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
}

.sec-p-icon svg {
  width: 20px;
  height: 20px;
}

.sec-principle h3 {
  font-size: 1rem;
  font-weight: 650;
  color: #f0f0f0;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.sec-principle p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.72;
}

/* ===== AUDIT CARDS ===== */
.audit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}

.audit-card {
  background: var(--black-3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audit-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-card-firm {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.02em;
}

.audit-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ade80;
  border: 1px solid #166534;
  background: rgba(74, 222, 128, 0.08);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
}

.audit-card-scope {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  flex: 1;
}

.audit-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.audit-card-meta span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
}

.audit-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 2px;
  width: fit-content;
  transition: color var(--transition);
}

.audit-card-link:hover {
  color: #f0f0f0;
}

.bug-bounty-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.bbb-title {
  font-size: 1.1rem;
  font-weight: 650;
  color: #f0f0f0;
  margin-bottom: 0.5rem;
}

.bbb-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  max-width: 520px;
}

/* ===== PHISHING WARNING ===== */
.phishing-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--black);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg-gray);
}

.ph-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--black);
}

.ph-icon svg {
  width: 100%;
  height: 100%;
}

.ph-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.ph-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}

.ph-desc strong {
  color: var(--black);
}

/* ===== VERIFICATION LAYOUT ===== */
.verify-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 5rem;
  align-items: start;
}

.verify-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.verify-info-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 2rem;
}

.verify-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vsm-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
}

.vsm-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg-gray);
  border: 1px solid var(--border);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsm-item strong {
  display: block;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.vsm-item p {
  color: var(--mid);
  line-height: 1.6;
}

.verify-guarantees {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.vg-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--mid);
}

.vg-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--black);
}

/* ===== VERIFY WIDGET ===== */
.verify-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.widget-step {
  padding: 2rem;
}

.hidden {
  display: none !important;
}

.widget-header {
  margin-bottom: 1.5rem;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--black);
  letter-spacing: -0.015em;
  margin-bottom: 0.3rem;
}

.widget-subtitle {
  font-size: 0.82rem;
  color: var(--muted);
}

.widget-back {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.75rem;
  padding: 0;
  transition: color var(--transition);
}

.widget-back:hover {
  color: var(--black);
}

.widget-footer {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  padding: 0.85rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-gray);
}

.lock-icon {
  width: 12px;
  height: 12px;
  stroke: var(--muted);
  stroke-width: 1.5;
}

/* ===== WALLET OPTIONS ===== */
.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.wallet-option:hover {
  border-color: var(--black);
  background: var(--bg-gray);
  transform: translateX(3px);
}

.wo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 6px;
}

.wo-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wo-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
}

.wo-networks {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
}

.wo-arrow {
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform var(--transition);
}

.wallet-option:hover .wo-arrow {
  transform: translateX(3px);
  color: var(--black);
}

/* ===== CONNECT ===== */
.connect-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.qr-placeholder {
  width: 180px;
  height: 180px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem 1rem 0.6rem;
}

.qr-sim {
  width: 130px;
  height: 130px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 4px;
  padding: 8px;
}

.qr-corner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--black);
  border-radius: 3px;
}

.qr-tl {
  grid-area: 1/1;
}

.qr-tr {
  grid-area: 1/3;
}

.qr-bl {
  grid-area: 3/1;
}

.qr-dots {
  grid-area: 2/2;
  background: repeating-linear-gradient(45deg, var(--black) 0px, var(--black) 2px, transparent 2px, transparent 6px);
  border-radius: 2px;
}

.qr-label {
  font-size: 0.65rem;
  color: var(--muted);
  text-align: center;
}

.connect-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  color: var(--muted);
  font-size: 0.8rem;
}

.connect-divider::before,
.connect-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.connect-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ===== PROGRESS ===== */
.progress-area {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.progress-bar-wrap {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--black);
  border-radius: 2px;
  transition: width 0.8s ease;
}

.progress-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.progress-step {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  transition: color var(--transition);
}

.progress-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition);
}

.progress-step.active {
  color: var(--black);
  font-weight: 500;
}

.progress-step.active::before {
  background: var(--black);
  border-color: var(--black);
}

.progress-step.done::before {
  background: var(--black);
  border-color: var(--black);
}

.progress-step.done {
  color: var(--mid);
}

/* ===== SUCCESS ===== */
.success-area {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

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

.success-icon {
  width: 36px;
  height: 36px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.success-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.cert-box {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
}

.cert-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}

.cert-row:last-child {
  border-bottom: none;
}

.cert-key {
  color: var(--muted);
  font-weight: 500;
}

.cert-val {
  color: var(--black);
  font-weight: 600;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
}

.cert-status {
  color: #16a34a;
  font-family: var(--font-main);
  font-size: 0.78rem;
}

/* ===== WALLET CARDS ===== */
.wallet-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.wallet-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}

.wallet-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.wallet-card-soon {
  opacity: 0.7;
}

.wc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wc-icon-wrap svg {
  width: 48px;
  height: 48px;
}

.wc-icon-muted svg {
  opacity: 0.5;
}

.wc-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.wc-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}

.wc-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.wc-detail-row:last-of-type {
  border-bottom: none;
}

.wcd-label {
  font-weight: 600;
  color: var(--black);
  min-width: 140px;
  flex-shrink: 0;
}

.wcd-val {
  color: var(--mid);
}

.wc-cta {
  margin-top: 0.5rem;
}

/* ===== TABLE ===== */
.wallets-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.wallets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.wallets-table thead tr {
  background: var(--black);
  color: #f0f0f0;
}

.wallets-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wallets-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}

.wallets-table tbody tr:last-child td {
  border-bottom: none;
}

.wallets-table tbody tr:hover {
  background: #fafafa;
}

.wallets-table td strong {
  color: var(--black);
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 100px;
  border: 1px solid;
}

.badge-active {
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.badge-soon {
  color: #92400e;
  border-color: #fde68a;
  background: #fffbeb;
}

/* ===== FAQ ===== */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 88px;
}

.faq-sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius);
  margin-bottom: 2px;
  transition: background var(--transition), color var(--transition);
}

.faq-cat-btn:hover {
  background: var(--bg-gray);
  color: var(--black);
}

.faq-cat-btn.active {
  background: var(--black);
  color: #fff;
}

.faq-questions {}

.faq-category-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--border);
}

.faq-category-label:first-child {
  border-top: none;
  padding-top: 0;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.15rem 0;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--mid);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--black);
  border-bottom: 1px solid var(--border);
}

.faq-answer ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.faq-answer ul li {
  list-style: disc;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== LEGAL LAYOUT ===== */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 88px;
}

.legal-toc-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.legal-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  counter-reset: toc;
}

.legal-toc-list li {
  counter-increment: toc;
}

.legal-toc-list a {
  font-size: 0.82rem;
  color: var(--mid);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  display: block;
  transition: background var(--transition), color var(--transition);
}

.legal-toc-list a:hover {
  background: var(--bg-gray);
  color: var(--black);
}

.legal-body {}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-section p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul li {
  list-style: disc;
}

.legal-section ol li {
  list-style: decimal;
}

.legal-section li {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
}

.legal-section strong {
  color: var(--black);
  font-weight: 650;
}

.legal-contact-box {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.8;
  margin-top: 1rem;
}

.legal-contact-box strong {
  color: var(--black);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--black);
  padding: 72px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}

.cta-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 260px;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.18);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  transition: color var(--transition);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.65;
  max-width: 700px;
}

/* ===== FADE ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANNOUNCE STRIP ===== */
.announce-strip {
  background: var(--bg-gray);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.announce-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.announce-pill {
  background: var(--black);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.announce-text {
  color: var(--mid);
  flex: 1;
}

.announce-link {
  color: var(--black);
  font-weight: 600;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1px;
  white-space: nowrap;
}

/* ===== HOME: INTRO LAYOUT ===== */
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.intro-para {
  font-size: 0.925rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-checklist {
  display: flex;
  flex-direction: column;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.icl-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.icl-item:last-child {
  border-bottom: none;
}

.icl-item:hover {
  background: #eee;
}

.icl-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.icl-icon svg {
  width: 11px;
  height: 11px;
}

.icl-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.2rem;
}

.icl-item p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ===== HOME: STEPS ROW ===== */
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-row-card {
  padding: 2.5rem 2rem;
  background: #fff;
  transition: background var(--transition);
}

.step-row-card:hover {
  background: var(--bg-gray);
}

.step-row-connector {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.src-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.src-body h3 {
  font-size: 1rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.src-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ===== HOME: WHY GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  background: #fff;
  padding: 2rem;
  transition: background var(--transition);
}

.why-card:hover {
  background: var(--bg-gray);
}

.why-title {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.72;
}

/* ===== HOME: TECH ROW ===== */
.tech-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-row-item {
  background: var(--black-3);
  padding: 2rem 1.75rem;
  transition: background var(--transition);
}

.tech-row-item:hover {
  background: var(--dark);
}

.tri-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.5rem;
}

.tri-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #f0f0f0;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.tri-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
}

/* ===== HOME: DEEP STATS ===== */
.deep-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ds-card {
  background: #fff;
  padding: 2.25rem 2rem;
  transition: background var(--transition);
}

.ds-card:hover {
  background: #f9f9f9;
}

.ds-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ds-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.ds-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== SECURITY: INTRO ROW ===== */
.sec-intro-row {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: start;
}

.sec-intro-para {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.sec-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sis-item {
  background: var(--black-3);
  padding: 1.75rem 1.5rem;
}

.sis-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #f0f0f0;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.sis-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.5rem;
}

.sis-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}

/* ===== SECURITY: THREAT TABLE ===== */
.threat-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.threat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.threat-table thead tr {
  background: var(--black-2);
}

.threat-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid var(--border-dark);
}

.threat-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-dark);
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.6;
  vertical-align: top;
}

.threat-table tbody tr:last-child td {
  border-bottom: none;
}

.threat-table td strong {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.threat-table tbody tr:hover td {
  background: var(--black-3);
}

/* ===== SECURITY: RESPONSIBLE DISCLOSURE ===== */
.responsible-disclosure {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-gray);
  overflow: hidden;
}

.rd-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
}

.rd-title {
  font-size: 1rem;
  font-weight: 650;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.rd-desc {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 560px;
}

.rd-desc strong {
  color: var(--black);
}

/* ===== HOW-IT-WORKS: OVERVIEW GRID ===== */
.hiw-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-ov-item {
  padding: 2.25rem 2rem;
  background: #fff;
}

.hiw-ov-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hiw-ov-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.65rem;
}

.hiw-ov-item p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .verify-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .numbers-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sec-principles {
    grid-template-columns: 1fr 1fr;
  }

  .audit-cards {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-sidebar {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-toc {
    position: static;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .step-row-connector {
    display: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .deep-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sec-intro-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hiw-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .threat-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
    height: 64px;
  }
  
  .brand-name {
    font-size: 1.55rem;
  }
  
  .brand-mark-img {
    height: 38px;
    width: auto;
  }

  .nav-brand {
    gap: 6px;
    margin-left: 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-actions {
    gap: 0.75rem;
    justify-content: flex-start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 480px;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .hero-stats {
    gap: 1.5rem 2rem;
    justify-content: flex-start;
    margin-top: 2rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    align-items: flex-start;
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .wallet-cards-grid {
    grid-template-columns: 1fr;
  }

  .hiw-step {
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
  }

  .hiw-num {
    font-size: 2rem;
  }

  .sec-principles {
    grid-template-columns: 1fr;
  }

  .tech-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-col {
    grid-column: auto;
  }

  .bug-bounty-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hiw-step-left {
    display: none;
  }

  .hiw-step {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .deep-stats-grid {
    grid-template-columns: 1fr;
  }

  .hiw-overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rd-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.25rem;
  }

  .trust-logos {
    gap: 1.25rem;
  }

  .section {
    padding: 60px 0;
  }

  .faq-sidebar {
    display: none;
  }

  .legal-toc {
    display: none;
  }

  .hiw-overview-grid {
    grid-template-columns: 1fr;
  }
}