/* AsystirHR marketing — extends EasyFolio template */

:root {
  --hr-ink: #0f2943;
  --hr-deep: #2f1b5a;
  --hr-soft: #f6f1ea;
  --hr-mist: #eef3f8;
}

.header .logo img {
  max-height: 42px;
  width: auto;
}

.navmenu ul li a {
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 1399px) {
  .navmenu ul li a {
    font-size: 13px;
    padding: 8px 10px;
  }
}

/* Product screenshot frame */
.shot-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 24px 60px rgba(15, 41, 67, 0.18);
  border: 1px solid rgba(15, 41, 67, 0.08);
}

.shot-frame::before {
  content: "";
  display: block;
  height: 34px;
  background: linear-gradient(180deg, #2a3140, #1c2230);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shot-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 14px 0 0 #febc2e, 28px 0 0 #28c840;
}

.shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-frame.shot-frame--tight::before,
.shot-frame.shot-frame--tight::after {
  display: none;
}

.shot-caption {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/* Page hero (inner pages) */
.page-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(232, 117, 50, 0.14), transparent 60%),
    radial-gradient(900px 380px at 90% 0%, rgba(47, 27, 90, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--hr-mist) 100%);
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.page-hero .lead {
  font-size: 1.15rem;
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.page-hero .hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-hero .hero-chips span {
  background: #fff;
  border: 1px solid rgba(15, 41, 67, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: var(--hr-ink);
}

/* Benefit / feature cards */
.benefit-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid rgba(15, 41, 67, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 41, 67, 0.1);
}

.benefit-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/* Pathway / step strip */
.pathway {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .pathway {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pathway-step {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(15, 41, 67, 0.07);
}

.pathway-step .step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

/* Module link cards on home */
.module-link-card {
  display: block;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 41, 67, 0.08);
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.module-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 41, 67, 0.12);
  color: inherit;
}

.module-link-card .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}

.module-link-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: transform 0.4s ease;
}

.module-link-card:hover .thumb img {
  transform: scale(1.04);
}

.module-link-card .body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.module-link-card .body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.module-link-card .body p {
  margin: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.module-link-card .body .more {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Screenshot carousel */
.hr-swiper {
  padding-bottom: 2.5rem;
}

.hr-swiper .swiper-slide {
  height: auto;
}

.hr-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.hr-swiper .swiper-button-next,
.hr-swiper .swiper-button-prev {
  color: var(--accent-color);
}

/* Proof / why strip */
.why-band {
  background: linear-gradient(135deg, #1a1233 0%, #2f1b5a 45%, #3d2a1a 100%);
  color: #fff;
}

.why-band h2,
.why-band h3,
.why-band .section-title h2 {
  color: #fff;
}

.why-band p,
.why-band .lead {
  color: rgba(255, 255, 255, 0.86);
}

.why-band .title-shape {
  color: var(--accent-color);
}

.why-item {
  padding: 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.why-item h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background: var(--hr-soft);
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band .lead {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

/* Feature split rows */
.feature-split + .feature-split {
  margin-top: 4rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--accent-color);
}

/* Contact page denser */
.contact-page .contact-info .info-item {
  font-size: 1.05rem;
}

/* Soft motion for hero image */
@keyframes hr-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero .hero-image .shot-frame {
  animation: hr-float 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-image .shot-frame {
    animation: none;
  }
}

/* Index hero: brand-forward */
.index-page .hero h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  max-width: 14ch;
}

.index-page .hero .lead {
  font-size: 1.2rem;
  max-width: 32rem;
}

/* Footer sitename */
.footer .sitename {
  color: var(--heading-color);
}
