:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --card: #111111;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --accent: #0a84ff;
  --accent-2: #3b82f6;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand-mark img {
  width: 190px;
  height: auto;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--text);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-button,
.mail-button,
.secondary-button,
.primary-button {
  min-height: 44px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid rgba(10, 132, 255, 0.55);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.login-button,
.mail-button,
.secondary-button {
  background: rgba(10, 132, 255, 0.06);
  color: #e9f4ff;
}

.primary-button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 48px rgba(10, 132, 255, 0.26);
  cursor: pointer;
}

.login-button:hover,
.mail-button:hover,
.secondary-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(10, 132, 255, 0.32);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 22px 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(10, 132, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #050505 0%, #090909 58%, #050505 100%);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(10, 132, 255, 0.18);
  filter: blur(90px);
  animation: floatGlow 8s ease-in-out infinite;
}

.particle-field {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    radial-gradient(circle, rgba(10, 132, 255, 0.55) 1px, transparent 1px);
  background-size: 96px 96px, 138px 138px;
  opacity: 0.18;
  animation: drift 18s linear infinite;
}

.wave-stage {
  position: absolute;
  inset: auto 8% 16%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.34;
}

.wave-stage span {
  width: 8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, #0a84ff, transparent);
  animation: wave 1.5s ease-in-out infinite;
}

.wave-stage span:nth-child(2n) { animation-delay: 120ms; }
.wave-stage span:nth-child(3n) { animation-delay: 240ms; }
.wave-stage span:nth-child(4n) { animation-delay: 360ms; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.hero-logo {
  width: min(530px, 82vw);
  margin: 0 auto 30px;
  filter: drop-shadow(0 28px 90px rgba(10, 132, 255, 0.24));
}

.eyebrow {
  margin: 0 0 12px;
  color: #9ccfff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(42px, 8vw, 96px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.hero-copy {
  width: min(720px, 100%);
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 90px clamp(18px, 5vw, 76px);
}

.stats-band {
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--bg-2);
  border-block: 1px solid var(--border);
}

.stats-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card,
.release-card,
.service-panel,
.contact-card,
.contact-form,
.partner-logo,
.logo-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.stat-card {
  min-height: 132px;
  padding: 26px;
}

.stat-value {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.stat-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: #9ccfff;
  font-size: 14px;
  font-weight: 800;
}

.marquee-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 28px 0;
  animation: marquee 26s linear infinite;
}

.marquee-shell:hover .marquee-track {
  animation-play-state: paused;
}

.logo-pill {
  width: 156px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.logo-pill:hover,
.partner-logo:hover,
.release-card:hover {
  border-color: rgba(10, 132, 255, 0.62);
  box-shadow: 0 18px 60px rgba(10, 132, 255, 0.2);
}

.logo-pill:hover,
.partner-logo:hover {
  transform: translateY(-3px) scale(1.02);
}

.logo-pill img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.release-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.release-card {
  position: relative;
  padding: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.release-card:hover {
  transform: translateY(-4px);
}

.cover-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  background: #080808;
}

.cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.release-card:hover .cover-wrap img {
  transform: scale(1.07);
}

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.release-card:hover .play-badge {
  opacity: 1;
  transform: translateY(0);
}

.release-card h3 {
  margin: 16px 0 4px;
  font-size: 18px;
}

.release-card p,
.release-date {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.release-date {
  display: block;
  margin-top: 10px;
}

.service-section {
  padding-top: 48px;
}

.service-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(22px, 4vw, 54px);
  background:
    radial-gradient(circle at 18% 18%, rgba(10, 132, 255, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.service-panel.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(10, 132, 255, 0.9);
}

.application-form,
.contact-form {
  display: grid;
  gap: 12px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: rgba(10, 132, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #9ccfff;
  font-size: 13px;
  font-weight: 700;
}

.partner-wall {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.partner-logo {
  height: 150px;
  display: grid;
  place-items: center;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.partner-logo img {
  max-height: 104px;
  max-width: 100%;
  object-fit: contain;
}

.contact-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-card strong {
  color: #fff;
  font-size: clamp(18px, 2.4vw, 26px);
  word-break: break-word;
}

.contact-form {
  padding: 24px;
}

.site-footer {
  padding: 58px clamp(18px, 5vw, 76px) 38px;
  border-top: 1px solid var(--border);
  background: #030303;
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.site-footer img {
  width: 230px;
}

.site-footer nav,
.footer-emails,
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: #fff;
}

.copyright {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.reveal {
  animation: reveal 780ms ease both;
}

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

@keyframes drift {
  to { background-position: 96px 96px, -138px 138px; }
}

@keyframes wave {
  0%, 100% { height: 28px; opacity: 0.28; }
  50% { height: 122px; opacity: 0.9; }
}

@keyframes floatGlow {
  0%, 100% { transform: translate3d(-90px, -30px, 0) scale(1); }
  50% { transform: translate3d(90px, 24px, 0) scale(1.08); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .brand-mark img {
    width: 160px;
  }

  .stats-grid,
  .release-grid,
  .partner-wall,
  .service-panel,
  .service-panel.reverse,
  .contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-panel,
  .service-panel.reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark img {
    width: 132px;
  }

  .login-button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .mail-button {
    display: none;
  }

  .hero-section {
    min-height: 92vh;
    padding-inline: 16px;
  }

  .stats-grid,
  .partner-wall,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .release-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .release-card {
    min-width: 78vw;
    scroll-snap-align: start;
  }

  .split-heading {
    align-items: start;
    flex-direction: column;
  }

  .section {
    padding-block: 70px;
  }
}

.release-grid .release-card { display: none; }
.release-grid .release-card.active-slide { display: block; }
.compact-partner { height: 96px; max-width: 220px; margin: 0 auto; }
.compact-partner img { max-height: 58px; }
@media (max-width: 640px) { .release-grid .release-card.active-slide { min-width: 78vw; } }
