:root {
  --bg: #f5f3ef;
  --surface: #ffffff;
  --ink: #141414;
  --ink-2: #57544f;
  --ink-3: #8b8780;
  --line: #e2ded7;
  --dark: #111111;
  --accent: #a8773f;
  --radius: 14px;
  --wrap: 1160px;
  --head: "Inter Tight", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--head); font-weight: 600; letter-spacing: -0.025em; line-height: 1.08; }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 18px; letter-spacing: -0.01em; line-height: 1.3; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 26px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font: 500 15px/1 var(--body); border: 1px solid var(--ink);
  cursor: pointer; transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: #2b2b2b; }
.btn:active { transform: scale(.98); }
.btn-sm { height: 38px; padding: 0 18px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg); border-color: var(--ink); }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: #ebe8e2; }
.btn-full { width: 100%; }
.link-arrow { font-weight: 500; font-size: 15px; border-bottom: 1px solid var(--ink-3); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--ink); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(245, 243, 239, .86);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.nav.scrolled { border-color: var(--line); }
.nav-inner { display: flex; align-items: center; height: 64px; gap: 32px; }
.wordmark { font: 600 19px/1 var(--head); letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 28px; margin-left: auto; font-size: 14px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { padding: 72px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; grid-template-areas: "copy reel" "facts reel"; column-gap: 56px; align-items: center; }
.hero-copy { grid-area: copy; align-self: end; }
.hero-reel { grid-area: reel; }
.hero .facts { grid-area: facts; align-self: start; }
.eyebrow { font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); letter-spacing: -0.035em; }
.lede { font-size: 18px; color: var(--ink-2); max-width: 30em; margin-top: 24px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; flex-wrap: wrap; }
.facts { list-style: none; display: flex; gap: 40px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); }
.facts li { display: flex; flex-direction: column; gap: 2px; }
.facts strong { font: 600 22px/1.1 var(--head); letter-spacing: -0.02em; }
.facts span { font-size: 13px; color: var(--ink-3); }

.hero-reel { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: center; }
.reel-card {
  aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden;
  background: var(--dark);
  box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 18px 40px -18px rgba(0,0,0,.35);
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; }
.r1 { transform: translateY(28px); }
.r3 { transform: translateY(-28px); }

/* Steps */
.steps { padding: 0 0 104px; }
.steps-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps-list li { padding: 32px 32px 0 0; }
.steps-list li + li { padding-left: 32px; border-left: 1px solid var(--line); }
.step-n { display: block; font: 500 13px/1 var(--body); color: var(--ink-3); margin-bottom: 20px; font-variant-numeric: tabular-nums; }
.steps-list p { color: var(--ink-2); margin-top: 8px; font-size: 15px; }

