        :root {
            --page: #dfe9ef;
            --nav: #f4f8fb;
            --dark: #061324;
            --dark2: #0e1e30;
            --text: #061324;
            --muted: #64748b;
            --line: rgba(6,19,36,.14);
            --card: #ffffff;
            --accent: #e85d04;
            --accent-dark: #c94e00;
            --shadow: 0 18px 45px rgba(6,19,36,.12);
            --radius: 22px;
            --font-display: "Bebas Neue", Impact, sans-serif;
            --font-body: "Figtree", "Segoe UI", sans-serif;
			  --wrap: min(1120px, calc(100% - 2.5rem));
        }
        * { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            background: var(--page);
            color: var(--text);
            font-family: var(--font-body);
            line-height: 1.55;
        }
        a { color: inherit; }
        .topbar {
            background: rgba(244,248,251,.94);
            border-bottom: 1px solid var(--line);
            position: sticky;
            top: 0;
            z-index: 20;
            backdrop-filter: blur(10px);
        }
        .nav-inner {
            width: min(1120px, calc(100% - 32px));
            margin: 0 auto;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
        }
        .nav-link {
            text-decoration: none;
            border: 1.5px solid var(--dark);
            border-radius: 999px;
            padding: 7px 18px;
            font-size: 14px;
            background: transparent;
            transition: .22s ease;
        }
        .nav-link:hover,
        .nav-link.active {
            background: var(--dark);
            color: #fff;
        }
        .home-link {
            border: 0;
            padding: 7px 8px;
            text-decoration: none;
        }
        .hero-projects {
            color: #fff;
            border-bottom: 1px solid rgba(255,255,255,.08);
            background:
                radial-gradient(circle at 72% 36%, rgba(232,93,4,.34), transparent 28%),
                linear-gradient(135deg, rgba(6,19,36,.98) 0%, rgba(14,30,48,.96) 46%, rgba(21,21,21,.98) 100%);
            position: relative;
            overflow: hidden;
        }
        .hero-projects::before {
            content: "";
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(-18deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px);
            opacity: .45;
            pointer-events: none;
        }
        .hero-inner {
            width: min(1120px, calc(100% - 32px));
            min-height: 360px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
            padding: 62px 0;
        }
        .hero-copy { max-width: 660px; }

        }
        .hero-copy p {
            max-width: 560px;
            margin: 24px 0 0;
            font-size: 17px;
            color: rgba(255,255,255,.86);
        }
        .content-wrap {
            width: min(1120px, calc(100% - 32px));
            margin: 0 auto;
            padding: 60px 0 80px;
        }
        .section-block { margin-bottom: 62px; }
        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 20px;
            margin-bottom: 15px;
			margin-top: -15px;
        }
        .section-title {

		
		margin: 0 0 0.70rem;
		font-family: var(--font-display);
		font-size: clamp(2.4rem, 6vw, 3.4rem);
		font-weight: 1000;
		letter-spacing: -0.03em;
		line-height: 0.00em;
		}
        .section-note {
            color: var(--muted);
            max-width: 420px;
            margin: 0;
            font-size: 12px;
        }
		.lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
}
        .planned-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 22px;
        }
        .project-card,
        .release-card,
        .empty-card {
            background: var(--card);
            border: 1px solid rgba(6,19,36,.08);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .project-card {
            padding: 20px;
            position: relative;
			border: 2px solid #ff9800;
			overflow: hidden;
        }
        .project-card::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 6px;
            background: var(--accent);
            opacity: .95;
			border: 0px solid #ff9800;
			overflow: hidden;
        }
        .project-card.production::before { width: 9px; }
        .project-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
			border: 2px solid #ff9800;
			overflow: hidden;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            font-weight: 800;
            padding: 8px 14px;
            font-size: 13px;
            margin-bottom: 18px;
            box-shadow: 0 8px 18px rgba(232,93,4,.25);
        }
        .project-title {
            margin: 0 0 8px;
            color: var(--accent);
            font-size: clamp(24px, 3vw, 34px);
            line-height: 1.05;
            font-weight: 900;
            text-transform: uppercase;
        }
        .project-meta {
            color: var(--muted);
            font-weight: 700;
            margin-bottom: 20px;
        }
        .detail-list {
            display: grid;
            gap: 13px;
            margin: 0;
        }
        .detail-row {
            border-top: 1px solid var(--line);
            padding-top: 13px;
        }
        .detail-label {
            display: block;
            color: var(--muted);
            font-size: 12px;
            letter-spacing: .08em;
            text-transform: uppercase;
            font-weight: 800;
            margin-bottom: 4px;
        }
        .detail-value {
            color: var(--text);
            font-weight: 650;
            word-break: break-word;
        }
        .release-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }
        .release-cover {
            background:
                radial-gradient(circle at 70% 30%, rgba(232,93,4,.28), transparent 34%),
                linear-gradient(135deg, #081726, #111827);
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,.8);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .07em;
            text-align: center;
            padding: 20px;
        }
        .release-cover img {
            display: block;
            width: 100%;
            height: 360px;
            object-fit: cover;
        }
        .release-body { padding: 22px; }
        .release-title {
            margin: 0 0 8px;
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 900;
            font-size: 24px;
        }
        .imdb-link,
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 16px;
            border-radius: 999px;
            background: var(--accent);
            color: #fff;
            text-decoration: none;
            font-weight: 850;
            padding: 10px 16px;
            border: 0;
            box-shadow: 0 8px 18px rgba(232,93,4,.22);
        }
        .imdb-link:hover,
        .btn-primary:hover {
            background: var(--accent-dark);
        }
        .empty-card {
            padding: 26px;
            text-align: center;
            color: var(--muted);
        }
        .footer-bar {
            border-top: 1px solid var(--line);
            padding: 18px 0;
        }
        .footer-inner {
            width: min(1120px, calc(100% - 32px));
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            font-size: 13px;
        }
        .footer-inner a {
            text-decoration: none;
            border: 1px solid var(--dark);
            border-radius: 999px;
            padding: 6px 14px;
        }
        @media (max-width: 980px) {
            .planned-grid { grid-template-columns: 1fr; }
            .section-head { display: block; }
            .section-note { margin-top: 10px; }
        }
        @media (max-width: 600px) {
            .nav-inner { justify-content: flex-start; overflow-x: auto; }
            .hero-inner { min-height: 310px; }
            .content-wrap { padding-top: 42px; }
            .project-card { padding: 22px; }
        }
