:root {
  --bg: #0b0b12;
  --card: #131323;
  --text: #f5f6fb;
  --muted: #b4b7c9;
  --line: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(135deg, #ff7a18, #ff0066 45%, #9c1aff 85%);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: transparent;
  border: none;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.12em; }

.logo img { height: 44px; width: auto; display: block; }

.nav__links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav__links.open {
  position: absolute;
  top: 64px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  background: rgba(11, 11, 18, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav__links a { color: var(--muted); font-weight: 500; }

.nav__links a:hover { color: var(--text); }

.nav__links .pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gradient);
  color: #0b0b12;
  font-weight: 700;
}

.nav__menu {
  background: none;
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 12px;
  display: grid;
  gap: 4px;
  cursor: pointer;
}

.nav__menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn-primary {
  background: var(--gradient);
  color: #0b0b12;
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-2px); }

.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.48); }

.hero-netflix {
  position: relative;
  min-height: 80vh;
  padding: 140px 6vw 120px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: brightness(1.05) contrast(1.05) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.25) 60%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 64px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 16px;
  display: block;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #cfcfcf;
  max-width: 520px;
  margin: 0;
}

.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); font-weight: 600; font-size: 12px; margin: 0; }

/* hero-media removed to ensure single video background */

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

.section--accent {
  background: radial-gradient(circle at 15% 20%, rgba(255, 122, 24, 0.12), transparent 30%),
              radial-gradient(circle at 85% 10%, rgba(156, 26, 255, 0.14), transparent 32%),
              #0f0f1b;
  border-radius: 28px;
  margin-top: 48px;
  box-shadow: var(--shadow);
}

.section__header { display: grid; gap: 12px; max-width: 720px; }

.section__header h2 { margin: 0; font-size: clamp(26px, 4vw, 38px); }

.grid { display: grid; gap: 18px; }

.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 0 0 8px; font-size: 18px; }

.card p { margin: 0; color: var(--muted); }

.pillars { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.pillar {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(19, 19, 35, 0.9);
}

.team { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.team__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.8;
}

.team__card h3 { margin: 0 0 4px; }

.team__card p { margin: 0 0 6px; color: var(--muted); }

.team__card small { color: var(--muted); }

.portfolio { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.thumb {
  position: relative;
  padding: 48px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.16), rgba(156, 26, 255, 0.16));
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
  overflow: hidden;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.14), transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.quotes { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

blockquote {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(19, 19, 35, 0.9);
  box-shadow: var(--shadow);
}

blockquote p { margin: 0 0 10px; font-size: 17px; }

blockquote cite { color: var(--muted); font-style: normal; }

.contact { display: grid; gap: 24px; grid-template-columns: 1fr; align-items: start; }

.contact__info ul { list-style: none; padding: 0; margin: 12px 0 0; color: var(--muted); }

.contact__info li { margin-bottom: 6px; }

.form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.form__row { display: grid; gap: 6px; }

.budget-toggle { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.toggle { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; }

.toggle input { accent-color: #ff7a18; }

.budget__custom-inline { margin-top: 4px; }

label { font-weight: 600; }

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 15px;
}

select:disabled,
input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea { resize: vertical; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn--primary {
  background: var(--gradient);
  color: #0b0b12;
  box-shadow: 0 10px 30px rgba(255, 0, 102, 0.35);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn:hover { transform: translateY(-2px); }

.btn--ghost:hover { border-color: rgba(255, 0, 102, 0.6); color: #fff; }

.footer {
  padding: 32px 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  gap: 8px;
  text-align: center;
}

.footer__brand { font-weight: 700; letter-spacing: 0.12em; color: var(--text); }

[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity 600ms ease, transform 600ms ease; }

[data-animate].visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__links.open { position: static; padding: 0; background: none; border: none; box-shadow: none; flex-direction: row; }
  .nav__menu { display: none; }
  .section { padding: 120px 24px; }
  .contact { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .section { padding-inline: 32px; }
  .nav { padding: 18px 32px; }
}

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .portfolio { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-netflix { height: 80vh; }
  .hero-content { padding: 96px 24px; }
  .hero-content h1 { font-size: 36px; }
}
