/* ============================================================
   CRYPTYRE — Stripe-inspired Design System
   Font: Plus Jakarta Sans (closest public match to Stripe's Sohne)
   ============================================================ */

:root {
  /* Stripe's signature color palette */
  --stripe-dark:    #0A2540;
  --stripe-darker:  #06172B;
  --stripe-purple:  #635BFF;
  --stripe-purple-h:#5147E5;
  --stripe-purple-l:#7A73FF;
  --stripe-cyan:    #00D4FF;
  --stripe-indigo:  #4F46E5;
  --stripe-pink:    #C471ED;

  /* Surface colors */
  --white:   #FFFFFF;
  --gray-50: #F6F9FC;
  --gray-100:#EEF3F8;
  --gray-200:#E3ECF7;
  --gray-300:#C2D1E2;

  /* Text */
  --text:       #0A2540;
  --text-medium:#425466;
  --text-light: #697386;

  /* Borders */
  --border:      #E3ECF7;
  --border-dark: rgba(255,255,255,0.10);

  /* Semantic aliases */
  --primary:     var(--stripe-purple);
  --primary-h:   var(--stripe-purple-h);
  --wa-green:    #25D366;
  --wa-dark:     #1EBE5D;

  /* Radii */
  --r-sm:  6px;
  --r:     10px;
  --r-lg:  16px;
  --r-xl:  20px;

  /* Shadows — Stripe uses very clean, soft shadows */
  --shadow-xs: 0 1px 3px rgba(10,37,64,0.06);
  --shadow-sm: 0 2px 8px rgba(10,37,64,0.08);
  --shadow:    0 4px 20px rgba(10,37,64,0.10);
  --shadow-lg: 0 12px 40px rgba(10,37,64,0.12);
  --shadow-hero: 0 24px 64px rgba(0,0,0,0.28);
  --shadow-purple: 0 4px 20px rgba(99,91,255,0.30);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: var(--shadow-purple);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--primary-h);
  box-shadow: 0 6px 24px rgba(99,91,255,0.40);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.30);
}

.gradient-text {
  background: linear-gradient(135deg, #7A73FF 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(99,91,255,0.08);
  color: var(--stripe-purple);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(99,91,255,0.15);
}
.light-tag {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  border-color: rgba(255,255,255,0.15);
}
.section-header {
  max-width: 580px;
  margin-bottom: 56px;
}
.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   SECTION BACKGROUNDS
   ============================================================ */
.section-light {
  padding: 96px 0;
  background: var(--white);
}
.section-gray {
  padding: 96px 0;
  background: var(--gray-50);
}
.section-dark {
  padding: 96px 0;
  background: var(--stripe-dark);
  position: relative;
  overflow: hidden;
}
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar.scrolled .nav-logo .logo-text { color: var(--text); }
.navbar.scrolled .nav-links a { color: var(--text-medium); }
.navbar.scrolled .nav-links a:hover { color: var(--text); }
.navbar.scrolled .nav-links a.nav-active { color: var(--stripe-purple); font-weight: 700; }
.navbar.scrolled .nav-text-link { color: var(--text-medium); }
.navbar.scrolled .nav-text-link:hover { color: var(--text); }

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-active { color: #fff; font-weight: 700; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.nav-text-link:hover { color: #fff; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa-green);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.btn-nav-cta:hover { background: var(--wa-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--stripe-darker);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 28px;
}

/* Aurora gradient — Stripe's signature mesh */
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-purple {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(99,91,255,0.55), transparent 70%);
  top: -160px; left: -80px;
  animation-duration: 14s;
}
.orb-cyan {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,212,255,0.30), transparent 70%);
  top: 20%; right: -40px;
  animation-delay: -4s; animation-duration: 11s;
}
.orb-indigo {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(79,70,229,0.45), transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -8s; animation-duration: 16s;
}
.orb-pink {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(196,113,237,0.25), transparent 70%);
  top: 40%; left: 20%;
  animation-delay: -2s; animation-duration: 10s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.04); }
  66%      { transform: translate(-20px,30px) scale(0.97); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding: 120px 0 80px;
}