.project-actions{
    margin-top:20px;
}

.btn-project{
    display:inline-block;
    padding:12px 20px;
    background:#E85D04;
    color:#fff;
    font-weight:700;
    text-decoration:none;
    border-radius:30px;
    transition:0.2s;
}

.btn-project:hover{
    background:#ff7b22;
}
.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: 0.90;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
.hero-kicker {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1,78rem;
  font-weight: 700;
  color: rgba(247, 250, 252, 0.72);
}
.hero {
  position: relative;
  min-height: min(2vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(16, 24, 32, 0.88) 0%, rgba(16, 24, 32, 0.55) 42%, rgba(16, 24, 32, 0.25) 100%),
    radial-gradient(circle at 70% 40%, rgba(232, 93, 4, 0.45), transparent 42%),
    linear-gradient(35deg, #1c2b3a, #31485c 40%, #0f1720);
  transform: scale(1.02);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    );
  opacity: 0.7;
}
.hero-content {
  padding: clamp(4rem, 3vh, 7rem) 0 clamp(3.5rem, 5vh, 5.5rem);
  color: var(--white);
  max-width: 720px;
  margin-left: max(calc((100% - min(1120px, calc(100% - 2.5rem))) / 2), 1.25rem);
  margin-right: auto;
  animation: riseIn 0.9s ease both;
}

.project-start {
    display: block;
    margin-bottom: 15px;
    font-size: 1.00rem;
    font-weight: 700;
    color: #000000;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}