﻿:root {
  --font-title: "Barlow Condensed", "Segoe UI", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --bg-dark: #0a0b0e;
  --bg-dark-2: #171a20;
  --bg-soft: #f2f4f8;
  --surface: #ffffff;
  --line: #d7dce5;
  --line-dark: rgba(220, 224, 232, 0.24);
  --ink: #12151c;
  --muted: #5a6475;
  --brand-red: #ef233c;
  --red-strong: #ff304f;
  --red-deep: #a60f27;
  --red-soft: #ffd8df;
  --red-glow: rgba(255, 48, 79, 0.45);
  --radius-lg: 16px;
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #f6f0f2 0%, #f3f4f8 100%);
}

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

.container {
  width: min(1180px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 48, 79, 0.35);
  background: rgba(14, 9, 12, 0.9);
  backdrop-filter: blur(8px);
}

.topbar-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 122px;
  height: auto;
  clip-path: inset(0 0 24% 0);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  text-decoration: none;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 122px;
  overflow: hidden;
  border-radius: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-title);
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  color: #ffe9ee;
  text-shadow: 0 0 12px rgba(255, 162, 182, 0.18), 0 2px 18px rgba(0, 0, 0, 0.22);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #e8eff7;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 48, 79, 0.32);
}

.lang-switch {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-btn {
  border: 1px solid rgba(220, 230, 240, 0.35);
  background: transparent;
  color: #e6eef8;
  border-radius: 9px;
  min-width: 2.4rem;
  padding: 0.36rem 0.52rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(130deg, rgba(255, 48, 79, 0.75), rgba(166, 15, 39, 0.8));
  border-color: rgba(255, 48, 79, 0.96);
  color: #ffeef1;
}

.hero-company {
  padding: 4.1rem 0 3.2rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 48, 79, 0.36), transparent 38%),
    radial-gradient(circle at 10% 10%, rgba(166, 15, 39, 0.32), transparent 33%),
    linear-gradient(150deg, #09070a 0%, #1a0f16 44%, #261620 100%);
  color: #edf6ff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.hero-headline h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(3.3rem, 10.2vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: pre-line;
  text-wrap: pretty;
}

.hero-tagline {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: #f2bec8;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-summary {
  padding: 0.2rem 0 0;
}

.hero-summary h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-summary-copy {
  margin: 0.62rem 0 0;
  color: #f0dce1;
  font-size: 1rem;
  line-height: 1.5;
  white-space: pre-line;
}

.hero-sports {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.sport-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 48, 79, 0.75);
  background: linear-gradient(120deg, rgba(255, 48, 79, 0.3), rgba(166, 15, 39, 0.35));
  padding: 0.36rem 0.62rem;
  color: #ffeef1;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-mini-note {
  display: none;
}

.hero-stats {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-orbit {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-orbit-copy,
.hero-orbit-stage {
  border-radius: 18px;
  border: 1px solid rgba(255, 48, 79, 0.28);
  background: linear-gradient(145deg, rgba(28, 12, 19, 0.88), rgba(11, 10, 17, 0.86));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.hero-orbit-copy {
  padding: 1.1rem 1.15rem;
}

.hero-orbit-copy h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-wrap: pretty;
  color: #fff2f4;
}

.hero-orbit-copy p:last-child,
.hero-orbit-copy p:not(.eyebrow):not(.hero-orbit-meta) {
  margin: 0.7rem 0 0;
}

.hero-orbit-copy > p:not(.eyebrow) {
  color: #f0d0d7;
  line-height: 1.66;
}

.hero-orbit-meta {
  color: #ffb8c5;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-orbit-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(146, 61, 82, 0.09), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(244, 228, 233, 0.06), transparent 20%),
    linear-gradient(145deg, rgba(19, 12, 17, 0.96), rgba(8, 8, 12, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 244, 0.06),
    inset 0 -18px 32px rgba(0, 0, 0, 0.18),
    0 24px 48px rgba(0, 0, 0, 0.34);
}

.hero-orbit-stage:active {
  cursor: grabbing;
}

.hero-orbit-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 5, 8, 0.02) 0%, rgba(8, 5, 8, 0.06) 42%, rgba(8, 5, 8, 0.28) 100%),
    radial-gradient(circle at center, rgba(166, 95, 112, 0.05), transparent 58%);
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-fallback {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 3.9rem;
  z-index: 2;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 48, 79, 0.22);
  border-radius: 14px;
  background: rgba(17, 10, 15, 0.66);
  color: #f6dfe4;
  line-height: 1.55;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero-orbit-stage.orbit-fallback-visible .hero-orbit-fallback {
  opacity: 1;
}

#hero-orbit-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  filter: saturate(0.96) contrast(1.04);
}

