@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Unbounded:wght@500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #0e0808;
  --surface: #160d0c;
  --card: #201312;
  --line: rgba(206, 216, 216, .13);
  --accent: #a2676c;
  --accent-2: #e3a1a7;
  --light: #ced8d8;
  --muted: #aeb4bb;
  --white: #f7f1ef;
  --green: #8fc7a1;
  --font-display: 'Unbounded', 'Manrope', Arial, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;
  --font-ui: 'Manrope', Arial, sans-serif;
  --font-body: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--light);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 22%), rgba(226, 161, 167, .12), transparent 26%),
    linear-gradient(115deg, rgba(255,255,255,.035) 0 1px, transparent 1px 100%);
  background-size: auto, 74px 74px;
  mask-image: linear-gradient(to bottom, #000 0 55%, transparent 100%);
}
body:after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.34' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; border: 0; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 104px 0; }
.surface { background: var(--surface); }
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.header.scrolled {
  background: rgba(14, 8, 8, .9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; gap: 32px; }
.logo {
  font-family: var(--font-ui);
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--white);
  white-space: nowrap;
  transition: transform .25s ease, filter .25s ease;
}
.logo:hover { transform: translateY(-1px); filter: drop-shadow(0 0 16px rgba(226,161,167,.28)); }
.logo span { color: var(--accent-2); }
.nav { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav a {
  font: 700 12px/1 var(--font-ui);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .22s ease;
}
.nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  transition: transform .28s ease;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover:after, .nav a.active:after { transform: scaleX(1); transform-origin: left; }
.btn-cta, .btn-primary, .btn-outline, .btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  font: 700 12px/1 var(--font-ui);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
}
.btn-cta:before, .btn-primary:before, .btn-outline:before, .btn-submit:before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: transform .55s ease;
}
.btn-cta, .btn-outline { border: 1px solid rgba(226, 161, 167, .55); color: var(--accent-2); background: transparent; }
.btn-primary, .btn-submit { color: #160d0c; background: linear-gradient(135deg, var(--accent-2), var(--accent)); }
.btn-outline:hover, .btn-cta:hover { background: rgba(226, 161, 167, .12); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.22); }
.btn-primary:hover, .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(162,103,108,.28); }
.btn-cta:hover:before, .btn-primary:hover:before, .btn-outline:hover:before, .btn-submit:hover:before { transform: translateX(120%) skewX(-16deg); }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 6px; background: transparent; }
.burger span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); }

.hero { min-height: 100vh; padding: 142px 0 76px; display: flex; align-items: center; position: relative; isolation: isolate; }
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(162, 103, 108, .28), transparent 32%),
    radial-gradient(circle at 15% 80%, rgba(206, 216, 216, .12), transparent 28%);
  z-index: -1;
  animation: heroGlow 10s ease-in-out infinite alternate;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 12% 3% auto auto;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(226,161,167,.18);
  border-radius: 50%;
  z-index: -1;
  animation: orbitRing 18s linear infinite;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--accent-2);
  font: 800 11px/1 var(--font-ui);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow:before { content: ""; width: 28px; height: 1px; background: var(--accent-2); }
