/* Broken to Bionic — Empathy theme (white & pink) with soft 3D */
:root {
  --bg: #fffafb;
  --fg: #2c1a20;
  --muted: #8a6b75;
  --cream: #fff5f3;
  --blush: #ffe4ea;
  --petal: #ffc6d2;
  --rose: #f48aa3;
  --primary: #e85a7a;
  --primary-fg: #ffffff;
  --border: #f5d9df;
  --card: #ffffff;
  --radius: 1.25rem;
  --shadow-soft: 0 30px 60px -30px rgba(244, 138, 163, 0.45),
                 0 8px 24px -12px rgba(244, 138, 163, 0.25);
  --shadow-pill: 0 12px 30px -12px rgba(232, 90, 122, 0.4);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Layout */
.container { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }

/* Decorative pink blobs */
.decor {
  position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -1;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55;
  animation: drift 14s ease-in-out infinite;
}
.blob.b1 { width: 520px; height: 520px; top: -120px; left: -120px; background: var(--petal); }
.blob.b2 { width: 600px; height: 600px; top: 30%; right: -200px; background: var(--blush); animation-delay: -4s; }
.blob.b3 { width: 480px; height: 480px; bottom: -160px; left: 20%; background: var(--rose); opacity: 0.35; animation-delay: -8s; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-30px) scale(1.08); }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-18px) rotate(2deg); }
}
.float { animation: float-y 7s ease-in-out infinite; }

/* 3D utility classes */
.soft-3d {
  background:
    radial-gradient(120% 100% at 20% 0%, #ffffff 0%, #fff0f3 60%, var(--petal) 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.9),
    inset 0 -10px 30px rgba(244,138,163,0.25),
    0 30px 50px -25px rgba(244,138,163,0.4);
  border-radius: var(--radius);
}
.glass-card {
  background: linear-gradient(180deg, #ffffffee, #fff0f3cc);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
  border-radius: var(--radius);
}
.pink-gradient {
  background-image: linear-gradient(135deg, var(--rose), var(--petal));
  color: #fff;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,250,251,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; color: var(--primary);
}
.brand-name { font-family: var(--font-display); font-size: 1.25rem; }
.nav { display: flex; align-items: center; gap: .25rem; font-size: .95rem; }
.nav a {
  padding: .5rem .9rem; border-radius: 999px; color: var(--muted);
  transition: all .2s;
}
.nav a:hover { color: var(--fg); background: var(--blush); }
.nav a.active { color: var(--fg); background: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  height: 2.5rem; padding: 0 1.1rem; border-radius: 999px;
  font-weight: 500; font-size: .9rem; cursor: pointer; border: none;
  transition: transform .15s, opacity .15s;
}
.btn-primary {
  background-image: linear-gradient(135deg, var(--rose), var(--primary));
  color: #fff; box-shadow: var(--shadow-pill);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: #fff; border: 1px solid var(--border); color: var(--fg); }

/* Hero */
.hero {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: center; padding: 4rem 0 2rem;
}
.hero h1 { font-size: 3.25rem; line-height: 1.05; }
.hero p.lead { color: var(--muted); font-size: 1.1rem; margin: 1rem 0 1.75rem; }
.hero-image-wrap {
  border-radius: 2rem; padding: 1rem;
}
.hero-image-wrap img { border-radius: 1.5rem; }
.eyebrow {
  display: inline-block; font-size: .75rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--primary); margin-bottom: .75rem;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; padding: 2rem 0; }
  .hero h1 { font-size: 2.4rem; }
}

/* Section */
section.block { padding: 3rem 0; }
.section-title { font-size: 2.25rem; margin-bottom: .5rem; }
.section-sub { color: var(--muted); margin-bottom: 2rem; }

/* Module cards grid */
.modules-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.module-card {
  display: block; padding: 1.5rem; transition: transform .2s;
  position: relative;
}
.module-card:hover { transform: translateY(-4px); }
.module-card .thumb {
  width: 110px; height: 110px; margin: 0 auto 1rem;
  display: grid; place-items: center;
}
.module-card .thumb img { width: 80%; height: 80%; object-fit: contain; }
.module-card h3 { font-size: 1.25rem; text-align: center; }
.module-card .num {
  display: block; text-align: center; color: var(--primary);
  font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .4rem;
}
.module-card p { color: var(--muted); font-size: .9rem; text-align: center; margin: .6rem 0 0; }
.module-card .lock {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--blush); color: var(--primary);
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: .85rem;
}

/* Module reader */
.module-header { text-align: center; padding: 3rem 0 2.5rem; }
.module-header .icon-tile {
  width: 11rem; height: 11rem; margin: 0 auto 1.5rem;
  display: grid; place-items: center; border-radius: 1.5rem;
}
.module-header .icon-tile img { width: 75%; height: 75%; object-fit: contain; }
.module-header h1 { font-size: 3rem; margin: .5rem 0; }
.module-header .tagline { font-style: italic; color: var(--muted); font-size: 1.1rem; }
.module-header .meta { color: var(--muted); font-size: .8rem; margin-top: .5rem; }

