/* ═══════════════════════════════════════════════
   RECOLLECTIBLE — Landing Page Styles
   Font: Inter | Base: 4px grid
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #000; overflow-x: hidden; }

:root {
  --m-purple:   #6B00B3;
  --d-purple:   #5F009D;
  --dusk:       #9E0059;
  --orange:     #FF4F00;
  --d-grey:     #4D4D4D;
  --m-grey:     #717171;
  --l-bg:       #F4F3F5;
  --shadow-2:   0px 2px 4px rgba(171,190,209,0.6);
}

/* ── BUTTONS ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  gap: 10px;
  background: var(--m-purple);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; }

.btn-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--m-purple);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--m-purple);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { opacity: 0.8; }

.btn-disabled {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 32px;
  background: #F4F3F5;
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #D2D3D5;
  cursor: default;
}

.btn-primary.nav-cta-short { display: none; }

/* ── NAV ──────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid #D9D9D9;
}
.nav-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  gap: 70px;
  width: 100%;
  height: 112px;
}
.nav-logo {
  width: 259px;
  height: 49px;
  display: flex;
  align-items: center;
}
.nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--m-purple);
  text-decoration: none;
}
.nav-link:hover { text-decoration: underline; }

/* ── SHARED SECTION PARTS ─────────────────── */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.section-h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 48px;
  line-height: 52px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #000;
  max-width: 844px;
}
.section-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #000;
  max-width: 628px;
}

/* ── HERO ─────────────────────────────────── */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 80px;
  gap: 70px;
  background: #fff;
}
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.hero-h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: 72px;
  line-height: 76px;
  text-align: center;
  letter-spacing: -0.06em;
  color: #212121;
  max-width: 844px;
}
.hero-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #000;
  max-width: 628px;
}

/* ── STEPS ────────────────────────────────── */
.steps-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  gap: 60px;
  background: var(--l-bg);
}
.steps-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  width: 100%;
  max-width: 1060px;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 302px;
  flex-shrink: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #9E0059;
  margin-bottom: 0;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #000;
  margin-bottom: 8px;
}
.step-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--d-grey);
  max-width: 266px;
}
.steps-image {
  flex: 1;
  max-width: 698px;
  height: 594px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  flex-shrink: 0;
  position: relative;
}
.steps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── FEATURES ─────────────────────────────── */
.features-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  gap: 60px;
  background: linear-gradient(111.27deg, #FFEEA5 -1.3%, #FFAE00 63.77%, #DE0049 132.71%);
}
.callout-trio {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 1282px;
}
.callout-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  gap: 24px;
  flex: 1;
  min-height: 360px;
  background: #fff;
  box-shadow: var(--shadow-2);
  border-radius: 12px;
}
.callout-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.callout-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #212121;
}
.callout-body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--d-grey);
}

/* ── TEMPLATES ────────────────────────────── */
.templates-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  gap: 60px;
  background: #fff;
}
.templates-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 1280px;
}
.templates-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.template-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px;
  gap: 4px;
  flex: 1;
  height: 360px;
  box-shadow: var(--shadow-2);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}
.template-card:hover {
  box-shadow: 0 8px 24px rgba(171,190,209,0.5);
  transform: translateY(-2px);
}
.template-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.template-label {
  position: relative;
  z-index: 1;
}
.template-title {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #000;
}
.template-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--d-grey);
}
.templates-link {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--m-purple);
  text-decoration: none;
}
.templates-link:hover { text-decoration: underline; }

/* ── PRICING ──────────────────────────────── */
.pricing-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  gap: 60px;
  background: var(--l-bg);
}
.pricing-cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 36px 0;
  gap: 24px;
  width: 302px;
  min-height: 480px;
  background: #fff;
  box-shadow: var(--shadow-2);
  border-radius: 12px;
}
.pricing-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 36px;
  gap: 8px;
  width: 100%;
}
.plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.04em;
  color: #000;
}
.plan-price {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
.plan-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--d-grey);
  margin-top: 4px;
}
.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.plan-features-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--d-grey);
  padding-left: 16px;
  position: relative;
}
.plan-features-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--m-purple);
}
.pricing-note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: var(--m-grey);
}

/* ── QUOTE ────────────────────────────────── */
.quote-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  min-height: 240px;
  background: linear-gradient(279.91deg, #420085 1.83%, #9E0059 63.56%, #DE0049 116.87%);
}
.quote-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 628px;
  width: 100%;
}
.quote-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
  text-align: center;
  letter-spacing: -0.04em;
  color: #fff;
}
.quote-attr {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #fff;
}

