/* ============================================================
   LANDING.CSS — Landing Page Specific Styles
   Easy eSIM Platform | Powered by Airalo + DESC Token
   ============================================================ */

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1b3e 40%, #0a2a4a 70%, #0f3460 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(99, 102, 241, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 60% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroGlow {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.3) translate(-50px, 30px); opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero Left Content ── */
.hero-content { }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00d4ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge i { font-size: 0.75rem; }

.hero-badge .pulse {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #6366f1 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-subtitle strong { color: #00d4ff; font-weight: 600; }

/* ── Hero CTA Buttons ── */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,212,255,0.35);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,212,255,0.5); }
.btn-hero-primary span, .btn-hero-primary i { position: relative; z-index: 1; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(0,212,255,0.4);
  transform: translateY(-2px);
  color: #00d4ff;
}

/* ── Hero Stats ── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Hero Right — Phone Mockup ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 0.8s ease 0.2s both;
}

.phone-mockup-wrapper {
  position: relative;
}

.phone-float-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 12px 16px;
  white-space: nowrap;
  z-index: 10;
}

.phone-float-card.card-top-left {
  top: 20px;
  left: -80px;
  animation: floatCard1 4s ease-in-out infinite;
}

.phone-float-card.card-bottom-right {
  bottom: 60px;
  right: -60px;
  animation: floatCard2 4s ease-in-out infinite 1s;
}

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

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

.float-card-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.float-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: #10b981;
}

.float-card-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

/* ── Phone Mockup ── */
.phone-mockup {
  width: 260px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0d1b3e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(99,102,241,0.2);
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone-notch {
  width: 80px;
  height: 26px;
  background: #0a0f1e;
  border-radius: 0 0 20px 20px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0f172a;
  border-radius: 28px;
  padding: 16px;
  min-height: 420px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-time {
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
}

.phone-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.phone-icons span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
}

.esim-card-mini {
  background: linear-gradient(135deg, #1e3a5f, #0d2137);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,212,255,0.2);
  position: relative;
  overflow: hidden;
}

.esim-card-mini::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent);
  border-radius: 50%;
}

.esim-card-country {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.esim-flag {
  font-size: 1.2rem;
}

.esim-country-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
}

.esim-tag {
  font-size: 0.55rem;
  background: rgba(0,212,255,0.2);
  color: #00d4ff;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: auto;
  font-weight: 600;
}

.esim-details {
  display: flex;
  justify-content: space-between;
}

.esim-detail-item { text-align: center; }

.esim-detail-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.esim-detail-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ── DESC Balance on Phone ── */
.phone-desc-balance {
  background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(0,212,255,0.1));
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desc-balance-label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.desc-balance-amount {
  font-size: 1rem;
  font-weight: 800;
  color: #6366f1;
}

.desc-balance-usd {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
}

.desc-token-icon-mini {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
}

/* ── Mini Plans on Phone ── */
.phone-mini-plans { display: flex; flex-direction: column; gap: 6px; }

.mini-plan-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 6px 10px;
}

.mini-plan-info { display: flex; align-items: center; gap: 6px; }
.mini-plan-flag { font-size: 0.9rem; }

.mini-plan-name {
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
}

.mini-plan-data {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
}

.mini-plan-price {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
}

/* ── Marquee Section ── */
.marquee-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  white-space: nowrap;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.marquee-item .flag { font-size: 1.2rem; }
.marquee-item .sep { color: rgba(255,255,255,0.15); }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Plans Section ── */
.plans-section {
  padding: 100px 0;
  background: #070b14;
  position: relative;
}

.plans-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.4), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  color: #00d4ff;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-tab:hover {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.3);
  color: #00d4ff;
}

.filter-tab.active {
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

/* ── Plans Grid ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.plan-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,212,255,0.1);
}

.plan-card:hover::before { opacity: 1; }

.plan-card.featured {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.05);
}

.plan-card.featured::after {
  content: 'Popular';
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.plan-flag-large { font-size: 2rem; }

.plan-country {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.plan-provider {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

.plan-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.plan-detail { text-align: center; }

.plan-detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: block;
}

.plan-detail-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.plan-price-usd {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}

.plan-price-desc {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6366f1;
  background: rgba(99,102,241,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.plan-discount-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 3px 8px;
  border-radius: 20px;
}

.btn-buy-plan {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(99,102,241,0.15));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px;
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy-plan:hover {
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,212,255,0.3);
}

/* ── Pricing Tiers ── */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #070b14 0%, #0a0f1e 100%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card.best-value {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(0,212,255,0.06));
  border-color: rgba(99,102,241,0.4);
  box-shadow: 0 0 40px rgba(99,102,241,0.15);
}