h1, h2, h3 { color: var(--white); font-family: var(--font-display); line-height: 1.1; }
h1 { font-size: 86px; letter-spacing: 0; }
h2 { font-size: 62px; }
h3 { font-size: 25px; }
.gradient-text {
  background: linear-gradient(115deg, var(--accent), var(--accent-2), var(--light), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% 100%;
  animation: textSheen 7s ease-in-out infinite;
}
.lead { color: var(--muted); font-size: 19px; max-width: 650px; margin-top: 22px; }
.hero-actions, .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
.stat, .mini-card, .portfolio-card, .testimonial-card, .service-card, .vacancy-card {
  background: rgba(32, 19, 18, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.stat:hover, .mini-card:hover, .portfolio-card:hover, .testimonial-card:hover, .service-card:hover, .vacancy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(226,161,167,.36);
  background: rgba(36, 22, 21, .92);
  box-shadow: 0 22px 44px rgba(0,0,0,.28);
}
.stat { padding: 20px; }
.stat strong { display: block; color: var(--white); font: 800 27px/1 var(--font-ui); margin-bottom: 8px; }
.stat span { color: var(--muted); font-size: 14px; }
.hero-panel { position: relative; }
.hero-panel:before,
.hero-panel:after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(226,161,167,.16);
  filter: blur(.2px);
  animation: floatBadge 6s ease-in-out infinite;
}
.hero-panel:before { width: 88px; height: 88px; right: -12px; top: 22px; }
.hero-panel:after { width: 52px; height: 52px; left: -14px; bottom: 58px; animation-delay: -2s; background: rgba(143,199,161,.14); }
.hero-card {
  min-height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(32,19,18,.96), rgba(70,29,31,.75));
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
  transform-style: preserve-3d;
  animation: cardFloat 6.5s ease-in-out infinite;
}
.stream-window { height: 245px; border-radius: 8px; background: linear-gradient(135deg, #291414, #101a1c); position: relative; overflow: hidden; }
.stream-window:before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(226, 161, 167, .18); top: 35px; left: 75px; animation: pulseCore 4.4s ease-in-out infinite; }
.stream-window:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.08) 10%, transparent 13%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px);
  transform: translateX(-100%);
  animation: scanStream 5s ease-in-out infinite;
}
.play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247,241,239,.08);
  border: 1px solid rgba(247,241,239,.16);
  color: var(--white);
  font-size: 46px;
  line-height: 1;
  text-indent: 5px;
  text-shadow: 0 0 28px rgba(226,161,167,.35);
  box-shadow: 0 0 0 22px rgba(226,161,167,.08);
  animation: playPulse 2.6s ease-in-out infinite;
  z-index: 3;
}
.play:hover {
  background: rgba(226,161,167,.16);
  border-color: rgba(226,161,167,.42);
}
.live { position: absolute; top: 16px; left: 16px; padding: 7px 11px; border-radius: 6px; background: #d04b56; color: white; font: 800 11px/1 var(--font-ui); box-shadow: 0 0 0 0 rgba(208,75,86,.42); animation: livePulse 1.8s ease-in-out infinite; }
.metric-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.mini-card { padding: 18px; }
.mini-card strong { color: var(--white); display: block; font-size: 24px; }
.mini-card span { color: var(--muted); font-size: 14px; }

.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 42px; }
.section-head p { color: var(--muted); max-width: 520px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.text-block p { color: var(--muted); margin-top: 16px; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.check-grid li {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255,255,255,.03);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-visual {
  min-height: 430px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(162,103,108,.45), rgba(206,216,216,.08));
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-visual strong { font: 800 64px/1 var(--font-ui); color: var(--white); }
.about-photo {
  min-height: 430px;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.about-photo:hover {
  transform: translateY(-8px);
  border-color: rgba(226,161,167,.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}
.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.02);
  filter: brightness(1.28) saturate(1.08) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}
.about-photo:hover img {
  transform: scale(1.07);
  filter: brightness(1.38) saturate(1.14) contrast(1.06);
}
.about-photo:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(14,8,8,.18), rgba(14,8,8,.04)),
    radial-gradient(circle at 72% 18%, rgba(226,161,167,.12), transparent 34%),
    radial-gradient(circle at 22% 82%, rgba(206,216,216,.08), transparent 30%);
}
.about-photo:after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  pointer-events: none;
}
.about-photo-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: 54px;
  top: 46px;
  background: rgba(226,161,167,.22);
  filter: blur(28px);
  animation: aboutGlow 6s ease-in-out infinite;
}
.about-photo-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: min(250px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(14, 8, 8, .54);
  backdrop-filter: blur(16px);
}
.about-photo-badge strong {
  display: block;
  font-size: 76px;
  line-height: .9;
  text-shadow: 0 0 28px rgba(226,161,167,.32);
}
.about-photo-badge span {
  display: block;
  margin-top: 10px;
  color: var(--light);
  font-weight: 700;
}
.about-photo-meter {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 82px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(14,8,8,.5);
  backdrop-filter: blur(14px);
}
.about-photo-meter i {
  display: block;
  width: 12px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--accent), var(--accent-2), var(--light));
  animation: meterRise 1.35s ease-in-out infinite;
}
.about-photo-meter i:nth-child(2) { height: 48px; animation-delay: .12s; }
.about-photo-meter i:nth-child(3) { height: 64px; animation-delay: .24s; }
.about-photo-meter i:nth-child(4) { height: 40px; animation-delay: .36s; }
.brand-orbit {
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 48%, rgba(226,161,167,.2), transparent 30%),
    linear-gradient(135deg, rgba(78,34,35,.82), rgba(18,12,12,.92));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
}
.brand-orbit:before {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  border: 1px solid rgba(226,161,167,.18);
}
.brand-orbit:after {
  content: "";
  position: absolute;
  inset: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,161,167,.22), transparent 68%);
  filter: blur(8px);
  animation: brandPulse 4.8s ease-in-out infinite;
}
.orbit-ring {
  position: absolute;
  inset: 58px;
  border: 1px solid rgba(247,241,239,.16);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}
