:root {
  --bg: #070708;
  --bg-soft: #0f0f12;
  --panel: rgba(20, 20, 24, 0.88);
  --panel-2: rgba(15, 15, 18, 0.96);
  --text: #f3f3f5;
  --muted: #b2b2bc;
  --line: rgba(255, 255, 255, 0.09);
  --red: #e53935;
  --red-strong: #ff3b30;
  --red-soft: rgba(229, 57, 53, 0.2);
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(229, 57, 53, 0.18), transparent 28%),
    radial-gradient(circle at 20% 10%, rgba(229, 57, 53, 0.12), transparent 24%),
    linear-gradient(180deg, #060607 0%, #0a0607 60%, #070708 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(229, 57, 53, 0.12), transparent 22%),
    radial-gradient(circle at 10% 55%, rgba(229, 57, 53, 0.08), transparent 20%);
  z-index: -1;
}

.container { width: var(--container); margin: 0 auto; }
.section { padding: 96px 0; }
.section-after-hero { padding-top: 20px; }
.narrow { max-width: 960px; }
.narrow-center { max-width: 760px; margin: 0 auto; }
.center { text-align: center; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 7, 0.76);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.footer-logo {
  display: block;
  width: auto;
  height: 42px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--muted);
  transition: color .2s ease;
}

.nav a:hover { color: var(--text); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  color: var(--text);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  padding-top: 48px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: 620px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  padding-top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(229, 57, 53, 0.24);
  background: rgba(229, 57, 53, 0.08);
  color: #ffd8d6;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5.1vw, 5rem);
  line-height: .95;
  letter-spacing: -0.05em;
  max-width: 13ch;
}

.hero-text {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 63ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, #ff5549, var(--red));
  box-shadow: 0 8px 28px rgba(229, 57, 53, 0.28);
}
.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.03);
}

.card,
.media-frame,
.cta-card {
  background: linear-gradient(180deg, rgba(21, 21, 24, 0.95), rgba(12, 12, 14, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  top: 18px;
  left: 94%;
  width: min(860px, 62vw);
  z-index: 1;
  pointer-events: none;
}
.media-card {
  position: relative;
  max-width: none;
  margin-left: 0;
}
.floating-media {
  padding: 0;
}
.media-glow {
  position: absolute;
  inset: 18% 12% auto;
  height: 68%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.32), transparent 68%);
  filter: blur(72px);
}
.media-frame {
  position: relative;
  border-radius: 32px;
  padding: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(21, 21, 24, 0.94), rgba(12, 12, 14, 0.98));
}

.video-placeholder,
.showreel-screen {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.1), rgba(4, 4, 6, 0.72)),
    radial-gradient(circle at 50% 42%, rgba(229, 57, 53, 0.28), transparent 18%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #1a1a1f 0%, #101015 52%, #09090c 100%);
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.video-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-right: 0;
  margin-bottom: 0;
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(0 74px 150px rgba(0, 0, 0, 0.5)) drop-shadow(0 26px 56px rgba(80, 14, 14, 0.22));
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: scale(0.94) translateX(-8%);
  transform-origin: center top;
}

.play-button {
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff564e, var(--red));
  box-shadow: 0 12px 36px rgba(229, 57, 53, 0.35);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 1;
}
.play-button.large { width: 110px; height: 110px; }
.play-triangle {
  width: 0; height: 0;
  border-left: 20px solid white;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 4px;
}

.section-heading { margin-bottom: 34px; }
.section-heading h2 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.section-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffd3cf;
  background: rgba(229, 57, 53, 0.12);
  border: 1px solid rgba(229, 57, 53, 0.22);
}

.service-grid,
.benefits-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }

.service-card,
.benefit-card,
.quote-card,
.showreel-card {
  border-radius: var(--radius);
  padding: 26px;
}
.service-card h3,
.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}
.service-card p,
.benefit-card p,
.quote-card p { color: var(--muted); line-height: 1.65; margin: 0; }

.alt-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.showreel-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.showreel-grid > * {
  min-width: 0;
}
.showreel-card {
  padding: 18px;
  max-width: 100%;
  overflow: hidden;
}
.showreel-screen {
  min-height: 420px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  isolation: isolate;
  overflow: hidden;
}
.showreel-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.showreel-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #ffd8d6;
  max-width: calc(100% - 36px);
  overflow-wrap: anywhere;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 14px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff564e, var(--red));
  box-shadow: 0 0 16px rgba(229,57,53,.4);
}

.quote-card p {
  font-size: 1.05rem;
  color: var(--text);
}
.quote-author {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quote-author span { color: var(--muted); }

.cta-card {
  border-radius: 32px;
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.cta-card h2 {
  margin: 12px 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 15ch;
}
.cta-card p { color: var(--muted); margin: 0; max-width: 55ch; line-height: 1.7; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--text); }

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 72px 0 96px;
}

.legal-shell {
  max-width: 860px;
  margin: 0 auto;
}

.legal-card {
  border-radius: 32px;
  padding: 36px;
}

.legal-card h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .98;
  letter-spacing: -0.05em;
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card address {
  font-style: normal;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  margin: 0 0 22px;
  color: #ffd8d6;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 22px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .showreel-grid,
  .service-grid,
  .testimonial-grid,
  .benefits-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero-grid { min-height: 0; }
  .hero-copy {
    max-width: none;
    padding-top: 0;
    width: 100%;
  }
  .hero h1 { max-width: 14ch; }
  .hero-media {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(760px, 100%);
    pointer-events: auto;
    margin: 0 auto;
  }
  .floating-media { padding: 12px 0 18px; }
  .hero-image {
    transform: none;
    object-position: center top;
  }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .nav-toggle { display: inline-block; }
  .brand-logo { height: 38px; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(12,12,14,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; }
  .nav-cta.btn { justify-content: center; }

  .hero { padding-top: 44px; }
  .hero-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
  .hero-copy > * { max-width: 100%; }
  .eyebrow {
    max-width: 280px;
    min-height: 0;
    padding: 10px 14px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
  .hero h1 {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2px;
    line-height: .92;
    overflow-wrap: break-word;
  }
  .hero-media {
    width: 100%;
    max-width: 332px;
    margin: -6px auto -8px;
    right: auto;
  }
  .hero-text {
    margin-top: 0;
    font-size: 1rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .floating-media { padding: 0; }
  .video-placeholder,
  .showreel-screen { min-height: 320px; }
  .showreel-card { padding: 14px; }
  .showreel-screen .play-button.large {
    width: 96px;
    height: 96px;
    box-shadow: 0 10px 26px rgba(229, 57, 53, 0.28);
  }
  .section-heading h2,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .cta-card { padding: 28px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root { --container: min(100% - 16px, 1180px); }
  .container { max-width: 100%; }
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
    max-width: 100%;
    width: 100%;
  }
  .brand-logo { height: 34px; }
  .footer-logo { height: 34px; }
  .hero-media {
    width: 100%;
    max-width: 326px;
    margin: -10px auto -12px;
    right: auto;
  }
  .btn { width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .service-card,
  .benefit-card,
  .quote-card { padding: 22px; }
  .showreel-card { padding: 12px; }
  .showreel-badge {
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .showreel-screen .play-button.large {
    width: 88px;
    height: 88px;
  }
  .legal-card { padding: 24px; }
  .play-button { width: 78px; height: 78px; }
  .hero-image-wrap {
    filter: drop-shadow(0 30px 56px rgba(0, 0, 0, 0.38));
  }
  .hero-image {
    transform: translateY(-6px);
  }
  .hero-media { width: 100%; }
}
