*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #000000;
  --charcoal: #111111;
  --itg-red: #D01F2F;
  --gold: #C9A96E;
  --gold-dim: rgba(201,169,110,0.5);
  --parchment: #F5F0E8;
  --muted: rgba(245,240,232,0.45);
  --dim: rgba(245,240,232,0.2);
  --border: rgba(245,240,232,0.08);
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--parchment); font-family: "DM Sans", sans-serif; font-weight: 300; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 20px 52px; }
nav::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, transparent 100%); pointer-events: none; z-index: -1; }
.nav-logo img { height: 64px; width: auto; filter: brightness(0) invert(1); }
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(245,240,232,0.65); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--parchment); }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #fff; background: var(--itg-red); border: none; padding: 12px 26px; cursor: pointer; text-decoration: none; transition: background 0.3s; display: inline-block; }
.nav-cta:hover { background: #a8192a; }

/* HERO */
.hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.video-reel { position: absolute; inset: 0; z-index: 0; }
.video-reel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1); }
.video-reel video.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 35%, rgba(0,0,0,0.32) 65%, rgba(0,0,0,0.9) 100%); }
.lb { position: absolute; left: 0; right: 0; height: 52px; background: var(--black); z-index: 2; }
.lb-top { top: 0; } .lb-bot { bottom: 0; }
.grain { position: absolute; inset: 0; z-index: 3; opacity: 0.025; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 180px 180px; }
.hero-content { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 52px 96px; }
.hero-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
h1.hero-headline { font-family: "Cormorant Garamond", serif; font-size: clamp(52px, 8vw, 108px); font-weight: 300; line-height: 0.93; letter-spacing: -1.5px; color: var(--parchment); max-width: 880px; margin-bottom: 36px; }
h1.hero-headline em { font-style: italic; color: var(--gold); }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.hero-sub { font-size: 14px; line-height: 1.85; color: var(--muted); max-width: 400px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; }
.btn-film { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--parchment); background: transparent; border: 1px solid rgba(245,240,232,0.28); padding: 11px 24px; cursor: pointer; text-decoration: none; transition: border-color 0.3s, background 0.3s; display: inline-block; white-space: nowrap; }
.btn-film:hover { border-color: var(--gold); background: rgba(201,169,110,0.07); }
.btn-red { background: var(--itg-red); border-color: var(--itg-red); color: #fff; }
.btn-red:hover { background: #a8192a; border-color: #a8192a; }
.video-dots { position: absolute; right: 52px; top: 50%; transform: translateY(-50%); z-index: 5; display: flex; flex-direction: column; gap: 10px; }
.vdot { width: 2px; height: 22px; background: rgba(245,240,232,0.18); cursor: pointer; transition: background 0.3s, height 0.3s; }
.vdot.active { background: var(--gold); height: 38px; }
.scroll-cue { position: absolute; bottom: 68px; left: 52px; z-index: 5; display: flex; align-items: center; gap: 14px; }
.scroll-line { width: 48px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); animation: scrollR 2.2s ease-in-out infinite; }
@keyframes scrollR { 0%{transform:scaleX(0);transform-origin:left;opacity:1} 50%{transform:scaleX(1);transform-origin:left;opacity:1} 100%{transform:scaleX(1);transform-origin:right;opacity:0} }
.scroll-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dim); }

/* STATS */
.stats-strip { background: var(--charcoal); border-top: 1px solid rgba(201,169,110,0.12); border-bottom: 1px solid rgba(201,169,110,0.12); display: grid; grid-template-columns: repeat(4,1fr); }
.stat-cell { padding: 52px 36px; border-right: 1px solid rgba(201,169,110,0.08); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: "Cormorant Garamond", serif; font-size: 58px; font-weight: 300; color: var(--gold); line-height: 1; display: block; margin-bottom: 10px; }
.stat-label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* DPP SECTION */
.dpp-section { background: var(--black); padding: 130px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.phone-frame { max-width: 290px; margin: 0 auto; position: relative; }
.phone-bezel { background: #151515; border-radius: 46px; padding: 13px; box-shadow: 0 48px 100px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.06); position: relative; z-index: 2; }
.phone-screen { border-radius: 34px; overflow: hidden; aspect-ratio: 9/19.5; background: #000; }
.phone-screen video { width: 100%; height: 100%; object-fit: cover; }
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 88px; height: 26px; background: #151515; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-glow { position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%); width: 200px; height: 60px; background: radial-gradient(ellipse, rgba(208,31,47,0.2) 0%, transparent 70%); pointer-events: none; }
.section-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.section-tag::before { content:""; width:24px; height:1px; background:var(--gold); }
.section-headline { font-family: "Cormorant Garamond", serif; font-size: clamp(34px, 3.8vw, 54px); font-weight: 300; line-height: 1.06; color: var(--parchment); margin-bottom: 22px; letter-spacing: -0.5px; }
.section-headline em { font-style: italic; color: var(--gold); }
.section-body { font-size: 14px; line-height: 1.88; color: var(--muted); margin-bottom: 40px; max-width: 450px; }

/* VIDEO STRIP */
.video-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; height: 500px; gap: 3px; background: #050505; }
.vs-item { position: relative; overflow: hidden; cursor: pointer; }
.vs-item video { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55) brightness(0.7); transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), filter 0.5s; }
.vs-item:hover video { transform: scale(1.05); filter: saturate(0.85) brightness(0.9); }
.vs-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px 20px; background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, transparent 100%); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.35s; }
.vs-item:hover .vs-label { opacity: 1; }

