/* ===========================
   VIREON — MINIMAL VERSION
   style.css
   (no scroll animations)
   =========================== */

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

:root {
  --navy:   #0A1628;
  --navy2:  #0D1F3C;
  --teal:   #00C9B1;
  --gold:   #E8C84A;
  --white:  #FFFFFF;
  --grey:   #94A3B8;
  --border: rgba(0, 201, 177, 0.18);
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.v-mark {
  width: 30px;
  height: 30px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-cta {
  background: var(--teal);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ---------- HERO ---------- */
.hero {
  padding: 90px 6% 70px;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 201, 177, 0.1) 0%, transparent 65%);
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 177, 0.08);
  border: 1px solid var(--border);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.accent  { color: var(--teal); }
.accent2 { color: var(--gold); }

.hero p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  background: var(--teal);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--teal); }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ---------- SECTIONS ---------- */
.features-section,
.market-section,
.how-section {
  padding: 76px 6%;
}

.market-section { padding-top: 0; }

.how-section {
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--grey);
  max-width: 500px;
  margin-bottom: 52px;
  line-height: 1.75;
}

/* ---------- FEATURE BLOCKS ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--navy2);
}

.feature-block.reverse {
  direction: rtl;
}
.feature-block.reverse > * {
  direction: ltr;
}

.feature-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.feature-content {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-tag {
  display: inline-block;
  background: rgba(0, 201, 177, 0.1);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.feature-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.feature-content h3 span { color: var(--teal); }

.feature-content p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: 0.93rem;
}

.earn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(232, 200, 74, 0.08);
  border: 1px solid rgba(232, 200, 74, 0.25);
  border-radius: 10px;
  padding: 12px 16px;
}
.earn-pill .amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
}
.earn-pill .desc {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ---------- CALLCASH TABLE ---------- */
.callcash-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}
.callcash-table th {
  padding: 10px 14px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  text-align: left;
}
.callcash-table td {
  padding: 12px 14px;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.callcash-table tr:last-child td { border-bottom: none; }
.callcash-table .naira { color: var(--gold); font-weight: 700; }
.callcash-table .gbp   { color: var(--teal); font-weight: 700; }

/* ---------- CHART / MARKET BLOCK ---------- */
.chart-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy2);
}
.chart-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.chart-text {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chart-text h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.chart-text p {
  color: var(--grey);
  line-height: 1.75;
  font-size: 0.93rem;
  margin-bottom: 12px;
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.step-card p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.65;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 90px 6%;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cta-section p {
  color: var(--grey);
  margin-bottom: 40px;
  font-size: 1rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 38px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}
.whatsapp-btn:hover { opacity: 0.9; }
.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 26px 6%;
  font-size: 0.78rem;
  color: var(--grey);
  border-top: 1px solid var(--border);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item   { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse,
  .chart-block { grid-template-columns: 1fr; direction: ltr; }

  .feature-img,
  .chart-img   { min-height: 230px; }

  .feature-content,
  .chart-text  { padding: 28px 20px; }

  .features-section,
  .market-section,
  .how-section,
  .cta-section { padding: 52px 5%; }
}

@media (max-width: 500px) {
  .steps-grid  { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; align-items: center; }
}
/* ==============================
   REGISTER MODAL
   ============================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: linear-gradient(160deg, #0d1f3c 0%, #0a1628 100%);
  border: 1px solid rgba(0, 201, 177, 0.25);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 201, 177, 0.12);
}

/* scrollbar styling inside modal */
.modal-box::-webkit-scrollbar { width: 4px; }
.modal-box::-webkit-scrollbar-track { background: transparent; }
.modal-box::-webkit-scrollbar-thumb { background: rgba(0,201,177,0.3); border-radius: 4px; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.14); }

/* Modal header */
.modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-header .v-mark {
  width: 44px;
  height: 44px;
  background: #00C9B1;
  color: #0A1628;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 14px;
}

.modal-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.modal-header h2 span { color: #00C9B1; }

.modal-header p {
  font-size: 0.88rem;
  color: #94A3B8;
}

/* Form layout */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.03em;
}

.form-group input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 201, 177, 0.2);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus {
  border-color: #00C9B1;
  background: rgba(0, 201, 177, 0.06);
}

/* Password with eye toggle */
.input-eye {
  position: relative;
}
.input-eye input {
  padding-right: 46px;
}
.eye-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94A3B8;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.2s;
}
.eye-btn:hover { color: #00C9B1; }
.eye-btn svg { width: 18px; height: 18px; }

/* Coupon row */
.coupon-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(0, 201, 177, 0.2);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.coupon-row input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
}
.coupon-row input:focus {
  border: none;
  background: transparent;
}
.coupon-buy-btn {
  background: #00C9B1;
  color: #0A1628;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0 16px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.coupon-buy-btn:hover { background: #00b09b; }

/* Terms checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: #94A3B8;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #00C9B1;
  flex-shrink: 0;
  cursor: pointer;
}
.form-check a {
  color: #00C9B1;
  text-decoration: none;
}
.form-check a:hover { text-decoration: underline; }

/* Submit button */
.submit-btn {
  background: #00C9B1;
  color: #0A1628;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 4px;
}
.submit-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* Responsive modal */
@media (max-width: 500px) {
  .modal-box   { padding: 28px 18px; }
  .form-row    { grid-template-columns: 1fr; }
}