/* === BASE === */
:root {
  --navy: #1a2744;
  --navy-light: #243352;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fbbf24;
  --cream: #faf8f5;
  --cream-dark: #f0ece4;
  --text: #1a2744;
  --text-muted: #5a6a7e;
  --border: #e5e1d8;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--navy); }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 24px;
}
.hero-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--amber-dark);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.1s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.hero-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* === HERO VISUAL (post cards) === */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 20px 0;
}

.post-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.post-card {
  background: white;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.08), 0 1px 3px rgba(26, 39, 68, 0.06);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.post-card:hover { transform: translateX(4px); }

.post-card-1 { transform: rotate(-1.5deg); }
.post-card-1:hover { transform: rotate(-1.5deg) translateX(4px); }
.post-card-2 { transform: rotate(0.8deg); }
.post-card-2:hover { transform: rotate(0.8deg) translateX(4px); }
.post-card-3 { transform: rotate(-0.5deg); }
.post-card-3:hover { transform: rotate(-0.5deg) translateX(4px); }
.post-card-4 { transform: rotate(1deg); }
.post-card-4:hover { transform: rotate(1deg) translateX(4px); }

.post-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  background: #e3f2fd;
  color: #1565C0;
}
.post-badge.market { background: #fff3e0; color: #e65100; }
.post-badge.sold { background: #e8f5e9; color: #2e7d32; }
.post-badge.tip { background: #f3e5f5; color: #7b1fa2; }

.post-img-placeholder {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-img-placeholder svg { width: 100%; height: auto; display: block; }

.post-caption { display: flex; flex-direction: column; gap: 5px; }
.post-caption-line {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 4px;
}
.post-caption-line.short { height: 7px; }

/* === PROBLEM === */
.problem {
  background: var(--navy);
  color: white;
  padding: 100px 24px;
}
.problem-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.problem-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.problem-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: white;
}
.problem-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
}
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--amber);
}
.problem-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  line-height: 1.5;
}
.problem-solution-strip {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  padding: 16px 24px;
  display: inline-block;
}
.problem-solution-strip p {
  color: var(--amber-light);
  font-weight: 600;
  font-size: 0.95rem;
}

/* === VAULT === */
.vault { padding: 100px 24px; background: var(--cream); }
.vault-inner { max-width: 900px; margin: 0 auto; }
.vault-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.vault-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.1;
}
.vault-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.vault-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vault-type {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}
.vault-type-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vault-type strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.vault-type p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

/* === WHAT'S INSIDE === */
.whats-inside {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
}
.whats-inside-inner { max-width: 900px; margin: 0 auto; }
.wi-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}
.wi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.wi-item { text-align: center; }
.wi-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.wi-min { font-size: 1.2rem; font-weight: 400; }
.wi-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.wi-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* === BONUS === */
.bonus { padding: 100px 24px; background: var(--cream); }
.bonus-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bonus-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.bonus-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 48px;
  line-height: 1.2;
}
.bonus-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 24px;
}
.bonus-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.bonus-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 10px;
}
.bonus-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.bonus-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* === GUARANTEE === */
.guarantee {
  background: var(--navy);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.guarantee-inner { max-width: 680px; margin: 0 auto; }
.guarantee-badge { margin-bottom: 24px; }
.guarantee-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: white;
  margin-bottom: 20px;
}
.guarantee-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 300;
}
.guarantee-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
}

/* === PRICING === */
.pricing { padding: 100px 24px; background: var(--cream); }
.pricing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.pricing-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 12px;
}
.pricing-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 32px;
}
.pricing-card {
  background: white;
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 40px;
  text-align: left;
  margin-bottom: 24px;
  box-shadow: 0 8px 40px rgba(26, 39, 68, 0.1);
}
.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.pricing-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pricing-card-header p { font-size: 0.88rem; color: var(--text-muted); }
.pricing-amount { text-align: right; flex-shrink: 0; }
.price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: -4px;
}
.price-current {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.price-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.pricing-includes li svg { flex-shrink: 0; margin-top: 1px; }
.pricing-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: rgba(245, 158, 11, 0.1);
  padding: 10px 16px;
  border-radius: 6px;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}
.pricing-upsell { text-align: center; }
.upsell-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.upsell-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  text-align: left;
}
.upsell-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.upsell-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.upsell-price {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.upsell-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

/* === CLOSING === */
.closing { padding: 100px 24px; background: white; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}
.closing-body-sm {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
  font-weight: 400;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--amber); }
.footer-sep { color: rgba(255,255,255,0.3); }

/* === PLATFORMS === */
.platforms {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 24px;
}
.platforms-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.platforms-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.platforms-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.1;
}
.platforms-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.platform-card img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.1);
  border: 1px solid var(--border);
  object-fit: cover;
}
.platform-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.platform-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* === VAULT MOCKUPS === */
.vault-mockups {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.vault-mockup {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(26, 39, 68, 0.08);
}
.vault-mockup img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.vault-mockup-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 39, 68, 0.8);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .vault-types { grid-template-columns: 1fr; }
  .vault-mockups { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .wi-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bonus-cards { grid-template-columns: 1fr; }
  .pricing-card-header { flex-direction: column; }
  .pricing-amount { text-align: left; }
}

@media (max-width: 480px) {
  .wi-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 24px; }
}
