/* install.css */
body {
  background:
    radial-gradient(1100px 520px at 0% -20%, rgba(106, 0, 255, 0.16), transparent 55%),
    radial-gradient(900px 460px at 100% 0%, rgba(162, 89, 255, 0.12), transparent 58%),
    #0a0a0f;
}

.install-page {
  min-height: 100vh;
  padding: 120px 0 72px;
}

.install-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.install-hero {
  padding: 60px 0 40px;
  text-align: center;
  position: relative;
}

.install-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(106, 0, 255, 0.12);
    border: 1px solid rgba(106, 0, 255, 0.3);
    color: #A259FF;
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.install-hero h1 {
  margin: 0;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
}

.grad-text {
  background: linear-gradient(135deg, #6A00FF 0%, #A259FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.install-hero p {
  margin: 1rem auto 0;
  max-width: 600px;
  color: #8A8AA0;
  font-size: 1.1rem;
  line-height: 1.6;
}

.video-section {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-video-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080812;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(106, 0, 255, 0.2);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-mockup-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(106, 0, 255, 0.4) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.steps-section {
  width: 100%;
  max-width: 800px;
  margin: 48px auto 0;
}

.steps-header {
    text-align: center;
    margin-bottom: 40px;
}

.steps-header h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
}

.steps-header p {
    color: #8A8AA0;
    font-size: 1.1rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 32px;
    padding-bottom: 32px;
}

.step-num-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6A00FF, #A259FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(106, 0, 255, 0.3);
    z-index: 2;
}

.step-line {
    width: 2px;
    flex-grow: 1;
    background: linear-gradient(180deg, #6A00FF 0%, rgba(106, 0, 255, 0.1) 100%);
    margin-top: 8px;
    border-radius: 1px;
}

.step-content {
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-display, 'Space Grotesk', sans-serif);
}

.step-content p {
    color: #8A8AA0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    max-width: 650px;
}

@media (max-width: 768px) {
    .install-page {
        padding: 100px 0 60px;
    }
    .install-hero {
        padding: 2.5rem 1.5rem;
    }
    .step-item {
        gap: 20px;
    }
    .step-num {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .step-content h3 {
        font-size: 1.25rem;
    }
}
