:root {
  --ink: #080b13;
  --ink-soft: #101521;
  --panel: #141a27;
  --ice: #f7f4ec;
  --muted: #aeb6c9;
  --blue: #50b7ff;
  --red: #ff4e45;
  --gold: #d6b873;
  --line: rgba(247, 244, 236, .14);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ice);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; padding: 10px 16px; background: var(--ice); color: var(--ink); z-index: 99; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--blue); font-size: .73rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section { position: relative; padding: 118px 0; }
.section-title { max-width: 820px; margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 8vw, 7.6rem); font-weight: 400; line-height: .86; letter-spacing: .01em; text-transform: uppercase; }
.section-title .outline { color: transparent; -webkit-text-stroke: 1px rgba(247, 244, 236, .55); }
.section-copy { max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 2px; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transition: .22s ease; cursor: pointer; }
.button-primary { background: var(--red); color: white; box-shadow: 8px 8px 0 rgba(255, 78, 69, .16); }
.button-primary:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 rgba(255, 78, 69, .18); }
.button-ghost { border-color: var(--line); background: rgba(8, 11, 19, .28); }
.button-ghost:hover { border-color: var(--blue); color: var(--blue); }

.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 30; border-bottom: 1px solid rgba(255,255,255,.12); }
.nav { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.brand-name { font-family: var(--display); font-size: 1.6rem; line-height: 1; letter-spacing: .04em; }
.brand-role { display: block; color: var(--muted); font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: #e8eaf0; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.nav-links a:hover { color: var(--blue); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); color: white; background: transparent; font: inherit; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 16% 40%, rgba(80,183,255,.12), transparent 34%), var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(8,11,19,.95) 38%, rgba(8,11,19,.18) 70%), linear-gradient(0deg, var(--ink) 0%, transparent 22%); pointer-events: none; }
.hero-photo { position: absolute; inset: 0 0 0 39%; width: 61%; height: 100%; object-fit: cover; object-position: 55% 30%; filter: saturate(.93) contrast(1.08); }
.hero-grid { position: relative; z-index: 2; padding-top: 132px; padding-bottom: 104px; }
.hero-copy { max-width: 720px; }
.hero-kicker { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; color: var(--blue); font-size: .73rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(255,78,69,.14); }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(6.7rem, 16vw, 13.2rem); font-weight: 400; letter-spacing: -.015em; line-height: .72; text-transform: uppercase; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.4px var(--ice); }
.hero-lead { max-width: 560px; margin: 34px 0 30px; color: #dde0e8; font-size: clamp(1rem, 1.8vw, 1.25rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-corner { position: absolute; right: 30px; bottom: 44px; z-index: 3; width: 210px; padding: 18px; border: 1px solid rgba(255,255,255,.23); background: rgba(8,11,19,.7); backdrop-filter: blur(12px); }
.hero-corner strong { display: block; font-family: var(--display); font-size: 2.3rem; line-height: 1; font-weight: 400; }
.hero-corner span { color: var(--muted); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.stat-rail { position: relative; z-index: 4; margin-top: -1px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0f18; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 130px; padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-family: var(--display); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.intro { overflow: hidden; background: var(--ice); color: var(--ink); }
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 8vw, 120px); align-items: center; }
.portrait-frame { position: relative; }
.portrait-frame::before { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--red); }
.portrait-frame img { position: relative; width: 100%; height: 640px; object-fit: cover; object-position: center 28%; filter: saturate(.82) contrast(1.04); }
.portrait-index { position: absolute; left: -26px; bottom: 48px; padding: 8px 14px; background: var(--blue); color: var(--ink); font-size: .68rem; font-weight: 900; letter-spacing: .14em; transform: rotate(-90deg); text-transform: uppercase; }
.intro .eyebrow { color: #1978b8; }
.intro .section-title { font-size: clamp(4rem, 8vw, 7rem); }
.intro .section-title .outline, .work .section-title .outline { -webkit-text-stroke-color: rgba(8,11,19,.6); }
.intro .section-copy { color: #495064; }
.quote { margin: 34px 0 0; padding-left: 24px; border-left: 3px solid var(--red); color: var(--ink); font-size: 1.25rem; font-weight: 700; }

.scoreboard { background: linear-gradient(145deg, #0c111c, #080b13); }
.score-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 56px; }
.score-head .section-copy { margin: 0; }
.result-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.result { position: relative; min-height: 280px; padding: 28px; border-right: 1px solid var(--line); overflow: hidden; }
.result:last-child { border-right: 0; }
.result::after { content: attr(data-place); position: absolute; right: -8px; bottom: -36px; color: rgba(247,244,236,.045); font-family: var(--display); font-size: 12rem; line-height: 1; }
.result-year { color: var(--blue); font-size: .7rem; font-weight: 800; letter-spacing: .16em; }
.result-place { display: block; margin: 34px 0 14px; color: var(--gold); font-family: var(--display); font-size: 4.7rem; font-weight: 400; line-height: .8; }
.result h3 { max-width: 190px; margin: 0; font-size: .95rem; line-height: 1.35; }
.result p { margin: 13px 0 0; color: var(--muted); font-size: .78rem; }
.source-note { margin-top: 22px; color: #7e879b; font-size: .72rem; }
.source-note a { color: var(--blue); }

.services { background: #0d121c; }
.service-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 620px; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.service-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s ease; }
.service-card:hover > img { transform: scale(1.035); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,19,.98) 0%, rgba(8,11,19,.18) 68%); }
.service-body { position: absolute; inset: auto 32px 34px; z-index: 2; }
.service-number { color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.service-card h3 { margin: 9px 0 8px; font-family: var(--display); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 400; line-height: .85; text-transform: uppercase; }
.service-card p { max-width: 480px; margin: 0 0 22px; color: #ced3de; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: white; font-size: .7rem; font-weight: 900; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.text-link::after { content: "↗"; color: var(--red); font-size: 1.1rem; }

.work { background: var(--ice); color: var(--ink); }
.work .eyebrow { color: #1978b8; }
.work-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 360px 360px; gap: 18px; margin-top: 58px; }
.work-card { position: relative; overflow: hidden; background: #ddd; }
.work-card:first-child { grid-row: 1 / 3; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.work-card:first-child img { object-position: center top; }
.work-card:hover img { transform: scale(1.025); }
.work-label { position: absolute; left: 18px; bottom: 18px; right: 18px; display: flex; justify-content: space-between; align-items: end; gap: 18px; padding: 18px; background: rgba(8,11,19,.88); color: white; backdrop-filter: blur(8px); }
.work-label strong { display: block; font-size: .83rem; }
.work-label span { color: var(--muted); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }

.partners { background: #0b0f18; }
.partner-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.partner-visual { position: sticky; top: 30px; }
.partner-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.partner-list { border-top: 1px solid var(--line); }
.partner-item { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 25px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.partner-item a { text-decoration: none; }
.partner-item:hover h3 { color: var(--blue); }
.partner-item h3 { margin: 0; font-family: var(--display); font-size: 2rem; font-weight: 400; letter-spacing: .025em; text-transform: uppercase; }
.partner-item p { margin: 3px 0 0; color: var(--muted); font-size: .75rem; }
.partner-arrow { color: var(--red); font-size: 1.4rem; }
.coupon { display: inline-flex; gap: 10px; align-items: center; margin-top: 10px; padding: 7px 10px; border: 1px solid rgba(80,183,255,.4); color: var(--blue); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.coupon button { border: 0; padding: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }

.contact-stage { overflow: hidden; background: var(--red); color: white; }
.contact-stage::before { content: "NARLA"; position: absolute; right: -40px; bottom: -120px; color: rgba(255,255,255,.08); font-family: var(--display); font-size: clamp(14rem, 32vw, 34rem); line-height: 1; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.contact-stage .section-title { max-width: 900px; }
.contact-stage .button { background: white; color: var(--ink); }
.contact-stage .eyebrow { color: white; }
.contact-note { max-width: 590px; margin: 24px 0 0; color: rgba(255,255,255,.84); }

.site-footer { padding: 44px 0; border-top: 1px solid var(--line); background: #05070c; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.footer-copy { color: #778095; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.redirect { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.redirect h1 { margin: 0; font-family: var(--display); font-size: 5rem; font-weight: 400; }

/* Media kit */
.kit-body { background: #eae7df; color: var(--ink); }
.kit-body::before { opacity: .08; }
.kit-header { position: static; background: var(--ink); }
.kit-hero { position: relative; min-height: 760px; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: white; }
.kit-hero > img { position: absolute; inset: 0 0 0 50%; width: 50%; height: 100%; object-fit: cover; object-position: center top; }
.kit-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 48%, transparent 72%), linear-gradient(0deg, rgba(8,11,19,.88), transparent 35%); }
.kit-hero-inner { position: relative; z-index: 2; padding: 110px 0 78px; }
.kit-title { max-width: 650px; margin: 0; font-family: var(--display); font-size: clamp(6.5rem, 15vw, 12rem); font-weight: 400; line-height: .75; text-transform: uppercase; }
.kit-title span { display: block; color: var(--blue); }
.kit-sub { max-width: 520px; margin: 30px 0 0; color: #c5cad6; font-size: 1.05rem; }
.kit-section { padding: 95px 0; }
.kit-section.dark { background: var(--ink); color: white; }
.kit-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.kit-intro h2, .kit-heading { margin: 0; font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 400; line-height: .86; text-transform: uppercase; }
.kit-intro p { color: #4b5262; font-size: 1.07rem; }
.kit-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 50px; background: #c9c5bc; border: 1px solid #c9c5bc; }
.kit-metric { padding: 32px; background: #f5f2eb; }
.kit-metric strong { display: block; font-family: var(--display); font-size: 4.2rem; font-weight: 400; line-height: 1; }
.kit-metric span { color: #667084; font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.kit-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 330px 330px; gap: 14px; margin-top: 50px; }
.kit-gallery figure { position: relative; margin: 0; overflow: hidden; background: #121725; }
.kit-gallery figure:first-child { grid-row: 1 / 3; }
.kit-gallery figure:nth-child(2) { grid-column: 2 / 4; }
.kit-gallery img { width: 100%; height: 100%; object-fit: cover; }
.kit-gallery figure:first-child img { object-position: center top; }
.kit-gallery figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; background: rgba(8,11,19,.86); color: white; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.format { min-height: 230px; padding: 26px; border: 1px solid rgba(255,255,255,.15); background: #101522; color: white; }
.format-no { color: var(--red); font-size: .65rem; font-weight: 900; letter-spacing: .16em; }
.format h3 { margin: 30px 0 10px; font-family: var(--display); font-size: 2.1rem; font-weight: 400; text-transform: uppercase; }
.format p { margin: 0; color: var(--muted); font-size: .85rem; }
.brand-fit { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 46px; }
.brand-fit img { width: 100%; height: 650px; object-fit: cover; object-position: center top; }
.fit-list { margin: 0; padding: 0; list-style: none; }
.fit-list li { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid #cbc7be; font-weight: 750; }
.fit-list li span { color: #6e7686; font-weight: 500; }
.kit-cta { padding: 105px 0; background: var(--red); color: white; text-align: center; }
.kit-cta .kit-heading { max-width: 900px; margin-inline: auto; }
.kit-cta p { max-width: 650px; margin: 24px auto 30px; color: rgba(255,255,255,.85); }
.kit-cta .button { background: white; color: var(--ink); }
.kit-header .print-button { border: 1px solid rgba(255,255,255,.28); color: white; }

@media (max-width: 960px) {
  .nav-links { position: absolute; top: 86px; left: 24px; right: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px; background: rgba(8,11,19,.97); border: 1px solid var(--line); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: inline-grid; place-items: center; }
  .hero-photo { inset: 0; width: 100%; opacity: .58; object-position: 58% 20%; }
  .hero::after { background: linear-gradient(90deg, rgba(8,11,19,.96), rgba(8,11,19,.46)), linear-gradient(0deg, var(--ink), transparent 42%); }
  .hero-corner { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-grid, .partner-layout, .kit-intro { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 620px; }
  .score-head { display: block; }
  .score-head .section-copy { margin-top: 24px; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .result:nth-child(2) { border-right: 0; }
  .result:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .partner-visual { position: relative; top: 0; max-width: 600px; }
  .kit-hero > img { inset: 0; width: 100%; opacity: .55; }
  .kit-hero::after { background: linear-gradient(90deg, rgba(8,11,19,.96), rgba(8,11,19,.4)), linear-gradient(0deg, rgba(8,11,19,.9), transparent 50%); }
  .kit-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 270px 270px; }
  .kit-gallery figure:first-child { grid-row: auto; }
  .kit-gallery figure:nth-child(2) { grid-column: auto; }
  .kit-gallery figure:first-child, .kit-gallery figure:nth-child(2) { grid-column: 1 / 3; }
  .format-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section, .kit-section { padding: 82px 0; }
  .site-header .button { display: none; }
  .brand-name { font-size: 1.35rem; }
  .hero { min-height: 790px; }
  .hero-grid { padding-top: 148px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(6.2rem, 30vw, 8.8rem); }
  .hero-actions .button { width: 100%; }
  .stat { min-height: 110px; padding: 22px 18px; }
  .stat strong { font-size: 2.05rem; }
  .section-title { font-size: clamp(3.3rem, 18vw, 5.2rem); }
  .portrait-frame::before { inset: 12px -10px -12px 10px; }
  .portrait-frame img { height: min(125vw, 680px); }
  .result-grid, .service-grid, .work-grid, .contact-grid, .brand-fit { grid-template-columns: 1fr; }
  .result { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card { min-height: 580px; }
  .work-grid { grid-template-rows: repeat(3, 430px); }
  .work-card:first-child { grid-row: auto; }
  .contact-grid { align-items: start; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .kit-hero { min-height: 700px; }
  .kit-title { font-size: clamp(6rem, 29vw, 8rem); }
  .kit-metrics { grid-template-columns: 1fr; }
  .kit-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 420px); }
  .kit-gallery figure:first-child, .kit-gallery figure:nth-child(2) { grid-column: auto; }
  .format-grid { grid-template-columns: 1fr; }
  .brand-fit img { height: min(125vw, 680px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  @page { size: A4; margin: 12mm; }
  .site-header, .print-button, .site-footer, body::before { display: none !important; }
  .kit-body, .kit-section, .kit-section.dark, .kit-cta { background: white !important; color: #111 !important; }
  .kit-hero { min-height: 240mm; break-after: page; }
  .kit-hero::after { background: linear-gradient(90deg, rgba(8,11,19,.96), rgba(8,11,19,.45)); }
  .kit-section { padding: 16mm 0; break-inside: avoid; }
  .kit-gallery { grid-template-rows: 90mm 72mm; }
  .format { background: white; color: #111; border-color: #bbb; }
  .format p, .kit-section.dark .source-note { color: #444; }
  a { text-decoration: none; }
}
