* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #0a0906;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #f0e6d0;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

/* radial glow behind title */
.hero::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: #c9a84c;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c9a84c; animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300; line-height: 0.95;
  color: #faf7f2; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero-title em { font-style: italic; color: #e8c97a; }
.hero-title .line2 { display: block; font-weight: 600; letter-spacing: -0.02em; }

.hero-sub {
  max-width: 520px;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 300; line-height: 1.8;
  color: #8a7f6a; letter-spacing: 0.04em;
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-sub strong { color: #e8c97a; font-weight: 500; }

/* mock phone */
.phone-wrap {
  position: relative;
  opacity: 0; animation: fadeUp 0.9s 0.65s ease forwards;
}
.phone {
  width: 240px;
  background: #111009;
  border-radius: 36px;
  border: 2px solid rgba(201,168,76,0.25);
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(201,168,76,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.phone::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 4px;
  background: rgba(201,168,76,0.2);
  border-radius: 0 0 4px 4px;
}
.phone-screen {
  background: #0a0906;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  position: relative;
}
.phone-header {
  background: linear-gradient(to bottom, rgba(201,168,76,0.06), transparent);
  padding: 20px 12px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.phone-header-eyebrow {
  font-size: 0.38rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 4px;
}
.phone-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 300; color: #faf7f2; line-height: 1;
}
.phone-header-title em { font-style: italic; color: #e8c97a; }

/* mini gallery grid */
.phone-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; padding: 8px 8px 50px;
}
.phone-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden; position: relative;
  background: #1c1a14;
}
.phone-cell img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.phone-cell-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,9,6,0.85), transparent);
  padding: 6px 5px 4px;
}
.phone-cell-name { font-size: 0.32rem; color: #e8c97a; letter-spacing: 0.05em; }
.phone-cell-msg  { font-size: 0.3rem;  color: #f0e6d0; letter-spacing: 0.02em; line-height: 1.3; }

/* phone FAB */
.phone-fab {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  background: #c9a84c; border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.38rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #0a0906;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(201,168,76,0.5);
}

/* glow under phone */
.phone-glow {
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 60px;
  background: rgba(201,168,76,0.18);
  filter: blur(28px); border-radius: 50%;
  pointer-events: none;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  margin-top: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.52rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: #8a7f6a;
  opacity: 0; animation: fadeUp 0.8s 1.1s ease forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ── HOW IT WORKS ── */
.how {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  padding: 100px 24px;
}

.section-label {
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.32em;
  text-transform: uppercase; color: #c9a84c;
  text-align: center; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; text-align: center;
  color: #faf7f2; margin-bottom: 70px; line-height: 1.1;
}
.section-title em { font-style: italic; color: #e8c97a; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
@media(max-width: 640px) { .steps { grid-template-columns: 1fr; gap: 16px; } }

/* connector line between steps on desktop */
.steps::before {
  content: '';
  position: absolute; top: 52px; left: calc(16.66% + 12px); right: calc(16.66% + 12px);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
}
@media(max-width:640px) { .steps::before { display: none; } }

.step {
  padding: 0 24px 40px;
  text-align: center; position: relative;
}

.step-num {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: #c9a84c;
  background: #0a0906;
  position: relative; z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover .step-num {
  border-color: #c9a84c;
  background: rgba(201,168,76,0.08);
}

.step-icon {
  font-size: 1.6rem; margin-bottom: 18px;
  display: block;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: #faf7f2; margin-bottom: 12px;
}
.step-title em { font-style: italic; color: #e8c97a; }

.step-body {
  font-size: 0.72rem; line-height: 1.75;
  color: #8a7f6a; letter-spacing: 0.03em;
}
.step-body strong { color: #f0e6d0; font-weight: 400; }

/* ── FEATURES GRID ── */
.features {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  padding: 0 24px 100px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
@media(max-width:580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: #111009;
  border: 1px solid rgba(201,168,76,0.1);
  padding: 36px 32px;
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.02); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 1.8rem; margin-bottom: 16px; display: block;
  filter: grayscale(0.3);
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: #faf7f2;
  margin-bottom: 10px;
}
.feature-body {
  font-size: 0.7rem; line-height: 1.75; color: #8a7f6a;
}

/* ── BOTTOM CTA ── */
.cta {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 24px 100px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; color: #faf7f2;
  margin-bottom: 16px; line-height: 1.1;
}
.cta-title em { font-style: italic; color: #e8c97a; }
.cta-sub {
  font-size: 0.72rem; color: #8a7f6a; margin-bottom: 36px;
  letter-spacing: 0.05em; line-height: 1.7;
}
.cta-btn {
  display: inline-block;
  background: #c9a84c; color: #0a0906;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  padding: 18px 44px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: #e8c97a; transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(201,168,76,0.5);
}
.cta-note {
  margin-top: 20px; font-size: 0.58rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #8a7f6a; opacity: 0.6;
}

/* ── DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 800px; margin: 0 auto;
  padding: 0 24px;
}
.div-line { flex: 1; height: 1px; background: rgba(201,168,76,0.12); }
.div-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: #c9a84c; opacity: 0.5;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
