:root {
  --bg: #08081a;
  --surface: #121225;
  --surface-2: #191930;
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #b7b7c8;
  --soft: #ececf5;
  --ink: #171725;
  --brand: #ff3667;
  --brand-2: #ff8c42;
  --green: #2cc76e;
  --grad: linear-gradient(135deg, #ff8c42 0%, #ff3667 52%, #be1f60 100%);
}

@font-face {
  font-family: "Google Sans";
  src: url("/assets/fonts/GoogleSans-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans";
  src: url("/assets/fonts/GoogleSans-Italic-Variable.ttf") format("truetype");
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Google Sans", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 8%, rgba(255, 54, 103, 0.2), transparent 34%),
    radial-gradient(circle at 8% 20%, rgba(255, 140, 66, 0.16), transparent 30%);
  z-index: -1;
}

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

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 26, 0.72);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Raleway, "Google Sans", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

.logo img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.lang-switch a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.lang-switch a.active {
  background: #fff;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 74px 0 92px;
}

.eyebrow,
.section-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Raleway, "Google Sans", Arial, sans-serif;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  margin: 16px 0 20px;
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 900;
  overflow-wrap: normal;
}

h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(255, 54, 103, 0.35);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  border: 1px solid var(--border);
}

.trust {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.hright {
  position: relative;
  min-width: 0;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  border: 1px solid var(--border);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.54), 0 0 42px rgba(255, 54, 103, 0.1);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #08081a;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.25s ease;
}

.video-overlay[hidden] {
  display: none;
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.16);
}

.play-btn {
  position: relative;
  overflow: hidden;
  width: clamp(76px, 8vw, 96px);
  height: clamp(76px, 8vw, 96px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.32), 0 18px 46px rgba(0, 0, 0, 0.34);
  transform: scale(1);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-overlay:hover .play-btn {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.88);
}

.play-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.82) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2.2s ease-in-out infinite;
}

.play-btn svg {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin-left: 5px;
  fill: var(--ink);
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 120%; }
}

.video-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding-top: 24px;
}

.section-head {
  max-width: 690px;
  margin-bottom: 44px;
}

h2 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.step-num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--grad);
  font-family: Raleway, "Google Sans", Arial, sans-serif;
  font-weight: 900;
}

.icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 850;
}

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

.audience-card {
  text-align: center;
  padding: 22px 16px;
}

.cta-band {
  padding: 86px 0;
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-band .section-head {
  margin: 0 auto 28px;
}

.footer {
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
    gap: 36px;
  }

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

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

@media (min-width: 1121px) and (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  }

  h1 {
    font-size: clamp(40px, 4.4vw, 58px);
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-inner {
    min-height: 64px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links > a {
    display: none;
  }

  .hero {
    padding: 42px 0 66px;
    gap: 34px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .grid-3,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