.hero-orbit-chip {
  position: absolute;
  z-index: 2;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 48, 79, 0.34);
  background: rgba(17, 10, 15, 0.72);
  backdrop-filter: blur(8px);
  color: #fff1f4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.hero-orbit-chip-a {
  top: 1rem;
  left: 1rem;
}

.hero-orbit-chip-b {
  right: 1rem;
  top: 1.15rem;
}

.hero-orbit-chip-c {
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
}

.stat-tile {
  border-radius: 14px;
  border: 1px solid rgba(255, 48, 79, 0.42);
  background: linear-gradient(140deg, rgba(37, 11, 17, 0.82), rgba(14, 12, 18, 0.8));
  color: #e6f2ff;
  padding: 0.78rem 0.82rem;
}

.stat-top {
  display: flex;
  align-items: flex-end;
  gap: 0.34rem;
}

.stat-unit {
  font-size: 0.86rem;
  color: #ffb2bf;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-number {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2.35rem;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.stat-suffix {
  color: #ff5b74;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-tile p {
  margin: 0.26rem 0 0;
  color: #e3c8cf;
  font-size: 0.86rem;
  line-height: 1.38;
}

.hero-description {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.hero-description p {
  margin: 0;
  color: #efc7cf;
  line-height: 1.64;
  max-width: 78ch;
}

.hero-link {
  text-decoration: none;
  color: #ffb9c5;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(255, 48, 79, 0.96);
  padding-bottom: 0.3rem;
}

.section {
  padding: 4.4rem 0;
}

.visual-reel {
  padding-top: 3.2rem;
  padding-bottom: 3.4rem;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 48, 79, 0.22), transparent 28%),
    linear-gradient(180deg, #14070d 0%, #2b111d 100%);
}

.visual-reel .section-head h2 {
  color: #ffe7eb;
  max-width: 100%;
}

.visual-reel .eyebrow {
  color: #ff9fb0;
}

.visual-reel .section-head {
  max-width: none;
}

.visual-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.visual-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 48, 79, 0.38);
  background: linear-gradient(180deg, rgba(34, 9, 15, 0.95), rgba(17, 7, 12, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transform: translateZ(0);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 3, 5, 0.08) 0%, rgba(8, 3, 5, 0.22) 30%, rgba(8, 3, 5, 0.94) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(255, 120, 148, 0.2), transparent 28%);
  z-index: 1;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: -10% auto -10% -35%;
  width: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 50%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0.34;
  z-index: 1;
  animation: visual-sheen 10s ease-in-out infinite;
}

.visual-card-media {
  position: absolute;
  inset: 0;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.04);
  animation: visual-drift 16s ease-in-out infinite alternate;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.visual-card-content {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 1.12rem 1rem 1rem;
  display: grid;
  gap: 0.38rem;
  z-index: 2;
}

.visual-card-kicker {
  color: #ffb8c5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-card h3 {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-title);
  font-size: clamp(1.32rem, 2.2vw, 2.05rem);
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  color: #fff3f5;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.visual-card-body {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 243, 245, 0.86);
  font-size: 0.84rem;
  line-height: 1.38;
  text-wrap: pretty;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.visual-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.14) contrast(1.08);
}

.visual-card:hover::after {
  animation-duration: 6s;
}

