:root {
  --g: linear-gradient(135deg, #7c3aed 0%, #e11d48 100%);
  --text: #171327;
  --muted: #6b6476;
  --line: #eee9f6;
  --soft: #faf7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px clamp(18px, 4vw, 64px);
}

.brand img {
  width: 170px;
  max-width: 38vw;
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-cta,
.btn.primary {
  background: var(--g);
  color: #fff !important;
  box-shadow: 0 14px 35px rgba(225, 29, 72, .22);
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 8px 10px;
}

.lang-btn.active {
  background: var(--g);
  color: #fff;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .8fr);
  gap: 44px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 80px) 45px;
}

.eyebrow,
.section-kicker {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  color: #a21caf;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: .96;
  margin: 16px 0 18px;
  letter-spacing: .025em;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.28;
  margin: 0 0 28px;
  letter-spacing: .035em;
  max-width: 760px;
}

.hero-byline {
  margin: -8px 0 26px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.grad-text {
  background: var(--g);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-3d {
  font-weight: 1000;
  -webkit-text-stroke: .035em currentColor;
  text-shadow: 0 0 .01px currentColor;
}

.lead {
  font-size: 1.12rem;
  line-height: 1.95;
  color: var(--muted);
  max-width: 780px;
}

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

.btn {
  padding: 15px 20px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 850;
}

.btn.ghost {
  border: 1px solid var(--line);
  background: #fff;
}

.hero-card {
  border-radius: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: 0 24px 80px rgba(124, 58, 237, .12);
}

.fb-page-frame {
  display: block;
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 26px;
  background: #fff;
}

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

.compact {
  max-width: 1040px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 26px;
  letter-spacing: .025em;
}

.section p {
  line-height: 1.95;
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.link-more {
  font-weight: 900;
  color: #be123c;
  text-decoration: none;
  white-space: nowrap;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 32px;
}

.video-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(28, 18, 43, .08);
}

.video-frame {
  aspect-ratio: 9 / 16;
  background: #10091c;
  position: relative;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact {
  background: linear-gradient(180deg, #fff, #fff7fb);
  border-top: 1px solid var(--line);
}

.contact-card {
  background: #171327;
  color: #fff;
  border-radius: 30px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.contact-card p {
  color: #d9d2e7;
}

.footer {
  padding: 34px clamp(18px, 5vw, 80px);
  color: #7b7285;
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .site-header {
    flex-wrap: wrap;
  }

  .brand img {
    max-width: 46vw;
  }

  .nav {
    font-size: .9rem;
    gap: 2px;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }

  .hero-card {
    display: none;
  }

  .section-head,
  .contact-card {
    display: block;
  }

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