:root {
  --bg: #0F1623;
  --surface: #16202E;
  --surface-2: #1D2939;
  --fg: #F5F0E8;
  --fg-muted: #9CA3AF;
  --accent: #F59E0B;
  --accent-dim: #B4730A;
  --border: rgba(245, 158, 11, 0.12);
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.site-nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
  padding: 4px 0;
}
.nav-link:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat-num {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 500;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  display: block;
  margin-top: 2px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-frame-stack {
  position: relative;
  width: 360px;
  height: 300px;
}
.frame {
  position: absolute;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.frame-1 {
  width: 240px;
  height: 300px;
  background: linear-gradient(135deg, #1D2939 0%, #16202E 100%);
  top: 0;
  right: 0;
  overflow: hidden;
}
.frame-1::after {
  content: '';
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(245, 158, 11, 0.08) 8px,
    rgba(245, 158, 11, 0.08) 10px
  );
  border-radius: 8px;
}
.frame-2 {
  width: 220px;
  height: 260px;
  background: linear-gradient(135deg, #16202E 0%, #0F1623 100%);
  top: 20px;
  left: 0;
  transform: rotate(-3deg);
}
.frame-3 {
  width: 180px;
  height: 200px;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
  top: 60px;
  left: 40px;
  transform: rotate(-6deg);
  border-color: rgba(245, 158, 11, 0.2);
}
.frame-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* MANIFESTO */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-deco {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 24px;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 20px;
  font-weight: 400;
}

/* STATS */
.stats {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat-big {
  font-family: 'DM Mono', monospace;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.stat-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SERVICES */
.services {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.2s;
}
.service-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-header {
  margin-bottom: 60px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 30px;
}
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 40px;
}
.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-statement {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.closing-statement p {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* PORTFOLIO */
.portfolio {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-header {
  text-align: center;
  margin-bottom: 64px;
}
.portfolio-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.65;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-card-media {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.video-card-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card-play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.video-card-play::before {
  content: '';
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.9);
  transition: transform 0.15s, background 0.15s;
}
.video-card-play::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 14px solid #0F1623;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  z-index: 1;
  transform: translate(2px, 0);
}
.video-card:hover .video-card-play::before {
  transform: scale(1.1);
  background: rgba(245, 158, 11, 1);
}
.video-card-play.playing::before { display: none; }
.video-card-play.playing::after { display: none; }
.video-card-watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(245, 158, 11, 0.8);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}
.video-card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
}
.video-card-caption {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.portfolio-cta {
  text-align: center;
  margin-top: 56px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0F1623;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  background: #FCD34D;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-connector { width: 2px; height: 40px; margin-top: 0; }
  .hero { padding: 60px 24px 80px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .portfolio { padding: 80px 24px; }
  .site-nav, .manifesto, .stats, .services, .process, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
}
/* PRICING */
.pricing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-inner {}
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.pricing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.65;
}
.pricing-sub strong { color: var(--fg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.pricing-card:hover { border-color: rgba(245, 158, 11, 0.3); }

.pricing-card-featured {
  background: var(--surface-2);
  border-color: var(--accent);
  position: relative;
}
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0F1623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-top { margin-bottom: 28px; }
.pricing-tier {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-price span {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-for {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

.btn-pricing {
  display: block;
  text-align: center;
  background: var(--surface-2);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-pricing:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent);
}
.btn-pricing-featured {
  background: var(--accent);
  color: #0F1623;
  border-color: var(--accent);
}
.btn-pricing-featured:hover {
  background: #FCD34D;
  border-color: #FCD34D;
  color: #0F1623;
}

/* FAQ */
.pricing-faq {
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 36px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.faq-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* WELCOME PAGE */
.welcome-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.welcome-inner {
  max-width: 560px;
  text-align: center;
}
.welcome-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 40px;
  display: block;
}
.welcome-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 28px;
}
.welcome-headline {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.welcome-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.welcome-amount {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  color: var(--accent);
  display: block;
  margin-bottom: 40px;
}
.btn-welcome-cta {
  display: inline-block;
  background: var(--accent);
  color: #0F1623;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 40px;
}
.btn-welcome-cta:hover { background: #FCD34D; transform: translateY(-2px); }
.welcome-next {
  border-top: 1px solid var(--border);
  padding-top: 36px;
}
.welcome-next p {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.welcome-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.welcome-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.welcome-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.welcome-step strong { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .nav-tag { display: none; }
  .pricing { padding: 80px 24px; }
}