/* ===========================
   ClipCraft Studio — Theme CSS
   Dark cinematic, amber accent
   =========================== */

:root {
  --bg: #0D0D0D;
  --bg-raised: #141414;
  --bg-card: #1A1A1A;
  --fg: #F5F0E8;
  --fg-muted: rgba(245, 240, 232, 0.45);
  --accent: #FF9500;
  --accent-dim: rgba(255, 149, 0, 0.12);
  --border: rgba(245, 240, 232, 0.08);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Satoshi', -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13,13,13,0.75);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 6px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow--primary {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,149,0,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}
.hero-glow--secondary {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,149,0,0.07) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
  animation: pulse-glow 8s ease-in-out infinite alternate-reverse;
}
@keyframes pulse-glow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.15); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,240,232,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,240,232,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,149,0,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}
.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 700px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-value {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* PROOF */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
}
.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.proof-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 16px;
}
.proof-mark {
  color: var(--accent);
  font-size: 2rem;
}
.proof-attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
}
.proof-role {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* FEATURES */
.features {
  padding: 100px 32px;
}
.features-header {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.features-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.features-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  transition: background 0.25s ease;
}
.feature-card:hover {
  background: #1E1E1E;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  padding: 100px 32px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-connector {
  height: 1px;
  background: var(--border);
  align-self: center;
  width: 60px;
  margin-top: 28px;
}
.step-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 32px;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  color: var(--fg);
}
.manifesto-text--secondary {
  color: var(--fg-muted);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
}

/* CLOSING */
.closing {
  padding: 120px 32px;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 48px;
}
.closing-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 48px;
  border-radius: 16px;
}
.cta-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.cta-amount {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--fg);
  line-height: 1;
}
.cta-period {
  font-size: 1rem;
  color: var(--fg-muted);
}
.cta-meta {
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 340px;
  text-align: center;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
}
.footer-tag {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer-sep {
  opacity: 0.4;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
  .hero { padding: 100px 20px 64px; }
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .features { padding: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .process { padding: 64px 20px; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-connector { display: none; }
  .manifesto { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
  .closing-cta { padding: 28px 32px; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .proof { padding: 40px 20px; }
  .proof-text { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .nav { padding: 16px 20px; }
  .stat-value { font-size: 1.6rem; }
}