/* ============================================
   ORVINIEL — Home Page Sections
   ============================================ */

/* ---- H1: Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(135deg, rgba(55, 48, 163, 0.15) 0%, transparent 55%),
    linear-gradient(315deg, rgba(79, 70, 229, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(55, 48, 163, 0.12) 0%, transparent 40%);
}

.hero__content {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero__label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 247, 244, 0.50);
  margin-bottom: 24px;
}

.hero__headline {
  font-weight: 800;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--ivory);
  max-width: 800px;
}

.hero__cycle {
  font-weight: 400;
  font-size: 20px;
  color: rgba(248, 247, 244, 0.55);
  margin-top: 28px;
}

.hero__cycle-word {
  font-weight: 600;
  transition: opacity 380ms ease, color 200ms ease;
}

.hero__body {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(248, 247, 244, 0.60);
  max-width: 520px;
  margin-top: 24px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

/* ---- Statement Banner ---- */
.statement {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.statement__text {
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
  color: var(--ink);
}

.statement__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.statement__word.in-view {
  opacity: 1;
  transform: none;
}

.statement__word--accent {
  color: var(--indigo);
}

.statement__word--accent.in-view {
  color: var(--indigo);
}

.statement__line {
  display: block;
  position: relative;
  overflow: hidden;
}

.statement__underline {
  display: block;
  width: 0;
  height: 3px;
  background: var(--indigo);
  margin: 20px auto 0;
  transition: width 800ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 600ms;
}

.statement__underline.in-view {
  width: 80px;
}

@media (prefers-reduced-motion: reduce) {
  .statement__word {
    opacity: 1;
    transform: none;
  }
  .statement__underline {
    width: 80px;
  }
}

/* ---- H2: Who Orviniel Is ---- */
.identity__left .body-large {
  color: var(--ink);
}

.identity__left .body-regular {
  margin-top: 16px;
}

/* ---- H3: Values Strip ---- */
/* Styles in components.css (values-grid, value-col) */

/* ---- H4: How We Accelerate ---- */
.accelerate__intro {
  text-align: center;
  margin-bottom: 64px;
}

.accelerate__intro .body-large {
  color: var(--mid-grey);
  margin-top: 20px;
}

/* ---- H5: Clients Marquee ---- */
.clients-section .marquee-wrapper + .marquee-wrapper {
  margin-top: 0;
  border-top: var(--divider-light);
}

.clients-section__quote {
  text-align: center;
  font-size: 17px;
  color: var(--mid-grey);
  max-width: 560px;
  margin: 56px auto 0;
  line-height: 1.7;
}

/* ---- H6: Insight Cards ---- */
/* Styles in components.css (card, card__stat) */

/* ---- H7: About Strip ---- */
.about-strip__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip__art svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.about-strip__links {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

/* ---- H8: CTA Banner ---- */
.cta-banner {
  text-align: center;
  padding: 120px 0;
}

.cta-banner .section-h2 {
  color: var(--white);
}

.cta-banner .body-large {
  color: rgba(255, 255, 255, 0.70);
  max-width: 560px;
  margin: 24px auto 0;
}

.cta-banner .btn {
  margin-top: 40px;
}

/* ---- Footer ---- */
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer a:hover {
  color: var(--white) !important;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--ivory);
}

.footer-logo::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: currentColor;
  flex-shrink: 0;
}
