/* ===================================
   ClipDeck — Landing Page Styles
   =================================== */

:root {
  --bg: #f8f5ee;
  --bg-alt: #f0ece0;
  --navy: #0d1b2a;
  --navy-mid: #162236;
  --charcoal: #1c1c2e;
  --accent: #e8a020;
  --accent-light: #f5b84a;
  --text: #1c1c2e;
  --text-muted: #6b6b80;
  --text-light: #a0a0b8;
  --border: rgba(13, 27, 42, 0.1);
  --card-bg: #ffffff;
  --card-shadow: 0 1px 3px rgba(13,27,42,0.06), 0 4px 16px rgba(13,27,42,0.08);
  --card-hover-shadow: 0 4px 12px rgba(13,27,42,0.1), 0 12px 32px rgba(13,27,42,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  backdrop-filter: blur(12px);
  background: rgba(248, 245, 238, 0.85);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--navy); }

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 140px 40px 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.headline-accent {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  margin: 0 28px 0 0;
}

/* Content Deck Visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-deck-visual {
  position: relative;
  width: 320px;
  height: 280px;
}
.deck-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px;
  width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.deck-card-1 { top: 0; left: 20px; transform: rotate(-4deg); z-index: 4; }
.deck-card-2 { top: 50px; left: 60px; transform: rotate(-1deg); z-index: 3; }
.deck-card-3 { top: 100px; left: 30px; transform: rotate(2deg); z-index: 2; }
.deck-card-4 { top: 150px; left: 80px; transform: rotate(-2deg); z-index: 1; }
.card-bar {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.card-bar-video { background: linear-gradient(90deg, var(--accent), #f5b84a); }
.card-bar-carousel { background: linear-gradient(90deg, #4a7fff, #7aa8ff); }
.card-bar-photo { background: linear-gradient(90deg, #6b6b80, #a0a0b8); }
.card-bar-market { background: linear-gradient(90deg, #3ecf8e, #7af5b5); }
.card-body { display: flex; flex-direction: column; gap: 6px; }
.card-line {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}
.card-line-short { width: 60%; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.deck-float-label {
  position: absolute;
  bottom: 10px; right: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}

/* ==============================
   PROOF
   ============================== */
.proof {
  padding: 64px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.proof-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.proof-sep { color: var(--text-light); }
.proof-metrics {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.proof-metric { text-align: center; }
.proof-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
.proof-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==============================
   SECTION COMMON
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==============================
   HOW IT WORKS
   ============================== */
.how-it-works {
  padding: 100px 40px;
  background: var(--bg);
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--border);
  padding-right: 32px;
  position: relative;
}
.step:last-child { border-right: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(13,27,42,0.08);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==============================
   FEATURES
   ============================== */
.features {
  padding: 100px 40px;
  background: var(--navy);
}
.features .section-eyebrow { color: var(--accent); }
.features .section-title { color: #fff; }
.features .section-sub { color: rgba(255,255,255,0.55); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,160,32,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(232,160,32,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ==============================
   PRICING
   ============================== */
.pricing {
  padding: 100px 40px;
  background: var(--bg);
}
.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.pricing-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 40px rgba(13,27,42,0.2);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.5); }
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
}
.price-dollar {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.pricing-card-featured .price-dollar { color: rgba(255,255,255,0.5); }
.price-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -2px;
}
.pricing-card-featured .price-number { color: #fff; }
.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}
.pricing-card-featured .price-period { color: rgba(255,255,255,0.4); }
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.5); }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-cta {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.pricing-cta-featured {
  border-top-color: rgba(255,255,255,0.1);
}
.cta-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-card-featured .cta-text { color: rgba(255,255,255,0.4); }
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==============================
   CLOSING
   ============================== */
.closing {
  padding: 100px 40px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 56px;
}
.closing-target {
  display: flex;
  gap: 64px;
}
.target-item {}
.target-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.target-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.target-tags span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-block;
  width: fit-content;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  padding: 48px 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .step { border-right: none; padding-right: 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .proof-metrics { gap: 40px; }
  .closing-target { flex-direction: column; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 24px 80px; }
  .navbar { padding: 0 24px; }
  .navbar-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-metrics { flex-direction: column; gap: 24px; }
  .features, .how-it-works, .pricing, .closing { padding: 80px 24px; }
}