:root {
  --blue: #2b7cff;
  --indigo: #6a35ff;
  --pink: #ff4fd8;
  --orange: #ff7a18;
  --dark: #0a0a12;
  --mid: #161623;
  --light: #f6f7fb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--dark);
  background-image:
    radial-gradient(circle at 15% 15%, rgba(43, 124, 255, 0.18), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(255, 79, 216, 0.2), transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(255, 122, 24, 0.18), transparent 55%);
  color: var(--white);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

.inline-link,
.tiktok-link {
  color: var(--white);
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  box-decoration-break: clone;
}

.tiktok-link {
  display: inline-block;
  margin-bottom: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 10, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  width: 80%;
  max-width: none;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}

.logo img {
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switcher {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

.language-switcher option {
  color: #111111;
}

.nav-links a {
  padding: 6px 4px;
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--orange));
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(
    90deg,
    var(--blue) 0%,
    var(--indigo) 35%,
    var(--pink) 65%,
    var(--orange) 100%
  );
  color: var(--white);
  border: none;
  box-shadow: 0 10px 24px rgba(106, 53, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(106, 53, 255, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

main {
  width: 80%;
  max-width: none;
  margin: 0 auto;
  padding: 72px 0 128px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 60px 0 40px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.hero-stats p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 30px;
}

.glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.4), transparent 70%);
  filter: blur(25px);
  z-index: -1;
}

.panel {
  width: 100%;
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(22, 22, 35, 0.95), rgba(43, 124, 255, 0.08));
  padding: 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 45px rgba(8, 8, 16, 0.45);
}

.panel.dark {
  background: linear-gradient(
    140deg,
    rgba(43, 124, 255, 0.2),
    rgba(255, 79, 216, 0.12),
    rgba(255, 122, 24, 0.1)
  );
  border-color: rgba(255, 255, 255, 0.12);
}

.panel-header {
  width: 100%;
  margin-bottom: 28px;
  max-width: 900px;
}

.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.panel-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.grid {
  width: 100%;
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(7, 7, 13, 0.35);
  min-height: 150px;
}

.card h3 {
  margin-bottom: 10px;
}

.timeline {
  width: 100%;
  display: grid;
  gap: 18px;
}

.timeline-step {
  padding: 20px 24px;
  border-left: 3px solid var(--pink);
  background: linear-gradient(120deg, rgba(43, 124, 255, 0.08), rgba(10, 10, 18, 0.45));
  border-radius: 18px;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.page-hero-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.page-hero-card ul,
.card ul {
  margin-top: 10px;
  padding-left: 18px;
}

.team-card {
  text-align: center;
}

.avatar {
  height: 64px;
  width: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  position: relative;
  overflow: hidden;
}

.avatar-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.avatar.has-image .avatar-image {
  opacity: 1;
}

.avatar.has-image .avatar-initials {
  opacity: 0;
}

.avatar-initials {
  transition: opacity 0.2s ease;
}

.team-card span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
  font-size: 0.9rem;
}

.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.form-status {
  margin-top: 12px;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

input,
textarea {
  background: rgba(10, 10, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--white);
  font-family: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(255, 79, 216, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 79, 216, 0.15);
}

.contact-card .contact-cta {
  margin-top: 20px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(43, 124, 255, 0.12), rgba(255, 79, 216, 0.08));
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  background: linear-gradient(120deg, rgba(7, 7, 13, 0.95), rgba(43, 124, 255, 0.12));
}

.footer-inner {
  width: 80%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer-links-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-links .footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.footer-links .footer-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.85;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    top: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  body.nav-hidden .site-header {
    transform: translateY(-120%);
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 24px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 30px;
  }

  main {
    width: 100%;
    padding: 32px 20px 60px;
  }

  .footer-inner {
    width: 100%;
    padding: 0 20px;
  }

  .footer-links .footer-social {
    font-size: 0.95rem;
  }

  .footer-links .footer-icon {
    width: 14px;
    height: 14px;
  }

  .panel-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