/* Work */
.work { padding: 104px 0; background: var(--dark); color: #f3f1ec; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.section-head p { color: var(--ink-2); max-width: 26em; }
.work .section-head p { color: #9a968f; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work-item { cursor: pointer; }
.work-frame { position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius); overflow: hidden; background: #1c1c1c; }
.work-frame video { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-item:hover video { transform: scale(1.02); }
.sound {
  position: absolute; right: 12px; bottom: 12px; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,.45) center/16px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H2v6h4l5 4V5z'/%3E%3Cpath d='m22 9-6 6M16 9l6 6'/%3E%3C/svg%3E");
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.work-item.unmuted .sound {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 5 6 9H2v6h4l5 4V5z'/%3E%3Cpath d='M15.5 8.5a5 5 0 0 1 0 7M19 5a10 10 0 0 1 0 14'/%3E%3C/svg%3E");
}
.work-item figcaption { display: flex; justify-content: space-between; margin-top: 14px; font-size: 14px; }
.work-item .muted { color: #8b8780; }

/* Why */
.why { padding: 112px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 64px; }
.why-points { display: grid; gap: 32px; }
.why-points > div { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.why-points > div:last-child { border-bottom: 0; padding-bottom: 0; }
.why-points p { color: var(--ink-2); margin-top: 6px; }

/* Pricing */
.pricing { padding: 0 0 112px; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.plan {
  display: flex; flex-direction: column; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 32px;
}
.plan-main { border-color: var(--ink); }
.tag { position: absolute; top: 32px; right: 32px; font-size: 12px; font-weight: 500; color: var(--accent); }
.price { font: 600 44px/1 var(--head); letter-spacing: -0.03em; margin: 18px 0 24px; }
.price span { font: 400 14px var(--body); letter-spacing: 0; color: var(--ink-3); margin-left: 4px; }
.plan ul { list-style: none; display: grid; gap: 10px; margin-bottom: 32px; flex: 1; font-size: 15px; color: var(--ink-2); }
.plan li { padding-left: 22px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 10px; height: 6px; border-left: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: rotate(-45deg); }

/* Upload */
.upload { padding: 112px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); scroll-margin-top: 40px; }
.upload-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.upload-copy p { color: var(--ink-2); margin-top: 16px; font-size: 17px; max-width: 26em; }
.assure { list-style: none; margin-top: 32px; display: grid; gap: 12px; font-size: 15px; }
.assure li { padding-left: 26px; position: relative; }
.assure li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 11px; height: 6px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }

.form { display: grid; gap: 16px; }
.hp { position: absolute; left: -9999px; }
.drop {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 200px; border: 1.5px dashed #cfcac2; border-radius: var(--radius);
  background: var(--bg); cursor: pointer; text-align: center; overflow: hidden;
  transition: border-color .2s, background .2s;
}
.drop:hover, .drop.over { border-color: var(--ink); }
.drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.drop-empty { display: grid; gap: 4px; pointer-events: none; }
.drop-empty strong { font-weight: 500; }
.drop-empty span { font-size: 13px; color: var(--ink-3); }
.drop-img { display: none; max-height: 260px; width: auto; margin: 16px auto; border-radius: 8px; pointer-events: none; }
.drop.has-file { border-style: solid; background: #fff; }
.drop.has-file .drop-empty { display: none; }
.drop.has-file .drop-img { display: block; }

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; font-size: 14px; font-weight: 500; }
.field em { font-style: normal; font-weight: 400; color: var(--ink-3); margin-left: 4px; }
.field input, .field textarea {
  width: 100%; font: 400 16px/1.4 var(--body); color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #b3aea6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,20,20,.08); }
.fine { font-size: 12px; color: var(--ink-3); text-align: center; }

/* FAQ */
.faq { padding: 112px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font: 500 17px/1.4 var(--body);
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 9px; height: 9px;
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
details p { color: var(--ink-2); padding: 0 40px 24px 0; }

/* Closer */
.closer { background: var(--dark); color: #f3f1ec; padding: 96px 0; }
.closer-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.closer h2 { max-width: 16em; }

/* Footer */
.foot { background: var(--dark); color: #8b8780; border-top: 1px solid #262626; font-size: 13px; }
.foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 72px; }
.foot .wordmark { color: #f3f1ec; font-size: 16px; }

/* Thanks page */
.thanks { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 24px; }
.thanks-inner { max-width: 30em; }
.thanks h1 { font-size: clamp(34px, 5vw, 48px); margin: 20px 0 16px; }
.thanks p { color: var(--ink-2); font-size: 17px; }
.thanks .btn { margin-top: 36px; }

/* Responsive */
@media (max-width: 960px) {
  .hero { padding: 40px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; grid-template-areas: "copy" "reel" "facts"; row-gap: 40px; }
  .hero .facts { margin-top: 8px; }
  .why-grid, .upload-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-reel { max-width: 520px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 480px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .closer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-inner .btn { margin-left: auto; }
  .lede { font-size: 17px; }
  .facts { gap: 24px; }
  .facts strong { font-size: 19px; }
  .hero-reel { gap: 8px; }
  .r1 { transform: translateY(16px); }
  .r3 { transform: translateY(-16px); }
  .steps-list { grid-template-columns: 1fr; }
  .steps-list li, .steps-list li + li { padding: 24px 0; border-left: 0; }
  .steps-list li + li { border-top: 1px solid var(--line); }
  .work-grid { gap: 12px; }
  .work, .why, .upload, .faq { padding: 80px 0; }
  .pricing { padding-bottom: 80px; }
  .row { grid-template-columns: 1fr; }
  .plan { padding: 28px 24px; }
  .tag { top: 28px; right: 24px; }
  .foot-inner { flex-direction: column; justify-content: center; height: auto; padding: 28px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
.nw { white-space: nowrap; }

/* Optional logo upload */
.logo-pick { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: -4px; }
.logo-btn { position: relative; display: inline-flex; align-items: center; gap: 12px; cursor: pointer; font-size: 14px; font-weight: 500; min-width: 0; }
.logo-btn input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.logo-thumb {
  flex: none; width: 40px; height: 40px; border-radius: 10px; border: 1px dashed #cfcac2;
  display: grid; place-items: center; background: var(--bg); overflow: hidden;
}
.logo-thumb::before { content: "+"; font-size: 18px; font-weight: 400; color: var(--ink-3); line-height: 1; }
.logo-thumb img { display: none; width: 100%; height: 100%; object-fit: contain; padding: 4px; background: #fff; }
.logo-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.logo-text em { font-style: normal; font-weight: 400; color: var(--ink-3); margin-left: 4px; }
.logo-btn:hover .logo-thumb { border-color: var(--ink); }
.logo-clear { display: none; flex: none; background: none; border: 0; font: 400 13px var(--body); color: var(--ink-3); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.logo-clear:hover { color: var(--ink); }
.logo-pick.has-logo .logo-thumb { border-style: solid; border-color: var(--line); }
.logo-pick.has-logo .logo-thumb::before { display: none; }
.logo-pick.has-logo .logo-thumb img { display: block; }
.logo-pick.has-logo .logo-clear { display: block; }