.section-light {
  background:
    radial-gradient(circle at 12% 0%, rgba(239, 35, 60, 0.06), transparent 26%),
    linear-gradient(180deg, #fff6f7 0%, #fffdfd 100%);
}

.section-dark {
  color: #eaf4ff;
  background:
    radial-gradient(circle at 12% 2%, rgba(255, 48, 79, 0.34), transparent 38%),
    linear-gradient(145deg, #12090f 0%, #251420 100%);
}

.section-soft {
  background:
    radial-gradient(circle at 86% 12%, rgba(239, 35, 60, 0.07), transparent 24%),
    linear-gradient(180deg, #fff0f3 0%, #fff8fa 100%);
}

.section-head {
  position: relative;
  max-width: 78ch;
  padding-top: 0.8rem;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 35, 60, 0.9), rgba(239, 35, 60, 0.1));
}

.eyebrow {
  margin: 0;
  color: #e72644;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.section-dark .eyebrow {
  color: #ffb4c1;
}

.section-head h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  max-width: 21ch;
  text-wrap: pretty;
}

.section-light .section-head h2,
.section-soft .section-head h2 {
  color: #9f142d;
}

#about .section-head {
  max-width: none;
}

#about .section-head h2 {
  max-width: 100%;
}

.section-dark .section-head,
#media .section-head {
  max-width: none;
}

.section-dark .section-head h2 {
  max-width: 100%;
}

#media .section-head h2,
#values .section-head h2,
.join-copy h2 {
  max-width: 100%;
}

.card-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 35, 60, 0.18);
  background: #ffffff;
  padding: 0.72rem;
  box-shadow: 0 14px 32px rgba(147, 20, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.3);
  box-shadow: 0 18px 38px rgba(147, 20, 45, 0.12);
}

.info-card:first-child {
  grid-column: span 1;
}

.info-card:first-child .info-card-media {
  order: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.info-card:first-child .info-card-body {
  padding: 0.9rem 0.08rem 0.06rem;
  align-self: stretch;
}

.info-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 1.9vw, 2rem);
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  color: #a81731;
}

.info-card-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(160deg, #220811, #8f102a 54%, #ff6e8b);
}

.info-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.06) contrast(1.03);
}

.info-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 6, 10, 0.08) 0%, rgba(18, 6, 10, 0.2) 45%, rgba(18, 6, 10, 0.82) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.14), transparent 24%);
  z-index: 1;
}

.info-card:hover .info-card-media img {
  transform: scale(1.08);
}

.info-card-kicker {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  color: #ffd7df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.9rem 0.08rem 0.06rem;
}

.info-card-text {
  margin: 0.72rem 0 0;
  color: #5d6778;
  line-height: 1.64;
  font-size: 1rem;
}

.info-card-li {
  margin-top: 0.42rem;
  line-height: 1.52;
  font-size: 0.94rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.15rem;
}

.info-card:nth-child(1) .info-card-media::after,
.info-card:nth-child(2) .info-card-media::after,
.info-card:nth-child(3) .info-card-media::after,
.info-card:nth-child(4) .info-card-media::after {
  content: "";
  position: absolute;
  inset: auto auto 14% -14%;
  width: 42%;
  height: 48%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  z-index: 1;
  animation: info-orbit 11s ease-in-out infinite alternate;
}

.infra-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: stretch;
}

.infra-tile {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  border: 1px solid rgba(255, 48, 79, 0.4);
  background: linear-gradient(145deg, rgba(56, 16, 25, 0.82), rgba(20, 15, 24, 0.8));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0.95rem 0.9rem 0.9rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.infra-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 6, 10, 0.34) 0%, rgba(18, 6, 10, 0.3) 30%, rgba(18, 6, 10, 0.9) 100%),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.14), transparent 24%);
  z-index: 0;
}

.infra-kicker,
.infra-tile h3,
.infra-tile p {
  position: relative;
  z-index: 1;
}

.infra-kicker {
  display: inline-block;
  margin-bottom: 0.44rem;
  color: #ffd1da;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
}

.infra-tile h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  letter-spacing: 0.03em;
  line-height: 0.9;
  color: #fff4f6;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.infra-tile p {
  margin: 0.38rem 0 0;
  color: #ffe0e6;
  line-height: 1.42;
  font-size: 0.98rem;
  max-width: 24ch;
  text-wrap: balance;
}

