/* HR Bestie — People Ops OS landing page
   Warm professional SMB · magenta / deep plum accent · mobile-first */

:root {
  --plum: #6B1F4A;
  --plum-deep: #4A1434;
  --magenta: #C2185B;
  --magenta-soft: #E91E8C;
  --blush: #FDF2F7;
  --cream: #FFFBF8;
  --ink: #1C1218;
  --ink-muted: #5C4A54;
  --border: #E8D5DE;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(74, 20, 52, 0.08);
  --shadow-lg: 0 16px 48px rgba(74, 20, 52, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --max: 1080px;
  --narrow: 720px;
  --sticky-cta-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.has-sticky-cta {
  padding-bottom: calc(var(--sticky-cta-h) + 0.5rem);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--magenta);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--plum);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--magenta-soft);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  flex-wrap: wrap;
}

.logo:hover {
  color: var(--plum);
}

.logo-text {
  font-family: var(--display);
  font-size: 1.15rem;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--magenta);
  padding: 0.15rem 0.45rem;
  background: var(--blush);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--plum);
}

.nav .btn {
  color: var(--white);
}

.nav .btn:hover {
  color: var(--white);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--plum);
  border-radius: 1px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--plum));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(194, 24, 91, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--magenta-soft), var(--plum));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--magenta);
  background: var(--blush);
  color: var(--plum-deep);
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.25rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--blush);
}

.section-eyebrow,
.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--magenta);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
}

h1 {
  font-size: clamp(1.85rem, 4.8vw, 3rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.section-intro {
  max-width: 40rem;
  color: var(--ink-muted);
  margin: 0 0 2rem;
  font-size: 1.1rem;
}

.accent-text {
  color: var(--magenta);
}

.muted {
  color: var(--ink-muted);
}

/* Hero */
.hero {
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 95% 5%, rgba(233, 30, 140, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 90%, rgba(107, 31, 74, 0.1), transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(194, 24, 91, 0.06), transparent 40%),
    var(--cream);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}

.hero-mascot-wrap {
  display: inline-block;
  position: relative;
  margin: 0 0 1.1rem;
}

.hero-mascot-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.35), rgba(107, 31, 74, 0.15));
  filter: blur(8px);
  z-index: 0;
}

.hero-brand {
  display: block;
  margin-top: 0.65rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.01em;
}

.lede {
  font-size: 1.125rem;
  color: var(--ink-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero-price-line {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.hero-price-line strong {
  color: var(--plum);
  font-family: var(--display);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--magenta), var(--plum));
}

.hero-card-label {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--magenta);
}

.hero-card ul {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li strong {
  color: var(--ink);
}

.hero-card-price {
  margin: 1rem 0 0;
  padding-top: 0.85rem;
  border-top: 2px solid var(--blush);
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-align: center;
}

.hero-card-price span {
  font-family: var(--display);
  font-weight: 700;
  color: var(--plum);
}

/* Trust strip */
.trust-strip {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-inner {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 700px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .trust-strip-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: rgba(233, 30, 140, 0.35);
  color: #ffd6ea;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.trust-item span {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.8;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-accent {
  border-top: 3px solid var(--magenta);
}

.card-tag {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
}

.card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.975rem;
}

.callout {
  background: var(--white);
  border-left: 4px solid var(--magenta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.975rem;
}

/* Module grid */
.module-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  display: flex;
  flex-direction: column;
}

.module:hover {
  border-color: #d4a0b8;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.module.featured {
  background: linear-gradient(160deg, var(--plum-deep), var(--magenta));
  border-color: transparent;
  color: var(--white);
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .module.featured {
    grid-column: span 2;
  }
}

.module.featured h3,
.module.featured .module-num {
  color: var(--white);
}

.module.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.module.featured .module-deliverables li {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
}

.module.featured .module-deliverables li::before {
  color: #ffd6ea;
}

.module-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--magenta);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.module-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--plum);
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  margin-bottom: 0.5rem;
}

.module p {
  margin: 0 0 0.75rem;
  font-size: 0.925rem;
  color: var(--ink-muted);
}

.module-deliverables {
  list-style: none;
  margin: auto 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid var(--border);
}

.module-deliverables li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.module-deliverables li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 700;
}

/* Setup steps */
.setup-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .setup-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.setup-steps li {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.step-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--plum));
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.setup-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.setup-steps p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--ink-muted);
}

.setup-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Audience */
.audience-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 700px) {
  .audience-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  position: relative;
  padding-left: 2.5rem;
  font-weight: 500;
}

.audience-list li::before {
  content: "✓";
  position: absolute;
  left: 1rem;
  color: var(--magenta);
  font-weight: 700;
}


/* Founder mix */
.founder-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .founder-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

.founder-photos {
  display: block;
  max-width: 420px;
  margin: 0 auto;
}

