:root {
  --hp-bg: #050608;
  --hp-surface: rgba(11, 15, 21, 0.82);
  --hp-surface-strong: rgba(15, 20, 28, 0.94);
  --hp-border: rgba(255, 206, 121, 0.18);
  --hp-border-strong: rgba(255, 206, 121, 0.32);
  --hp-text: #f7f4ee;
  --hp-muted: #b8bec9;
  --hp-gold: #ffce79;
  --hp-gold-deep: #e8b55f;
  --hp-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

body.homepage-body {
  background:
    radial-gradient(circle at top left, rgba(51, 79, 163, 0.26), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 206, 121, 0.14), transparent 24%),
    linear-gradient(180deg, #050608 0%, #07090d 38%, #050608 100%);
  color: var(--hp-text);
}

.homepage-shell {
  position: relative;
  overflow: hidden;
}

.homepage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.hero-section {
  position: relative;
  padding-bottom: 28px;
}

.hero-swiper {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-swiper .swiper-slide img {
  min-height: 840px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.56) 0%, rgba(5, 6, 8, 0.28) 44%, rgba(5, 6, 8, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.34) 100%);
  z-index: 1;
}

.hero-slider-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 88px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 0;
  align-items: end;
  min-height: 840px;
}

.hero-copy {
  max-width: 640px;
  justify-self: start;
}

.hero-eyebrow,
.section-kicker,
.story-note-label,
.hero-card-label,
.journal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--hp-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin-top: 20px;
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 760px;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.hero-description,
.section-heading p,
.story-lead,
.feature-card p,
.model-body p,
.partner-card p,
.journal-body p,
.final-cta-copy p,
.hero-card p,
.story-note p {
  color: var(--hp-muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-description {
  max-width: 640px;
  margin-top: 24px;
}

.hero-summary-section {
  position: relative;
  padding-bottom: 96px;
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
  gap: 28px;
  align-items: start;
}

.hero-summary-copy {
  padding: 34px 0 0;
}

.hero-actions,
.final-cta-actions,
.section-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions,
.final-cta-actions,
.section-actions {
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
  margin-top: 32px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-primary {
  color: #1c1508;
  background: linear-gradient(135deg, #ffde9a 0%, #ffce79 45%, #e8b55f 100%);
  box-shadow: 0 20px 40px rgba(232, 181, 95, 0.24);
}

.cta-secondary {
  color: var(--hp-text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.cta-secondary:hover {
  border-color: var(--hp-border-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--hp-text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin-top: 34px;
}

.hero-stat,
.feature-card,
.model-card,
.journal-card,
.story-point {
  background: var(--hp-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--hp-shadow);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  color: var(--hp-gold);
  font-size: 28px;
  line-height: 1;
}

.hero-stat span {
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--hp-surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--hp-shadow);
  backdrop-filter: blur(18px);
}

.hero-card h2,
.story-panel h2,
.section-heading h2,
.model-body h3,
.partner-card h2,
.journal-body h3,
.final-cta-copy h2 {
  color: var(--hp-text);
  letter-spacing: -0.03em;
}

.hero-card h2 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.1;
}

.hero-card p {
  margin-top: 16px;
  font-size: 16px;
}

.hero-product-pills,
.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-pill,
.partner-tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--hp-text);
  font-size: 13px;
  line-height: 1;
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--hp-gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.text-link-arrow::after {
  content: "\2192";
  font-size: 16px;
}

.homepage-body .btn-swiper {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.homepage-body .btn-swiper::after {
  display: none;
}

.hero-pagination.swiper-pagination {
  bottom: 30px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.36);
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 999px;
  background: var(--hp-gold);
}

.story-section,
.features-section,
.models-section,
.partner-section,
.journal-section,
.final-cta-section {
  position: relative;
  padding-bottom: 96px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.story-panel,
.partner-card,
.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--hp-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--hp-shadow);
}

.story-panel::after,
.partner-card::after,
.final-cta-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 121, 0.2), transparent 70%);
  pointer-events: none;
}

.story-panel h2,
.section-heading h2,
.partner-card h2,
.final-cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.3vw, 52px);
  line-height: 1.04;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.story-point {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 24px;
}

.story-point strong {
  color: var(--hp-text);
  font-size: 18px;
  line-height: 1.3;
}

.story-point span {
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.story-visual-card {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--hp-shadow);
  background: linear-gradient(180deg, rgba(16, 22, 29, 0.95), rgba(8, 10, 13, 0.92));
}