.part { padding: 2rem 2.5rem; margin: 0 0 2rem; }
@media (max-width: 640px) { .part { padding: 1.5rem; } }
.part .eyebrow { margin-bottom: .25rem; }
.part h2 { font-size: 1.85rem; margin-bottom: .5rem; }
.part .intro { color: var(--muted); margin-bottom: 1.25rem; }
.items { list-style: none; padding: 0; margin: 1rem 0 0; }
.items li { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.items .num-pill {
  flex: 0 0 1.5rem; height: 1.5rem; border-radius: 50%;
  display: grid; place-items: center;
  background-image: linear-gradient(135deg, var(--rose), var(--primary));
  color: #fff; font-size: .7rem; font-weight: 600;
  margin-top: .2rem;
}
.items h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.items p { margin: 0; color: #4a3037; }
.tip {
  margin-top: 1.5rem; padding: 1.25rem; display: flex; gap: .75rem;
}
.tip .q { color: var(--primary); font-size: 1.25rem; line-height: 1; }
.tip .label {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--primary);
}
.tip p { margin: .3rem 0 0; font-style: italic; }

.module-nav { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.module-nav a { padding: 1.25rem; transition: transform .15s; }
.module-nav a:hover { transform: translateY(-2px); }
.module-nav .label { font-size: .75rem; color: var(--muted); }
.module-nav .title { font-family: var(--font-display); font-size: 1.1rem; margin-top: .25rem; }
.module-nav .right { text-align: right; }

/* Subscribe page */
.subscribe-card {
  max-width: 28rem; margin: 4rem auto; padding: 2.5rem; text-align: center;
}
.price { font-family: var(--font-display); font-size: 3rem; color: var(--primary); }
.price .per { font-size: .9rem; color: var(--muted); font-family: var(--font-sans); }
.feature-list { list-style: none; padding: 0; text-align: left; margin: 1.5rem 0; }
.feature-list li { padding: .5rem 0; color: var(--fg); display: flex; gap: .6rem; }
.feature-list li::before { content: "♥"; color: var(--primary); }

/* Chat */
.chat-wrap { max-width: 48rem; margin: 0 auto; padding: 2rem 1rem; }
.chat-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.chat-head .avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
}
.chat-head .avatar img { width: 100%; height: 100%; object-fit: cover; }
.chat-box {
  border-radius: 1.5rem; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 480px; height: calc(100vh - 260px);
}
.messages { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.empty-state { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.empty-state .av { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden; }
.empty-state .av img { width: 100%; height: 100%; object-fit: cover; }
.msg { max-width: 80%; padding: .75rem 1rem; border-radius: 1.25rem; font-size: .95rem; line-height: 1.5; }
.msg.user { align-self: flex-end; background: var(--primary); color: #fff; border-bottom-right-radius: .4rem; }
.msg.bot { align-self: flex-start; background: #fff; border: 1px solid var(--border); border-bottom-left-radius: .4rem; }
.msg.bot p { margin: 0 0 .6rem; }
.msg.bot p:last-child { margin-bottom: 0; }
.msg.bot h3, .msg.bot h4 { font-size: 1rem; margin: .8rem 0 .3rem; color: var(--fg); }
.msg.bot h3:first-child, .msg.bot h4:first-child { margin-top: 0; }
.msg.bot ul, .msg.bot ol { margin: .4rem 0 .6rem; padding-left: 1.25rem; }
.msg.bot li { margin-bottom: .25rem; }
.msg.bot strong { color: var(--fg); }
.msg.bot em { font-style: italic; }
.msg.bot code { background: var(--cream); padding: .1rem .35rem; border-radius: .3rem; font-size: .85em; }
.msg.bot hr { border: none; border-top: 1px solid var(--border); margin: .75rem 0; }
.suggestions { padding: .25rem 1rem 1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.suggestions button {
  background: #fff; border: 1px solid var(--border); padding: .45rem .9rem;
  border-radius: 999px; font-size: .8rem; cursor: pointer; color: #5a4048;
}
.suggestions button:hover { background: var(--cream); }
.composer {
  border-top: 1px solid var(--border); padding: .75rem;
  background: rgba(255,250,251,.7); display: flex; gap: .5rem;
}
.composer textarea {
  flex: 1; border: 1px solid var(--border); border-radius: 1rem; padding: .75rem;
  font-family: inherit; font-size: .95rem; resize: none; outline: none;
  background: #fff;
}
.composer textarea:focus { border-color: var(--rose); }
.send-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background-image: linear-gradient(135deg, var(--rose), var(--primary));
  color: #fff; border: none; cursor: pointer; display: grid; place-items: center;
  align-self: flex-end;
}
.disclaimer { text-align: center; color: var(--muted); font-size: .75rem; margin-top: 1rem; }

/* Coming Soon */
.coming-soon-card {
  max-width: 36rem; padding: 3rem; text-align: center;
}
.coming-soon-heart {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.5rem;
  display: grid; place-items: center; font-size: 2rem; color: var(--primary);
}
.coming-soon h1 {
  font-size: 2.75rem; line-height: 1.1; margin-bottom: 1rem;
}
.coming-soon .lead {
  color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.6;
}
.coming-soon-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-bottom: 2rem;
}
.coming-soon-feature {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--fg);
}
.coming-soon-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem; color: var(--primary);
  flex-shrink: 0;
}
.coming-soon-form {
  display: flex; gap: .5rem; max-width: 24rem; margin: 0 auto;
}
.coming-soon-input {
  flex: 1; border: 1px solid var(--border); border-radius: 999px;
  padding: 0 1rem; height: 2.5rem; font-family: inherit; font-size: .9rem;
  outline: none; background: #fff;
}
.coming-soon-input:focus { border-color: var(--rose); }
.coming-soon-msg { font-size: .9rem; margin-top: 1rem; }
.coming-soon-disclaimer {
  color: var(--muted); font-size: .75rem; margin-top: 1rem;
}
@media (max-width: 820px) {
  .coming-soon h1 { font-size: 2rem; }
  .coming-soon-form { flex-direction: column; }
}

/* Footer */
.site-footer {
  margin-top: 5rem; border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.4); backdrop-filter: blur(6px);
}
.site-footer .row {
  padding: 2.5rem 0; display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
  color: var(--muted); font-size: .85rem;
}
.site-footer .brand-name { color: var(--fg); }
</content>
</invoke>