/* MANDATE */
.mandate-section { background: var(--black); padding: 140px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
.regulation-row { display: flex; gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.regulation-row:first-of-type { border-top: 1px solid var(--border); }
.reg-year { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 300; color: var(--gold); min-width: 56px; padding-top: 3px; letter-spacing: 1px; }
.reg-title { font-size: 18px; font-weight: 500; color: var(--parchment); margin-bottom: 8px; }
.reg-desc { font-size: 15px; color: var(--muted); line-height: 1.7; }
.reg-badge { display: inline-block; margin-top: 12px; background: rgba(208,31,47,0.12); border: 1px solid rgba(208,31,47,0.3); color: #e05060; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; }

/* PROCESS */
.process-section { background: var(--charcoal); padding: 140px 52px; border-top: 1px solid rgba(201,169,110,0.1); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(201,169,110,0.08); }
.p-step { background: var(--charcoal); padding: 40px 28px; transition: background 0.3s; }
.p-step:hover { background: #161616; }
.p-step-num { font-family: "Cormorant Garamond", serif; font-size: 64px; font-weight: 300; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 18px; display: block; }
.p-step-bar { width: 100%; height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); margin-bottom: 24px; }
.p-step-icon { font-size: 22px; margin-bottom: 14px; display: block; }
.p-step-title { font-size: 17px; font-weight: 500; color: var(--parchment); margin-bottom: 12px; }
.p-step-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* BENEFITS */
.benefits-section { background: var(--black); padding: 140px 52px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(245,240,232,0.05); margin-top: 64px; }
.b-card { background: var(--black); padding: 44px 36px; transition: background 0.3s; }
.b-card:hover { background: #060606; }
.b-icon { width: 42px; height: 42px; border: 1px solid rgba(201,169,110,0.28); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 24px; }
.b-title { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 400; color: var(--parchment); margin-bottom: 12px; line-height: 1.2; }
.b-desc { font-size: 15px; color: var(--muted); line-height: 1.78; }

/* TEAM */
.team-section { background: var(--charcoal); padding: 140px 52px; border-top: 1px solid rgba(201,169,110,0.1); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 64px; }
.team-grid + .team-grid { margin-top: 20px; }
.t-card { background: var(--black); border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; max-width: 100%; }
.t-card:hover { border-color: rgba(201,169,110,0.25); }
.t-photo { width: 100%; height: 280px; object-fit: contain; object-position: center top; background: #1a1a1a; filter: saturate(0.75) brightness(0.9); transition: filter 0.4s, transform 0.5s; display: block; }
.t-card:hover .t-photo { filter: saturate(0.95) brightness(1.02); transform: none; }
.t-info { padding: 22px 22px 24px; }
.t-name { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 400; color: var(--parchment); margin-bottom: 4px; }
.t-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding-bottom: 14px; border-bottom: 1px solid rgba(201,169,110,0.15); margin-bottom: 12px; }
.t-bio { font-size: 12px; color: var(--muted); line-height: 1.72; }

/* CTA */
.cta-section { position: relative; padding: 160px 52px; background: var(--black); text-align: center; overflow: hidden; }
.cta-bg-video { position: absolute; inset: 0; z-index: 0; }
.cta-bg-video video { width: 100%; height: 100%; object-fit: cover; filter: saturate(0) brightness(0.15); }
.cta-overlay { position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.55); }
.cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.cta-tag::before, .cta-tag::after { content:""; width:36px; height:1px; background:var(--gold-dim); }
.cta-headline { font-family: "Cormorant Garamond", serif; font-size: clamp(40px, 6vw, 72px); font-weight: 300; line-height: 1.05; color: var(--parchment); margin-bottom: 24px; letter-spacing: -0.5px; }
.cta-headline em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: 14px; color: var(--muted); line-height: 1.82; margin-bottom: 40px; }
.cta-alizah { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 44px; padding: 24px 32px; border: 1px solid rgba(201,169,110,0.2); background: rgba(201,169,110,0.04); max-width: 440px; margin-left: auto; margin-right: auto; }
.alizah-photo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: top; border: 2px solid var(--gold-dim); filter: saturate(0.8); }
.alizah-text { text-align: left; }
.alizah-name { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 400; color: var(--parchment); margin-bottom: 3px; }
.alizah-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-contacts { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.contact-item { font-size: 12px; letter-spacing: 0.5px; color: var(--muted); }
.contact-item a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.25); transition: border-color 0.3s; }
.contact-item a:hover { border-color: var(--gold); }

/* FOOTER */
footer { background: #050505; border-top: 1px solid rgba(201,169,110,0.1); padding: 28px 52px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.65; }
.footer-copy { font-size: 11px; letter-spacing: 1px; color: var(--dim); }

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 20px 24px; } .nav-links { display: none; }
  .hero-content { padding: 0 24px 84px; } h1.hero-headline { font-size: 46px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-actions { align-items: flex-start; } .video-dots,.scroll-cue { display: none; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .dpp-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 52px; }
  .video-strip { grid-template-columns: 1fr; height: auto; } .vs-item { height: 260px; }
  .mandate-section { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .process-section { padding: 80px 24px; } .process-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .benefits-section { padding: 80px 24px; } .benefits-grid { grid-template-columns: 1fr 1fr; }
  .team-section { padding: 80px 24px; } .team-grid { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .cta-section { padding: 100px 24px; }
  footer { flex-direction: column; gap: 14px; padding: 24px; text-align: center; }
}
@media (max-width: 560px) {
  .stats-strip { grid-template-columns: 1fr 1fr; } .process-steps { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; } .team-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .scroll-line { animation: none; } }