.hero-text { flex: 1; max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.70);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--stripe-cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-btn { padding: 13px 24px; font-size: 0.95rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-item svg { color: var(--stripe-cyan); flex-shrink: 0; }
.trust-sep { color: rgba(255,255,255,0.25); font-size: 0.9rem; }

/* Hero visual */
.hero-visual {
  flex: 0 0 400px;
  position: relative;
}
.hv-rate-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-hero);
  position: relative;
  z-index: 2;
}
.hv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hv-pair { display: flex; align-items: center; gap: 8px; }
.hv-coin {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #26a17b, #1a7560);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hv-pair-name { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.03em; }
.hv-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.live-pulse {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
.hv-rate {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hv-change {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hv-change.positive { color: #4ade80; }
.hv-change.negative { color: #f87171; }
.hv-spread {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 20px;
}
.spread-item {
  flex: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.spread-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.spread-val { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.spread-divider { width: 1px; background: rgba(255,255,255,0.08); align-self: stretch; }
.hv-actions { display: flex; gap: 10px; }
.hv-btn {
  flex: 1;
  padding: 11px 0;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.hv-buy {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(99,91,255,0.4);
}
.hv-buy:hover { background: var(--primary-h); }
.hv-sell {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.hv-sell:hover { background: rgba(255,255,255,0.12); }

/* Notification cards */
.hv-notif {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-hero);
  min-width: 220px;
}
.notif-1 { top: -28px; right: -24px; animation: floatCard 5s ease-in-out infinite; }
.notif-2 { bottom: -24px; left: -24px; animation: floatCard 5s ease-in-out infinite 2.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.notif-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.notif-icon.success { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.notif-icon.shield { background: rgba(99,91,255,0.15); font-size: 1rem; }
.notif-text strong { display: block; font-size: 0.83rem; font-weight: 600; color: var(--white); }
.notif-text span { font-size: 0.76rem; color: rgba(255,255,255,0.50); }

/* ============================================================
   LOGO BAR
   ============================================================ */
.logo-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.logo-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-bar-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  white-space: nowrap;
}
.logo-bar-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.lbl-item { display: flex; align-items: center; }
.lbl-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  opacity: 0.45;
  transition: opacity 0.2s;
  filter: brightness(0);
}
.lbl-logo:hover { opacity: 0.75; }
.binance-logo { filter: none; opacity: 0.50; }
.binance-logo:hover { opacity: 0.80; }
.bybit-logo { filter: brightness(0); opacity: 0.45; }
.bybit-logo:hover { opacity: 0.75; }
.okx-logo { filter: brightness(0); height: 16px; opacity: 0.45; }
.okx-logo:hover { opacity: 0.75; }
.lbl-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.lbl-banks {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lbl-banks span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.01em;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--gray-50); }
.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus, .stat-pct {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--stripe-purple);
  vertical-align: super;
}
.stat-label { font-size: 0.875rem; color: var(--text-medium); font-weight: 500; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.step-num-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--stripe-purple);
  background: rgba(99,91,255,0.07);
  border: 1px solid rgba(99,91,255,0.15);
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-icon-wrap {
  width: 44px; height: 44px;
  background: var(--gray-50);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stripe-purple);
  margin-bottom: 18px;
  border: 1px solid var(--border);
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 16px; }
.step-connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}
.step-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wa-green);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
}
.step-wa-link:hover { background: var(--wa-dark); }

/* ============================================================
   SERVICES BENTO GRID
   ============================================================ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.bento-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}
.bento-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

/* Featured card spans 2 columns */
.bento-featured {
  grid-column: span 2;
  border-color: rgba(99,91,255,0.20);
  background: linear-gradient(135deg, rgba(99,91,255,0.04) 0%, var(--white) 60%);
}
.bento-dark {
  background: var(--stripe-dark);
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}
.bento-dark:hover { box-shadow: 0 12px 40px rgba(10,37,64,0.35); }
.bento-law {
  background: linear-gradient(135deg, rgba(79,70,229,0.05) 0%, var(--white) 60%);
  border-color: rgba(79,70,229,0.18);
}
.bento-card-inner { padding: 32px; position: relative; z-index: 1; }

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tether-tag  { background: rgba(38,161,123,0.10); color: #16a37f; border: 1px solid rgba(38,161,123,0.20); }
.p2p-tag     { background: rgba(247,147,26,0.10); color: #c46f00; border: 1px solid rgba(247,147,26,0.18); }
.bank-tag    { background: rgba(59,130,246,0.10); color: #2563eb; border: 1px solid rgba(59,130,246,0.18); }
.fraud-tag   { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.80); border: 1px solid rgba(255,255,255,0.15); }
.law-tag     { background: rgba(79,70,229,0.10); color: #4f46e5; border: 1px solid rgba(79,70,229,0.18); }
.consult-tag { background: rgba(168,85,247,0.10); color: #9333ea; border: 1px solid rgba(168,85,247,0.18); }

.bento-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.bento-dark h3 { color: var(--white); }
.bento-card p { font-size: 0.9rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 20px; }
.bento-dark p { color: rgba(255,255,255,0.60); }
.bento-list { margin-bottom: 20px; }
.bento-list li {
  font-size: 0.875rem;
  color: var(--text-medium);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.bento-list li:last-child { border-bottom: none; }
.bento-list li::before { content: '→'; position: absolute; left: 0; color: var(--stripe-purple); font-size: 0.7rem; top: 8px; }
.bento-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(99,91,255,0.3);
}
.bento-cta:hover { background: var(--primary-h); transform: translateY(-1px); }
.bento-cta-sm {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--stripe-purple);
  transition: gap 0.2s, color 0.2s;
  gap: 2px;
}
.bento-cta-sm:hover { color: var(--primary-h); gap: 6px; }
.bento-dark .bento-cta-sm.light { color: rgba(255,255,255,0.75); }
.bento-dark .bento-cta-sm.light:hover { color: #fff; }
.bento-law .bento-cta-sm { color: var(--stripe-indigo); }
.bento-bg-art {
  position: absolute;
  right: 0; bottom: 0;
  width: 160px; height: 160px;
  opacity: 0.06;
  border-radius: 50%;
  pointer-events: none;
}
.art-tether { background: radial-gradient(circle, #26a17b, transparent 70%); width: 240px; height: 240px; }
.art-p2p    { background: radial-gradient(circle, #f7931a, transparent 70%); }
.art-bank   { background: radial-gradient(circle, #3b82f6, transparent 70%); }
.art-fraud  { background: radial-gradient(circle, #fff, transparent 70%); opacity: 0.04; }

/* ============================================================
   PLATFORMS
   ============================================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.platform-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pc-featured {
  border-color: rgba(99,91,255,0.25);
  box-shadow: 0 0 0 1px rgba(99,91,255,0.08);
}
.pc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.pc-logo {
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  border: 1px solid var(--border);
}
.binance-bg { background: rgba(240,185,11,0.07); border-color: rgba(240,185,11,0.18); }
.bybit-bg   { background: rgba(247,166,0,0.07); border-color: rgba(247,166,0,0.18); }
.okx-bg     { background: rgba(10,37,64,0.05); border-color: var(--border); }
.pc-logo-img { width: 100%; height: 100%; object-fit: contain; }
.bybit-img { filter: brightness(0); opacity: 0.80; }
.okx-img   { filter: brightness(0); opacity: 0.70; }
.platform-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.pc-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(74,222,128,0.10);
  color: #16a34a;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(74,222,128,0.20);
}
.pc-status::before { content: '●'; font-size: 0.5rem; }
.platform-card > p { font-size: 0.875rem; color: var(--text-medium); line-height: 1.7; margin-bottom: 18px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.pc-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-medium);
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.pc-tags span:hover { border-color: var(--stripe-purple); color: var(--stripe-purple); }

/* ============================================================
   SECURITY (dark section)
   ============================================================ */
.sec-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,91,255,0.35), transparent 70%);
  top: -150px; right: -80px;
}
.sec-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.18), transparent 70%);
  bottom: -100px; left: 10%;
}
.security-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.security-text h2 { color: var(--white); letter-spacing: -0.02em; margin-bottom: 16px; }
.security-text > p { color: rgba(255,255,255,0.60); margin-bottom: 36px; line-height: 1.75; }
.sec-features { display: flex; flex-direction: column; gap: 24px; }
.sec-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sec-feat-icon {
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  flex-shrink: 0;
}
.sec-feat strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.sec-feat p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* Security card visual */
.sec-card-wrap { display: flex; flex-direction: column; gap: 14px; }
.sec-main-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-hero);
}
.sec-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sec-card-title { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.70); }
.sec-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
}
.sec-card-badge.green { background: rgba(74,222,128,0.15); color: #4ade80; border: 1px solid rgba(74,222,128,0.20); }
.sec-checks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sec-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
}
.chk { font-size: 0.75rem; }
.chk.green { color: #4ade80; }
.sec-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-score span { font-size: 0.78rem; color: rgba(255,255,255,0.50); white-space: nowrap; }
.score-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.10);
  border-radius: 100px;
  overflow: hidden;
}
.score-fill { height: 100%; background: #4ade80; border-radius: 100px; }
.score-val { color: #4ade80 !important; }
.sec-stat-cards { display: flex; gap: 14px; }
.sec-mini-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 16px 20px;
  text-align: center;
}
.sec-mini-card strong { display: block; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.sec-mini-card span { font-size: 0.75rem; color: rgba(255,255,255,0.50); }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.why-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.purple-icon { background: rgba(99,91,255,0.09); color: var(--stripe-purple); border: 1px solid rgba(99,91,255,0.15); }
.cyan-icon   { background: rgba(0,212,255,0.09); color: #0891b2; border: 1px solid rgba(0,212,255,0.15); }
.green-icon  { background: rgba(34,197,94,0.09); color: #16a34a; border: 1px solid rgba(34,197,94,0.15); }
.wa-icon     { background: rgba(37,211,102,0.09); color: var(--wa-green); border: 1px solid rgba(37,211,102,0.15); }
.orange-icon { background: rgba(249,115,22,0.09); color: #ea580c; border: 1px solid rgba(249,115,22,0.15); }
.indigo-icon { background: rgba(79,70,229,0.09); color: var(--stripe-indigo); border: 1px solid rgba(79,70,229,0.15); }
.why-card h4 { font-size: 0.975rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--text-medium); line-height: 1.7; }
.why-card p a { color: var(--stripe-purple); transition: color 0.2s; }
.why-card p a:hover { color: var(--primary-h); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.t-featured {
  border-color: rgba(99,91,255,0.20);
  background: linear-gradient(135deg, rgba(99,91,255,0.03) 0%, var(--white) 60%);
}
.t-stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; font-size: 0.88rem; }
.testimonial-card > p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--stripe-purple), var(--stripe-indigo));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.875rem; color: var(--text); font-weight: 700; }
.t-author span { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-left .eyebrow-tag { margin-bottom: 16px; }
.contact-left h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.contact-left > p { color: var(--text-medium); margin-bottom: 32px; font-size: 0.975rem; line-height: 1.7; }

.wa-block { margin-bottom: 32px; }
.wa-primary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--wa-green);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.30);
}
.wa-primary-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
}
.wa-hint { text-align: center; font-size: 0.78rem; color: var(--text-light); margin-top: 8px; }
.contact-info-list { display: flex; flex-direction: column; gap: 14px; }
.ci-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-medium);
}
.ci-item svg { color: var(--text-light); flex-shrink: 0; }
.ci-item a { color: var(--stripe-purple); transition: color 0.2s; }
.ci-item a:hover { color: var(--primary-h); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: var(--stripe-purple);
  box-shadow: 0 0 0 3px rgba(99,91,255,0.12);
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--white); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; padding: 13px; font-size: 0.95rem; }
.form-note { margin-top: 12px; font-size: 0.76rem; color: var(--text-light); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--stripe-darker);
  padding: 64px 0 0;
}
.footer-top {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { flex: 0 0 280px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand > p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 250px;
  line-height: 1.65;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.50);
  transition: all 0.2s;
}
.footer-social a:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.85); }
.footer-links {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.50);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: rgba(255,255,255,0.90); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.30); }
.footer-disclaimer { max-width: 500px; text-align: right; }
.footer-disclaimer a { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-disclaimer a:hover { color: rgba(255,255,255,0.70); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 3s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.60);
}
@keyframes waPulse {
  0%    { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.35); }
  60%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
  100%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---- Scroll offset for sticky navbar on anchor jumps ---- */
