:root {
  --bg: #050505;
  --fg: #ffffff;
  --muted: #b1b1b1;
  --primary: #654fea;
  --primary2: #8b53c5;
  --glass: rgba(15, 15, 17, 0.8);
  --glass2: rgba(5, 5, 5, 0.8);
  --shadowSoft: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadowGlow: 0 0 16px rgba(255, 255, 255, 0.42);
  --radiusXL: 44px;
  --radiusPill: 999px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial,
    Helvetica, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  padding: 0 0 clamp(20px, 3vw, 44px);
}

.heroFrame {
  position: relative;
  width: 100%;
  margin-inline: 0;
  border-radius: 0 0 var(--radiusXL) var(--radiusXL);
  overflow: hidden;
  background: #0a0a0a;
  height: clamp(520px, 43.75vw, 840px);
  background-image: url("./assets/screenshot_14_139.png");
  background-size: cover;
  background-position: center;
}

.heroFrame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.heroOverlay {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(110px, 12vh, 150px) clamp(16px, 3.2vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.siteHeader {
  position: fixed;
  top: clamp(12px, 2vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1178px, calc(100% - 40px));
  z-index: 1000;
  pointer-events: none;
}

.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radiusPill);
  background: rgba(15, 15, 17, 0.8);
  box-shadow: var(--shadowSoft);
  backdrop-filter: blur(7px);
  padding: 12px 22px 12px 30px;
  gap: 14px;
  pointer-events: auto;
}

.brandLogo {
  width: clamp(150px, 16vw, 205px);
  height: auto;
}

.navToggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  border-radius: 999px;
}

.navToggle:active {
  transform: scale(0.98);
}

.navBar1,
.navBar2,
.navBar3 {
  position: absolute;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.navBar1 {
  transform: translateY(-6px);
}

.navBar2 {
  transform: translateY(0);
}

.navBar3 {
  transform: translateY(6px);
}

.siteHeader.navOpen .navBar1 {
  transform: translateY(0) rotate(45deg);
}

.siteHeader.navOpen .navBar2 {
  opacity: 0;
}

.siteHeader.navOpen .navBar3 {
  transform: translateY(0) rotate(-45deg);
}

.navLinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.navLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  transition: background-color 160ms ease, color 160ms ease;
}

.navLink:hover {
  background: transparent;
  color: var(--primary);
}

.hero,
.about,
.contact {
  scroll-margin-top: 110px;
}

.heroContent {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: clamp(0px, 6vh, 60px);
}

.kicker {
  margin: 0;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 28px;
  font-size: clamp(14px, 1.6vw, 20px);
}

.heroTitle {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.12;
  font-size: clamp(28px, 4vw, 50px);
}

.heroDesc {
  margin: 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 24px;
  letter-spacing: -0.32px;
  font-size: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radiusPill);
  background: #ffffff;
  color: var(--primary);
  height: 50px;
  box-shadow: var(--shadowGlow);
  font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.52);
}

.ctaIcon {
  width: 16px;
  height: 16px;
}

.about {
  padding: clamp(54px, 7vw, 110px) 0 0;
}

.aboutRow {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(26px, 3.8vw, 44px) 0;
}

.aboutRowReverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.sectionTitle {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.48px;
  line-height: 34px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.bodyText {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.32px;
  line-height: 24px;
  font-size: 16px;
  max-width: 720px;
}

.pillRow {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radiusPill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.28px;
  line-height: 22px;
  color: #ffffff;
  user-select: none;
}

.pillPrimary {
  background: var(--primary);
}

.pillAlt {
  background: var(--primary2);
}

.pillIcon {
  width: 24px;
  height: 24px;
}

.aboutMedia {
  display: flex;
  justify-content: center;
}

.aboutImage {
  width: min(520px, 100%);
  height: auto;
}

.contact {
  position: relative;
  margin-top: clamp(26px, 4vw, 60px);
  padding-top: clamp(70px, 8vw, 130px);
  overflow: hidden;
}

.contactBg {
  position: absolute;
  inset: 0;
  background-image: url("./assets/mo6y3x1c-3d4ivdk.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  pointer-events: none;
}

.contactBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.85) 65%, rgba(5, 5, 5, 1));
}

.contactInner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 120px;
}

.contactCard {
  width: min(532px, 100%);
  min-height: 119px;
  border-radius: 50px;
  background: rgba(14, 13, 16, 0.6);
  border: 1px solid rgba(101, 79, 234, 0.32);
  box-shadow: 0 0 0 1px rgba(101, 79, 234, 0.1), 0 0 24px rgba(101, 79, 234, 0.14);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 18px;
}

.contactTitle {
  margin: 0;
  color: #c28afc;
  font-weight: 700;
  letter-spacing: -0.48px;
  line-height: 34px;
  font-size: clamp(18px, 2.2vw, 24px);
  text-align: center;
}

.contactEmail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  letter-spacing: -0.32px;
  line-height: 24px;
  padding: 8px 12px;
  border-radius: 999px;
}

.contactIcon {
  width: 20px;
  height: 20px;
}

.footer {
  position: relative;
  z-index: 1;
}

.footerBar {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(6px);
  padding: 10px 0 18px;
}

.footerInner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.footerCopy {
  margin: 0;
  color: var(--muted);
  letter-spacing: -0.32px;
  line-height: 24px;
  font-size: 16px;
  text-align: center;
}

.footerLinks {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footerLink {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  letter-spacing: -0.32px;
  line-height: 24px;
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.footerLink:hover {
  background: transparent;
  color: var(--primary);
}

.legal {
  padding: 140px 0 90px;
}

.legalContainer {
  width: min(980px, calc(100% - 40px));
}

.legalTitle {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1.12;
  font-size: clamp(30px, 3.4vw, 44px);
}

.legalDate {
  margin: 10px 0 26px;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.28px;
  line-height: 22px;
  font-size: 14px;
}

.legalContent {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.16px;
}

.legalIntro {
  margin: 0 0 14px;
}

.legalH2 {
  margin: 18px 0 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.legalP {
  margin: 0 0 12px;
}

.legalList {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.legalEmail {
  color: var(--primary);
}

.legalEmail:hover {
  text-decoration: underline;
}

.legalFooter {
  margin-top: 0;
}

@media (max-width: 900px) {
  .siteHeader {
    width: calc(100% - 28px);
  }

  .heroFrame {
    height: 100vh;
    background-image: url("./assets/screenshot_48_158.png");
    background-size: cover;
    background-position: center;
  }

  .navInner {
    padding: 10px 14px 10px 18px;
    position: relative;
  }

  .navToggle {
    display: inline-flex;
    position: relative;
  }

  .navLinks {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    flex-direction: column;
    align-items: flex-end;
    background: rgba(15, 15, 17, 0.88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 10px;
    gap: 2px;
  }

  .siteHeader.navOpen .navLinks {
    display: flex;
  }

  .navLink {
    min-width: auto;
    padding: 10px;
    font-size: 14px;
    justify-content: flex-end;
  }

  .aboutRow,
  .aboutRowReverse {
    grid-template-columns: 1fr;
  }

  .aboutMedia {
    order: -1;
  }

  .aboutText {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .aboutText .pillRow {
    justify-content: center;
    order: 2;
  }

  .aboutText .bodyText {
    order: 3;
    margin-top: 18px;
  }

  .aboutImage {
    width: min(460px, 92%);
  }

  .footerInner {
    height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .legal {
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 28px);
  }

  .heroDesc {
    font-size: 14px;
  }

  .pill {
    justify-content: center;
  }
}

