:root {
  --black: #000000;
  --white: #ffffff;
  --white-soft: #f7f2fa;
  --purple-primary: #6b0f8f;
  --purple-secondary: #6750a4;
  --purple-dark: #4f378a;
  --purple-light: #eaddff;
  --grey: #2c2c2c;

  --font-heading: 'Alumni Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Roboto', sans-serif;
  --font-accent: 'Bricolage Grotesque', sans-serif;

  --container: 1620px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 96px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  padding: 32px 0 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  padding: 8px 4px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-link.is-active {
  background: var(--purple-primary);
  padding: 10px 18px;
  border-radius: 10px;
}

/* Hero */
.hero {
  padding: 12px 0 0;
}

.hero-inner {
  position: relative;
  width: 1512px;
  max-width: 100%;
  min-height: 422px;
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: end;
  gap: 0;
}

.hero-art {
  position: relative;
  align-self: end;
  z-index: 1;
}

.hero-art img {
  width: 820px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hero-content {
  position: relative;
  align-self: center;
  max-width: 620px;
  padding-bottom: 0;
  margin-left: -80px;
  z-index: 3;
}

.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 55px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--white);
}

.hero-title span {
  display: block;
  margin-top: 20px;
}

.hero-title strong {
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 238px;
  min-height: 64px;
  padding: 16px 28px;
  border-radius: 18px;
  background: #e9e5ec;
  color: var(--purple-secondary);
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.btn-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
  }

  .hero-art {
    order: 1;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-art img {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .hero-title {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    gap: 20px;
  }

  .site-header {
    padding-top: 24px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-logo img {
    width: 96px;
  }

  .site-nav {
    gap: 10px 14px;
  }

  .nav-link {
    font-size: 13px;
  }

  .nav-link.is-active {
    padding: 10px 14px;
  }

  .hero {
    padding: 24px 0 28px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 52px);
    line-height: 1;
  }

  .hero-title span {
    margin-top: 12px;
  }

  .hero-actions {
    margin-top: 28px;
    gap: 14px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 15px;
    padding: 14px 18px;
  }
}