* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --bg: #05060a;
  --card: #111526;
  --card-soft: #1b2034;
  --text: #f6f7fb;
  --muted: #a1acc9;
  --accent: #7b5bff;
  --accent-2: #42f9c2;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --shadow: 0 25px 70px rgba(5, 6, 10, 0.55);
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 20%, rgba(123, 91, 255, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(66, 249, 194, 0.12), transparent 50%), var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Crect width='160' height='160' fill='none'/%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff0f'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero {
  position: relative;
  padding: 32px max(5vw, 48px) 120px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(123, 91, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 10%, rgba(66, 249, 194, 0.35), transparent 55%);
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  display: inline-block;
}

.nav__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.nav__links a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero__inner {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  margin: 0 0 18px;
  line-height: 1.08;
}

.lead,
.section__lead {
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__stats {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.hero__stats article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  background: rgba(17, 21, 43, 0.65);
  backdrop-filter: blur(12px);
  animation: float 6s ease-in-out infinite;
}

.hero__stats span {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-2);
}

.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.hero__panel .hero__stats {
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.hero__panel .hero__stats article {
  border: 1px solid rgba(123, 91, 255, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.12) 0%, rgba(8, 10, 24, 0.95) 100%);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero__panel .hero__stats article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero__panel .hero__stats article:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 91, 255, 0.5);
  box-shadow: 0 8px 24px rgba(123, 91, 255, 0.25);
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.18) 0%, rgba(8, 10, 24, 0.98) 100%);
}

.hero__panel .hero__stats article:hover::before {
  opacity: 1;
}

.hero__panel .hero__stats span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: 6px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hero__panel .hero__stats .highlight-number {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-2) 0%, rgba(123, 91, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 1.5rem;
  display: inline-block;
  text-shadow: 0 0 20px rgba(123, 91, 255, 0.5);
}

.hero__panel .hero__stats p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

.panel {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  background: rgba(8, 10, 24, 0.8);
  box-shadow: var(--shadow);
}

.panel--primary {
  display: none;
}

.panel__label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.panel__value {
  display: none;
}

.panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.panel__tags span {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 6px 14px;
  font-size: 0.85rem;
}

.panel--secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--card-soft);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 15px rgba(66, 249, 194, 0.6);
  animation: pulse 2.5s infinite;
}

.floating-badge {
  position: absolute;
  top: -20px;
  right: -10px;
  background: rgba(123, 91, 255, 0.15);
  border: 1px solid rgba(123, 91, 255, 0.4);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.85rem;
  animation: float 7s ease-in-out infinite;
}

.section {
  padding: 100px max(5vw, 48px);
  position: relative;
  z-index: 1;
}

.section--split {
  display: block;
  position: relative;
  padding: 60px 0;
}

.section--split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.05) 0%, rgba(8, 10, 24, 0) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.section--split > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid rgba(123, 91, 255, 0.15);
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.08) 0%, rgba(8, 10, 24, 0.6) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--split .eyebrow {
  text-align: center;
}

.section--split > div:hover {
  border-color: rgba(123, 91, 255, 0.25);
  box-shadow: 0 12px 48px rgba(123, 91, 255, 0.15);
  transform: translateY(-4px);
}

.section__header {
  margin-bottom: 32px;
  text-align: center;
}

.steps .section__header h2 {
  background: linear-gradient(135deg, var(--accent-2) 0%, rgba(123, 91, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__header h2 {
  margin: 0;
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
}

.section--split h2 {
  background: linear-gradient(135deg, var(--accent-2) 0%, rgba(123, 91, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}

.section__lead {
  margin-top: 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-list li {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 24px;
  background: rgba(8, 10, 20, 0.8);
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}

.about-list li:nth-child(2) {
  animation-delay: 0.15s;
}

.about-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.tag {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.9rem;
}

.offices__track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.office-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.office-card__media {
  height: 220px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(8, 10, 20, 0.6);
}

.office-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.office-card__label {
  display: block;
  font-weight: 600;
  margin-top: 8px;
  color: var(--text);
  text-align: center;
}

.highlight {
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.25), rgba(66, 249, 194, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  margin: 0 max(5vw, 48px);
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.highlight .primary-btn {
  margin-left: auto;
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  border-radius: 16px;
  border: 1px solid rgba(123, 91, 255, 0.2);
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(8, 10, 24, 0.95), rgba(123, 91, 255, 0.1));
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(123, 91, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 91, 255, 0.4);
  box-shadow: 0 8px 24px rgba(123, 91, 255, 0.2);
}

.step-card:hover::after {
  opacity: 1;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-index {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.payouts__carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  width: auto;
  flex-shrink: 0;
}

.carousel__slide {
  flex: 0 0 calc(100% / 4);
  padding: 0 4px;
  box-sizing: border-box;
  overflow: hidden;
}

.carousel__slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(123, 91, 255, 0.8);
  border: 1px solid rgba(123, 91, 255, 0.5);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
  backdrop-filter: blur(8px);
}

.carousel__btn:hover {
  background: rgba(123, 91, 255, 1);
}

.carousel__btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel__btn--prev {
  left: 0;
}

.carousel__btn--next {
  right: 0;
}

@media (max-width: 768px) {
  .carousel__slide {
    flex: 0 0 100%;
  }
  
  .carousel__slide img {
    height: 400px;
  }
}

.numbers {
  background: linear-gradient(135deg, #05060a 0%, #0b0e1b 100%);
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.numbers__grid article {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  background: rgba(17, 21, 40, 0.8);
}

.numbers__grid h3 {
  margin: 0;
  font-size: 2rem;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.review {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
}

.review__media {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--card-soft);
}

.review__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.apply {
  margin: 0 max(5vw, 48px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px;
  background: linear-gradient(120deg, rgba(18, 21, 35, 0.95), rgba(123, 91, 255, 0.15));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.faq__list details {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 24px;
  margin-bottom: 16px;
  background: var(--card);
}

.faq__list summary {
  cursor: pointer;
  font-weight: 600;
}

.primary-btn,
.ghost-btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #05060a;
  box-shadow: 0 20px 40px rgba(123, 91, 255, 0.35);
}

.primary-btn.sm {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.nav__links .primary-btn {
  color: #ffffff;
}

.primary-btn.lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.ghost-btn {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
  background: transparent;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.footer {
  text-align: center;
  padding: 60px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.footer a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-2);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__inner {
    margin-top: 48px;
  }

  .highlight,
  .apply {
    margin: 0 24px;
    padding: 32px;
  }
}

