:root {
  --navy-950: #071227;
  --navy-900: #0c1d3d;
  --navy-800: #112b59;
  --navy-700: #173873;
  --gold-500: #d7ad58;
  --gold-400: #ebc980;
  --gold-300: #f4dfb2;
  --white: #ffffff;
  --ink: #15233b;
  --muted: #61708a;
  --shadow-soft: 0 28px 60px rgba(7, 18, 39, 0.18);
  --shadow-card: 0 18px 40px rgba(6, 15, 32, 0.22);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --container: 1200px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f7fc 0%, #eef2f8 100%);
  font-family: "Manrope", sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(7, 18, 39, 0.92), rgba(9, 22, 46, 0.9));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
  padding: 10px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 233, 159, 0.75), transparent 32%),
    linear-gradient(135deg, rgba(255, 249, 235, 0.98), rgba(248, 251, 255, 0.96) 58%, rgba(214, 231, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 16px 32px rgba(5, 16, 38, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.footer-logo {
  width: 218px;
  height: auto;
  object-fit: contain;
  padding: 14px 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 233, 159, 0.76), transparent 34%),
    linear-gradient(135deg, rgba(255, 249, 235, 0.98), rgba(247, 251, 255, 0.95) 58%, rgba(214, 231, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.brand-logo-vivid,
.footer-logo-vivid {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-copy,
.footer-brand {
  display: grid;
  gap: 4px;
}

.brand-name {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.08rem;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-400);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.language-link.is-active {
  color: var(--navy-950);
  background: linear-gradient(135deg, rgba(244, 223, 178, 0.98), rgba(215, 173, 88, 0.98));
  box-shadow: 0 10px 20px rgba(215, 173, 88, 0.24);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-solid {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 32px rgba(215, 173, 88, 0.28);
}

.button-solid:hover,
.button-solid:focus-visible {
  box-shadow: 0 18px 40px rgba(215, 173, 88, 0.34);
}

.button-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.button-large {
  min-height: 56px;
  padding: 0 28px;
}

.header-cta {
  white-space: nowrap;
}

.hero-section {
  position: relative;
  padding: 96px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(235, 201, 128, 0.2), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(59, 103, 185, 0.22), transparent 24%),
    linear-gradient(135deg, #071227 0%, #0e2348 45%, #102e60 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow,
.grid-overlay,
.orbital,
.hero-beam,
.hero-spark {
  position: absolute;
}

.glow {
  border-radius: 50%;
  filter: blur(18px);
}

.glow-one {
  top: 8%;
  left: 6%;
  width: 280px;
  height: 280px;
  background: rgba(215, 173, 88, 0.18);
}

.glow-two {
  right: 8%;
  bottom: 14%;
  width: 320px;
  height: 320px;
  background: rgba(38, 119, 216, 0.16);
}

.hero-beam {
  border-radius: 999px;
  opacity: 0.55;
  filter: blur(6px);
  transform-origin: center;
  animation: beamPulse 7s ease-in-out infinite;
}

.beam-one {
  --beam-rotate: 18deg;
  top: 12%;
  left: -8%;
  width: 420px;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(244, 223, 178, 0.78), transparent);
  transform: rotate(18deg);
}

.beam-two {
  --beam-rotate: -24deg;
  right: -10%;
  top: 22%;
  width: 520px;
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(72, 150, 255, 0.72), transparent);
  transform: rotate(-24deg);
  animation-delay: -2.4s;
}

.beam-three {
  --beam-rotate: -8deg;
  right: 6%;
  bottom: 10%;
  width: 360px;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(235, 201, 128, 0.62), transparent);
  transform: rotate(-8deg);
  animation-delay: -4.2s;
}

.hero-spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(235, 201, 128, 0.8) 55%, transparent 70%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.34);
  animation: sparkFloat 6s ease-in-out infinite;
}

.spark-one {
  top: 18%;
  right: 22%;
}

.spark-two {
  bottom: 24%;
  left: 14%;
  animation-delay: -2s;
}

.spark-three {
  top: 56%;
  right: 9%;
  animation-delay: -4s;
}

.grid-overlay {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 88%);
}

.orbital {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbital-one {
  right: 12%;
  top: 18%;
  width: 440px;
  height: 440px;
}

.orbital-two {
  right: 18%;
  top: 26%;
  width: 300px;
  height: 300px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 34ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-description,
.section-heading p,
.about-copy p,
.contact-copy p,
.info-card p,
.platform-copy p,
.value-card p,
.factory-copy p,
.factory-points li,
.footer-brand p {
  line-height: 1.78;
}

.hero-description {
  max-width: 62ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-products-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 540px);
  padding: 22px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(5, 14, 32, 0.28);
}

.hero-product-tile {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.hero-product-link {
  display: grid;
  gap: 10px;
  width: 100%;
}

.hero-product-media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-product-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 100%;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: color var(--transition), border-color var(--transition), background-color var(--transition);
}

.hero-product-link:hover .hero-product-media,
.hero-product-link:focus-visible .hero-product-media {
  transform: translateY(-3px);
  border-color: rgba(235, 201, 128, 0.72);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.hero-product-link:hover .hero-product-name,
.hero-product-link:focus-visible .hero-product-name {
  color: var(--white);
  border-color: rgba(235, 201, 128, 0.5);
  background: rgba(235, 201, 128, 0.14);
}

.section {
  padding: 92px 0;
}

.section-network {
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 173, 88, 0.12), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(44, 112, 209, 0.12), transparent 18%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3f9 100%);
}

.section-platforms,
.section-factory {
  color: var(--white);
}

.section-platforms {
  background: linear-gradient(180deg, rgba(17, 43, 89, 0.98), rgba(7, 18, 39, 1));
}

.section-about {
  background: linear-gradient(180deg, #f3f6fb 0%, #eef3f8 100%);
}

.section-factory {
  background: linear-gradient(180deg, #0f2145 0%, #09152e 100%);
}

.section-contact {
  background:
    radial-gradient(circle at 18% 22%, rgba(215, 173, 88, 0.12), transparent 26%),
    linear-gradient(180deg, #edf2f8 0%, #e9eef6 100%);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  margin: 0 0 20px;
  text-align: left;
}

.section-heading p,
.about-copy p,
.contact-copy p,
.info-card p,
.platform-copy p,
.value-card p,
.footer-brand p,
.footer-link-grid a {
  color: var(--muted);
}

.section-platforms .section-heading p,
.section-platforms .platform-copy p,
.section-platforms .platform-label,
.section-factory .factory-copy p,
.section-factory .factory-points li {
  color: rgba(255, 255, 255, 0.74);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

.network-intro-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -8px auto 28px;
}

.network-intro-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 43, 89, 0.08);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(10, 25, 55, 0.06);
}

.info-card,
.platform-card,
.value-card,
.contact-panel,
.factory-video-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.info-card {
  display: grid;
  gap: 18px;
  padding: 30px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.9)),
    linear-gradient(135deg, rgba(215, 173, 88, 0.04), rgba(17, 43, 89, 0.02));
  border: 1px solid rgba(17, 43, 89, 0.08);
  box-shadow:
    0 22px 42px rgba(7, 18, 39, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(215, 173, 88, 0.42);
  box-shadow:
    0 30px 54px rgba(7, 18, 39, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.card-top {
  display: grid;
  gap: 14px;
}

.info-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(215, 173, 88, 0.12));
}

.card-badge,
.platform-label,
.team-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-badge {
  color: var(--navy-800);
  background: rgba(215, 173, 88, 0.18);
}

.card-url {
  font-size: 0.92rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-all;
  color: #52627f;
}

.info-card .button-outline {
  color: var(--navy-800);
  border-color: rgba(17, 43, 89, 0.15);
}

.info-card .button-outline:hover,
.info-card .button-outline:focus-visible {
  color: var(--navy-950);
  background: rgba(215, 173, 88, 0.14);
  border-color: rgba(215, 173, 88, 0.42);
}

.platform-list {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.platform-card {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
  background:
    radial-gradient(circle at 84% 18%, rgba(215, 173, 88, 0.12), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 54px rgba(4, 10, 24, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.featured-platform {
  border-color: rgba(215, 173, 88, 0.28);
}

.platform-copy {
  display: grid;
  gap: 16px;
}

.platform-label {
  color: var(--gold-300);
  background: rgba(215, 173, 88, 0.12);
}

.platform-mark {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.14);
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 700;
}

.worldcup-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(244, 223, 178, 0.18), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(61, 133, 234, 0.14), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.worldcup-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.worldcup-mark {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.2);
}

.football-icon {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.22));
  animation: footballFloat 5.6s ease-in-out infinite;
}

.worldcup-motion {
  position: absolute;
  right: 120px;
  top: 34px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: 0.8;
}

.motion-orbit,
.motion-ball {
  position: absolute;
  inset: 0;
}

.motion-orbit {
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.motion-orbit::before,
.motion-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 201, 128, 0.9), rgba(235, 201, 128, 0));
}