/* ── FOOTER ───────────────────────────────── */
footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 34px 80px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: var(--m-grey);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.footer-contact a {
  color: var(--m-purple);
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }

/* ── IMAGE PLACEHOLDERS ───────────────────── */
/* Remove these rules once you swap in real images */
.img-placeholder {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8d4cc;
}
.placeholder-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.04) 8px,
    rgba(0,0,0,0.04) 16px
  );
}
.placeholder-label {
  position: relative;
  font-family: monospace;
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  text-align: center;
  padding: 0 16px;
  line-height: 1.5;
  white-space: pre-line;
}
.template-placeholder-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  white-space: nowrap;
  z-index: 1;
}

/* ── RESPONSIVE ───────────────────────────── */

/* Tablet: ≤ 900px */
@media (max-width: 900px) {
  nav { padding: 24px 0; }
  .nav-inner { padding: 0 32px; gap: 24px; height: auto; }
  .nav-logo { width: auto; height: 40px; }
  .nav-logo img { height: 40px !important; }

  .hero-section { padding: 80px 32px; gap: 40px; }
  .hero-h1 { font-size: 52px; line-height: 56px; }

  .steps-section { padding: 60px 32px; gap: 40px; }
  .steps-content { flex-direction: column; align-items: center; gap: 40px; }
  .steps-list { width: 100%; max-width: 560px; gap: 40px; }
  .step-body { max-width: 100%; }
  .steps-image { width: 100%; max-width: 560px; height: 320px; flex-shrink: 1; }

  .features-section { padding: 60px 32px; gap: 40px; }
  .callout-trio { flex-direction: column; max-width: 560px; }
  .callout-card { min-height: auto; }

  .templates-section { padding: 60px 32px; gap: 40px; }
  .templates-row { flex-direction: column; }
  .template-card { height: 240px; }

  .pricing-section { padding: 60px 0; gap: 40px; }
  .pricing-section .section-header { padding: 0 32px; }
  .pricing-section .pricing-note { padding: 0 32px; }
  .pricing-carousel-wrap { width: 100%; overflow-x: clip; padding-bottom: 12px; }
  .pricing-cards {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
    gap: 16px;
    padding-inline: 10vw;
    width: 100%;
  }
  .pricing-cards::-webkit-scrollbar { display: none; }
  .pricing-card { flex-shrink: 0; width: 78vw; max-width: 320px; scroll-snap-align: center; }

  .quote-section { padding: 48px 32px; }

  footer { padding: 28px 32px; flex-direction: column; align-items: flex-start; gap: 16px; }

  .section-h2 { font-size: 36px; line-height: 42px; }
}

/* Mobile: ≤ 540px */
@media (max-width: 540px) {
  nav { padding: 16px 0; }
  .nav-inner { padding: 0 20px; gap: 12px; }
  .nav-logo { height: 34px; }
  .nav-logo img { height: 34px !important; }
  .btn-primary { padding: 12px 20px; font-size: 14px; }
  .btn-secondary { padding: 12px 20px; font-size: 14px; }
  .nav-cta-full { display: none; }
  .btn-primary.nav-cta-short { display: inline-flex; }

  .hero-section { padding: 56px 20px; gap: 32px; }
  .hero-h1 { font-size: 36px; line-height: 40px; letter-spacing: -0.04em; }
  .hero-body { font-size: 16px; line-height: 26px; }

  .steps-section { padding: 48px 20px; gap: 32px; }
  .steps-image { height: 160px; }
  .step-title { font-size: 22px; line-height: 28px; }

  .features-section { padding: 48px 20px; gap: 32px; }
  .callout-title { font-size: 22px; line-height: 28px; }

  .templates-section { padding: 48px 20px; gap: 32px; }
  .template-card { height: 200px; padding: 24px; }
  .template-title { font-size: 22px; line-height: 28px; }

  .pricing-section { padding: 48px 0; gap: 32px; }
  .pricing-cards { padding-inline: 6vw; gap: 12px; }
  .pricing-card { width: 84vw; }

  .quote-section { padding: 40px 20px; }
  .quote-text { font-size: 22px; line-height: 30px; }

  footer { padding: 24px 20px; gap: 14px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  .section-h2 { font-size: 28px; line-height: 34px; }
  .section-body { font-size: 16px; line-height: 26px; }
}

/* Modal styles are now in modal.css + recollectible-ds.css */