.story-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(5, 6, 8, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.story-note p {
  margin-top: 12px;
  font-size: 15px;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading-row {
  max-width: none;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  text-align: left;
}

.section-heading-row .section-kicker {
  margin-bottom: 0;
}

.feature-grid,
.journal-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  border-radius: 28px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.feature-card h3 {
  margin-top: 24px;
  color: var(--hp-text);
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p {
  margin-top: 14px;
  font-size: 16px;
}

.product-carousel-nav {
  display: flex;
  gap: 12px;
}

.header-buy-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  color: #160f04;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffde9a 0%, #ffce79 45%, #e8b55f 100%);
  border: 1px solid rgba(255, 222, 154, 0.65);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(232, 181, 95, 0.28);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.header-buy-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 48%, transparent 100%);
  transform: translateX(-135%);
  transition: transform 420ms ease;
}

.header-buy-cta:hover {
  color: #160f04;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(232, 181, 95, 0.38);
}

.header-buy-cta:hover::before {
  transform: translateX(135%);
}

.submenu-highlight {
  display: flex;
  align-items: stretch;
}

.submenu-highlight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 206, 121, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 206, 121, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(9, 11, 15, 0.74));
}

.submenu-highlight-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--hp-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submenu-highlight-card h3 {
  margin: 0;
  color: #fffaf2;
  font-size: 34px;
  line-height: 1.02;
}

.submenu-highlight-card p {
  margin: 18px 0 0;
  color: rgba(245, 242, 236, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.submenu-buy-cta {
  width: fit-content;
  margin-top: 24px;
}

.mobile-product-label {
  margin-top: 10px;
}

.mobile-product-label .menu-link {
  color: rgba(0, 0, 0, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-product-link {
  padding-left: 1.25rem;
  font-size: 15px;
}

.mobile-header-buy-cta {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 0;
}

.showcase-swiper {
  overflow: visible;
  padding-bottom: 8px;
}

.showcase-swiper .swiper-wrapper {
  align-items: stretch;
}

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

.model-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
}

.model-media {
  padding: 20px 20px 0;
}

.model-media img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 206, 121, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #0b0f14;
}

.model-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.model-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--hp-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-body h3 {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1;
}

.model-body p {
  margin-top: 14px;
  flex: 1;
  font-size: 16px;
}

.cta-buy {
  position: relative;
  min-height: 50px;
  padding: 12px 20px;
  color: #1c1508;
  background: linear-gradient(135deg, #ffde9a 0%, #ffce79 45%, #e8b55f 100%);
  box-shadow: 0 12px 28px rgba(232, 181, 95, 0.24);
  overflow: hidden;
}

.cta-buy::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  opacity: 0.45;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.cta-buy:hover {
  box-shadow: 0 18px 38px rgba(232, 181, 95, 0.36);
}

.model-buy {
  margin-top: auto;
  align-self: flex-start;
}

@keyframes ctaPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.partner-actions {
  display: flex;
  align-items: center;
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.journal-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.journal-body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 250px);
  padding: 24px;
}

.journal-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
}

.journal-body h3 {
  margin-top: 18px;
  font-size: 28px;
  line-height: 1.12;
}

.journal-body p {
  margin-top: 14px;
  flex: 1;
  font-size: 16px;
}

.final-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.88), rgba(5, 6, 8, 0.48)),
    url("../../img-content/site/verification.jpeg") center/cover no-repeat;
  opacity: 0.22;
}

.final-cta-copy,
.final-cta-actions {
  position: relative;
  z-index: 1;
}

.final-cta-copy p {
  max-width: 760px;
  margin-top: 18px;
}

@media (max-width: 1399px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .hero-swiper .swiper-slide img,
  .hero-layout {
    min-height: 760px;
  }

  .hero-summary-grid,
  .story-grid,
  .partner-card,
  .final-cta-card,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .submenu-highlight {
    display: none;
  }

  .hero-slider-info {
    padding-bottom: 74px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 640px;
    align-content: end;
  }

  .hero-swiper .swiper-slide img {
    min-height: 640px;
  }

  .hero-stats,
  .story-points {
    grid-template-columns: 1fr;
  }

  .hero-summary-section,
  .story-section,
  .features-section,
  .models-section,
  .partner-section,
  .journal-section,
  .final-cta-section {
    padding-bottom: 72px;
  }

  .story-panel,
  .partner-card,
  .final-cta-card {
    padding: 32px;
  }

  .story-visual-card {
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .header-buy-cta {
    width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description,
  .section-heading p,
  .story-lead,
  .feature-card p,
  .model-body p,
  .partner-card p,
  .journal-body p,
  .final-cta-copy p,
  .hero-card p,
  .story-note p {
    font-size: 16px;
  }

  .hero-actions,
  .final-cta-actions,
  .section-actions,
  .center-actions {
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }

  .feature-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .model-buy {
    width: 100%;
    justify-content: center;
  }

  .hero-card,
  .story-panel,
  .partner-card,
  .final-cta-card,
  .feature-card,
  .model-card,
  .journal-card,
  .story-visual-card {
    border-radius: 24px;
  }

  .model-media img {
    height: 260px;
  }

  .journal-card img {
    height: 220px;
  }

  .journal-body {
    height: auto;
  }
}