.motion-orbit::before {
  top: 10px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%);
}

.motion-orbit::after {
  right: 16px;
  bottom: 18px;
  width: 8px;
  height: 8px;
}

.motion-ball::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 18%, #eff5ff 18% 58%, #cad9f0 58% 100%);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.34),
    0 0 34px rgba(235, 201, 128, 0.18);
  animation: orbitBall 7.5s ease-in-out infinite;
}

.football-pitch {
  position: absolute;
  right: 34px;
  bottom: 28px;
  width: 164px;
  height: 96px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(33, 95, 60, 0.38), rgba(16, 52, 34, 0.24));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.football-pitch::before,
.football-pitch::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.26);
}

.football-pitch::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}

.football-pitch::after {
  left: 8px;
  right: 8px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  opacity: 0.08;
}

.pitch-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transform: translate(-50%, -50%);
}

.pitch-ball {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #dde7f7 70%);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -50%);
  animation: pitchBallRun 4.8s cubic-bezier(0.45, 0.08, 0.55, 0.92) infinite;
}

.pitch-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  transform: translate(-50%, -50%);
  filter: blur(4px);
  animation: pitchBallRun 4.8s cubic-bezier(0.45, 0.08, 0.55, 0.92) infinite;
}

@keyframes footballFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(8deg);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitBall {
  0%,
  100% {
    transform: translate(34px, -44px) scale(1);
  }

  25% {
    transform: translate(40px, 26px) scale(0.94);
  }

  50% {
    transform: translate(-2px, 42px) scale(1.02);
  }

  75% {
    transform: translate(-42px, -8px) scale(0.96);
  }
}

