:root {
  --bg: #ffffff;
  --bg-dark: #0f0f23;
  --bg-secondary: #1a1a3e;
  --text: #1a202c;
  --text-light: #718096;
  --text-white: #ffffff;
  --muted: #a0aec0;
  --line: #e2e8f0;
  --accent: #7c3aed;
  --accent-alt: #ec4899;
  --accent-light: #a78bfa;
  --card-bg: #ffffff;
  --gradient-start: #7c3aed;
  --gradient-end: #3b82f6;
  --gradient-dark-start: #7c3aed;
  --gradient-dark-end: #1e3a8a;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 40px;
}

.section {
  padding: 80px 40px;
}

/* HEADER */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px 24px;
  background: transparent;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: none;
  gap: 16px;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

.logo-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.logo {
  width: 60vw;
  max-width: 720px;
  height: auto;
  display: block;
  filter: none;
  transition: transform 0.2s ease, opacity 0.4s ease, filter 0.4s ease;
  opacity: 1;
}

.logo--dim {
  opacity: 0.45;
}

.logo--glow {
  filter: drop-shadow(0 10px 24px rgba(124, 58, 237, 0.25)) brightness(1.05);
}

.menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -120px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  z-index: 300;
  animation: fadeInDown 0.3s ease-out;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 0.2s ease;
}

.menu a:hover {
  background: rgba(124, 58, 237, 0.12);
  transform: translateX(2px);
}

.menu.is-open {
  display: flex;
}

.logo:hover {
  transform: scale(1.04);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 2px solid var(--text);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand-name {
  font-weight: 600;
  font-size: 18px;
}

/* BUTTONS */
.btn {
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(124, 58, 237, 0.3);
}

.btn.primary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
}

.btn.primary:hover {
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn.ghost:hover {
  background: rgba(124, 58, 237, 0.08);
  border-color: #8b5cf6;
}

/* HERO */
.hero {
  padding: 100px 40px;
  background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #1e3a8a 100%);
  color: var(--text-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before,
.hero::after {
  mix-blend-mode: screen;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero h1.tagline {
  font-size: 60px;
  line-height: 1.15;
  margin: 0 0 28px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.hero p {
  max-width: 100%;
  margin: 0 0 40px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 300;
}

.actions {
  display: flex;
  gap: 20px;
  margin: 40px 0 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
  border-radius: 20px;
}

/* STATS */
.hero-stats {
  display: none;
}

/* SECTIONS */
.section h2 {
  font-size: 48px;
  margin-bottom: 60px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.5px;
}

.section {
  padding: 100px 40px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 55%, #ffffff 100%);
}

/* BRANDS SECTION */
.brands-section {
  background: linear-gradient(135deg, #0f0f2e 0%, #1a1a4e 50%, #1e1e5f 100%);
  border-radius: 0;
  padding: 100px 40px;
  margin: 0 auto;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brands-section::after {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -30%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brands-section h2 {
  text-align: center;
  font-size: 48px;
  margin-bottom: 70px;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  letter-spacing: -0.5px;
}

.brands-title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-transform: none;
  font-family: "SF Pro Display", "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

.brands-carousel {
  overflow: visible;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
  z-index: 2;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.brand-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 28px 60px rgba(124, 58, 237, 0.25);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.brand-image {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.brand-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
}

.brand-card h3 {
  margin: 32px 28px 12px;
  font-size: 26px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: -0.3px;
}

.brand-card p {
  margin: 0 28px 32px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
}

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

.section-lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
}

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

.quote-card {
  background: var(--card-bg);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.quote-card p {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
}

.quote-card span {
  color: var(--text-light);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.faq p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

.apply-section {
  background: var(--bg);
}

.apply-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 40px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 12px 28px rgba(124, 58, 237, 0.08);
  background: #fff;
}

.apply-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.apply-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
}

.team-section {
  background: var(--bg);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.team-card h3 {
  font-size: 20px;
}

.team-card p {
  font-size: 14px;
}

/* CARDS */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: block;
  color: inherit;
  text-decoration: none;
}

.card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-8px);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.card p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.k {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.3px;
}

.v {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 400;
}

/* STEPS */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
}

.steps li {
  display: flex;
  gap: 28px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.1);
  background: var(--card-bg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: flex-start;
}

.steps li:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
  transform: translateX(8px);
}

.steps span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.steps div strong {
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.3px;
}

.steps div p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* CONTACT + FOOTER */
.contact {
  border-top: 2px solid var(--line);
  text-align: center;
  padding: 60px 40px;
}

.contact a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: var(--accent-alt);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--text-light);
  text-align: center;
  padding: 40px 20px;
  background: var(--bg);
}

.footer-credit {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-light);
}

.footer-credit a {
  color: var(--accent);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }

  .hero-image {
    display: none;
  }

  .hero h1.tagline {
    font-size: 36px;
  }

  .hero-stats,
  .grid3,
  .brands-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .apply-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    width: 80vw;
    max-width: 520px;
  }
  
  .brands-section {
    padding: 60px 24px;
  }
  
  .brands-section h2 {
    font-size: 32px;
  }
  
  .section h2 {
    font-size: 32px;
  }

  .brands-title {
    font-size: 36px;
  }
  
  .container,
  .section {
    padding: 32px 24px;
  }
}

@media (min-width: 900px) {
  .logo {
    width: 60vw;
    max-width: 720px;
  }
}
