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

:root {
  --bg: #0C0C0E;
  --bg-card: #141416;
  --bg-card-hover: #1A1A1D;
  --fg: #F7F4EE;
  --fg-muted: #9A9590;
  --accent: #D4952A;
  --accent-dim: #A8751F;
  --border: rgba(247, 244, 238, 0.08);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  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: 1.25rem 2rem;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212, 149, 42, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(212, 149, 42, 0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 238, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* VIDEO CARD STACK */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-card-stack {
  display: flex;
  gap: 1rem;
  transform: rotate(-3deg);
}
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  width: 200px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.video-card:hover { transform: translateY(-4px) !important; }
.card-1 { transform: rotate(-8deg) translateY(8px); }
.card-2 { transform: rotate(-2deg) translateY(-4px); }
.card-3 { transform: rotate(4deg) translateY(12px); }
.card-2:hover { transform: rotate(-2deg) translateY(-8px) !important; }
.card-platform {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card-content {
  height: 90px;
  background: rgba(247, 244, 238, 0.04);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
}
.card-lines { display: flex; flex-direction: column; gap: 6px; padding: 12px; width: 100%; }
.line { height: 4px; background: rgba(247, 244, 238, 0.15); border-radius: 2px; }
.line.short { width: 40%; }
.line.medium { width: 65%; }
.line.long { width: 80%; }
.card-play {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
}
.card-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--bg);
}
.card-stats {
  font-size: 0.65rem;
  color: var(--fg-muted);
}

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
  background: rgba(20, 20, 22, 0.8);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat { text-align: center; flex: 1; }
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* PROCESS */
.process {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.step {
  flex: 1;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.step:hover { border-color: rgba(212, 149, 42, 0.3); }
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--fg);
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 3rem;
  flex-shrink: 0;
}

/* PLAYBOOK */
.playbook {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.playbook-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.playbook-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.2s;
}
.playbook-card:hover { border-color: rgba(212, 149, 42, 0.25); }
.playbook-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.playbook-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.playbook-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 6rem 2rem;
  background: rgba(20, 20, 22, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing .section-header { margin-bottom: 3rem; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: border-color 0.2s;
}
.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}
.pricing-card:hover { border-color: rgba(212, 149, 42, 0.4); }
.pricing-card.featured:hover { border-color: var(--accent); }
.pkg-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: rgba(212, 149, 42, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.pkg-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.pkg-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pkg-price span {
  font-size: 1rem;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}
.pkg-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-style: italic;
}
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pkg-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 1.5rem;
  position: relative;
}
.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6 L5 9 L10 3' stroke='%23D4952A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.pricing-note {
  max-width: 500px;
  margin: 2rem auto 0;
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner { max-width: 700px; margin: 0 auto; }
.manifesto-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(212, 149, 42, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.manifesto-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 4rem;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 4rem 0;
}

/* CLOSING */
.closing {
  padding: 8rem 2rem 6rem;
  border-top: 1px solid var(--border);
  background: rgba(20, 20, 22, 0.5);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.closing-cta {}
.cta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.cta-email {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
}
.footer-desc {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links span {
  font-size: 0.8rem;
  color: var(--fg-muted);
  cursor: default;
}
.footer-copy {
  font-size: 0.7rem;
  color: rgba(154, 149, 144, 0.5);
}

/* SAMPLES */
.samples {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.sample-card:hover { border-color: rgba(212, 149, 42, 0.35); }
.sample-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.sample-info { padding: 1.25rem; }
.sample-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.client-type {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}
.platform-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  background: rgba(212, 149, 42, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.sample-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .samples-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual { justify-content: flex-start; }
  .video-card-stack { transform: rotate(-2deg); }
  .video-card { width: 160px; }
  .stats-inner { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .process-steps { flex-direction: column; }
  .step-connector { display: none; }
  .playbook-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 1rem; }
}