.media-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.media-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(239, 35, 60, 0.18);
  background: #ffffff;
  padding: 0.72rem;
  box-shadow: 0 14px 32px rgba(147, 20, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.3);
  box-shadow: 0 18px 38px rgba(147, 20, 45, 0.12);
}

.media-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(160deg, #220811, #8f102a 54%, #ff6e8b);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.06) contrast(1.03);
}

.media-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 6, 10, 0.08) 0%, rgba(18, 6, 10, 0.2) 45%, rgba(18, 6, 10, 0.82) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.14), transparent 24%);
  z-index: 1;
}

.media-card:hover .media-thumb img {
  transform: scale(1.08);
}

.media-kicker {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  color: #ffd7df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.88rem 0.08rem 0.04rem;
}

.media-card time {
  display: block;
  margin-top: 0;
  color: #c21c38;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.media-card h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(1.34rem, 1.78vw, 1.82rem);
  line-height: 1;
  letter-spacing: 0.012em;
  color: #a4142d;
  text-transform: uppercase;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.media-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 1rem;
}

.values-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: stretch;
}

.value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(239, 35, 60, 0.22);
  background: #ffffff;
  padding: 0.72rem;
  box-shadow: 0 14px 32px rgba(147, 20, 45, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.3);
  box-shadow: 0 18px 38px rgba(147, 20, 45, 0.12);
}

.value-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(160deg, #220811, #8f102a 54%, #ff6e8b);
}

.value-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: saturate(1.06) contrast(1.03);
}

.value-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 6, 10, 0.08) 0%, rgba(18, 6, 10, 0.2) 45%, rgba(18, 6, 10, 0.82) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.14), transparent 24%);
  z-index: 1;
}

.value-card:hover .value-thumb img {
  transform: scale(1.08);
}

.value-kicker {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  color: #ffd7df;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.88rem 0.08rem 0.04rem;
}

.value-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.52rem, 1.95vw, 2rem);
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #be1834;
  text-wrap: pretty;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.value-card p {
  margin: 0.62rem 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 1rem;
}

.join-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.9rem;
}

.join-copy > p {
  color: var(--muted);
}

.join-copy h2 {
  margin: 0.65rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  text-wrap: pretty;
}

.benefits-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.58rem;
}

.benefit-row {
  border-radius: 12px;
  border: 1px solid rgba(239, 35, 60, 0.18);
  background: linear-gradient(130deg, #fff7f8 0%, #fff 100%);
  padding: 0.68rem 0.74rem;
  color: var(--muted);
}

.jobs-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 35, 60, 0.18);
  background: linear-gradient(145deg, #fff1f3 0%, #ffe2e7 100%);
  padding: 1rem;
}

.jobs-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aa1029;
}

.jobs-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.jobs-list li {
  border-radius: 10px;
  border: 1px solid rgba(239, 35, 60, 0.24);
  background: #ffffff;
  padding: 0.6rem 0.7rem;
}

.jobs-list strong {
  display: block;
  color: #a8112a;
}

.jobs-list span {
  display: block;
  margin-top: 0.16rem;
  color: #60748f;
  font-size: 0.86rem;
}

.contact-block {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 225, 232, 0.12) 0, rgba(255, 225, 232, 0.12) 11%, transparent 11%, transparent 100%),
    radial-gradient(circle at 6% 22%, rgba(255, 225, 232, 0.12), transparent 18%),
    radial-gradient(circle at 88% 16%, rgba(255, 48, 79, 0.18), transparent 24%),
    linear-gradient(152deg, #13090f 0%, #241019 46%, #0b070a 100%);
  color: #fff2f5;
}

.contact-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(19vw, 180px);
  background:
    linear-gradient(180deg, rgba(255, 241, 244, 0.16), rgba(255, 241, 244, 0.04)),
    repeating-linear-gradient(122deg, transparent 0 24px, rgba(255, 241, 244, 0.12) 24px 25px),
    repeating-linear-gradient(28deg, transparent 0 18px, rgba(255, 241, 244, 0.08) 18px 19px);
  opacity: 0.54;
  pointer-events: none;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.35rem;
  align-items: stretch;
}

