/* ===========================================================
   CryptooPrime — Final Unified Style (Nova-Framer Genuine Match)
   Compact vertical rhythm • Optimized font metrics • Unified theme
   =========================================================== */

/* === Font Import (identical to genuine nova file) === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

/* === Root Theme Variables === */
:root {
  --bg: #000;
  --card: #020814;
  --muted: #9fb1d1;
  --primary: #7DFF16; /* indigo */
  --accent: #ABFF6B;  /* purple tint */
  --glass: rgba(255,255,255,0.03);
  --radius: 18px;
  --maxw: 1200px;
}

/* === Base Reset === */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: #eaf2ff;
  background: linear-gradient(180deg,#953553 0%, #E0115F 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Container === */
.container {
  max-width: var(--maxw);
  margin: 28px auto;
  padding: 20px;
  position: relative;
}

/* === Header === */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.logo-img {
  width: 250px;
  height: 56px;
}

nav {
  display: flex;
  gap: 14px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

nav a:hover { color: var(--accent); }

.actions {
  display: flex;
  gap: 10px;
}

/* === Buttons === */
.btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #021116;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 36px rgba(0,0,0,0.6);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(0,0,0,0.7);
}

.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(255,255,255,0.04);
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 28px;
  align-items: center;
  margin-top: 20px;
}

.hero-left { padding-right: 10px; }

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.02);
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: 40px;
  margin: 0;
  line-height: 1.02;
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #e6f9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 640px;
}

.mini-cta {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

/* === Hero Right (Vimeo Embed) === */
.hero-right {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.video-small {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
}

.video-small iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
}

/* === Plans === */
.plans {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  margin-top: 26px;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform .28s ease, box-shadow .28s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(166,108,255,0.08);
}

.plan-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-title h3 { margin: 0; font-size: 18px; }

.rate {
  font-weight: 900;
  font-size: 26px;
  color: var(--primary);
  margin-top: 10px;
}

.plan-desc {
  color: var(--muted);
  margin-top: 8px;
}

/* === Calculator === */
.calculator {
  margin-top: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 12px;
  align-items: center;
}

.plan-select {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
}

.plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #021116;
}

select,
input {
  background: transparent;
  border: 0;
  outline: none;
  color: var(--muted);
  font-weight: 700;
}

.calc-actions { display: flex; gap: 10px; }

.results-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 8px;
}

.res {
  flex: 1;
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.03);
}

.res .label { color: var(--muted); font-size: 13px; }
.res .value { font-weight: 900; font-size: 20px; color: var(--accent); }

/* === Reviews Section === */
.reviews {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.03);
  padding: 22px;
  overflow: hidden;
}

.review-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.review-slider::-webkit-scrollbar { display: none; }

.review {
  min-width: 300px;
  max-width: 320px;
  background: var(--card);
  border-radius: 14px;
  padding: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 0.28s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review:hover { transform: translateY(-6px); }

.review-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
}
.review-flag { font-size: 16px; }
.review-text { color: var(--muted); font-size: 14px; line-height: 1.45; flex: 1; }
.review-meta { color: rgba(159,177,209,0.6); font-size: 12px; }

/* Responsive for reviews */
@media (min-width:1100px){ .review{min-width:calc((100% - 64px)/3);} }
@media (max-width:1099px) and (min-width:769px){ .review{min-width:calc((100% - 48px)/2);} }
@media (max-width:768px){ .review{min-width:90%;} }

/* === Info & Stats === */
.info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.accept {
  display: flex;
  gap: 12px;
  align-items: center;
}

.accept img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.stats {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.stat {
  background: linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.03);
  min-width: 140px;
  text-align: center;
}

.stat .k {
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
}

/* === Footer === */
footer {
  margin-top: 30px;
  color: var(--muted);
  text-align: center;
  padding-bottom: 40px;
  font-size: 14px;
  opacity: 0.9;
}

/* === Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s cubic-bezier(.2,.9,.2,1);
}
.in-view { opacity: 1; transform: none; }

/* === Responsive Layout === */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .results-row { flex-direction: column; }
}
