/* ==========================================================
   NINETY4MGMT — Home Page Styles
   ========================================================== */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-darkest);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,98,46,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(41,128,185,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: var(--z-base);
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero__eyebrow::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--orange-mid);
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
  color: var(--text-white);
}

.hero__title .accent {
  display: block;
  background: var(--brand-gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 500px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-orange);
  box-shadow: var(--shadow-orange);
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(232,98,46,0.08) 0%, rgba(41,128,185,0.04) 50%, transparent 70%);
  pointer-events: none;
}

/* ── Gold decorative elements ── */
.hero__decor-line {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gradient-h);
  opacity: 0.2;
  z-index: var(--z-base);
}

/* ── VALUE SECTION ── */
.values-section .grid {
  gap: var(--space-lg);
}

/* ── ABOUT PREVIEW ── */
.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview__image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-orange);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.about-preview__image:hover::after {
  opacity: 1;
}

.about-preview__content h2 {
  margin-bottom: var(--space-lg);
}

.about-preview__content p {
  margin-bottom: var(--space-md);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
}

.about-preview__signature {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

.about-preview__signature-name {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  color: var(--orange-mid);
  margin-bottom: 4px;
}

.about-preview__signature-title {
  font-size: var(--fs-small);
  color: var(--text-subtle);
}

/* ── HOME SERVICES ── */
.home-services .grid {
  gap: var(--space-lg);
}

/* ── CREATOR / BRAND SPLIT ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-section__panel {
  padding: var(--space-4xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-section__panel--creator {
  background: var(--bg-primary);
  border-right: 1px solid var(--border-subtle);
}

.split-section__panel--brand {
  background: var(--bg-secondary);
}

.split-section__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,98,46,0.04), transparent 70%);
  pointer-events: none;
}

.split-section__panel h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
  position: relative;
}

.split-section__panel p {
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  max-width: 400px;
  position: relative;
}

.split-section__panel .btn {
  position: relative;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-section__panel {
    padding: var(--space-3xl) var(--space-xl);
  }

  .split-section__panel--creator {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .about-preview__grid {
    grid-template-columns: 1fr;
  }

  .about-preview__image {
    max-width: 350px;
    margin: 0 auto;
  }
}

/* ── MEMBERSHIP CARDS ── */
.membership-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  position: relative;
}

.membership-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-brand);
}

.membership-card--featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, rgba(232,98,46,0.06) 0%, var(--bg-card) 30%);
}

.membership-card__badge {
  position: absolute;
  top: -1px;
  right: var(--space-xl);
  background: var(--brand-gradient-warm);
  color: var(--text-white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.membership-card__tier {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--orange-mid);
  margin-bottom: var(--space-sm);
}

.membership-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}

.membership-card > p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.membership-card__features {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.membership-card__features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: var(--text-muted);
  padding: var(--space-xs) 0;
}

.membership-card__features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ── GRID 5 COLUMNS ── */
.grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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