section[id], .footer { scroll-margin-top: 72px; }

@media (max-width: 1024px) {
  .hero-content-wrap { flex-direction: column; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .hero h1 { text-align: center; }
  .hero-desc { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-eyebrow { justify-content: center; }

  /* Stats 2×2: restore separator between rows */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(4) { border-right: none; }
  .stat-block:nth-child(1),
  .stat-block:nth-child(2) { border-bottom: 1px solid var(--border); }

  .steps-row { flex-direction: column; align-items: stretch; }
  .step-connector {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    transform: rotate(90deg);
    color: var(--gray-300);
  }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-featured { grid-column: span 2; }
  .platforms-grid { grid-template-columns: 1fr; }
  .security-layout { grid-template-columns: 1fr; gap: 48px; }
  .sec-card-wrap { max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-brand { flex: unset; }
  .footer-disclaimer { text-align: left; }
}

@media (max-width: 768px) {
  /* Hide nav links + law services link; keep Trade Now button */
  .nav-links, .nav-ctas .nav-text-link { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(6,23,43,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
  }
  .nav-links.open a:hover { color: #fff; }
  .hamburger { display: flex; }

  /* Bento single column */
  .bento-grid { grid-template-columns: 1fr; }
  .bento-featured { grid-column: span 1; }

  .why-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }

  /* Logo bar: stack label + logos cleanly */
  .logo-bar .container { flex-direction: column; gap: 14px; text-align: center; }
  .logo-bar-logos { gap: 16px; }
  .lbl-sep { display: none; }
  .lbl-banks { justify-content: center; gap: 6px; }
  .lbl-banks span { font-size: 0.72rem; }

  .hero { padding: 0 20px; }

  /* Security visual fits mobile */
  .sec-stat-cards { flex-direction: row; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .contact-form { padding: 24px; }
  .section-light, .section-gray, .section-dark { padding: 64px 0; }
  .float-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-disclaimer { text-align: left; }
  .hero h1 { font-size: 2.4rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sec-stat-cards { flex-direction: row; }
}
