/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #09090b;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
.accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: #7b8a99;
}
.text-muted { color: #8b8b8b; }
.text-sm { font-size: 14px; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 100px 0; }
.section-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.section-sub {
  color: #8b8b8b;
  font-size: 16px;
  max-width: 560px;
  line-height: 1.7;
}
.section-center { text-align: center; }
.section-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 8px;
}
.btn-primary {
  background: #fff;
  color: #09090b;
}
.btn-primary:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(9,9,11,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  font-size: 14px;
  color: #8b8b8b;
  transition: color 0.2s;
}
.header-nav a:hover { color: #fff; }
.header .btn {
  padding: 10px 24px;
  font-size: 14px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  padding: 160px 0 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: 13px;
  color: #8b8b8b;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #8b8b8b;
  font-size: 17px;
  line-height: 1.7;
}
.hero .btn-group { justify-content: center; }
.hero-visual {
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: #111114;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual .placeholder-text {
  color: #555;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.hero-visual iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}
.unmute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
}
.unmute-btn:hover {
  background: rgba(255,255,255,0.2);
}
.unmute-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ===== EDITED FOR STRIP ===== */
.edited-for {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.edited-for .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.edited-for-label {
  font-size: 13px;
  color: #555;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.edited-for-names {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.edited-for-names span {
  font-size: 16px;
  font-weight: 600;
  color: #8b8b8b;
  letter-spacing: -0.01em;
}
.edited-for-names .sep {
  font-weight: 400;
  color: #333;
}

/* ===== PROCESS CARDS ===== */
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0 40px;
}
.process-card {
  background: #111114;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.process-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.process-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.process-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-card p {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.65;
}

/* ===== CTA SECTION (we simplify block) ===== */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-split-image {
  border-radius: 16px;
  overflow: hidden;
  background: #111114;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-split-image .placeholder-text {
  color: #555;
  font-size: 14px;
}
.cta-split-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-split-text p {
  color: #8b8b8b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ===== THE WORK ===== */
.work-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  margin-top: 48px;
}
.work-grid-long {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.work-grid-long-single {
  grid-template-columns: 1fr;
  max-width: 780px;
  margin: 0 auto;
}
.work-grid-short {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
  padding-bottom: 48px;
}
.work-grid-short .work-card:nth-child(even) {
  transform: translateY(48px);
}
.work-grid-short .work-card:nth-child(even):hover {
  transform: translateY(45px);
}
.work-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #111114;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.work-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.work-card-long { aspect-ratio: 16/9; }
.work-card-short { aspect-ratio: 9/16; }
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
}
.work-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.work-card-name {
  font-size: 13px;
  font-weight: 600;
}
.work-card-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #ccc;
}
.work-card .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover .play-icon { opacity: 1; }
.play-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 2px;
}

/* ===== HOW IT WORKS (3 steps) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.step-card {
  background: #111114;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(255,255,255,0.12); }
.step-number {
  font-size: 120px;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -20px;
  right: 10px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.step-card p {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.7;
  position: relative;
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.12); }
.faq-question {
  width: 100%;
  background: none;
  color: #fff;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question .icon {
  font-size: 20px;
  color: #555;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding: 120px 0;
}
.final-cta h2 {
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  color: #8b8b8b;
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.final-cta .btn-group { justify-content: center; }

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-weight: 700;
  font-size: 15px;
  color: #8b8b8b;
}
.footer-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-nav a {
  font-size: 14px;
  color: #555;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-socials a {
  font-size: 14px;
  color: #555;
  transition: color 0.2s;
}
.footer-socials a:hover { color: #fff; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .process-cards { grid-template-columns: repeat(2, 1fr); }
  .work-grid-short { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 72px 0; }
  .header-nav { display: none; }
  .mobile-toggle { display: block; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(9,9,11,0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hero { padding: 120px 0 60px; }
  .process-cards { grid-template-columns: 1fr; }
  .work-grid-long { grid-template-columns: 1fr; }
  .work-grid-short { grid-template-columns: repeat(2, 1fr); }
  .btn-group { flex-direction: column; align-items: stretch; }
  .edited-for .container { flex-direction: column; gap: 16px; }
  .footer .container { flex-direction: column; text-align: center; }
}
