:root {
  --bg: #11001c;
  --bg-soft: #1b0829;
  --panel: rgba(23, 9, 34, 0.78);
  --panel-strong: rgba(18, 5, 28, 0.94);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f7fb;
  --muted: rgba(246, 247, 251, 0.68);
  --coral: #fe2858;
  --cyan: #2af0ea;
  --gold: #fff01f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(254, 40, 88, 0.22), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(42, 240, 234, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 240, 31, 0.08), transparent 24%),
    linear-gradient(180deg, #11001c 0%, #170424 36%, #0b0114 100%);
}

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

.page-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 18px max(20px, calc((100vw - 1200px) / 2 + 20px));
  background: linear-gradient(180deg, rgba(17, 0, 28, 0.82) 0%, rgba(17, 0, 28, 0.58) 58%, rgba(17, 0, 28, 0.18) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.site-header::before {
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(254, 40, 88, 0.13), transparent 24%),
    radial-gradient(circle at 84% 0%, rgba(42, 240, 234, 0.09), transparent 22%);
  opacity: 0.9;
}

.site-header::after {
  bottom: -28px;
  height: 28px;
  background: linear-gradient(180deg, rgba(17, 0, 28, 0.28) 0%, rgba(17, 0, 28, 0.11) 45%, rgba(17, 0, 28, 0) 100%);
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-button {
  min-width: 46px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-button:hover {
  color: #fff;
}

.lang-button.is-active {
  color: #111;
  background: linear-gradient(135deg, var(--coral), #ff8751);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 40, 88, 0.16), rgba(42, 240, 234, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
}

.site-nav {
  display: inline-flex;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral), #ff547b);
  color: #111;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(254, 40, 88, 0.35);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 54px 0 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  max-width: 10ch;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics article,
.feature-card,
.step-card,
.showcase-card,
.cta-banner,
.phone-card,
.floating-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  border-radius: 22px;
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
}

.orb-coral {
  top: 44px;
  right: 12px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(254, 40, 88, 0.54) 0%, rgba(254, 40, 88, 0) 72%);
}

.orb-cyan {
  bottom: 30px;
  left: 30px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(42, 240, 234, 0.38) 0%, rgba(42, 240, 234, 0) 72%);
}

.phone-card {
  position: absolute;
  right: 38px;
  top: 24px;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: 36px;
  overflow: hidden;
}

.card-topline,
.panel-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.83rem;
  letter-spacing: 0.03em;
}

.card-art {
  margin-top: 14px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.art-football {
  background:
    linear-gradient(180deg, rgba(10, 2, 17, 0.02), rgba(10, 2, 17, 0.54)),
    linear-gradient(145deg, #190424 0%, #2a0939 44%, #11001c 100%);
  position: relative;
}

.art-football img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.art-football::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(17, 0, 28, 0) 0%, rgba(17, 0, 28, 0.16) 35%, rgba(17, 0, 28, 0.84) 100%);
}

.card-copy {
  padding: 16px 4px 4px;
}

.card-copy h2 {
  margin: 0;
  font-size: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.card-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.floating-panel {
  position: absolute;
  border-radius: 24px;
  padding: 18px;
}

.floating-analysis {
  left: 0;
  top: 120px;
  width: min(280px, 68%);
  animation: drift 6s ease-in-out infinite;
}

.floating-analysis h3,
.showcase-card h3,
.feature-card h3,
.step-card h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.floating-analysis p,
.feature-card p,
.step-card p,
.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.floating-video {
  right: 0;
  bottom: 52px;
  width: min(250px, 56%);
  animation: drift 7s ease-in-out infinite reverse;
}

.floating-video p {
  margin: 12px 0 6px;
  color: var(--muted);
}

.floating-video strong {
  font-size: 1.05rem;
}

.panel-thumb {
  display: block;
  width: 100%;
  height: 110px;
  margin-top: 12px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0 72px;
  color: rgba(255, 255, 255, 0.72);
}

.logo-strip span {
  display: block;
  padding: 16px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

section + section {
  margin-top: 84px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 14ch;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  border-radius: 28px;
  padding: 26px;
  min-height: 240px;
}

.feature-card-large {
  grid-row: span 2;
  min-height: 496px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 95, 87, 0.12), rgba(89, 230, 255, 0.06));
}

.feature-kicker {
  margin-bottom: 40px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.workflow-steps,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.showcase-card {
  border-radius: 26px;
  padding: 24px;
}

.showcase-image {
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 18px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 36px;
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(254, 40, 88, 0.16), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(42, 240, 234, 0.18), transparent 28%),
    var(--panel-strong);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-side {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.contact-label {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.contact-email {
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 1080px) {
  .hero,
  .feature-grid,
  .workflow-steps,
  .showcase-grid,
  .logo-strip,
  .cta-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
  }

  .hero-visual {
    min-height: 700px;
  }

  .feature-card-large {
    grid-row: span 1;
    min-height: 280px;
  }

  .cta-banner {
    display: grid;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: 12ch;
  }

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

  .hero-visual {
    min-height: 660px;
  }

  .phone-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .floating-analysis,
  .floating-video {
    width: calc(100% - 24px);
  }

  .floating-analysis {
    top: 72px;
    left: 12px;
  }

  .floating-video {
    right: 12px;
    bottom: 18px;
  }

  .section-heading h2,
  .cta-banner h2 {
    max-width: none;
  }
}