.contact-info {
  position: relative;
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.2rem, 3vw, 1.9rem);
  z-index: 1;
}

.contact-card h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-title);
  font-size: clamp(2.25rem, 6.8vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 9ch;
}

.contact-address-panel {
  margin-top: 1.1rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 168, 184, 0.2);
  background: linear-gradient(145deg, rgba(63, 16, 28, 0.44), rgba(28, 10, 16, 0.3));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(0, 0, 0, 0.16);
}

.contact-company,
.contact-location {
  margin: 0;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: pre-line;
  text-wrap: balance;
  color: #fff4f6;
}

.contact-company {
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  line-height: 0.92;
}

.contact-location {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 0.96;
  color: #ffd1da;
}

.contact-legal {
  max-width: 60ch;
  margin: 1rem 0 0;
  color: #efc9d1;
  line-height: 1.72;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 160, 177, 0.26);
  background: linear-gradient(145deg, rgba(41, 11, 19, 0.94), rgba(18, 10, 16, 0.98));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  padding: 1.15rem;
  display: grid;
  gap: 0.82rem;
}

.contact-form-head h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ff5f7a;
}

.contact-form-head p {
  margin: 0.4rem 0 0;
  color: #f0d5db;
  line-height: 1.6;
}

.contact-field {
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 180, 194, 0.2);
  background: linear-gradient(180deg, #fff8fa 0%, #fff1f4 100%);
  color: #1d1015;
  font: inherit;
  text-align: inherit;
  padding: 0.92rem 1rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-field textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #85707a;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 94, 122, 0.56);
  box-shadow: 0 0 0 3px rgba(255, 48, 79, 0.18);
  transform: translateY(-1px);
}

.contact-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: #ffeef2;
  font-size: 0.93rem;
  line-height: 1.56;
}

.contact-check input {
  margin-top: 0.18rem;
  accent-color: var(--brand-red);
}

