﻿:root {
  color-scheme: dark;
  --bg: #030407;
  --panel: #0a0d13;
  --panel-2: #0f131d;
  --line: rgba(255, 255, 255, 0.11);
  --line-blue: rgba(106, 95, 255, 0.52);
  --text: #f6f7fb;
  --muted: #a4aabb;
  --dim: #697184;
  --blue: #4f5cff;
  --purple: #8a5cff;
  --green: #84e9a8;
  --max: 1180px;
  --display-font: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, sans-serif;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 10%, rgba(37, 45, 75, 0.28), transparent 440px), #020305;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.edge-wave {
  position: fixed;
  top: 185px;
  width: 92px;
  height: 245px;
  pointer-events: none;
  opacity: 0.7;
  background: repeating-linear-gradient(90deg, transparent 0 7px, rgba(75, 91, 255, 0.9) 7px 9px, transparent 9px 15px);
  mask-image: radial-gradient(ellipse at center, #000 0 42%, transparent 72%);
  filter: drop-shadow(0 0 18px rgba(76, 90, 255, 0.85));
}
.edge-wave.left { left: 0; }
.edge-wave.right { right: 0; transform: scaleX(-1); }

.page { width: min(100% - 96px, var(--max)); margin: 0 auto; }
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 66px;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(2, 3, 5, 0.82);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 760; }
.brand-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #9ca4ff 52%, #4f5cff);
  color: #030407;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(80, 92, 255, .45);
}
.nav-links { justify-self: center; display: flex; gap: 35px; color: #9aa1b3; font-size: 13px; }
.nav-links a { transition: color .18s ease; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.login, .book {
  min-height: 39px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  padding: 0 20px;
  background: rgba(255,255,255,.02);
  font-weight: 720;
  cursor: pointer;
}
.book {
  border-color: transparent;
  background: linear-gradient(135deg, #5964ff, #7d52ff);
  box-shadow: 0 0 28px rgba(84, 96, 255, .45);
}
.nav-toggle { display: none; }

.hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 86px;
  align-items: center;
  padding: 40px 0 28px;
}
.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(48px, 5.55vw, 72px);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #c4c9d8;
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 760;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, #5662ff, #7b54ff); box-shadow: 0 0 34px rgba(80, 92, 255, .42); }
.btn-secondary, .btn-outline { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.025); }
.btn-secondary:hover, .btn-outline:hover { border-color: var(--line-blue); background: rgba(255,255,255,.06); }
.cal-icon { font-size: 14px; opacity: .75; }
.trust { display: flex; align-items: center; gap: 12px; margin-top: 42px; color: #d9deec; }
.trust span { color: #6d78ff; text-shadow: 0 0 14px rgba(81, 95, 255, .8); }

.production-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(18, 23, 34, .95), rgba(8, 10, 15, .94));
  box-shadow: 0 28px 90px rgba(0,0,0,.55);
}
.production-card:before {
  content: "";
  position: absolute;
  inset: 72px 24px auto 24px;
  height: 120px;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .7;
}
.production-head { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 18px; }
.production-head strong { display: block; font-size: 19px; }
.production-head span { display: block; margin-top: 4px; color: #cfd4e4; font-size: 17px; }
.status { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px; border: 1px solid rgba(97, 227, 149, .22); border-radius: 9px; color: #dfffe9; background: rgba(61, 175, 105, .12); font-size: 12px; font-weight: 850; text-transform: uppercase; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.wave-area { position: relative; z-index: 1; height: 112px; margin-top: 12px; display: grid; align-items: center; }
.time-pin { position: absolute; left: 58%; top: 12px; z-index: 2; border-radius: 4px; padding: 3px 6px; background: #0c1020; color: #fff; font-size: 11px; }
.time-pin:after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 83px; background: rgba(255,255,255,.45); }
.wave-line { position: absolute; left: 0; right: 0; top: 55%; height: 2px; background: linear-gradient(90deg, #4750ff, #7d5cff, #4750ff); box-shadow: 0 0 18px rgba(78, 86, 255, .85); }
.bars { display: flex; align-items: center; gap: 5px; height: 78px; }
.bars span { flex: 1; height: 22px; border-radius: 10px; background: linear-gradient(180deg, #8b83ff, #4c5cff); animation: wave 1.9s ease-in-out infinite alternate; box-shadow: 0 0 10px rgba(79,92,255,.55); }
.bars span:nth-child(3n) { height: 48px; animation-delay: .25s; }
.bars span:nth-child(4n) { height: 34px; animation-delay: .45s; }
.bars span:nth-child(5n) { height: 60px; animation-delay: .12s; }
@keyframes wave { from { transform: scaleY(.7); opacity: .65; } to { transform: scaleY(1.08); opacity: 1; } }
.round-arrow { position: absolute; top: 184px; z-index: 3; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: #0a0d14; font-size: 30px; line-height: 1; cursor: pointer; }
.round-arrow.prev { left: -18px; }
.round-arrow.next { right: -18px; }
.clip-deck { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.clip-deck article { overflow: hidden; min-height: 124px; border: 1px solid rgba(255,255,255,.11); border-radius: 8px; background: #0a0c12; }
.clip-deck article.selected { border-color: #7467ff; box-shadow: 0 0 0 1px rgba(116,103,255,.65), 0 0 26px rgba(87,95,255,.42); }
.clip-deck img { display: block; width: 100%; height: 76px; object-fit: cover; }
.clip-deck span, .clip-deck b { display: block; padding: 0 9px; }
.clip-deck span { margin-top: 8px; color: #d5d9e8; font-size: 11px; }
.clip-deck b { margin-top: 2px; font-size: 12px; }
.publish-panel { position: relative; z-index: 1; margin-top: 24px; padding: 18px; border: 1px solid var(--line); border-radius: 10px; background: rgba(9, 12, 18, .92); }
.publish-panel:before { content: ""; position: absolute; top: -25px; left: 50%; width: 160px; height: 48px; transform: translateX(-50%); border-left: 1px solid rgba(94, 102, 255, .7); border-right: 1px solid rgba(94, 102, 255, .7); border-bottom: 1px solid rgba(94, 102, 255, .7); border-radius: 0 0 16px 16px; box-shadow: 0 0 24px rgba(77, 89, 255, .35); }
.publish-panel small { display: block; color: #50586d; margin-bottom: 9px; }
.platforms { display: grid; grid-template-columns: repeat(8, 1fr); gap: 18px; align-items: center; }
.platforms span, .platforms em { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; font-style: normal; font-weight: 850; justify-self: center; box-shadow: 0 10px 30px rgba(0,0,0,.32); }
.yt { background: #ff3030; }.ig { background: linear-gradient(135deg,#ffb13d,#f13d8e,#6d5cff); }.tk { background: #07080a; }.li { background: #2175d9; }.x { background: #050608; }.fb { background: #2d7dff; }.sp { background: #28b44b; }

.metrics { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); align-items: center; min-height: 98px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(8,10,15,.35); }
.metrics > div { min-height: 58px; padding: 0 34px; border-right: 1px solid rgba(255,255,255,.08); display: grid; align-content: center; }
.metrics > div:last-child { border-right: 0; }
.metrics strong { display: block; font-size: 30px; line-height: 1; }
.metrics span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }
.creator-proof span { text-transform: uppercase; font-size: 12px; }
.faces { display: flex; align-items: center; margin-top: 10px; }
.faces img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #11151d; margin-right: -8px; object-fit: cover; }
.faces b { margin-left: 14px; font-size: 13px; }

.services, .pricing, .process, .work, .testimonials { padding: 54px 0; border-bottom: 1px solid rgba(255,255,255,.085); }
.section-title { display: grid; grid-template-columns: 300px 1fr; gap: 70px; }
.section-title h2, .pricing h2, .process h2, .split-title h2 { margin: 0; font-size: 30px; line-height: 1.14; }
.service-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 42px; margin-left: 340px; margin-top: -58px; }
.service-row article { min-width: 0; }
.service-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 18px; border: 1px solid var(--line-blue); border-radius: 50%; color: #b7b8ff; background: rgba(69, 76, 255, .1); font-weight: 800; box-shadow: inset 0 0 22px rgba(80,92,255,.12); }
.service-row h3 { margin: 0 0 8px; font-size: 16px; }
.service-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.text-link { display: block; margin-top: 32px; color: #7c78ff; text-align: center; font-size: 14px; font-weight: 750; }

.pricing-head { position: relative; display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; }
.toggle { position: absolute; left: 50%; transform: translateX(-50%); top: -18px; display: flex; gap: 14px; align-items: center; min-height: 40px; padding: 4px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(7,9,14,.9); color: #fff; box-shadow: 0 0 26px rgba(95, 91, 255, .28); font-size: 13px; }
.toggle span:first-child { color: #bcbcff; }
.toggle span:nth-child(2) { color: #d8dcf0; font-size: 12px; }
.toggle b { font-size: 13px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { position: relative; padding: 28px; min-height: 372px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 9px; background: linear-gradient(145deg, rgba(20, 25, 34, .9), rgba(8, 10, 15, .95)); }
.price-card.featured { border-color: rgba(101, 95, 255, .85); box-shadow: 0 0 44px rgba(81, 91, 255, .2); background: radial-gradient(circle at 50% 0, rgba(87, 84, 255, .18), transparent 220px), linear-gradient(145deg, rgba(20, 25, 34, .95), rgba(8, 10, 15, .98)); }
.badge { position: absolute; right: 24px; top: 24px; border-radius: 7px; background: rgba(104, 95, 255, .2); border: 1px solid rgba(104,95,255,.32); color: #d7d5ff; padding: 7px 10px; font-size: 12px; }
.price-card h3 { margin: 0 0 14px; font-size: 20px; }
.price { font-size: 42px; line-height: 1; font-weight: 850; }
.price-card p { margin: 12px 0 18px; color: var(--muted); line-height: 1.45; }
.price-card ul { margin: 0; padding: 0; list-style: none; }
.price-card li { position: relative; margin: 10px 0; padding-left: 24px; color: #cbd1e1; font-size: 14px; }
.price-card li:before { content: "○"; position: absolute; left: 0; color: #8581ff; }
.price-card .btn { width: 100%; margin-top: auto; min-height: 48px; }
.pricing-note { margin: 24px 0 0; text-align: center; color: var(--muted); }
.link-button { border: 0; background: transparent; color: #746cff; cursor: pointer; }

.process { display: grid; grid-template-columns: 210px 1fr; align-items: center; gap: 40px; }
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.process-row article { display: grid; grid-template-columns: 44px 36px 1fr; gap: 12px; align-items: center; }
.process-row span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-blue); background: rgba(79, 92, 255, .12); color: #bfc2ff; }
.process-row b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-blue); color: #fff; font-size: 24px; }
.process-row h3 { grid-column: 3; margin: 0; font-size: 15px; }
.process-row p { grid-column: 3; margin: -6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; }

.split-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.split-title a { color: #837dff; font-size: 14px; font-weight: 750; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px 20px; }
.work-grid article { position: relative; min-height: 128px; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background-image: linear-gradient(90deg, rgba(4,5,8,.15), rgba(4,5,8,.15)), var(--thumb); background-size: cover; background-position: center; }
.work-grid button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: #25283a; cursor: pointer; }
.work-grid span { position: absolute; right: 10px; bottom: 8px; border-radius: 5px; padding: 4px 8px; background: rgba(0,0,0,.5); color: #fff; font-size: 12px; }

.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 82px; }
.testimonial-row figure { margin: 0; }
.testimonial-row blockquote { position: relative; margin: 0; color: #d9deed; line-height: 1.55; font-size: 15px; }
.testimonial-row blockquote:before { content: "”"; position: absolute; left: -26px; top: -14px; color: #777e96; font-size: 44px; }
.testimonial-row figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testimonial-row img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-row b { display: block; color: #fff; }
.testimonial-row span { color: var(--muted); font-size: 12px; }

.sample { display: grid; grid-template-columns: 0.65fr 1fr; gap: 72px; align-items: center; margin-top: 36px; padding: 34px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(19, 24, 33, .96), rgba(8, 10, 15, .98)); }
.sample h2 { margin: 0; font-size: 34px; line-height: 1.08; }
.sample p { color: var(--muted); line-height: 1.55; }
.sample ul { list-style: none; margin: 22px 0 0; padding: 0; }
.sample li { margin: 10px 0; color: #d9deec; }
.sample li:before { content: "✓"; color: #8790ff; margin-right: 10px; }
.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.lead-form label { display: grid; gap: 8px; color: #d9deed; font-size: 13px; font-weight: 700; }
.lead-form input, .newsletter input { width: 100%; min-height: 48px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; padding: 0 15px; color: #fff; background: rgba(7, 9, 14, .82); outline: 0; }
.lead-form input:focus, .newsletter input:focus { border-color: #676dff; box-shadow: 0 0 0 3px rgba(86,98,255,.15); }
.lead-form .full, .form-message { grid-column: 1 / -1; }
.form-message { min-height: 18px; margin: 0; color: var(--green); }

.bottom-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 24px 0 34px; padding: 26px 28px; border: 1px solid var(--line); border-radius: 10px; background: linear-gradient(145deg, rgba(21, 24, 35, .96), rgba(8,10,15,.98)); }
.bottom-cta h2 { margin: 0; font-size: 34px; }
.bottom-cta p { margin: 6px 0 0; color: var(--muted); font-size: 18px; }
.bottom-cta > div:last-child { display: flex; gap: 16px; }

.footer { display: grid; grid-template-columns: 1.3fr repeat(3, .8fr) 1.25fr; gap: 48px; padding: 28px 24px 22px; border-top: 1px solid var(--line); }
.footer p { color: var(--muted); line-height: 1.55; font-size: 13px; }
.footer h3 { margin: 0 0 14px; font-size: 13px; color: #fff; }
.footer nav { display: flex; flex-direction: column; gap: 9px; }
.footer a { color: var(--muted); font-size: 13px; }
.footer a:hover { color: #fff; }
.socials { display: flex; gap: 14px; color: #9098ad; }
.newsletter label { position: relative; display: block; }
.newsletter button { position: absolute; top: 6px; right: 6px; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; background: #07090d; cursor: pointer; }
.legal { display: flex; justify-content: space-between; padding: 0 24px 26px; color: #697184; font-size: 12px; }

@media (max-width: 1040px) {
  .page { width: min(100% - 32px, var(--max)); }
  .nav { grid-template-columns: auto auto; }
  .nav-links, .login { display: none; }
  .nav-toggle { display: grid; place-content: center; gap: 4px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.035); }
  .nav-toggle span { width: 16px; height: 2px; background: #fff; display: block; }
  .nav.open .nav-links { display: flex; grid-column: 1 / -1; justify-self: stretch; flex-direction: column; gap: 0; padding: 12px 0; }
  .nav.open .nav-links a { padding: 10px 0; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .production-card { max-width: 640px; }
  .metrics, .service-row, .pricing-grid, .process, .process-row, .work-grid, .testimonial-row, .sample, .footer { grid-template-columns: 1fr; }
  .metrics > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
  .section-title { grid-template-columns: 1fr; }
  .service-row { margin: 26px 0 0; gap: 28px; }
  .toggle { position: static; transform: none; }
  .pricing-head, .bottom-cta { align-items: flex-start; flex-direction: column; }
  .testimonial-row { gap: 32px; }
  .footer { padding-left: 0; padding-right: 0; gap: 28px; }
  .legal { padding-left: 0; padding-right: 0; }
}

@media (max-width: 640px) {
  .edge-wave { display: none; }
  .page { width: min(100% - 20px, var(--max)); }
  .nav { min-height: 50px; }
  .brand { font-size: 12px; }
  .brand-icon { width: 18px; height: 18px; border-radius: 5px; font-size: 11px; }
  .book { display: none; }
  .hero { min-height: auto; padding: 22px 0 26px; gap: 24px; }
  .hero-copy h1 { font-size: 25px; max-width: 300px; }
  .hero-copy p { font-size: 11px; max-width: 300px; margin-top: 8px; }
  .hero-actions { margin-top: 16px; gap: 8px; }
  .btn { min-height: 34px; width: 100%; border-radius: 5px; padding: 0 14px; font-size: 11px; }
  .hero-actions .btn { width: auto; flex: 1; }
  .trust { margin-top: 14px; font-size: 10px; gap: 6px; }
  .production-card { padding: 14px; border-radius: 8px; }
  .production-card:before { inset: 58px 14px auto; height: 80px; background-size: 26px 26px; }
  .production-head strong { font-size: 12px; }
  .production-head span { font-size: 11px; }
  .status { height: 24px; padding: 0 8px; font-size: 8px; border-radius: 6px; }
  .wave-area { height: 74px; }
  .time-pin, .round-arrow { display: none; }
  .bars { height: 48px; gap: 3px; }
  .clip-deck { grid-template-columns: 1fr; gap: 8px; }
  .clip-deck article { display: grid; grid-template-columns: 58px 1fr; min-height: 58px; align-items: center; }
  .clip-deck img { grid-row: 1 / 3; height: 58px; }
  .clip-deck span, .clip-deck b { padding: 0 9px; }
  .publish-panel { padding: 10px; margin-top: 12px; }
  .publish-panel:before { display: none; }
  .platforms { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .platforms span, .platforms em { width: 32px; height: 32px; border-radius: 7px; }
  .metrics { min-height: 0; }
  .metrics strong { font-size: 22px; }
  .services, .pricing, .process, .work, .testimonials { padding: 34px 0; }
  .section-title h2, .pricing h2, .process h2, .split-title h2 { font-size: 22px; }
  .pricing-head { gap: 14px; }
  .price-card { min-height: 0; padding: 20px; }
  .sample { gap: 24px; padding: 20px; }
  .sample h2, .bottom-cta h2 { font-size: 24px; }
  .lead-form { grid-template-columns: 1fr; }
  .bottom-cta > div:last-child { width: 100%; flex-direction: column; }
  .legal { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: 1ms !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
}

/* Reference-matching tightening pass */
.hero { grid-template-columns: minmax(520px, 0.95fr) minmax(540px, 1.05fr); gap: 58px; min-height: 560px; }
.hero-copy h1 { max-width: 640px; font-size: clamp(48px, 4.4vw, 62px); line-height: 1.12; }
.hero-copy p { max-width: 560px; font-size: 18px; }
.production-card { padding: 24px; }
.price span { color: var(--muted); font-size: 16px; font-weight: 500; }
.price-card { min-height: 405px; }
.extra-section { padding: 52px 0; border-bottom: 1px solid rgba(255,255,255,.085); }
.extra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.extra-grid article, .faq-grid article { border: 1px solid var(--line); border-radius: 9px; background: linear-gradient(145deg, rgba(20,25,34,.9), rgba(8,10,15,.95)); padding: 24px; }
.extra-grid span { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 16px; border-radius: 50%; border: 1px solid var(--line-blue); color: #c4c6ff; background: rgba(79,92,255,.12); font-weight: 850; }
.extra-grid h3, .faq-grid h3 { margin: 0 0 10px; font-size: 18px; }
.extra-grid p, .faq-grid p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }
.faq-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width:1040px){ .hero { grid-template-columns: 1fr; min-height: auto; } .hero-copy h1 { max-width: 680px; } .extra-grid, .faq-grid { grid-template-columns: 1fr; } }
@media (max-width:640px){ .hero-copy h1 { font-size: 25px; } .extra-section { padding: 34px 0; } }

/* Premium Google Fonts pairing */
h1, h2, h3, .brand, .btn, .book, .login, .price, .metrics strong, .production-head strong {
  font-family: var(--display-font);
}
h1, h2 {
  font-weight: 800;
}
h3, .btn, .book, .login {
  font-weight: 700;
}
.hero-copy h1 {
  letter-spacing: -0.015em;
}
.section-title h2, .pricing h2, .process h2, .split-title h2, .sample h2, .bottom-cta h2 {
  letter-spacing: -0.01em;
}
body {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  text-rendering: optimizeLegibility;
}

/* SEO content sections */
.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: #8f8aff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.launch {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 58px 0;
  border-bottom: 1px solid rgba(255,255,255,.085);
}
.launch-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.launch-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 24px;
}
.launch-list {
  display: grid;
  gap: 14px;
}
.launch-list article,
.content-flow article {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(145deg, rgba(20,25,34,.9), rgba(8,10,15,.95));
  padding: 22px;
}
.launch-list b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #c8caff;
  border: 1px solid var(--line-blue);
  background: rgba(79,92,255,.12);
}
.launch-list h3,
.content-flow strong {
  display: block;
  margin: 0 0 8px;
  font-family: var(--display-font);
  font-size: 17px;
}
.launch-list p,
.content-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.content-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.faq-grid.expanded {
  grid-template-columns: repeat(3, 1fr);
}
.faq-grid.expanded article {
  min-height: 172px;
}
.sample li:last-child {
  color: #cfd5ff;
}
@media (max-width:1040px){
  .launch,
  .content-flow,
  .faq-grid.expanded { grid-template-columns: 1fr; }
}
@media (max-width:640px){
  .launch { padding: 34px 0; gap: 22px; }
  .launch-copy h2 { font-size: 25px; }
  .launch-copy p { font-size: 13px; }
  .launch-list article, .content-flow article { padding: 18px; }
}

/* Premium imagery and motion pass */
.visual-proof {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,.085);
}
.photo-stack {
  display: grid;
  gap: 18px;
}
.photo-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(2,3,5,.12), rgba(2,3,5,.86)), var(--photo);
  background-size: cover;
  background-position: center;
  isolation: isolate;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}
.photo-card.tall {
  min-height: 478px;
}
.photo-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 15%, rgba(91, 100, 255, .28), transparent 260px), linear-gradient(180deg, transparent 35%, rgba(2,3,5,.92));
  z-index: -1;
}
.photo-card div,
.photo-card h3,
.photo-card span {
  position: relative;
  z-index: 1;
}
.photo-card div,
.photo-card:not(.tall) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.photo-card div {
  min-height: 478px;
  padding: 28px;
}
.photo-card:not(.tall) {
  padding: 24px;
}
.photo-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: #d7d8ff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 850;
}
.photo-card h2,
.photo-card h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: -0.01em;
}
.photo-card h2 {
  max-width: 420px;
  font-size: 36px;
  line-height: 1.06;
}
.photo-card h3 {
  max-width: 430px;
  font-size: 25px;
  line-height: 1.1;
}
.photo-card p {
  max-width: 460px;
  margin: 14px 0 0;
  color: #d0d5e4;
  line-height: 1.55;
}
.image-grid article {
  overflow: hidden;
  padding-top: 0;
}
.mini-photo {
  height: 138px;
  margin: 0 -24px 20px;
  background: linear-gradient(180deg, rgba(4,5,8,.05), rgba(4,5,8,.65)), var(--photo);
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.nav,
.production-card,
.metrics,
.launch,
.services,
.visual-proof,
.pricing,
.process,
.content-system,
.work,
.testimonials,
.websites,
.faq,
.sample,
.bottom-cta,
.footer {
  animation: sectionFade .72s ease both;
}
.production-card,
.price-card,
.work-grid article,
.extra-grid article,
.faq-grid article,
.photo-card,
.sample,
.bottom-cta {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, filter .24s ease;
}
.production-card:hover,
.price-card:hover,
.work-grid article:hover,
.extra-grid article:hover,
.faq-grid article:hover,
.photo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120, 112, 255, .62);
  box-shadow: 0 26px 90px rgba(0,0,0,.38), 0 0 36px rgba(79,92,255,.12);
}
.work-grid article:hover,
.photo-card:hover,
.mini-photo:hover {
  filter: saturate(1.08) contrast(1.05);
}
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  inset: -1px;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: transform .7s ease;
}
.btn-primary:hover:before {
  transform: translateX(115%);
}
.edge-wave {
  animation: glowPulse 3.2s ease-in-out infinite alternate;
}
@keyframes sectionFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  from { opacity: .45; filter: drop-shadow(0 0 10px rgba(76, 90, 255, .65)); }
  to { opacity: .85; filter: drop-shadow(0 0 24px rgba(76, 90, 255, .95)); }
}
@media (max-width:1040px){
  .visual-proof { grid-template-columns: 1fr; }
  .photo-card.tall, .photo-card div { min-height: 360px; }
}
@media (max-width:640px){
  .visual-proof { padding: 34px 0; gap: 12px; }
  .photo-card, .photo-card.tall, .photo-card div { min-height: 260px; }
  .photo-card div, .photo-card:not(.tall) { padding: 18px; }
  .photo-card h2 { font-size: 25px; }
  .photo-card h3 { font-size: 21px; }
  .photo-card p { font-size: 13px; }
  .mini-photo { height: 120px; margin-left: -18px; margin-right: -18px; }
}
@media (prefers-reduced-motion: reduce) {
  .nav,
  .production-card,
  .metrics,
  .launch,
  .services,
  .visual-proof,
  .pricing,
  .process,
  .content-system,
  .work,
  .testimonials,
  .websites,
  .faq,
  .sample,
  .bottom-cta,
  .footer,
  .edge-wave { animation: none !important; }
}
