@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');

* {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: normal;
}

.hero-gradient {
  background: radial-gradient(
    circle at center,
    rgba(60, 10, 10, 0.8) 0%,
    rgba(20, 5, 5, 0.95) 50%,
    rgba(0, 0, 0, 1) 80%
  );
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
}

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

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

  .gallery-column:first-child,
  .gallery-column:last-child {
    display: none;
  }
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.sexy-button {
  position: relative;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #faf8f3;
  padding: 16px 48px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  transition: all 0.3s ease;
}

.sexy-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.sexy-button:hover::before {
  width: 300px;
  height: 300px;
}

.sexy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.6);
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
}

.sexy-button:active {
  transform: translateY(0);
}

.sexy-button span {
  position: relative;
  z-index: 1;
}

.step-card-container {
  perspective: 1000px;
}

.step-card {
  background: linear-gradient(135deg, #1a0505 0%, #0a0000 100%);
  border: 1px solid rgba(220, 38, 38, 0.2);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.step-card-1 {
  transform: rotate(-2deg);
}

.step-card-2 {
  transform: rotate(3deg);
}

.step-card-3 {
  transform: rotate(-1.5deg);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 16px 48px rgba(220, 38, 38, 0.3);
}

.step-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-card-image {
  transform: scale(1.05);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #faf8f3;
}

.step-number {
  font-size: 13px;
  color: #dc2626;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.step-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

.step-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #999;
  font-weight: 300;
}

.step-card-content {
  padding: 30px 24px;
}

.step-number {
  font-size: 15px;
  color: #dc2626;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #faf8f3;
}

.step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #c9c4b8;
}

.faq-item {
  background: rgba(20, 5, 5, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(25, 8, 8, 0.8);
  border-color: rgba(220, 38, 38, 0.4);
}

.faq-item:hover .faq-question {
  color: #faf8f3;
  background: transparent !important;
}

.faq-item:hover .faq-question span {
  color: #faf8f3;
  background: transparent !important;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 24px;
  color: #faf8f3;
  background: transparent !important;
}

.faq-question span {
  background: transparent !important;
  color: #faf8f3;
}

.faq-answer {
  padding: 0 24px 24px 24px;
  color: #c9c4b8;
  font-size: 15px;
  line-height: 1.8;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(40, 10, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #c9c4b8;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item:hover .faq-icon {
  background: rgba(60, 15, 15, 0.7);
  color: #dc2626;
}

/* Scope FAQ styles to this landing page so global accordion styles can't override them. */
body[data-page='landing/ai-girlfriend'] .faq-item {
  background: rgba(20, 5, 5, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

body[data-page='landing/ai-girlfriend'] .faq-question {
  color: #faf8f3;
  background: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  padding: 24px;
  list-style: none;
}

body[data-page='landing/ai-girlfriend'] .faq-question:hover {
  background: rgba(25, 8, 8, 0.8) !important;
}

body[data-page='landing/ai-girlfriend'] .faq-question::-webkit-details-marker {
  display: none;
}

body[data-page='landing/ai-girlfriend'] .faq-question:focus-visible {
  outline: 2px solid rgba(220, 38, 38, 0.9);
  outline-offset: -4px;
}

body[data-page='landing/ai-girlfriend'] .faq-answer {
  color: #c9c4b8;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px 24px 24px;
  font-size: 15px;
  line-height: 1.8;
}

body[data-page='landing/ai-girlfriend'] .faq-icon {
  background: rgba(40, 10, 10, 0.5);
  color: #c9c4b8;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  margin-left: 16px;
}

body[data-page='landing/ai-girlfriend'] .faq-icon::before {
  content: '+';
}

body[data-page='landing/ai-girlfriend'] .faq-item[open] .faq-icon::before {
  content: '−';
}

@media (max-width: 640px) {
  body[data-page='landing/ai-girlfriend'] .faq-question {
    font-size: 18px;
    padding: 18px;
  }

  body[data-page='landing/ai-girlfriend'] .faq-answer {
    padding: 0 18px 18px 18px;
    font-size: 14px;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 12px 36px rgba(220, 38, 38, 0.6);
  }
}

.sexy-button {
  animation: pulse-glow 2s ease-in-out infinite;
}
