/* Homepage */
.status-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: fit-content;
  margin-bottom: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 189, 89, 0.4);
  border-radius: var(--radius-medium);
  background: rgba(255, 189, 89, 0.08);
  color: var(--warning);
}
.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Homepage Hero */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 2rem;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(40, 105, 223, 0.22),
      transparent 40%
    ),
    linear-gradient(135deg, #08152c, #071329 60%, #061126);
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(91, 143, 243, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 143, 243, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
}
.home-hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: 3rem;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  padding-block: 2rem;
}
.home-hero-eyebrow {
  display: inline-flex;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(244, 197, 66, 0.7);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 680px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.home-hero h1 span {
  display: block;
}
.home-hero-description {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.55;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.home-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 470px;
}
.home-hero-image-wrapper {
  position: absolute;
  top: 0;
  right: -7rem;
  bottom: 0;
  left: -3rem;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.home-hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(7, 19, 41, 0.15) 60%,
    rgba(7, 19, 41, 0.45) 78%,
    rgba(7, 19, 41, 0.85) 92%,
    #071329 100%
  );
  pointer-events: none;
}
.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 55%,
    transparent 100%
  );
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 100%);
}

/* Homepage Features */
.home-features {
  position: relative;
  z-index: 2;
  padding: 0 0 5rem;
  background: #071329;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.home-feature-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 130px;
  padding: 1.25rem;
  border: 1px solid rgba(66, 112, 203, 0.48);
  border-radius: 1rem;
  background: rgba(23, 46, 91, 0.8);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}
.home-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 143, 243, 0.82);
  background: rgba(28, 57, 111, 0.92);
}
.home-feature-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(65, 126, 235, 0.65);
  border-radius: 14px;

  background:
    linear-gradient(
      145deg,
      rgba(42, 91, 180, 0.55),
      rgba(19, 48, 103, 0.85)
    );

  color: #4e8cff;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 35, 100, 0.18);
}

.home-feature-icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-feature-card:nth-child(2) .home-feature-icon,
.home-feature-card:nth-child(4) .home-feature-icon,
.home-feature-card:nth-child(6) .home-feature-icon {
  color: #ffd13f;
}

.status-banner--launch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  padding: 0.8rem 1rem;

  border: 1px solid rgba(72, 199, 142, 0.45);
  border-radius: 10px;

  background: rgba(32, 126, 88, 0.12);
  color: #b8f5d7;
}

.status-banner--launch strong {
  color: #5be0a1;
}

.status-indicator {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;

  border-radius: 50%;

  background: #4ddb98;

  box-shadow:
    0 0 0 5px rgba(77, 219, 152, 0.12);
}
.home-feature-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}
.home-feature-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

/* How It Works */
.how-it-works {
  padding: 7rem 0;
  background:
    radial-gradient(
      circle at center,
      rgba(32, 79, 167, 0.1),
      transparent 52%
    );
}

.how-it-works .section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.steps-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.steps-grid::before {
  content: "";

  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  z-index: 0;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(70, 126, 224, 0.65),
      rgba(70, 126, 224, 0.65),
      transparent
    );
}

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

  min-width: 0;
  padding: 1.5rem;

  display: flex;
  align-items: flex-start;
  gap: 1rem;

  border: 1px solid rgba(57, 96, 158, 0.7);
  border-radius: 16px;

  background:
    linear-gradient(
      145deg,
      rgba(24, 47, 91, 0.95),
      rgba(13, 31, 63, 0.95)
    );

  box-shadow:
    0 18px 35px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 139, 245, 0.95);

  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(38, 96, 196, 0.1);
}

.step-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(73, 132, 230, 0.75);
  border-radius: 15px;

  background:
    linear-gradient(
      145deg,
      rgba(43, 91, 181, 0.68),
      rgba(20, 51, 110, 0.9)
    );

  color: #ffd03f;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 25, 80, 0.2);
}

.step-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-content {
  min-width: 0;
}

.step-label {
  display: inline-block;
  margin-bottom: 0.35rem;

  color: #4f8fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-card h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.step-card p {
  margin: 0;

  color: #a9c1e8;
  font-size: 0.92rem;
  line-height: 1.55;
}
/* Project Status */
.project-status {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.status-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--background);
}
.status-card p {
  color: var(--text-muted);
}
.status-label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-complete {
  color: var(--success);
}
.status-active {
  color: var(--warning);
}
@media (max-width: 1050px) {
  /* Homepage */
  .home-hero-container {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 2rem;
  }
  .home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}
@media (max-width: 860px) {
    .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    top: 48px;
    bottom: 48px;
    left: 44px;
    right: auto;

    width: 1px;
    height: auto;

    background:
      linear-gradient(
        180deg,
        transparent,
        rgba(70, 126, 224, 0.65),
        rgba(70, 126, 224, 0.65),
        transparent
      );
  }

  /* Homepage */
  .home-hero {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
  .home-hero-container {
    grid-template-columns: 1fr;
  }
  .home-hero-content {
    max-width: 700px;
    margin-inline: auto;
    padding: 0;
    text-align: center;
  }
  .home-hero-eyebrow {
    margin-inline: auto;
  }
  .home-hero h1 {
    max-width: none;
  }
  .home-hero-description {
    max-width: 600px;
    margin-inline: auto;
  }
  .home-hero-actions {
    justify-content: center;
  }

  /* Hide artwork */
  .home-hero-visual {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-arrow {
    display: none;
  }
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
  .status-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  /* Homepage */
  .home-feature-grid {
    grid-template-columns: 1fr;
  }
  .home-hero-actions {
    flex-direction: column;
  }
  .home-hero-actions .button {
    width: 100%;
  }
}
@media (max-width: 620px) {
  /* Homepage */
  .home-hero {
    padding-top: 2.5rem;
  }
  .home-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }
  .home-hero-description {
    font-size: 1rem;
  }
  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-hero-actions .button {
    width: 100%;
  }
  .step-card {
    align-items: flex-start;
  }
  .step-number {
    width: 58px;
    height: 58px;
  }
    .status-banner--launch {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
    .how-it-works {
    padding: 4.5rem 0;
  }

  .section-heading {
    margin-bottom: 2.5rem;
  }

  .step-card {
    padding: 1.1rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .step-icon svg {
    width: 24px;
    height: 24px;
  }

  .steps-grid::before {
    left: 35px;
  }
}