.orbit-ring:before,
.orbit-ring:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 22px rgba(226,161,167,.72);
}
.orbit-ring:before { top: 22px; left: 50%; }
.orbit-ring:after { bottom: 34px; right: 16%; background: var(--light); }
.orbit-ring-2 {
  inset: 98px;
  opacity: .75;
  animation-duration: 12s;
  animation-direction: reverse;
}
.brand-mark {
  position: relative;
  z-index: 2;
  width: min(245px, 62%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(14,8,8,.56);
  backdrop-filter: blur(18px);
  text-align: center;
  box-shadow: inset 0 0 44px rgba(226,161,167,.08), 0 24px 52px rgba(0,0,0,.3);
}
.brand-mark span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #170d0d;
  font: 800 42px/1 var(--font-display);
  box-shadow: 0 16px 34px rgba(162,103,108,.32);
}
.brand-mark strong {
  color: var(--white);
  font: 800 34px/1 var(--font-ui);
  letter-spacing: 3px;
}
.orbit-chip {
  position: absolute;
  z-index: 3;
  min-width: 106px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(14,8,8,.58);
  backdrop-filter: blur(14px);
  color: var(--light);
  font: 800 12px/1 var(--font-ui);
  letter-spacing: .8px;
  text-align: center;
  animation: chipFloat 4.8s ease-in-out infinite;
}
.chip-1 { top: 58px; left: 72px; }
.chip-2 { top: 76px; right: 64px; animation-delay: -1.2s; }
.chip-3 { bottom: 76px; left: 58px; animation-delay: -2.4s; }
.chip-4 { bottom: 58px; right: 74px; animation-delay: -3.2s; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card, .testimonial-card, .vacancy-card { padding: 24px; }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; background: rgba(226,161,167,.12); color: var(--accent-2); border-radius: 8px; font: 800 22px/1 var(--font-ui); margin-bottom: 18px; }
.service-card p, .testimonial-card p, .vacancy-card p { color: var(--muted); margin-top: 12px; }
.service-card ul { margin-top: 18px; display: grid; gap: 8px; color: var(--light); font-size: 14px; }
.service-card li { position: relative; padding-left: 16px; }
.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(226,161,167,.45);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-card { overflow: hidden; }
.portfolio-card img { width: 100%; aspect-ratio: 1.42; object-fit: cover; background: #241414; transition: transform .55s ease, filter .55s ease; }
.portfolio-card:hover img { transform: scale(1.055); filter: saturate(1.12) contrast(1.05); }
.portfolio-body { padding: 22px; }
.tag { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; color: var(--accent-2); font-size: 12px; margin-bottom: 12px; }
.portfolio-body p { color: var(--muted); margin-top: 10px; }
.result { margin-top: 18px; color: var(--green); font-weight: 700; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rating { color: var(--accent-2); font: 800 14px/1 var(--font-ui); margin-bottom: 16px; }
.quote-name { color: var(--white); font-weight: 700; margin-top: 18px; }

.page-hero { padding: 150px 0 70px; text-align: center; }
.page-hero p { margin: 20px auto 0; }
.vacancy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.type { color: var(--accent-2); font-weight: 700; margin-top: 8px; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.contact-link { display: flex; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--light); }
.form-box { border: 1px solid var(--line); border-radius: 8px; padding: 28px; background: var(--card); }
.form-group { display: grid; gap: 8px; margin-bottom: 16px; }
label { color: var(--white); font-weight: 600; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(14,8,8,.85);
  color: var(--white);
  padding: 13px 14px;
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(226,161,167,.62);
  box-shadow: 0 0 0 4px rgba(226,161,167,.09);
  background: rgba(14,8,8,.96);
}
textarea { min-height: 140px; resize: vertical; }

.cta-section { padding: 86px 0; text-align: center; background: linear-gradient(135deg, rgba(162,103,108,.18), rgba(206,216,216,.06)); }
.cta-section p { margin: 18px auto 0; color: var(--muted); max-width: 640px; }
.cta-actions { justify-content: center; }
.footer { padding: 36px 0; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-logo { color: var(--white); font: 800 16px/1 var(--font-ui); letter-spacing: 2px; }
.footer-logo span { color: var(--accent-2); }

.logo-video-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 5, 5, .88);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.logo-video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.logo-video-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(14,8,8,.72);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}
.logo-video-stage {
  position: relative;
  width: min(820px, 100%);
  aspect-ratio: 16 / 9;
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(226,161,167,.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(226,161,167,.22), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(206,216,216,.1), transparent 28%),
    linear-gradient(135deg, rgba(52,22,23,.96), rgba(9,8,8,.98));
  box-shadow: 0 34px 120px rgba(0,0,0,.62);
}
.logo-video-stage:before,
.logo-video-stage:after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(247,241,239,.12);
  border-radius: 50%;
  transform: scale(.25);
  opacity: 0;
}
.logo-video-modal.open .logo-video-stage:before {
  animation: logoRingReveal 1.65s ease forwards;
}
.logo-video-modal.open .logo-video-stage:after {
  animation: logoRingReveal 1.65s ease .28s forwards reverse;
}
.logo-video-lines {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(226,161,167,.38) 45%, transparent 46%),
    linear-gradient(0deg, transparent 0 48%, rgba(206,216,216,.22) 49%, transparent 50%),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255,255,255,.05) 43px, transparent 45px);
  opacity: 0;
  transform: rotate(-12deg) scale(1.2);
}
.logo-video-modal.open .logo-video-lines {
  animation: logoLines 1.45s cubic-bezier(.2,.8,.2,1) forwards;
}
.logo-video-core {
  position: relative;
  z-index: 2;
  width: min(310px, 68%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(14,8,8,.66);
  backdrop-filter: blur(18px);
  transform: scale(.68);
  opacity: 0;
  filter: blur(18px);
}
.logo-video-modal.open .logo-video-core {
  animation: logoCoreReveal 1.1s cubic-bezier(.16,1,.3,1) .72s forwards;
}
.logo-video-core span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #170d0d;
  font: 800 48px/1 var(--font-display);
}
.logo-video-core strong {
  color: var(--white);
  font: 800 40px/1 var(--font-ui);
  letter-spacing: 3px;
}
.logo-video-sparks i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0;
  box-shadow: 0 0 18px rgba(226,161,167,.85);
}
.logo-video-modal.open .logo-video-sparks i { animation: logoSpark 1.2s ease .92s forwards; }
.logo-video-sparks i:nth-child(1) { --x: -280px; --y: -120px; }
.logo-video-sparks i:nth-child(2) { --x: 260px; --y: -150px; animation-delay: 1s; }
.logo-video-sparks i:nth-child(3) { --x: -220px; --y: 150px; animation-delay: 1.08s; }
.logo-video-sparks i:nth-child(4) { --x: 290px; --y: 110px; animation-delay: 1.14s; }
.logo-video-sparks i:nth-child(5) { --x: -80px; --y: -190px; animation-delay: 1.18s; }
.logo-video-sparks i:nth-child(6) { --x: 80px; --y: 190px; animation-delay: 1.2s; }
.logo-video-sparks i:nth-child(7) { --x: -340px; --y: 10px; animation-delay: 1.24s; }
.logo-video-sparks i:nth-child(8) { --x: 340px; --y: -10px; animation-delay: 1.28s; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.is-hidden { display: none !important; }

@keyframes heroGlow {
  from { opacity: .82; transform: scale(1); }
  to { opacity: 1; transform: scale(1.04); }
}
@keyframes orbitRing {
  from { transform: rotate(0deg) translate3d(0, 0, 0); }
  to { transform: rotate(360deg) translate3d(0, 0, 0); }
}
@keyframes textSheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(1deg) rotateY(-1deg); }
}
@keyframes floatBadge {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .75; }
  50% { transform: translate3d(8px, -14px, 0); opacity: 1; }
}
@keyframes pulseCore {
  0%, 100% { transform: scale(.92); opacity: .65; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes scanStream {
  0%, 42% { transform: translateX(-110%); }
  70%, 100% { transform: translateX(110%); }
}
@keyframes playPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(208,75,86,.42); }
  50% { box-shadow: 0 0 0 8px rgba(208,75,86,0); }
}
@keyframes aboutGlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(.92); opacity: .55; }
  50% { transform: translate3d(-26px, 18px, 0) scale(1.12); opacity: .9; }
}
@keyframes meterRise {
  0%, 100% { transform: scaleY(.62); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes brandPulse {
  0%, 100% { transform: scale(.86); opacity: .48; }
  50% { transform: scale(1.08); opacity: .92; }
}
@keyframes chipFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
@keyframes logoRingReveal {
  0% { transform: scale(.2) rotate(0deg); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.25) rotate(180deg); opacity: 0; }
}
@keyframes logoLines {
  0% { opacity: 0; transform: translateX(-18%) rotate(-12deg) scale(1.2); }
  38% { opacity: 1; }
  100% { opacity: .22; transform: translateX(10%) rotate(-12deg) scale(1); }
}
@keyframes logoCoreReveal {
  0% { opacity: 0; transform: scale(.68) rotate(-8deg); filter: blur(18px); }
  68% { opacity: 1; transform: scale(1.06) rotate(1deg); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}
@keyframes logoSpark {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.2); }
}

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