@keyframes pitchBallRun {
  0% {
    transform: translate(-50%, -50%) translate(-48px, 10px) scale(0.96);
  }

  24% {
    transform: translate(-50%, -50%) translate(-8px, -12px) scale(1);
  }

  48% {
    transform: translate(-50%, -50%) translate(28px, -4px) scale(1.04);
  }

  72% {
    transform: translate(-50%, -50%) translate(42px, 14px) scale(0.98);
  }

  100% {
    transform: translate(-50%, -50%) translate(-48px, 10px) scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .football-icon,
  .motion-orbit,
  .motion-ball::before,
  .pitch-ball,
  .pitch-glow {
    animation: none;
  }
}

.about-grid,
.factory-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.about-grid {
  margin-bottom: 40px;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: stretch;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.value-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 43, 89, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 10px 0 10px 0;
}

.about-copy .section-heading {
  margin-bottom: 0;
}

.about-copy .section-heading h2 {
  max-width: 11ch;
}

.value-card h3 {
  max-width: 9ch;
  font-size: 1.24rem;
  line-height: 1.18;
}

.value-card p {
  max-width: 19ch;
  font-size: 1rem;
  line-height: 1.82;
}

.team-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 22px;
  align-items: stretch;
}

.team-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: #cad3e0;
}

.team-card-featured {
  min-height: 100%;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 8px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(7, 18, 39, 0.3) 20%, rgba(7, 18, 39, 0.86) 100%);
}

.team-label {
  background: rgba(215, 173, 88, 0.18);
  color: var(--gold-300);
  font-size: 0.74rem;
}

