.home-page {
  display: grid;
  max-width: 1100px;
  gap: 24px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 88% 15%, rgb(91 143 217 / 28%), transparent 34%),
    linear-gradient(145deg, #202d42, #182233);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.home-hero h1 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.home-hero p {
  max-width: 620px;
  margin-bottom: 26px;
  color: #c4cfdf;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.home-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.home-primary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: var(--primary);
  border-radius: var(--border-radius);
}

.home-primary-action:hover {
  color: #fff;
  background: var(--primary-hover);
}

.home-primary-action svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.home-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-action-card {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.home-action-card:hover {
  color: var(--text);
  background: var(--surface-light);
  border-color: #4b6589;
  transform: translateY(-2px);
}

.home-action-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #93c5fd;
  background: rgb(91 143 217 / 14%);
  border-radius: 10px;
}

.home-action-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-action-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.home-action-copy small {
  color: var(--text-muted);
  line-height: 1.4;
}

.home-action-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
}

@media (max-width: 1000px) {
  .home-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-page {
    gap: 16px;
  }

  .home-hero {
    padding: 24px 20px;
  }

  .home-primary-action {
    width: 100%;
    justify-content: center;
  }

  .home-action-card {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-action-card {
    transition: none;
  }
}