@media (min-width: 1440px) {
  .container { max-width: 1280px; }
  .hero { min-height: 940px; }
}

@media (max-width: 1240px) {
  .container { width: min(100% - 48px, 1120px); }
  h1 { font-size: 72px; }
  h2 { font-size: 52px; }
  .nav { gap: 20px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 38px; }
  .hero-card { min-height: 430px; }
  .stream-window { height: 220px; }
}

@media (max-width: 980px) {
  h1 { font-size: 58px; }
  h2 { font-size: 44px; }
  h3 { font-size: 23px; }
  .header { padding: 14px 0; }
  .header-inner { gap: 18px; }
  .logo, .footer-logo { letter-spacing: 2px; font-size: 15px; }
  .burger { display: block; margin-left: auto; }
  .nav {
    position: fixed;
    inset: 70px 24px auto 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(22, 13, 12, .98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0,0,0,.38);
  }
  .nav.open { display: flex; }
  .nav a { padding: 15px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav a:last-child { border-bottom: 0; }
  .nav a:after { display: none; }
  .btn-cta { display: none; }
  .hero { min-height: auto; padding: 118px 0 72px; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 620px; width: 100%; margin: 0 auto; }
  .section { padding: 86px 0; }
  .section-head { align-items: start; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-grid, .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-photo, .brand-orbit, .about-visual { min-height: 380px; }
  .brand-mark { width: 220px; }
  .brand-mark strong { font-size: 28px; }
  .chip-1 { left: 46px; }
  .chip-2 { right: 42px; }
  .chip-3 { left: 42px; }
  .chip-4 { right: 48px; }
  .page-hero { padding: 126px 0 58px; }
  .footer-inner { align-items: flex-start; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  h3 { font-size: 22px; }
  .lead { font-size: 17px; }
  .hero-actions, .cta-actions { gap: 10px; }
  .btn-primary, .btn-outline, .btn-submit { width: 100%; }
  .stats, .metric-row, .cards-grid, .portfolio-grid, .testimonial-grid, .vacancy-grid, .check-grid { grid-template-columns: 1fr; }
  .stat, .mini-card, .service-card, .testimonial-card, .vacancy-card, .portfolio-body { padding: 20px; }
  .hero-card { min-height: auto; padding: 18px; }
  .stream-window { height: 210px; }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 12px; }
  .about-photo, .brand-orbit, .about-visual { min-height: 340px; }
  .about-photo-badge { left: 18px; right: 18px; bottom: 18px; width: auto; padding: 16px; }
  .about-photo-badge strong { font-size: 58px; }
  .about-photo-meter { right: 18px; top: 18px; bottom: auto; height: 68px; padding: 10px; }
  .about-photo-meter i { width: 10px; }
  .orbit-ring { inset: 46px; }
  .orbit-ring-2 { inset: 82px; }
  .brand-mark { width: 190px; }
  .brand-mark span { width: 62px; height: 62px; font-size: 34px; border-radius: 14px; }
  .brand-mark strong { font-size: 24px; letter-spacing: 1.8px; }
  .orbit-chip { min-width: 92px; padding: 9px 11px; font-size: 11px; }
  .chip-1 { top: 38px; left: 24px; }
  .chip-2 { top: 48px; right: 22px; }
  .chip-3 { bottom: 48px; left: 22px; }
  .chip-4 { bottom: 38px; right: 24px; }
  .form-box { padding: 20px; }
  .page-hero { padding: 112px 0 48px; }
  .footer-inner { display: grid; justify-items: start; }
  .footer-nav { gap: 12px 16px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, 1180px); }
  h1 { font-size: 38px; }
  h2 { font-size: 31px; }
  h3 { font-size: 20px; }
  .header-inner { gap: 12px; }
  .logo, .footer-logo { font-size: 13px; letter-spacing: 1.4px; }
  .burger { width: 40px; height: 40px; }
  .nav { inset: 66px 12px auto 12px; }
  .hero { padding: 104px 0 58px; }
  .eyebrow { font-size: 10px; letter-spacing: 2px; margin-bottom: 16px; }
  .eyebrow:before { width: 20px; }
  .lead { font-size: 16px; margin-top: 16px; }
  .hero-actions, .cta-actions { margin-top: 24px; }
  .stats { margin-top: 28px; }
  .stat strong { font-size: 24px; }
  .stream-window { height: 180px; }
  .play { font-size: 44px; }
  .hero-panel:before, .hero-panel:after { display: none; }
  .section { padding: 58px 0; }
  .section-head { margin-bottom: 28px; }
  .about-photo, .brand-orbit, .about-visual { min-height: 300px; }
  .about-photo:after { inset: 12px; }
  .about-photo-badge { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 10px; }
  .about-photo-badge strong { font-size: 46px; }
  .about-photo-badge span { margin-top: 0; font-size: 13px; }
  .about-photo-meter { display: none; }
  .brand-orbit:before { inset: 24px; }
  .orbit-ring { inset: 36px; }
  .orbit-ring-2 { inset: 68px; }
  .brand-mark { width: 168px; }
  .brand-mark span { width: 54px; height: 54px; margin-bottom: 12px; font-size: 30px; }
  .brand-mark strong { font-size: 20px; }
  .orbit-chip { min-width: auto; padding: 8px 10px; font-size: 10px; }
  .chip-1 { top: 24px; left: 18px; }
  .chip-2 { top: 30px; right: 16px; }
  .chip-3 { bottom: 30px; left: 16px; }
  .chip-4 { bottom: 24px; right: 18px; }
  .portfolio-card img { aspect-ratio: 1.12; }
  .logo-video-modal { padding: 14px; }
  .logo-video-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .logo-video-stage { min-height: 420px; aspect-ratio: auto; }
  .logo-video-core { width: min(240px, 74%); }
  .logo-video-core span { width: 70px; height: 70px; font-size: 38px; }
  .logo-video-core strong { font-size: 28px; letter-spacing: 2px; }
  input, textarea, select { padding: 12px; }
  textarea { min-height: 120px; }
  .cta-section { padding: 58px 0; }
}

@media (max-width: 380px) {
  h1 { font-size: 33px; }
  h2 { font-size: 28px; }
  .logo, .footer-logo { letter-spacing: 1px; }
  .btn-primary, .btn-outline, .btn-submit { padding-inline: 14px; font-size: 11px; }
  .service-card, .testimonial-card, .vacancy-card, .portfolio-body, .form-box { padding: 16px; }
  .about-photo, .brand-orbit, .about-visual { min-height: 270px; }
  .brand-mark { width: 148px; }
  .orbit-chip { display: none; }
  .logo-video-stage { min-height: 360px; }
  .logo-video-core { width: 205px; }
  .logo-video-core strong { font-size: 24px; }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 96px 0 48px; }
  .page-hero { padding: 96px 0 42px; }
  .stream-window { height: 160px; }
  .about-photo, .brand-orbit, .about-visual { min-height: 280px; }
}