.contact-submit {
  border: 0;
  background: linear-gradient(135deg, #ff1f49, #d50d35);
  color: #fff5f7;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.15rem;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(255, 31, 73, 0.28);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html[data-lang="vn"] .hero-headline h1 {
  font-family: "Be Vietnam Pro", var(--font-body);
  font-size: clamp(2.9rem, 8.6vw, 5.7rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 800;
  text-wrap: pretty;
}

html[data-lang="vn"] .hero-tagline {
  font-family: "Be Vietnam Pro", var(--font-body);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-transform: none;
}

html[data-lang="vn"] .hero-summary h2 {
  font-family: "Be Vietnam Pro", var(--font-body);
  font-size: clamp(1.45rem, 3.2vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 800;
}

html[data-lang="vn"] .hero-sports {
  margin-left: -0.2rem;
  justify-content: flex-start;
}

html[data-lang="vn"] .section-head h2,
html[data-lang="vn"] .join-copy h2,
html[data-lang="vn"] .contact-card h2 {
  font-family: "Be Vietnam Pro", var(--font-body);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-transform: none;
  text-wrap: pretty;
}

html[data-lang="vn"] #values .section-head {
  max-width: none;
}

html[data-lang="vn"] #values .section-head h2 {
  max-width: none;
  width: 100%;
  text-wrap: unset;
}

html[data-lang="ar"] {
  direction: rtl;
}

html[data-lang="ar"] .topbar-row,
html[data-lang="ar"] .hero-grid,
html[data-lang="ar"] .hero-description,
html[data-lang="ar"] .hero-orbit,
html[data-lang="ar"] .join-layout,
html[data-lang="ar"] .contact-card,
html[data-lang="ar"] .footer-row {
  direction: rtl;
}

html[data-lang="ar"] body,
html[data-lang="ar"] .hero-headline h1,
html[data-lang="ar"] .hero-summary h2,
html[data-lang="ar"] .section-head h2,
html[data-lang="ar"] .join-copy h2,
html[data-lang="ar"] .contact-card h2,
html[data-lang="ar"] .contact-form-head h3,
html[data-lang="ar"] .contact-location,
html[data-lang="ar"] .info-card h3,
html[data-lang="ar"] .media-card h3,
html[data-lang="ar"] .value-card h3 {
  font-family: "Noto Sans Arabic", var(--font-body);
  letter-spacing: 0;
  text-transform: none;
}

html[data-lang="ar"] .main-nav {
  justify-content: center;
}

html[data-lang="ar"] .hero-summary,
html[data-lang="ar"] .join-copy,
html[data-lang="ar"] .hero-orbit-copy,
html[data-lang="ar"] .contact-info,
html[data-lang="ar"] .contact-form-card {
  text-align: right;
}

html[data-lang="ar"] .contact-check {
  grid-template-columns: 1fr auto;
}

.footer {
  border-top: 1px solid rgba(255, 48, 79, 0.32);
  background: #13090f;
  color: #e3bfc8;
}

.footer-row {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.visible {
  animation: reveal-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(0, -10px, 0);
  }
}

@keyframes visual-sheen {
  0%,
  100% {
    transform: translateX(0) skewX(-18deg);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0;
  }
  42% {
    transform: translateX(240%) skewX(-18deg);
    opacity: 0.36;
  }
}

@keyframes info-orbit {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(14px, -12px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-card img,
  .visual-card::after,
  .reveal.visible {
    animation: none;
  }

  .info-card,
  .info-card-media img,
  .info-card:nth-child(1) .info-card-media::after,
  .info-card:nth-child(2) .info-card-media::after,
  .info-card:nth-child(3) .info-card-media::after,
  .info-card:nth-child(4) .info-card-media::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .join-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-description {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding-inline: 0;
  }

  .hero-orbit {
    grid-template-columns: 1fr;
  }

  .infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-card:nth-child(1),
  .visual-card:nth-child(2),
  .visual-card:nth-child(3),
  .visual-card:nth-child(4),
  .visual-card:nth-child(5),
  .visual-card:nth-child(6) {
    grid-column: span 1;
    min-height: 180px;
  }

  .visual-card h3 {
    max-width: 100%;
    font-size: clamp(1.28rem, 4.2vw, 1.82rem);
  }

  .visual-card-body {
    font-size: 0.8rem;
    max-width: 100%;
  }

  .section-head h2,
  #media .section-head h2,
  #values .section-head h2,
  .join-copy h2 {
    max-width: 100%;
  }

  .media-card h3,
  .value-card h3,
  .info-card h3 {
    max-width: 100%;
  }

  .info-card:first-child {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .info-card:first-child .info-card-media {
    order: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .media-card:nth-child(2),
  .media-card:nth-child(3),
  .value-card:nth-child(2),
  .value-card:nth-child(3) {
    margin-top: 0;
  }

  .contact-card h2 {
    max-width: 100%;
  }
}

@media (max-width: 860px) {
  .topbar {
    position: static;
  }

  .brand {
    gap: 0.42rem;
  }

  .brand-badge {
    width: 118px;
    overflow: hidden;
    border-radius: 10px;
  }

  .brand img {
    width: 118px;
    transform: none;
    clip-path: inset(0 0 24% 0);
  }

  .topbar-row {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 0.7rem 0;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-stats,
  .card-grid,
  .infra-grid,
  .media-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit-stage,
  #hero-orbit-canvas {
    min-height: 320px;
  }

  .hero-orbit-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .visual-grid {
    grid-template-columns: 1fr;
  }

  .contact-block::before {
    width: 100px;
  }

  .contact-company {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .contact-location {
    font-size: clamp(1.15rem, 6vw, 1.8rem);
  }

  .contact-form-card {
    padding: 1rem;
  }

  .section-head h2,
  #media .section-head h2,
  #values .section-head h2,
  .join-copy h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .visual-card h3,
  .info-card h3,
  .media-card h3,
  .value-card h3 {
    max-width: 100%;
    font-size: clamp(1.24rem, 6vw, 1.72rem);
    line-height: 1.02;
  }

  .visual-card-body {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.34;
    -webkit-line-clamp: 4;
  }

  .brand-wordmark {
    display: inline-flex !important;
    font-size: 1.18rem;
    letter-spacing: 0.18em;
    align-items: center;
  }
}


