/* ====================================
   CLIPDROP — THEME CSS
   ==================================== */

:root {
  --bg: #0D0D10;
  --bg-2: #111116;
  --bg-3: #16161D;
  --lime: #D4FF47;
  --lime-dim: rgba(212, 255, 71, 0.15);
  --lime-glow: rgba(212, 255, 71, 0.25);
  --text: #F0EFE9;
  --text-muted: #8A8A96;
  --text-dim: #55555F;
  --border: rgba(255,255,255,0.07);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .nav-logo {
  font-family: 'Syne', sans-serif;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,16,0.85);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #0D0D10;
  background: var(--lime);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta:hover {
  opacity: 0.9;
}

.closing-content {
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 100px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== VIDEO FRAME ===== */
.video-frame {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,255,71,0.06);
}

.frame-topbar {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.frame-dots {
  display: flex;
  gap: 5px;
}

.frame-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}

.frame-title {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  flex: 1;
}

.frame-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FF4D4D;
  border: 1px solid #FF4D4D;
  border-radius: 4px;
  padding: 2px 6px;
}

.frame-screen {
  padding: 24px;
  min-height: 200px;
  background: linear-gradient(145deg, #0F0F14 0%, #16161D 100%);
  position: relative;
  overflow: hidden;
}

.screen-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,255,71,0.05) 0%, transparent 70%);
}

.screen-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.video-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.vc-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
}

.vc-bar-1 { width: 80%; }
.vc-bar-2 { width: 60%; }
.vc-bar-3 { width: 70%; }

.vc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D0D10;
  font-size: 12px;
  margin-top: 4px;
}

.frame-captions {
  position: absolute;
  bottom: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.caption-line {
  height: 6px;
  background: rgba(240,239,233,0.7);
  border-radius: 3px;
  width: 100%;
}

.caption-short { width: 65%; }

.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-3);
}

.ff-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ff-num {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ff-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.badge-inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--lime-dim);
  border: 1px solid rgba(212,255,71,0.2);
  border-radius: 10px;
  padding: 12px 18px;
}

.badge-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}

.badge-text {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== PROOF STRIP ===== */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 32px 40px;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.proof-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

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

/* ===== SECTION SHARED ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 48px;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-2);
  padding: 32px;
  transition: background 0.2s;
}

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

.fc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--lime-dim);
  border: 1px solid rgba(212,255,71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 18px;
}

.fc-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.fc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 1px;
  min-width: 40px;
  padding-top: 4px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.price-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.price-card-featured {
  border-color: rgba(212,255,71,0.3);
  background: linear-gradient(160deg, #111116 0%, #14140F 100%);
  box-shadow: 0 0 0 1px rgba(212,255,71,0.1), 0 24px 60px rgba(0,0,0,0.3);
}

.pc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pc-tag-featured {
  color: var(--lime);
  background: var(--lime-dim);
  border-color: rgba(212,255,71,0.2);
}

.pc-name {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.pc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pc-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pc-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pc-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pc-features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--lime-dim);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23D4FF47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

.pc-cta {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.pc-cta:hover {
  background: var(--bg-2);
  border-color: rgba(255,255,255,0.15);
}

.pc-cta-primary {
  background: var(--lime);
  color: #0D0D10;
  border-color: var(--lime);
}

.pc-cta-primary:hover {
  background: #c5ec3f;
  border-color: #c5ec3f;
}

.closing-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--lime);
  color: #0D0D10;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.2s;
}

.closing-cta:hover {
  opacity: 0.9;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-links {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-tag { display: none; }

  .hero { padding: 48px 20px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 28px; }

  .hero-right { order: -1; }

  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }

  .features { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr; }

  .how { padding: 48px 20px; }
  .step { gap: 16px; }
  .step-title { font-size: 18px; }

  .pricing { padding: 48px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .closing { padding: 64px 20px; }
  footer { padding: 32px 20px; }
}