/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: #f0e6d3;
  background: #0a0a0f;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* ===== COLORS ===== */
:root {
  --gold: #ffe388;
  --gold-bright: #f0d060;
  --gold-dark: #b8942e;
  --vermilion: #c23a22;
  --cream: #f0e6d3;
  --ink: #0a0a0f;
  --ink-light: #1a1a24;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  /*min-height: 100vh;*/
  min-height: 75dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Desktop Background */
  background: url('pc2.webp') top center / cover no-repeat; 
  padding: 2rem 1.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,15,0.45) 0%,
    rgba(10,10,15,0.7) 50%,
    rgba(10,10,15,0.92) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  animation: fadeUp 1.2s ease-out;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(212,175,55,0.3);
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: rgba(240,230,211,0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hook-banner {
  display: inline-block;
  background: linear-gradient(135deg, rgba(194,58,34,0.15), rgba(212,175,55,0.12));
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  padding: 0.9rem 1.6rem;
  margin-bottom: 2.2rem;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold-bright);
  line-height: 1.5;
}
.hook-banner strong { color: #fff; }

/* ===== FORM ===== */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.2rem;
}
.signup-form input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  border: 1.5px solid rgba(212,175,55,0.8);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.9);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.signup-form input::placeholder { color: rgba(240,230,211,0.4); }
.signup-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.cta-btn {
  width: 100%;
  padding: 1.1rem 2rem;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dark));
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(212,175,55,0.3);
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.45);
}
.cta-btn:active { transform: translateY(0); }

.micro-text {
  font-size: 0.82rem;
  color: rgba(240,230,211,0.45);
  line-height: 1.6;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}

/* ===== SECTION 2: FEATURES ===== */
.features {
  background: var(--ink);
  padding: 5rem 1.5rem;
}
.feature-block {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto 6rem;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { flex-direction: row-reverse; }

.feature-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.feature-img img {
  transition: transform 0.6s ease;
}
.feature-img:hover img {
  transform: scale(1.03);
}

.feature-text { flex: 1; }
.feature-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-title {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.feature-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,230,211,0.7);
}
.feature-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-top: 2rem;
}

/* ===== SECTION 3: FINAL CTA ===== */
.final-cta {
  background: linear-gradient(to bottom, var(--ink), var(--ink-light));
  padding: 5rem 1.5rem 2rem;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.final-img {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.final-text {
  flex: 1;
}
.final-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 1rem;
}
.final-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(240,230,211,0.7);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(212,175,55,0.1);
  font-size: 0.82rem;
  color: rgba(240,230,211,0.3);
}

/* ===== SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 1rem;
  color: var(--gold-bright);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  animation: fadeUp 0.5s ease-out;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
/* @media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .final-cta-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .features { padding: 3rem 1.2rem; }
  .final-cta { padding: 3rem 1.2rem 2rem; }
  .hero { padding: 2rem 1.2rem; }
} */

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    /* Mobile Background Override */
    background-image: url('mobile.webp'); 
    padding: 2rem 1.2rem;
  }
  
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .final-cta-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .features { padding: 3rem 1.2rem; }
  .final-cta { padding: 3rem 1.2rem 2rem; }
  .hero-title{padding-top:7rem;}
}