/* ================================================
   NORY — Shared stylesheet (Home + About)
   Display font: Lilita One
   Body font: Inter
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Lilita+One&display=swap');

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

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  color: #150019;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

.display {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
}

/* ================================================
   HEADER / NAV — shared across pages
   ================================================ */
.nav {
  background: #150019;
  display: flex;
  align-items: center;
  padding: 20px 48px;
}

body.page-careers .nav { background: #aeabfc; }    /* lavender, matches careers hero */
body.page-partners .nav { background: #0a2818; }
body.page-blogs .nav, body.page-success-stories .nav { background: #f3f0e7; }

.nav-logo { margin-right: 40px; flex-shrink: 0; }
.nav-logo svg { display: block; }

.font-dark{ color: #150019 !important; }
.font-dark:hover, .font-dark.open { background: rgba(0,0,0,0.06)}
svg .font-dark { fill: #150019 !important; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.open {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-link .plus {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.6;
  transition: transform 0.25s ease;
  display: inline-block;
  line-height: 1;
}
.nav-link.open .plus { transform: rotate(45deg); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.btn-nav-login {
  padding: 9px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  background: #f3f0e7;
  color: #150019;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-nav-cta:hover { background: #fff; }

/* ---- Dropdown ---- */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  padding: 16px;
  display: flex;
  gap: 6px;
  width: 540px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 50;
}
.nav-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-sm { width: 290px; }

.dropdown-col { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dropdown-link {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 12px; border-radius: 8px; transition: background 0.15s;
}
.dropdown-link:hover { background: #f3f0e7; }
.dd-title { font-size: 13.5px; font-weight: 600; color: #150019; }
.dd-desc { font-size: 12px; color: #8a8780; line-height: 1.4; }

/* ================================================
   SHARED BUTTONS
   ================================================ */
.btn-purple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #aeabfc;
  color: #150019;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
  cursor: pointer;
}
.btn-purple:hover { background: #c4c1ff; }
.btn-purple:active { transform: scale(0.98); }

.btn-ghost-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 14.5px;
  font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
  cursor: pointer;
}
.btn-ghost-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

.btn-bordered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #150019;
  border: 1.5px solid #150019;
  border-radius: 6px;
  padding: 11px 20px;
  font-size: 14.5px;
  font-weight: 600;
  transition: background 0.15s;
  cursor: pointer;
}
.btn-bordered:hover { background: rgba(21,0,25,0.05); }

.btn-near-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #150019;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-near-black:hover { background: #2d0935; }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.tag-pill .dot-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ff6b4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tag-pill .dot-icon svg { width: 9px; height: 9px; fill: #fff; }
.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(174,171,252,0.18);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}
.rating-pill svg { width: 12px; height: 12px; fill: #f5c518; }

/* ================================================
   HERO (Homepage)
   ================================================ */
.hero {
  background: #150019;
  padding: 64px 48px 80px;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-tags { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }

.hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #aeabfc;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
}

.hero-btns { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.hero-right { position: relative; }
.hero-img-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3.4;
  background: #2a2030;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-card-tag {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,0,25,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
}
.hero-card-tag .red-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: #ff5b4e; display: inline-flex; align-items: center; justify-content: center;
}
.hero-card-tag .red-dot svg { width: 8px; height: 8px; fill: #fff; }

.hero-location-pill {
  position: absolute;
  left: 16px; bottom: 138px;
  background: #cdfb52;
  color: #150019;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
}

.hero-stats-card {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.hero-stats-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.hero-stats-row .label { font-size: 12px; color: #8a8780; font-weight: 500; }
.hero-stats-row .value { font-size: 17px; font-weight: 700; color: #150019; }
.hero-stats-sub { font-size: 11px; color: #aaa6a0; }

/* ================================================
   LOGOS SECTION
   ================================================ */
.logos-section { background: #f3f0e7; padding: 80px 48px 0; text-align: center; }
.logos-section h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; color: #150019; margin-bottom: 36px; }
.logos-row { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.logo-box {
  background: #fff; border-radius: 12px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.logo-box img { max-width: 100%; max-height: 36px; width: auto; object-fit: contain; }

/* ================================================
   WHY NORY SECTION
   ================================================ */
.why-section { background: #f3f0e7; padding: 96px 48px; text-align: center; }
.why-section h2 {
  font-size: 42px; font-weight: 800; letter-spacing: -1px; line-height: 1.1;
  color: #150019; max-width: 560px; margin: 0 auto 20px;
}
.why-section .lead { font-size: 15px; color: #6b6860; line-height: 1.65; max-width: 540px; margin: 0 auto 28px; }

.why-feature-card {
  background: #fff; border-radius: 20px; padding: 48px; margin: 48px auto 16px;
  max-width: 1100px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center; text-align: left;
}
.why-feature-text h3 { font-size: 26px; font-weight: 700; color: #150019; margin-bottom: 12px; letter-spacing: -0.5px; }
.why-feature-text p { font-size: 14.5px; color: #6b6860; line-height: 1.6; max-width: 320px; }

.why-feature-visual { background: #ebe7dc; border-radius: 14px; padding: 20px; position: relative; min-height: 320px; }
.location-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #aeabfc;
  border-radius: 8px; padding: 11px 16px; font-size: 14px; font-weight: 700;
  color: #150019; margin-bottom: 14px; width: 100%;
}
.location-pill svg { width: 16px; height: 16px; }

.metric-card { background: #fff; border-radius: 10px; padding: 14px 16px; margin-bottom: 12px; }
.metric-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.metric-tag { background: #ebe7dc; border-radius: 6px; padding: 4px 10px; font-size: 12px; font-weight: 600; color: #150019; }
.metric-badge { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.metric-badge.green { background: #cdfb52; }
.metric-badge.red { background: #f7b8ae; }
.metric-badge svg { width: 13px; height: 13px; }
.metric-value-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.metric-value { font-size: 19px; font-weight: 700; color: #150019; }
.metric-pct { font-size: 13px; font-weight: 600; color: #cfcac0; }
.metric-divider { height: 1px; background: #ebe7dc; margin-bottom: 8px; }
.metric-forecast { font-size: 11.5px; color: #8a8780; }
.metric-forecast strong { display: block; font-size: 13px; color: #150019; font-weight: 700; margin-top: 1px; }

.why-cards-row { max-width: 1100px; margin: 16px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; text-align: left; }
.why-small-card { background: #fff; border-radius: 18px; padding: 40px; }
.why-small-card h3 { font-size: 21px; font-weight: 700; color: #150019; line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.3px; }
.why-small-card p { font-size: 13.5px; color: #6b6860; line-height: 1.6; margin-bottom: 28px; }
.why-small-visual {
  background: #ebe7dc; border-radius: 12px; min-height: 180px; position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; overflow: hidden;
}

.notif-chip {
  display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 100px;
  padding: 8px 16px 8px 6px; margin-bottom: 10px; font-size: 13px; font-weight: 600;
  color: #150019; width: 100%; max-width: 280px;
}
.notif-chip:last-child { margin-bottom: 0; }
.notif-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-icon.green-dark { background: #143d1f; }
.notif-icon.purple { background: #7c64f5; }
.notif-icon svg { width: 16px; height: 16px; }

.integration-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; align-items: center; justify-items: center; }
.integration-icon {
  width: 40px; height: 40px; background: #fff; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.integration-center {
  width: 56px; height: 56px; background: #150019; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lilita One', sans-serif; color: #cdfb52; font-size: 15px;
  grid-row: 2; grid-column: 3;
}

/* ================================================
   RESULTS / STATS
   ================================================ */
.results-section { background: #f3f0e7; padding: 40px 48px 96px; text-align: center; }
.results-section h2 {
  font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 46px;
  line-height: 1.1; color: #150019; max-width: 600px; margin: 0 auto 56px;
}
.results-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; }
.result-col { padding: 0 32px; border-left: 1px solid #d8d3c6; text-align: left; }
.result-col:first-child { border-left: none; }

.result-tag {
  display: inline-flex; align-items: center; gap: 6px; background: #fff; border-radius: 100px;
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: #150019; margin-bottom: 32px;
}
.result-tag .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-teal { background: #5ddbb0; }
.dot-purple { background: #8b7af0; }
.dot-red { background: #ff5b4e; }

.result-modifier { display: block; font-family: 'Lilita One', sans-serif; font-size: 16px; color: #150019; margin-bottom: 4px; }
.result-number {
  font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 64px;
  line-height: 1; color: #150019; margin-bottom: 28px; white-space: nowrap;
}
.result-desc { font-size: 13.5px; color: #6b6860; }

/* ================================================
   MODULES (THICKEN UP)
   ================================================ */
.modules-section { background: #f3f0e7; padding: 0 48px 96px; text-align: center; }
.modules-section h2 {
  font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 46px;
  line-height: 1.1; color: #150019; max-width: 620px; margin: 0 auto 20px;
}
.modules-section .lead { font-size: 15px; color: #6b6860; line-height: 1.65; max-width: 600px; margin: 0 auto 28px; }

.module-cards { max-width: 1100px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 16px; }
.module-card {
  background: #fff; border-radius: 20px; padding: 48px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; text-align: left;
}
.module-text-tag {
  display: inline-flex; align-items: center; gap: 6px; background: #f3f0e7; border-radius: 100px;
  padding: 5px 12px; font-size: 12px; font-weight: 600; color: #150019; margin-bottom: 18px;
}
.module-text-tag .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.module-card h3 { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; color: #150019; line-height: 1.25; margin-bottom: 18px; }
.module-learn-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: #150019; text-decoration: underline; }
.module-learn-link svg { width: 14px; height: 14px; }

.module-visual {
  border-radius: 14px; min-height: 280px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 28px;
}
.module-visual.maroon { background: #3b0304; }
.module-visual.green { background: #0e3a1d; }

.bi-icon-row { display: flex; gap: 14px; }
.bi-icon-box { width: 56px; height: 56px; background: rgba(174,171,252,0.18); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.bi-icon-box svg { width: 24px; height: 24px; stroke: #aeabfc; }

.inventory-words { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.inventory-words span { font-family: 'Lilita One', sans-serif; color: #8bdb6a; font-size: 22px; opacity: 0.55; }
.inventory-words span.featured { background: rgba(255,255,255,0.12); color: #fff; font-size: 28px; padding: 6px 18px; border-radius: 8px; opacity: 1; }

.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.schedule-chip { background: rgba(174,171,252,0.22); border: 1px solid rgba(174,171,252,0.4); border-radius: 8px; padding: 10px 14px; }
.schedule-chip.alert { background: rgba(255,91,78,0.22); border-color: rgba(255,91,78,0.4); }
.schedule-chip .role { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.schedule-chip .time { font-size: 11.5px; color: rgba(255,255,255,0.6); }

.payroll-visual-inner { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; width: 100%; height: 100%; }
.approve-pill {
  display: inline-flex; align-items: center; gap: 8px; background: #cdfb52; color: #150019;
  font-weight: 700; font-size: 14px; padding: 12px 18px; border-radius: 8px; align-self: flex-start;
}
.approve-pill svg { width: 16px; height: 16px; }
.payroll-icon-circle { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.payroll-icon-circle svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.7); }
.payroll-bill-icon { align-self: flex-end; }
.payroll-bill-icon svg { width: 40px; height: 40px; stroke: rgba(255,255,255,0.5); }

/* ================================================
   SUCCESS STORIES
   ================================================ */
.stories-section { background: #f3f0e7; padding: 100px 48px 96px; }
.stories-top { max-width: 1100px; margin: 0 auto 36px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.stories-top h2 {
  font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 38px; line-height: 1.15;
  color: #150019; max-width: 520px;
}
.stories-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.stories-nav-text {
  display: inline-flex; align-items: center; gap: 6px; border: 1.5px solid #150019; border-radius: 100px;
  padding: 9px 18px; font-size: 13.5px; font-weight: 600; color: #150019; cursor: pointer; background: transparent;
}
.stories-nav-text.disabled { border-color: #d8d3c6; color: #c2bdb1; cursor: default; }
.stories-nav-text:not(.disabled):hover { background: #150019; color: #fff; }

.stories-track-wrap { max-width: 1100px; margin: 0 auto 32px; overflow: hidden; }
.stories-track { display: flex; gap: 16px; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1); }
.story-slide { flex: 0 0 calc(50% - 8px); position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/3.6; }
.story-slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.story-overlay-card { position: absolute; left: 16px; bottom: 16px; right: 16px; background: #fff; border-radius: 12px; padding: 20px; }
.story-overlay-logo { width: 40px; height: 40px; border-radius: 50%; background: #f3f0e7; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; overflow: hidden; }
.story-overlay-logo img { width: 100%; height: 100%; object-fit: contain; }
.story-overlay-card h3 { font-size: 17px; font-weight: 700; color: #150019; line-height: 1.35; margin-bottom: 14px; }
.story-stats-line { display: flex; gap: 28px; border-top: 1px solid #ebe7dc; padding-top: 14px; margin-bottom: 14px; }
.story-stats-line dt { font-size: 11.5px; color: #8a8780; margin-bottom: 3px; line-height: 1.3; }
.story-stats-line dd { font-size: 16px; font-weight: 700; color: #150019; }
.story-read-link { font-size: 13px; font-weight: 600; color: #150019; text-decoration: underline; display: inline-flex; align-items: center; gap: 5px; }
.story-read-link svg { width: 13px; height: 13px; }

.stories-more-wrap { text-align: left; max-width: 1100px; margin: 0 auto; }

/* ================================================
   RATINGS / REVIEWS
   ================================================ */
.reviews-section { background: #f3f0e7; padding: 0 48px 96px; }
.reviews-grid-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.reviews-left { padding-top: 24px; }
.reviews-tag-row { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }

.reviews-left h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 38px; line-height: 1.15; color: #150019; margin-bottom: 16px; }
.reviews-left p { font-size: 14.5px; color: #6b6860; line-height: 1.65; margin-bottom: 32px; max-width: 320px; }
.review-badges-row { display: flex; gap: 10px; }
.review-badges-row img { height: 70px; width: auto; }

.reviews-masonry { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reviews-masonry .col { display: flex; flex-direction: column; gap: 14px; }
.review-tile { background: #fff; border-radius: 14px; padding: 20px; }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 13px; height: 13px; fill: #aeabfc; }
.review-tile-text { font-size: 13px; color: #2a2030; line-height: 1.6; margin-bottom: 16px; }
.review-tile-foot { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 30px; height: 30px; border-radius: 50%; background: #150019; flex-shrink: 0; overflow: hidden; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-size: 12.5px; font-weight: 600; color: #150019; }

/* ================================================
   CAPITAL SECTION
   ================================================ */
.capital-section { background: #3b0304; padding: 88px 48px; text-align: center; }
.capital-tag {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.06);
  border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: #f3e9da; margin-bottom: 20px;
}
.capital-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #cdfb52; }

.capital-section h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 44px; line-height: 1.12; color: #f7ece0; margin-bottom: 20px; }
.capital-section p { font-size: 15px; color: rgba(247,236,224,0.7); line-height: 1.65; max-width: 480px; margin: 0 auto 28px; }

.capital-stats-row { max-width: 1000px; margin: 56px auto 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.capital-stat-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 40px 24px; text-align: center; }
.capital-stat-num { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 48px; line-height: 1.05; color: #cdfb52; margin-bottom: 24px; }
.capital-stat-label { font-size: 13.5px; color: rgba(247,236,224,0.6); }

/* ================================================
   FINAL CTA (Homepage)
   ================================================ */
.final-cta { background: #f3f0e7; padding: 96px 48px 0; overflow: hidden; position: relative; }
.final-cta-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.final-cta h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 44px; color: #150019; margin-bottom: 14px; }
.final-cta p { font-size: 15px; color: #4a4540; margin-bottom: 28px; }
.final-cta-laptop { margin-top: -20px; display: flex; justify-content: flex-end; }
.final-cta-laptop img { width: 78%; max-width: 760px; transform: rotate(2deg); }

/* ================================================
   ABOUT PAGE — HERO
   ================================================ */
.about-hero { background: #150019; padding: 80px 48px 0; }
.about-hero-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-hero h1 {
  font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 52px; line-height: 1.12;
  color: #aeabfc; margin-bottom: 28px; max-width: 460px;
}
.about-hero-text p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 460px; margin-bottom: 22px; }
.about-hero-img { border-radius: 16px; overflow: hidden; }
.about-hero-img img { width: 100%; height: auto; display: block; }

/* ---- Founder section ---- */
.founder-section { background: #150019; padding: 56px 48px 96px; }
.founder-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.founder-img { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3.3; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-text p { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.65; margin-bottom: 22px; }
.founder-text p:last-child { color: #fff; font-weight: 700; margin-bottom: 0; }

/* ---- Backed by the best ---- */
.backed-section { background: #f3f0e7; padding: 96px 0; text-align: center; overflow: hidden; }
.backed-section h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 42px; color: #150019; margin-bottom: 24px; }
.backed-section .lead { font-size: 15.5px; color: #2a2030; line-height: 1.65; max-width: 560px; margin: 0 auto 48px; padding: 0 24px; }

.backed-logos-wrap { position: relative; overflow: hidden; }
.backed-logos-wrap::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 120px;
  background: linear-gradient(to left, #f3f0e7, transparent); pointer-events: none;
}
.backed-logos-row { display: flex; gap: 16px; padding-left: 48px; width: max-content; }
.backed-logo-box {
  background: #fff; border-radius: 12px; width: 200px; height: 110px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.backed-logo-box img { max-width: 100%; max-height: 36px; width: auto; object-fit: contain; }

/* ---- In the spotlight ---- */
.spotlight-section { background: #fff; padding: 96px 48px; text-align: center; }
.spotlight-section h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 42px; color: #150019; margin-bottom: 20px; }
.spotlight-section .lead { font-size: 15.5px; color: #6b6860; line-height: 1.65; max-width: 480px; margin: 0 auto 56px; }

.spotlight-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }
.spotlight-card { background: #f3f0e7; border-radius: 14px; overflow: hidden; }
.spotlight-thumb { aspect-ratio: 4/3.1; position: relative; overflow: hidden; }
.spotlight-thumb img { width: 100%; height: 100%; object-fit: cover; }

.news-thumb { background: #150019; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; position: relative; }
.news-thumb .blob { position: absolute; border-radius: 50%; border: 14px solid #6c5ce7; opacity: 0.85; }
.news-thumb .blob1 { width: 140px; height: 140px; top: -40px; left: -50px; transform: rotate(15deg); }
.news-thumb .blob2 { width: 100px; height: 160px; bottom: -50px; left: 10px; border-radius: 50px; transform: rotate(-10deg); }
.news-thumb .blob3 { width: 90px; height: 90px; top: 30%; right: -30px; }

.news-tag { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #aeabfc; margin-bottom: 18px; position: relative; z-index: 2; }
.news-headline { font-size: 27px; font-weight: 800; color: #fff; line-height: 1.3; position: relative; z-index: 2; }
.news-highlight { display: inline-block; background: #aeabfc; color: #150019; padding: 2px 10px; border-radius: 6px; margin: 4px 0; }
.news-backedby { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.6); position: relative; z-index: 2; }
.news-backedby .brand { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 17px; font-weight: 600; color: #fff; margin-top: 4px; }

.spotlight-body { padding: 28px; }
.spotlight-body h3 { font-size: 19px; font-weight: 700; color: #150019; line-height: 1.35; margin-bottom: 14px; }
.spotlight-body p { font-size: 14px; color: #6b6860; line-height: 1.6; margin-bottom: 20px; }
.spotlight-date { font-size: 13px; font-weight: 600; color: #150019; }

/* ---- About careers CTA ---- */
.about-cta { background: #f3f0e7; padding: 96px 48px; text-align: center; }
.about-cta h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 42px; line-height: 1.15; color: #150019; margin-bottom: 20px; }
.about-cta p { font-size: 15.5px; color: #2a2030; margin-bottom: 28px; }

/* ================================================
   FOOTER — shared, exact match
   ================================================ */
.footer { background: #150019; padding: 64px 48px 0; overflow: hidden; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
  column-gap: 32px; row-gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { margin-bottom: 18px; display: block; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: #aeabfc;
  margin-bottom: 14px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col li:last-child { margin-bottom: 0; }
.footer-col a {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: opacity 0.15s;
}
.footer-col a:hover { opacity: 0.7; }

.footer-bottom-row {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: flex-start; gap: 40px;
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.footer-bottom-row a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-bottom-row a:hover { color: #fff; }

.footer-tagline { max-width: 1280px; margin: 0 auto; padding-bottom: 10px; overflow: hidden; }
.footer-tagline .display {
  font-family: 'Lilita One', sans-serif;
  font-size: 100px;
  line-height: 1;
  color: #aeabfc;
  letter-spacing: 0;
  white-space: nowrap;
  display: block;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-inner,
  .why-feature-card, .module-card,
  .about-hero-inner, .founder-inner { grid-template-columns: 1fr; }
  .why-cards-row { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; gap: 32px; }
  .result-col { border-left: none; border-top: 1px solid #d8d3c6; padding: 32px 0 0; }
  .result-col:first-child { border-top: none; padding-top: 0; }
  .logos-row { grid-template-columns: repeat(4,1fr); }
  .reviews-grid-layout { grid-template-columns: 1fr; }
  .reviews-masonry { grid-template-columns: 1fr 1fr; }
  .capital-stats-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-tagline .display { font-size: 64px; }
  .nav-menu { display: none; }
  .story-slide { flex: 0 0 100%; }
  .spotlight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { padding: 14px 20px; }
  .hero { padding: 48px 20px 56px; }
  .hero h1 { font-size: 40px; }
  .why-section, .results-section, .modules-section, .stories-section, .reviews-section,
  .about-hero, .founder-section, .spotlight-section, .about-cta { padding-left: 20px; padding-right: 20px; }
  .why-feature-card, .module-card, .why-small-card { padding: 28px; }
  .logos-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 0 32px; }
  .footer-tagline .display { font-size: 38px; }
  .capital-section h2, .results-section h2, .modules-section h2,
  .about-hero h1, .backed-section h2, .spotlight-section h2, .about-cta h2 { font-size: 32px; }
}

/* ================================================
   CAREERS PAGE
   ================================================ */

/* ---- Hero (lavender bg) ---- */
.careers-hero {
  background: #aeabfc;
  padding: 32px 48px 80px;
  text-align: center;
}
.careers-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.careers-hero .hero-tags { justify-content: flex-start; margin-bottom: 28px; }
.careers-hero .tag-pill {
  background: #fff;
  color: #150019;
}
.careers-hero .tag-pill .dot-icon { background: #ff6b4a; }
.careers-hero .rating-pill {
  background: #cdfb52;
  color: #150019;
}
.careers-hero .rating-pill svg { fill: #150019; }

.careers-video-wrap {
  width: 100%;
  margin: 0 0 40px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a1a;
}
.careers-video-wrap img,
.careers-video-wrap video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.video-controls button {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  transition: background 0.15s;
}
.video-controls button:hover { background: rgba(255,255,255,0.22); }
.video-controls svg { width: 16px; height: 16px; }

.careers-hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.32;
  color: #150019;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* ---- Core values (dark) ---- */
.values-section { background: #150019; padding: 88px 48px 0; text-align: center; }
.values-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #f7ece0;
  margin-bottom: 48px;
}
.values-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.value-card {
  background: #2a0f33;
  border-radius: 16px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.value-icon { color: #fff; opacity: 0.85; }
.value-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.5; }
.value-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; margin-top: 24px; }
.value-card p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.values-photos {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.values-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ---- How we support you ---- */
.support-section { background: #f3f0e7; padding: 96px 48px; text-align: center; }
.support-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #150019;
  margin-bottom: 48px;
}
.support-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  text-align: left;
}
.support-card {
  background: #fff;
  padding: 32px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.support-icon svg { width: 26px; height: 26px; stroke: #150019; fill: none; stroke-width: 1.5; }
.support-card h3 { font-size: 15px; font-weight: 700; color: #150019; margin-top: 24px; margin-bottom: 6px; }
.support-card p { font-size: 13px; color: #6b6860; line-height: 1.55; }

/* ---- Hear it from the floor ---- */
.floor-section { background: #fff; padding: 96px 48px; text-align: center; }
.floor-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #150019;
  margin-bottom: 48px;
}
.floor-grid {
  max-width: 1000px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.floor-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b6860;
  margin-bottom: 14px;
}
.floor-card-tag .dot { width: 7px; height: 7px; border-radius: 50%; }
.floor-photo {
  width: 100%;
  aspect-ratio: 4/3.4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.floor-photo img { width: 100%; height: 100%; object-fit: cover; }
.floor-card h3 { font-size: 16px; font-weight: 700; color: #150019; margin-bottom: 2px; }
.floor-card .role { font-size: 13px; color: #8a8780; margin-bottom: 16px; }
.floor-card .quote { font-size: 14px; color: #150019; font-weight: 700; line-height: 1.55; margin-bottom: 16px; }
.floor-learn-link {
  font-size: 13.5px; font-weight: 600; color: #150019; text-decoration: underline;
  display: inline-flex; align-items: center; gap: 5px;
}
.floor-learn-link svg { width: 13px; height: 13px; }

.floor-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- Why join team Nory (dark green) ---- */
.whyjoin-section { background: #0a2818; padding: 88px 48px; text-align: center; }
.whyjoin-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #f7ece0;
  margin-bottom: 48px;
}
.whyjoin-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}
.whyjoin-card {
  background: #0e3a1f;
  border-radius: 16px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.whyjoin-card svg { width: 26px; height: 26px; stroke: #cdfb52; fill: none; stroke-width: 1.5; }
.whyjoin-card p { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.45; margin-top: 24px; }

/* ---- Open roles ---- */
.roles-section { background: #fff; padding: 96px 48px; text-align: center; }
.roles-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #150019;
  margin-bottom: 48px;
}
.roles-panel { max-width: 760px; margin: 0 auto; text-align: left; }
.roles-count { font-size: 17px; font-weight: 700; color: #150019; margin-bottom: 18px; }
.roles-filters-label { font-size: 12.5px; color: #8a8780; margin-bottom: 10px; }
.roles-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 36px; }
.roles-filter-select {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid #d8d3c6; border-radius: 8px; padding: 11px 14px;
  font-size: 13.5px; color: #150019; cursor: pointer;
}
.roles-filter-select svg { width: 14px; height: 14px; opacity: 0.5; }

.role-group { margin-bottom: 28px; }
.role-breadcrumb { font-size: 12.5px; color: #8a8780; margin-bottom: 4px; }
.role-category { font-size: 16px; font-weight: 700; color: #150019; margin-bottom: 16px; }
.role-item { margin-bottom: 18px; }
.role-item a { font-size: 15px; font-weight: 700; color: #7c64f5; }
.role-item a:hover { text-decoration: underline; }
.role-item .meta { font-size: 12.5px; color: #8a8780; margin-top: 3px; }

.roles-powered { text-align: center; font-size: 12px; color: #aaa6a0; margin-top: 40px; }
.roles-powered strong { color: #150019; }

/* ---- Hiring process ---- */
.hiring-section { background: #f3f0e7; padding: 96px 48px; text-align: center; }
.hiring-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #150019;
  margin-bottom: 48px;
}
.hiring-steps { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.hiring-step {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.hiring-step-left { display: flex; align-items: center; gap: 12px; }
.hiring-step-left svg { width: 18px; height: 18px; stroke: #150019; fill: none; stroke-width: 1.6; }
.hiring-step-left span { font-size: 15px; font-weight: 700; color: #150019; }
.hiring-step-right { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #8a8780; font-weight: 500; }
.hiring-step-right .plus-circle {
  width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid #150019;
  display: flex; align-items: center; justify-content: center; font-size: 14px; color: #150019;
}
.hiring-connector { width: 1px; height: 16px; background: #d8d3c6; }

.hiring-step.dark { background: #0e3a1d; }
.hiring-step.dark .hiring-step-left svg { stroke: #fff; }
.hiring-step.dark .hiring-step-left span { color: #fff; }
.hiring-step.dark .hiring-step-right { color: rgba(255,255,255,0.6); }
.hiring-step.dark .plus-circle { border-color: #fff; color: #fff; }

.hiring-step.lime { background: #cdfb52; }
.hiring-step.lime .hiring-step-left svg { stroke: #150019; }
.hiring-step.lime .hiring-step-right { color: #150019; }
.hiring-step.lime .plus-circle { border-color: #150019; }

/* ---- See what's cooking (maroon) ---- */
.cooking-section { background: #3b0304; padding: 88px 48px; text-align: center; }
.cooking-section h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #f7ece0;
  margin-bottom: 48px;
}
.cooking-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.cooking-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(247,236,224,0.7);
  margin-bottom: 14px;
}
.cooking-card-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #cdfb52; }
.cooking-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
}
.cooking-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cooking-date { font-size: 12.5px; color: rgba(247,236,224,0.5); margin-bottom: 10px; display: block; }
.cooking-card h3 { font-size: 15px; font-weight: 700; color: #f7ece0; line-height: 1.4; }

/* ================================================
   CAREERS RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .values-grid, .support-grid, .floor-grid, .whyjoin-grid, .cooking-grid {
    grid-template-columns: 1fr 1fr;
  }
  .floor-grid { grid-template-columns: 1fr; }
  .cooking-grid { grid-template-columns: 1fr; }
  .values-photos { grid-template-columns: repeat(3, 1fr); }
  .values-photos img:nth-child(4), .values-photos img:nth-child(5) { display: none; }
  .roles-filters { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .careers-hero, .values-section, .support-section, .floor-section,
  .whyjoin-section, .roles-section, .hiring-section, .cooking-section {
    padding-left: 20px; padding-right: 20px;
  }
  .careers-hero h1 { font-size: 24px; }
  .values-grid, .support-grid, .whyjoin-grid, .cooking-grid { grid-template-columns: 1fr; }
  .values-photos { grid-template-columns: repeat(2, 1fr); }
  .values-photos img:nth-child(3) { display: none; }
  .hiring-step { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---- Hiring step descriptions (expandable) ---- */
.hiring-step-desc {
  width: 100%;
  background: #fff;
  font-size: 13.5px;
  color: #6b6860;
  line-height: 1.6;
  text-align: left;
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.hiring-step-desc.dark { background: #0e3a1d; color: rgba(255,255,255,0.7); }
.hiring-step-desc.open {
  max-height: 200px;
  opacity: 1;
  padding: 14px 22px 20px;
}
.plus-circle { transition: transform 0.2s ease; cursor: pointer; }
.plus-circle.open { transform: rotate(45deg); }

/* ---- Ashby embed placeholder ---- */
.ashby-embed-placeholder {
  background: #f3f0e7;
  border-radius: 14px;
  padding: 48px 32px;
  text-align: center;
}
.ashby-embed-placeholder p {
  font-size: 14.5px;
  color: #6b6860;
  margin-bottom: 20px;
}

/* ================================================
   PARTNER PROGRAM PAGE
   ================================================ */

/* ---- Hero (dark green) ---- */
.pp-hero { background: #0a2818; padding: 64px 48px 0; }
.pp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 64px;
}
.pp-hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.08;
  color: #f7ece0;
  margin-bottom: 24px;
}
.pp-hero-text p {
  font-size: 16px;
  color: rgba(247,236,224,0.75);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 28px;
}
.btn-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f3f0e7;
  color: #150019;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-cream:hover { background: #fff; }
.pp-hero-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3.6; }
.pp-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Our partnerships ---- */
.pp-partnerships { background: #fff; padding: 96px 48px; text-align: center; }
.pp-partnerships h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: #150019;
  margin-bottom: 20px;
}
.pp-partnerships .lead {
  font-size: 15.5px;
  color: #2a2030;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 56px;
}
.pp-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.pp-card {
  background: #f3f0e7;
  border-radius: 16px;
  padding: 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pp-card svg { width: 28px; height: 28px; stroke: #150019; fill: none; stroke-width: 1.5; }
.pp-card h3 { font-size: 19px; font-weight: 700; color: #150019; margin: 28px 0 10px; }
.pp-card p { font-size: 13.5px; color: #6b6860; line-height: 1.6; }

/* ---- Why work with Nory ---- */
.pp-whywork { background: #f3f0e7; padding: 96px 48px; text-align: center; }
.pp-whywork h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 42px;
  color: #150019;
  margin-bottom: 56px;
}
.pp-whywork-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pp-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}
.pp-feature-card h3 { font-size: 22px; font-weight: 700; color: #150019; margin-bottom: 10px; }
.pp-feature-card p { font-size: 14px; color: #6b6860; line-height: 1.6; max-width: 320px; }
.pp-feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.pp-mobile-mockup {
  background: #ebe7dc;
  border-radius: 14px;
  padding: 18px;
}
.pp-mobile-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  margin: 0 auto;
}
.pp-mobile-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pp-mobile-card-head strong { font-size: 15px; color: #150019; }
.pp-mobile-card-head select-like { font-size: 12px; color: #8a8780; }
.pp-mobile-tabs { display: flex; gap: 16px; font-size: 12.5px; font-weight: 600; color: #8a8780; margin-bottom: 14px; border-bottom: 1px solid #ebe7dc; padding-bottom: 8px; }
.pp-mobile-tabs span.active { color: #7c64f5; border-bottom: 2px solid #7c64f5; padding-bottom: 8px; }
.pp-mobile-label { font-size: 11px; color: #8a8780; margin-bottom: 10px; }
.pp-shift-row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f6f4ee; }
.pp-shift-row:last-child { border-bottom: none; }
.pp-shift-person { display: flex; align-items: center; gap: 8px; }
.pp-avatar-circle { width: 26px; height: 26px; border-radius: 50%; background: #cbd5e0; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; }
.pp-shift-person .name { font-size: 12.5px; font-weight: 600; color: #150019; }
.pp-shift-person .sub { font-size: 10.5px; color: #aaa6a0; }
.pp-shift-time { font-size: 11.5px; color: #8a8780; text-align: right; }
.pp-shift-time .alert { color: #e8804a; }
.pp-check-circle { width: 22px; height: 22px; border-radius: 50%; background: #7c64f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pp-check-circle svg { width: 11px; height: 11px; stroke: #fff; }

.pp-table-mockup { background: #ebe7dc; border-radius: 14px; padding: 18px; }
.pp-table-card { background: #fff; border-radius: 10px; padding: 16px; }
.pp-table-head { display: grid; grid-template-columns: 24px 1.4fr 1fr 1fr; gap: 8px; font-size: 11px; color: #8a8780; font-weight: 600; padding-bottom: 10px; border-bottom: 1px solid #f0ede6; margin-bottom: 6px; }
.pp-table-row { display: grid; grid-template-columns: 24px 1.4fr 1fr 1fr; gap: 8px; align-items: center; padding: 7px 0; font-size: 12.5px; color: #150019; }
.pp-table-row .check { width: 14px; height: 14px; border-radius: 3px; background: #150019; display: flex; align-items: center; justify-content: center; }
.pp-table-row .check svg { width: 9px; height: 9px; stroke: #fff; }
.pp-table-footer { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; background: #150019; border-radius: 8px; padding: 8px 12px; }
.pp-table-footer span { font-size: 12px; color: #fff; }
.pp-table-footer .actions { display: flex; gap: 10px; font-size: 11.5px; color: rgba(255,255,255,0.5); }

.pp-chat-mockup { background: #ebe7dc; border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.pp-chat-bubble {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  color: #150019;
  line-height: 1.45;
  max-width: 85%;
  align-self: flex-start;
}
.pp-chat-bubble.sent {
  background: #7c64f5;
  color: #fff;
  align-self: flex-end;
}

/* ---- You're in great company (reuses backed-logos classes) ---- */
.pp-company { background: #f3f0e7; padding: 0 0 96px; text-align: center; }
.pp-company h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 38px;
  color: #150019;
  margin-bottom: 16px;
}
.pp-company .lead { font-size: 15px; color: #6b6860; margin-bottom: 40px; }

/* ---- Experience the power of Nory (green split) ---- */
.pp-experience-wrap { max-width: 1280px; margin: 100px auto; padding: 0 48px; }
.pp-experience {
  background: #0a2818;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.pp-experience-text { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.pp-experience-text h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  color: #f7ece0;
  margin-bottom: 18px;
}
.pp-experience-text p { font-size: 14.5px; color: rgba(247,236,224,0.75); line-height: 1.6; margin-bottom: 24px; max-width: 380px; }
.btn-outline-cream {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #f7ece0;
  border: 1.5px solid rgba(247,236,224,0.4);
  border-radius: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer;
}
.btn-outline-cream:hover { background: rgba(247,236,224,0.08); border-color: #f7ece0; }
.pp-experience-img { width: 100%; height: 100%; min-height: 320px; }
.pp-experience-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Final CTA + Form ---- */
.pp-cta-section { background: #f3f0e7; padding: 96px 48px; }
.pp-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.pp-cta-text h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  color: #150019;
  margin-bottom: 16px;
}
.pp-cta-text p { font-size: 15px; color: #2a2030; line-height: 1.6; max-width: 380px; }

.pp-form-card { background: #fff; border-radius: 16px; padding: 32px; }
.pp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.pp-field { position: relative; }
.pp-field label {
  position: absolute;
  top: -7px; left: 12px;
  background: #fff;
  padding: 0 4px;
  font-size: 11px;
  color: #8a8780;
}
.pp-field input {
  width: 100%;
  border: 1px solid #d8d3c6;
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #150019;
}
.pp-field input:focus { outline: none; border-color: #7c64f5; }
.pp-form-full { margin-bottom: 16px; }
.pp-form-disclaimer { font-size: 12.5px; color: #6b6860; margin: 8px 0 18px; }
.pp-form-card .btn-near-black { width: 100%; padding: 14px; font-size: 15px; }

/* ================================================
   PARTNER PROGRAM RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .pp-hero-inner { grid-template-columns: 1fr; }
  .pp-cards-grid { grid-template-columns: 1fr; }
  .pp-feature-card, .pp-feature-row { grid-template-columns: 1fr; }
  .pp-experience { grid-template-columns: 1fr; }
  .pp-experience-img { min-height: 260px; }
  .pp-cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .pp-hero, .pp-partnerships, .pp-whywork, .pp-cta-section { padding-left: 20px; padding-right: 20px; }
  .pp-hero h1 { font-size: 36px; }
  .pp-partnerships h2, .pp-whywork h2, .pp-company h2 { font-size: 30px; }
  .pp-experience-wrap { padding: 0 20px; }
  .pp-form-row { grid-template-columns: 1fr; }
}

/* ================================================
   BLOG PAGE
   ================================================ */

.page-blogs {background: #f4f0e7}

/* ---- Hero ---- */
.blog-hero { background: #f3f0e7; padding: 64px 48px 0; }
.blog-hero-inner { max-width: 1100px; margin: 0 auto; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #6b6860;
  margin-bottom: 20px;
}
.blog-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #7c64f5; }
.blog-hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  color: #150019;
  margin-bottom: 40px;
}

/* ---- Featured post card ---- */
.blog-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.blog-featured-visual {
  background: #aeabfc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.blog-featured-visual img { max-width: 100%; }
.blog-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.blog-featured-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #150019;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 420px;
}
.blog-featured-body p {
  font-size: 14px;
  color: #6b6860;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 420px;
}
.blog-featured-date { font-size: 12.5px; color: #8a8780; font-weight: 600; }
.blog-featured-cta {
  position: absolute;
  right: 40px;
  bottom: 40px;
}

/* ---- See Nory in action banner ---- */
.blog-banner {
  background: #aeabfc;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;
}
.blog-banner-text h3 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #150019;
  margin-bottom: 8px;
}
.blog-banner-text p {
  font-size: 13.5px;
  color: rgba(21,0,25,0.7);
  max-width: 480px;
  line-height: 1.5;
}
.blog-banner-icon svg { width: 28px; height: 28px; stroke: #150019; }

/* ---- Explore by topic ---- */
.blog-explore { background: #f3f0e7; padding: 0 48px 96px; }
.blog-explore-inner { max-width: 1100px; margin: 0 auto; }
.blog-explore h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: #150019;
  text-align: center;
  margin-bottom: 32px;
}
.blog-search {
  position: relative;
  max-width: 100%;
  margin-bottom: 24px;
}
.blog-search svg {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  stroke: #8a8780;
}
.blog-search input {
  width: 100%;
  border: 1px solid #d8d3c6;
  border-radius: 10px;
  padding: 13px 16px 13px 42px;
  font-size: 14px;
  font-family: inherit;
  color: #150019;
  background: #fff;
}
.blog-search input:focus { outline: none; border-color: #7c64f5; }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.blog-filter-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #150019;
  background: #fff;
  border: 1px solid #e5e1d6;
  cursor: pointer;
  transition: all 0.15s;
}
.blog-filter-pill:hover { border-color: #150019; }
.blog-filter-pill.active { background: #150019; color: #fff; border-color: #150019; }

/* ---- Blog post grid ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 4/3.2;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-img.dark { background: #3b0304; display: flex; align-items: center; justify-content: center; padding: 20px; }
.blog-card-img.dark img { width: auto; max-height: 90%; object-fit: contain; }
.blog-card-img.lavender { background: #aeabfc; display: flex; align-items: center; justify-content: center; padding: 20px; }
.blog-card-img.lavender img { width: auto; max-height: 90%; object-fit: contain; }
.blog-card-img.chart { background: #150019; display: flex; align-items: center; justify-content: center; padding: 20px; }

.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #150019;
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card-body p {
  font-size: 13px;
  color: #6b6860;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-date { font-size: 12px; color: #8a8780; font-weight: 600; }

.blog-load-more { text-align: center; }

/* ---- Bottom CTA strip + final CTA (reuses .final-cta look) ---- */
.blog-cta-strip {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 0 48px;
}
.blog-cta-strip-inner {
  background: #0a2818;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.blog-cta-strip-text { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.blog-cta-strip-text h2 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  color: #f7ece0;
  margin-bottom: 16px;
}
.blog-cta-strip-text p {
  font-size: 14px;
  color: rgba(247,236,224,0.75);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 360px;
}
.blog-cta-strip-img { width: 100%; height: 100%; min-height: 280px; }
.blog-cta-strip-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================================================
   BLOG RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-cta { position: static; margin-top: 20px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-cta-strip-inner { grid-template-columns: 1fr; }
  .blog-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .blog-hero, .blog-explore { padding-left: 20px; padding-right: 20px; }
  .blog-cta-strip { padding: 0 20px; }
  .blog-hero h1 { font-size: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-explore h2 { font-size: 28px; }
}

/* ================================================
   SUCCESS STORIES INDEX PAGE
   ================================================ */
.page-success-stories {background: #f4f0e7}

/* ---- Hero ---- */
.ss-hero { background: #f3f0e7; padding: 64px 48px 0; }
.ss-hero-inner { max-width: 1100px; margin: 0 auto; }
.ss-hero h1 {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.2;
  color: #150019;
  margin-bottom: 20px;
}
.ss-hero-inner > p {
  font-size: 15px;
  color: #6b6860;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}

/* ---- Featured story card ---- */
.ss-featured {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.ss-featured-img { width: 100%; height: 100%; min-height: 280px; }
.ss-featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ss-featured-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: #150019;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 380px;
}
.ss-featured-body p {
  font-size: 14px;
  color: #6b6860;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 380px;
}
.ss-featured-date { font-size: 12.5px; color: #8a8780; font-weight: 600; }

/* ---- See Nory in action banner (reuses .blog-banner) + Book a chat floating pill ---- */
.ss-banner-wrap { max-width: 1100px; margin: 0 auto 56px; position: relative; }
.ss-floating-cta {
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
}

/* ---- Story grid ---- */
.ss-grid-section { background: #f3f0e7; padding: 0 48px 96px; }
.ss-grid-inner { max-width: 1100px; margin: 0 auto; }
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.ss-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ss-card-img { width: 100%; aspect-ratio: 4/3.2; overflow: hidden; }
.ss-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.ss-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #150019;
  line-height: 1.4;
  margin-bottom: 10px;
}
.ss-card-body p {
  font-size: 13px;
  color: #6b6860;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.ss-card-date { font-size: 12px; color: #8a8780; font-weight: 600; }

.ss-load-more { text-align: center; }

/* ================================================
   SUCCESS STORIES RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .ss-featured { grid-template-columns: 1fr; }
  .ss-featured-img { min-height: 220px; }
  .ss-grid { grid-template-columns: 1fr 1fr; }
  .ss-floating-cta { position: static; margin-top: 16px; display: inline-block; }
}

@media (max-width: 640px) {
  .ss-hero, .ss-grid-section { padding-left: 20px; padding-right: 20px; }
  .ss-hero h1 { font-size: 28px; }
  .ss-grid { grid-template-columns: 1fr; }
}

/* ================================================
   SUCCESS STORY DETAIL PAGE (template)
   ================================================ */
   .page-success-stories-details {background: #f4f0e7}

   .story-detail-hero { background: #f3f0e7; padding: 64px 48px 0; }
   .story-detail-inner { max-width: 1100px; margin: 0 auto; }
   .story-detail-hero h1 {
     font-family: 'Lilita One', sans-serif;
     font-weight: 400;
     font-size: 38px;
     line-height: 1.2;
     color: #150019;
     margin-bottom: 40px;
     max-width: 900px;
   }
   .story-detail-banner {
     width: 100%;
     aspect-ratio: 16/9;
     border-radius: 16px;
     overflow: hidden;
     margin-bottom: 56px;
   }
   .story-detail-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
   
   .story-detail-body { background: #f3f0e7; padding: 0 48px 96px; }
   .story-detail-grid {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 280px 1fr;
     gap: 48px;
     align-items: start;
   }
   
   /* ---- Sidebar ---- */
   .story-sidebar { position: sticky; top: 24px; }
   .story-sidebar-card {
     background: #fff;
     border-radius: 16px;
     padding: 28px;
     margin-bottom: 16px;
   }
   .story-sidebar-logo { height: 28px; margin-bottom: 24px; }
   .story-sidebar-logo img { height: 100%; width: auto; object-fit: contain; }
   .story-stat-label {
     font-size: 12.5px;
     color: #8a8780;
     margin-bottom: 4px;
     margin-top: 20px;
   }
   .story-stat-label:first-of-type { margin-top: 0; }
   .story-stat-value {
     font-size: 16px;
     font-weight: 700;
     color: #150019;
   }
   .story-stat-value.big { font-size: 19px; }
   
   .story-sidebar-promo {
     background: #0a2818;
     border-radius: 16px;
     overflow: hidden;
   }
   .story-sidebar-promo-img { width: 100%; aspect-ratio: 4/3.2; overflow: hidden; }
   .story-sidebar-promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
   .story-sidebar-promo-body { padding: 22px; }
   .story-sidebar-promo-body p {
     font-size: 14.5px;
     font-weight: 700;
     color: #fff;
     line-height: 1.4;
     margin-bottom: 14px;
   }
   .story-sidebar-promo-body a {
     font-size: 13px;
     font-weight: 600;
     color: #fff;
     text-decoration: underline;
     display: inline-flex;
     align-items: center;
     gap: 5px;
   }
   .story-sidebar-promo-body a svg { width: 13px; height: 13px; }
   
   /* ---- Article content ---- */
   .story-article h2 {
     font-family: 'Lilita One', sans-serif;
     font-weight: 400;
     font-size: 26px;
     color: #150019;
     margin: 48px 0 20px;
     line-height: 1.25;
   }
   .story-article > h2:first-child { margin-top: 0; }
   .story-article p {
     font-size: 15px;
     color: #2a2030;
     line-height: 1.7;
     margin-bottom: 18px;
     max-width: 680px;
   }
   .story-article ul {
     list-style: disc;
     margin: 0 0 18px 20px;
   }
   .story-article ul li {
     font-size: 15px;
     color: #2a2030;
     line-height: 1.7;
     margin-bottom: 8px;
   }
   
   .story-quote {
     background: #fff;
     border-radius: 14px;
     padding: 32px;
     margin: 28px 0 40px;
     position: relative;
   }
   .story-quote svg { width: 28px; height: 22px; fill: #7c64f5; margin-bottom: 12px; }
   .story-quote blockquote {
     font-size: 17px;
     font-weight: 700;
     color: #150019;
     line-height: 1.5;
     margin-bottom: 14px;
   }
   .story-quote cite {
     font-size: 13px;
     font-style: normal;
     color: #8a8780;
   }
   
   .story-article-img {
     width: 100%;
     aspect-ratio: 16/10;
     border-radius: 14px;
     overflow: hidden;
     margin: 8px 0 40px;
   }
   .story-article-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

   /* ---- Story detail: 3-stat row ---- */
  .story-stats-row-3 {
  width: 100%;
  max-width: 1100px;
  margin: 8px auto 40px;
  box-sizing: border-box;
  border-radius: 18px;
  display: flex;
  justify-content: stretch;
  gap: 16px;
}

.story-stat-box-3 {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.story-stat-box-3 .num {
  font-family: 'Lilita One', sans-serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: #150019;
  margin: 24px 0;
}
.story-stat-box-3 .label {
  font-size: 14px;
  font-weight: 600;
  color: #2a2030;
}

@media (max-width: 640px) {
  .story-stats-row-3 { grid-template-columns: 1fr; }
}
   
   /* ================================================
      STORY DETAIL RESPONSIVE
      ================================================ */
   @media (max-width: 900px) {
     .story-detail-grid { grid-template-columns: 1fr; }
     .story-sidebar { position: static; max-width: 380px; }
   }
   
   @media (max-width: 640px) {
     .story-detail-hero, .story-detail-body { padding-left: 20px; padding-right: 20px; }
     .story-detail-hero h1 { font-size: 28px; }
     .story-article h2 { font-size: 22px; }
     .story-quote blockquote { font-size: 15px; }
   }
   
   header:has(+ .story-detail-hero) .nav { background: #f3f0e7; }
   header:has(+ .story-detail-hero) .nav-link,
   header:has(+ .story-detail-hero) .btn-nav-login { color: #150019; }
   header:has(+ .story-detail-hero) .nav-link:hover,
   header:has(+ .story-detail-hero) .nav-link.open,
   header:has(+ .story-detail-hero) .btn-nav-login:hover {
     background: rgba(21,0,25,0.06); color: #150019;
   }
   header:has(+ .story-detail-hero) .nav-logo svg text { fill: #150019; }
   header:has(+ .story-detail-hero) .btn-nav-cta { background: #150019; color: #fff; }
   header:has(+ .story-detail-hero) .btn-nav-cta:hover { background: #2d0935; }