.factory-copy {
  display: grid;
  gap: 14px;
  max-width: 700px;
  padding-right: 0;
}

.factory-points {
  margin: 0;
  padding-left: 18px;
}

.factory-video-card {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
}

.factory-video {
  width: 100%;
  border-radius: 22px;
  background: #02060d;
}

.section-factory .factory-grid {
  grid-template-columns: 1.08fr 1fr;
  gap: 24px;
  align-items: center;
}

.section-factory .factory-copy h2 {
  max-width: 15.5ch;
  font-size: clamp(1.95rem, 3.25vw, 3.35rem);
  line-height: 1.02;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 42px;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 173, 88, 0.18), transparent 18%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 54px rgba(10, 25, 55, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-panel .contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.contact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-footer {
  background: linear-gradient(180deg, #071227 0%, #050d1b 100%);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 54px 0 28px;
}

.footer-brand h3,
.footer-links h4 {
  margin-top: 16px;
}

.footer-brand h3 {
  font-size: 1.8rem;
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 18px;
}

.footer-link-grid a {
  transition: color var(--transition);
}

.footer-link-grid a:hover,
.footer-link-grid a:focus-visible {
  color: var(--gold-400);
}

.footer-bottom {
  padding: 0 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(235, 201, 128, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 29, 61, 0.96), rgba(23, 56, 115, 0.94));
  color: var(--gold-300);
  box-shadow: 0 16px 30px rgba(7, 18, 39, 0.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.back-to-top span {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 700;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(235, 201, 128, 0.7);
  box-shadow: 0 20px 38px rgba(7, 18, 39, 0.3);
}

@keyframes beamPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleX(0.92) rotate(var(--beam-rotate, 0deg));
  }

  50% {
    opacity: 0.72;
    transform: scaleX(1.04) rotate(var(--beam-rotate, 0deg));
  }
}

@keyframes sparkFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.45;
  }

  50% {
    transform: translate3d(0, -14px, 0);
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .nav-row {
    grid-template-columns: auto 1fr auto auto;
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .about-grid,
  .factory-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .value-grid,
  .team-gallery {
    grid-template-columns: 1fr;
  }

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

  .about-copy {
    padding-right: 0;
  }

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

  .platform-card {
    grid-template-columns: 1fr;
  }

  .hero-products-panel {
    width: min(100%, 620px);
  }

  .football-pitch {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 220px;
    margin-top: 6px;
  }

  .worldcup-motion {
    right: 48px;
    top: 24px;
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(7, 18, 39, 0.92);
  }

  .nav-row {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
  }

  .brand {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
    grid-column: 4;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border-radius: 20px;
    background: rgba(7, 18, 39, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.94rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .language-switcher {
    grid-column: 3;
    justify-self: end;
  }

  .hero-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-products-panel {
    width: 100%;
    max-width: 560px;
  }

  .hero-copy {
    max-width: 680px;
    margin: 0 auto;
  }

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

  .website-grid,
  .footer-link-grid {
    grid-template-columns: 1fr;
  }

  .worldcup-motion {
    top: 18px;
    right: 24px;
    width: 84px;
    height: 84px;
    opacity: 0.58;
  }

  .contact-panel {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .nav-row {
    grid-template-columns: auto 1fr auto auto;
    min-height: 74px;
    gap: 10px;
  }

  .brand {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: 118px;
    padding: 8px 10px;
    border-radius: 18px;
    justify-self: center;
    align-self: center;
  }

  .brand-copy {
    min-width: 0;
    gap: 4px;
    align-content: center;
  }

  .footer-logo {
    width: 172px;
    padding: 12px 16px;
  }

  .brand-name {
    font-size: 0.8rem;
    line-height: 1.08;
    white-space: normal;
    overflow: visible;
    display: block;
    max-width: 100%;
  }

  .brand-tagline {
    display: none;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .language-switcher {
    padding: 4px;
    gap: 4px;
  }

  .language-link {
    min-width: 44px;
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    top: calc(100% + 6px);
    padding: 8px;
    border-radius: 18px;
  }

  .site-nav a {
    padding: 12px;
    font-size: 0.92rem;
  }

  .hero-section {
    padding-top: 42px;
    padding-bottom: 52px;
  }

  .glow-one,
  .glow-two {
    width: 180px;
    height: 180px;
  }

  .beam-one,
  .beam-two,
  .beam-three,
  .spark-three,
  .orbital-one,
  .orbital-two {
    display: none;
  }

  .hero-grid {
    gap: 22px;
  }

  h1 {
    max-width: 8.8ch;
    font-size: clamp(2.5rem, 13vw, 3.7rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
    line-height: 1.05;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-description {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .hero-highlights,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-highlights {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-highlights span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 30px;
  }

  .section-heading-left {
    margin-bottom: 14px;
  }

  .hero-products-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px;
    border-radius: 22px;
  }

  .hero-product-media {
    padding: 10px;
    border-radius: 18px;
  }

  .hero-product-name {
    min-height: 32px;
    font-size: 0.8rem;
    padding: 0 10px;
  }

  .network-intro-strip {
    justify-content: flex-start;
    margin: -2px auto 22px;
  }

  .network-intro-strip span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .about-copy .section-heading h2,
  .about-lead,
  .value-card h3,
  .value-card p {
    max-width: none;
  }

  .info-card,
  .value-card,
  .platform-card,
  .contact-panel,
  .factory-video-card {
    padding: 20px;
    border-radius: 22px;
  }

  .card-grid,
  .platform-list,
  .value-grid,
  .team-gallery {
    gap: 18px;
  }

  .card-top,
  .platform-copy,
  .about-copy,
  .factory-copy,
  .contact-copy {
    gap: 12px;
  }

  .card-url {
    word-break: break-all;
  }

  .platform-card {
    gap: 18px;
  }

  .platform-tags {
    gap: 8px;
  }

  .platform-tags span {
    min-height: 32px;
    font-size: 0.74rem;
  }

  .worldcup-card::before {
    inset: 12px;
    border-radius: 18px;
  }

  .football-pitch {
    max-width: 190px;
    height: 88px;
  }

  .team-card {
    min-height: 260px;
  }

  .team-overlay {
    padding: 18px;
    gap: 6px;
  }

  .section-factory .factory-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .factory-copy {
    gap: 12px;
  }

  .factory-video-card {
    grid-column: 1;
    width: 100%;
    margin-top: 4px;
    padding: 12px;
    border-radius: 20px;
  }

  .factory-video {
    min-height: 220px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    object-fit: cover;
  }

  .contact-panel {
    gap: 18px;
    padding: 22px 20px;
  }

  .contact-tags {
    gap: 10px;
  }

  .contact-tags span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .footer-grid {
    gap: 22px;
    padding: 40px 0 24px;
  }

  .footer-brand h3 {
    font-size: 1.45rem;
  }

  .footer-link-grid {
    gap: 10px 14px;
    margin-top: 14px;
  }

  .footer-bottom p {
    padding-top: 18px;
    font-size: 0.84rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .back-to-top span {
    font-size: 1.18rem;
  }
}

@media (max-width: 480px) {
  .nav-row {
    min-height: 70px;
    gap: 8px;
  }

  .brand-logo {
    width: 104px;
    padding: 7px 9px;
  }

  .brand {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 9px;
  }

  .brand-name {
    font-size: 0.74rem;
    line-height: 1.06;
  }

  .language-link {
    min-width: 40px;
    padding: 0 6px;
  }

  h1 {
    max-width: 8.2ch;
    font-size: clamp(2.2rem, 12.6vw, 3.2rem);
  }

  .hero-products-panel {
    gap: 10px;
    padding: 10px;
  }

  .hero-product-name {
    font-size: 0.76rem;
    min-height: 30px;
  }

  .info-card,
  .value-card,
  .platform-card,
  .contact-panel,
  .factory-video-card {
    padding: 18px;
  }

  .factory-video {
    min-height: 200px;
  }

  .footer-logo {
    width: 160px;
  }

  .worldcup-motion {
    width: 72px;
    height: 72px;
    right: 18px;
    top: 16px;
  }
}