.founder-main,
.founder-accent {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--white);
}

.founder-main img,
.founder-accent img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.founder-stack { display: none; }

.founder-main-solo {
  border-radius: 1.25rem;
}

@media (min-width: 900px) {
  .founder-photos {
    margin: 0;
    max-width: none;
  }
}

.founder-copy h2 {
  margin-top: 0.35rem;
}

.founder-lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
}

.founder-signoff {
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .founder-photos {
    max-width: 320px;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: stretch;
  }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-card.primary {
  border-color: var(--magenta);
  box-shadow: var(--shadow-lg);
  position: relative;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--magenta), var(--plum)) border-box;
  border: 2px solid transparent;
}

.price-card.primary::before {
  content: "Best value";
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--magenta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

.price-card.muted-card {
  background: var(--blush);
}

.price {
  margin: 0.25rem 0 1.25rem;
}

.amount {
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--plum);
}

.amount-sm {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum);
}

.period {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.price-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-card li {
  padding: 0.4rem 0;
  padding-left: 1.35rem;
  position: relative;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.price-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--magenta);
  font-weight: 700;
}

.price-card .btn {
  width: 100%;
}

.price-card-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}

/* Not grid */
.not-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .not-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .not-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.not-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid var(--border);
}

.section:not(.section-alt) .not-item {
  background: var(--blush);
  border-color: transparent;
}

.not-item h3 {
  color: var(--plum);
  font-size: 1.05rem;
}

.not-item p {
  margin: 0;
  font-size: 0.925rem;
  color: var(--ink-muted);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details[open] {
  border-color: #d4a0b8;
  box-shadow: var(--shadow);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--ink-muted);
  font-size: 0.975rem;
}

/* Buy */
.buy-section {
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(233, 30, 140, 0.35), transparent 55%),
    linear-gradient(160deg, var(--plum-deep) 0%, var(--magenta) 100%);
  color: var(--white);
  text-align: center;
}

.buy-mascot {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: block;
}

.buy-section h2 {
  color: var(--white);
}

.buy-section .section-intro {
  color: rgba(255, 255, 255, 0.9);
  margin-inline: auto;
}

.buy-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(6px);
}

.buy-status {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.buy-detail {
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.buy-section .btn-primary {
  background: var(--white);
  color: var(--plum-deep);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.buy-section .btn-primary:hover {
  background: var(--blush);
  color: var(--plum);
}

.buy-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.buy-note a {
  color: var(--white);
  font-weight: 600;
}

.interest-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.interest-form input {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
}

.interest-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.buy-section .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.buy-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 251, 248, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(74, 20, 52, 0.1);
  padding: 0.65rem 0;
}

.sticky-cta[hidden] {
  display: none;
}

.sticky-cta-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-cta-price {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.sticky-cta-price strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--plum);
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none !important;
  }
  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-domain {
  margin: 0;
}

.footer-domain a,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-domain a:hover,
.footer-links a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.disclaimer {
  margin: 0 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 56rem;
}

.copyright {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.65;
}

/* Bestie mascot */
.logo-mascot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(107, 31, 74, 0.18);
}

.hero-mascot {
  position: relative;
  z-index: 1;
  display: block;
  width: 112px;
  height: 112px;
  margin: 0;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(107, 31, 74, 0.22);
}

@media (min-width: 768px) {
  .hero-mascot {
    width: 132px;
    height: 132px;
    border-radius: 32px;
  }
}

/* Also in the kit — collapsed secondary modules */
.module-grid-hero {
  grid-template-columns: 1fr;
  max-width: 42rem;
  margin-inline: auto;
}
.also-kit {
  margin-top: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.also-kit > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
}
.also-kit > summary::-webkit-details-marker { display: none; }
.also-kit > summary::after {
  content: "+";
  margin-left: auto;
  color: var(--magenta);
  font-size: 1.25rem;
  font-weight: 700;
}
.also-kit[open] > summary::after { content: "−"; }
.also-kit-hint {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.also-kit-grid {
  padding: 0 1.25rem 1.35rem;
}


/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
  margin-top: 1.25rem;
}
.waitlist-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.waitlist-form .form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
@media (min-width: 560px) {
  .waitlist-form .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.waitlist-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink, #1a1220);
}
.waitlist-form .optional {
  font-weight: 400;
  color: #6b6470;
}
.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid #d9d0d6;
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: #1a1220;
}
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  outline: 2px solid var(--plum, #6B1F4A);
  outline-offset: 1px;
  border-color: var(--plum, #6B1F4A);
}
.waitlist-form textarea {
  resize: vertical;
  min-height: 4.5rem;
}
.waitlist-form .btn-block {
  width: 100%;
  margin-top: 0.35rem;
}
.waitlist-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