.pricing-best-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pricing-icon.user-icon     { background: rgba(16,185,129,0.15); color: #10b981; }
.pricing-icon.agent-icon    { background: rgba(0,212,255,0.15);  color: #00d4ff; }
.pricing-icon.distrib-icon  { background: rgba(99,102,241,0.15); color: #6366f1; }

.pricing-tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.pricing-discount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-discount.user-color   { color: #10b981; }
.pricing-discount.agent-color  { color: #00d4ff; }
.pricing-discount.distrib-color{ color: #6366f1; }

.pricing-discount-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features { list-style: none; margin-bottom: 32px; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li i {
  font-size: 0.75rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.pricing-features li i.fa-check { color: #10b981; }
.pricing-features li i.fa-times  { color: rgba(255,255,255,0.2); }

.btn-pricing {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-pricing.user-btn {
  background: rgba(16,185,129,0.15);
  color: #10b981;
  border: 1px solid rgba(16,185,129,0.3);
}
.btn-pricing.user-btn:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}

.btn-pricing.agent-btn {
  background: rgba(0,212,255,0.15);
  color: #00d4ff;
  border: 1px solid rgba(0,212,255,0.3);
}
.btn-pricing.agent-btn:hover {
  background: #00d4ff;
  color: #0a0f1e;
  box-shadow: 0 8px 20px rgba(0,212,255,0.3);
}

.btn-pricing.distrib-btn {
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  color: #fff;
  border: none;
}
.btn-pricing.distrib-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(99,102,241,0.4);
}

/* ── DESC Token Section ── */
.desc-section {
  padding: 100px 0;
  background: #070b14;
  position: relative;
  overflow: hidden;
}

.desc-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.desc-coin-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.desc-coin-rings {
  position: absolute;
  inset: -40px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringRotate 8s linear infinite;
}

.ring-1 {
  inset: 10px;
  border-color: rgba(99,102,241,0.2);
  animation-duration: 8s;
}

.ring-2 {
  inset: 30px;
  border-color: rgba(0,212,255,0.15);
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-3 {
  inset: 0;
  border-color: rgba(16,185,129,0.1);
  animation-duration: 16s;
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.desc-coin {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #4f46e5, #6366f1, #818cf8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(99,102,241,0.1),
    0 0 0 16px rgba(99,102,241,0.05),
    0 30px 60px rgba(99,102,241,0.4);
  animation: coinPulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes coinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 8px rgba(99,102,241,0.1), 0 0 0 16px rgba(99,102,241,0.05), 0 30px 60px rgba(99,102,241,0.4); }
  50%       { transform: scale(1.03); box-shadow: 0 0 0 12px rgba(99,102,241,0.15), 0 0 0 24px rgba(99,102,241,0.07), 0 40px 80px rgba(99,102,241,0.5); }
}

.desc-coin-symbol {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.desc-coin-name {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.desc-token-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.desc-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.desc-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: #6366f1;
  display: block;
}

.desc-stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.desc-benefits { margin-top: 8px; }

.desc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.desc-benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(99,102,241,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.desc-benefit-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.desc-benefit-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ── How It Works ── */
.how-section {
  padding: 100px 0;
  background: #0a0f1e;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(0,212,255,0.3), rgba(99,102,241,0.3));
}

.step-item { text-align: center; position: relative; }

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(99,102,241,0.15));
  border: 2px solid rgba(0,212,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  color: #00d4ff;
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  background: linear-gradient(135deg, #00d4ff, #6366f1);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(0,212,255,0.4);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 100px 0;
  background: #070b14;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 0.85rem;
}

.testimonial-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-role {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}

/* ── Partner CTA ── */
.partner-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b3e, #0a0f1e);
  position: relative;
  overflow: hidden;
}

.partner-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(0,212,255,0.05));
}

.partner-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.partner-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.partner-cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}

.partner-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #030509;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #6366f1, #00d4ff);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #00d4ff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-copy a { color: #00d4ff; text-decoration: none; }

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ── Animations ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Scroll‑reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
