.hero {
  padding: 200px 0 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-main {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 36px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(217, 70, 239, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 800;
  letter-spacing: -3.5px;
}

.hero p {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 64px;
  max-width: 800px;
  line-height: 1.5;
}

.hero .description {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  padding: 32px 40px;
  border-radius: 24px;
  max-width: 800px;
  line-height: 1.6;
  font-size: 18px;
  color: var(--text-muted);
}

.hero-actions {
  margin-bottom: 60px;
  justify-content: flex-start;
}

.hero-panel {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(99, 102, 241, 0.22);
  background:
    linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(217, 70, 239, 0.04)),
    rgba(11, 16, 31, 0.68);
  backdrop-filter: blur(24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(129, 140, 248, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.16), transparent 32%);
  pointer-events: none;
}

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

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-panel-label,
.hero-panel-status,
.hero-flow-subtitle,
.hero-panel-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel-label {
  font-size: 12px;
  font-weight: 700;
  color: #d8def2;
}

.hero-panel-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  color: #9df5bf;
  font-size: 11px;
  font-weight: 700;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.hero-panel-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 114px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.hero-panel-value {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-panel-text {
  font-size: 11px;
  font-weight: 600;
  color: #9aa6c9;
}

.hero-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 10, 20, 0.36);
  margin-bottom: 10px;
}

.hero-brand-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(34, 211, 238, 0.04)),
    rgba(7, 11, 22, 0.28);
}

.hero-brand-signature__logo {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 26, 48, 0.94), rgba(11, 16, 31, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-brand-signature__logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  opacity: 0.96;
}

.hero-brand-signature__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  margin: auto;
  padding-right: 60px;
}

.hero-brand-signature__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8e9ac0;
}

.hero-brand-signature__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-brand-signature__text {
  font-size: 13px;
  line-height: 1.55;
  color: #9aa6c9;
  max-width: 28ch;
}

.hero-flow-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.hero-flow-node-accent .hero-flow-title {
  color: #fff;
}

.hero-flow-title {
  font-size: 16px;
  font-weight: 700;
  color: #dce3f8;
}

.hero-flow-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: #8793b6;
}

.hero-flow-line {
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(129, 140, 248, 0.62), rgba(99, 102, 241, 0.12));
}

@media (max-width: 1024px) {
  .hero {
    padding: 150px 0 100px;
  }

  .hero-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 20px;
    max-width: 90dvw;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero .description {
    padding: 20px 25px;
    border-radius: 24px;
    max-width: 90dvw;
    font-size: 16px;
  }

  .hero-panel {
    width: min(100%, 720px);
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .hero .btns {
    flex-direction: column;
  }

  .hero-main {
    gap: 20px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 26px;
  }

  .hero-panel-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-panel-card {
    min-height: 94px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-panel-value {
    font-size: 20px;
  }

  .hero-panel-text {
    font-size: 10px;
  }

  .hero-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
  }

  .hero-flow-line {
    flex: 0 0 auto;
    width: 1px;
    height: 16px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12), rgba(129, 140, 248, 0.62), rgba(99, 102, 241, 0.12));
  }

  .hero-brand-signature {
    align-items: flex-start;
    padding: 16px;
    gap: 14px;
  }

  .hero-brand-signature__logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 18px;
  }

  .hero-brand-signature__logo img {
    width: 30px;
    height: 30px;
  }

  .hero-brand-signature__title {
    font-size: 20px;
  }

  .hero-brand-signature__text {
    font-size: 12px;
    max-width: none;
  }
}