/* PostDeck — warm, editorial, confident */
:root {
  --cream: #FAF5EF;
  --orange: #E8622B;
  --amber: #F5A623;
  --charcoal: #2A2118;
  --muted: #8C7B6E;
  --surface: #F0EAE0;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 33, 24, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }

/* ---- HERO ---- */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  background: var(--surface);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(42, 33, 24, 0.1);
}

/* Hero card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(42, 33, 24, 0.1);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  border: 1px solid rgba(42, 33, 24, 0.06);
}
.hc-header {
  background: var(--surface);
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(42, 33, 24, 0.06);
}
.hc-dots {
  display: flex;
  gap: 0.35rem;
}
.hc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(42, 33, 24, 0.15);
}
.hc-dots span:first-child { background: var(--orange); opacity: 0.7; }
.hc-dots span:nth-child(2) { background: var(--amber); opacity: 0.7; }
.hc-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.hc-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hc-post {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.hc-post-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
}
.hc-post-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.2rem;
}
.hc-line {
  height: 9px;
  border-radius: 4px;
  background: var(--surface);
}
.hc-line--long { width: 90%; }
.hc-line--medium { width: 70%; }
.hc-line--short { width: 50%; }
.hc-metric {
  background: var(--cream);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 1px solid rgba(232, 98, 43, 0.15);
}
.hc-metric-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--orange);
  letter-spacing: 0.03em;
}
.hc-metric-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 5rem 2rem;
  background: var(--white);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(42, 33, 24, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(42, 33, 24, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 98, 43, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- HOW IT WORKS ---- */
.hiw {
  padding: 5rem 2rem;
  background: var(--cream);
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.step {}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Calendar showcase */
.hiw-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(42, 33, 24, 0.06);
  box-shadow: 0 8px 32px rgba(42, 33, 24, 0.06);
}
.cs-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.cs-block {
  border-radius: 12px;
  padding: 0.75rem;
  background: var(--cream);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cs-day {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-post {
  border-radius: 6px;
  background: var(--surface);
  height: 32px;
}
.cs-post--sm { height: 22px; }
.cs-post--lg { height: 48px; }

/* Orange blocks */
.cs-block--monday .cs-post:first-of-type { background: rgba(232, 98, 43, 0.5); }
.cs-block--tue .cs-post { background: rgba(232, 98, 43, 0.7); }
.cs-block--wed .cs-post { background: rgba(245, 166, 35, 0.5); }
.cs-block--thu .cs-post:first-of-type { background: rgba(232, 98, 43, 0.35); }
.cs-block--fri .cs-post:first-of-type { background: rgba(245, 166, 35, 0.7); }
.cs-block--fri .cs-post:last-of-type { background: rgba(232, 98, 43, 0.5); }

/* ---- WHO FOR IT ---- */
.whoforit {
  padding: 5rem 2rem;
  background: var(--white);
}
.whoforit-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.who-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(42, 33, 24, 0.06);
}
.who-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--orange);
}
.who-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
}

/* ---- PRICING ---- */
.pricing {
  padding: 5rem 2rem;
  background: var(--cream);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(42, 33, 24, 0.08);
  position: relative;
}
.price-card--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 12px 40px rgba(232, 98, 43, 0.12);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.pc-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.pc-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.pc-per {
  font-size: 1.2rem;
  color: var(--muted);
}
.pc-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pc-features li {
  font-size: 0.85rem;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pc-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(232, 98, 43, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E8622B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ---- CLOSING ---- */
.closing {
  padding: 6rem 2rem;
  background: var(--charcoal);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(250, 245, 239, 0.6);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(250, 245, 239, 0.1);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250, 245, 239, 0.4);
  margin-top: 0.2rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 245, 239, 0.3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: repeat(3, 1fr); }
  .cs-block--wed,
  .cs-block--fri { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .closing { padding: 4rem 2rem; }
}