    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --rose:      #FF6B8A;
      --rose-soft: #FFCDD7;
      --rose-bg:   #FFF5F7;
      --mint:      #3CC9A4;
      --mint-soft: #C0F0E4;
      --mint-bg:   #F0FAF7;
      --sky:       #5BA4CF;
      --sky-soft:  #C9E3F5;
      --sky-bg:    #F0F7FC;
      --peach:     #FF9966;
      --peach-bg:  #FFF3ED;
      --dark:      #1A2535;
      --mid:       #3D4F66;
      --muted:     #7A8EA8;
      --light:     #F4F7FA;
      --white:     #FFFFFF;
      --border:    rgba(26,37,53,.08);
      --shadow-sm: 0 2px 8px rgba(26,37,53,.06);
      --shadow-md: 0 8px 28px rgba(26,37,53,.09);
      --shadow-lg: 0 20px 60px rgba(26,37,53,.12);
      --r-sm: 14px;
      --r-md: 20px;
      --r-lg: 28px;
      --r-xl: 36px;
      --ff-head: 'Playfair Display', Georgia, serif;
      --ff-body: 'Nunito', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff-body);
      background: #FAFBFD;
      color: var(--dark);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* ── DEMO HEADER ── */
    .demo-header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 0 24px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(12px);
    }
    .logo {
      font-family: var(--ff-head);
      font-size: 22px;
      color: var(--rose);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .logo span { color: var(--dark); }
    .header-nav { display: flex; gap: 8px; }
    .header-nav a {
      font-size: 13px;
      font-weight: 700;
      color: var(--mid);
      text-decoration: none;
      padding: 6px 12px;
      border-radius: 999px;
      transition: .2s;
    }
    .header-nav a:hover { background: var(--rose-bg); color: var(--rose); }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      padding: 14px 24px;
      font-size: 12px;
      color: var(--muted);
      display: flex;
      gap: 6px;
      align-items: center;
      max-width: 1060px;
      margin: 0 auto;
    }
    .breadcrumb a { color: var(--rose); text-decoration: none; font-weight: 600; }
    .breadcrumb span { opacity: .5; }

    /* ── LAYOUT ── */
    .page { max-width: 1060px; margin: 0 auto; padding: 0 20px 80px; }

    /* ── HERO ── */
    .hero {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-xl);
      background: linear-gradient(135deg, #FFF1F4 0%, #FFF8F0 40%, #F0F9FF 100%);
      border: 1px solid var(--border);
      padding: 48px 40px 48px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-lg);
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,138,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: 20%;
      width: 260px; height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(60,201,164,.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: var(--white);
      border: 1px solid var(--rose-soft);
      font-size: 12px;
      font-weight: 800;
      color: var(--rose);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 18px;
      box-shadow: var(--shadow-sm);
    }
    .hero h1 {
      font-family: var(--ff-head);
      font-size: clamp(36px, 5vw, 54px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--rose);
    }
    .hero-lead {
      font-size: 16px;
      color: var(--mid);
      max-width: 600px;
      line-height: 1.75;
      margin-bottom: 30px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 30px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: var(--r-md);
      font-family: var(--ff-body);
      font-size: 15px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: all .2s ease;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--rose) 0%, #FF8FA3 100%);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(255,107,138,.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,138,.45); }
    .btn-secondary {
      background: var(--white);
      color: var(--dark);
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--rose-soft); }
    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.7);
      border: 1px solid var(--border);
      font-size: 12px;
      font-weight: 700;
      color: var(--mid);
      backdrop-filter: blur(4px);
    }

    /* ── SECTION ── */
    .section { margin-bottom: 28px; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }
    .section-label::before {
      content: '';
      width: 18px; height: 2px;
      background: var(--rose);
      border-radius: 2px;
    }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 32px;
      box-shadow: var(--shadow-sm);
    }
    .card-title {
      font-family: var(--ff-head);
      font-size: 26px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .card-subtitle {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 24px;
      line-height: 1.65;
    }
    .prose p {
      font-size: 15px;
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 14px;
    }
    .prose p:last-child { margin-bottom: 0; }

    /* ── PRINCIPLES GRID ── */
    .principles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .principle-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-md);
      padding: 22px;
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }
    .principle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .principle-card:nth-child(1) { background: linear-gradient(135deg, var(--rose-bg), #FFF9F0); }
    .principle-card:nth-child(2) { background: linear-gradient(135deg, var(--mint-bg), #F5FFFB); }
    .principle-card:nth-child(3) { background: linear-gradient(135deg, var(--sky-bg), #F5FAFF); }
    .principle-card:nth-child(4) { background: linear-gradient(135deg, var(--peach-bg), #FFF8F0); }
    .principle-icon {
      width: 46px; height: 46px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 14px;
      box-shadow: var(--shadow-sm);
    }
    .principle-title {
      font-size: 16px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 7px;
    }
    .principle-text {
      font-size: 13.5px;
      color: var(--mid);
      line-height: 1.65;
    }

    /* ── STAGES ── */
    .stages-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .stage-card {
      border-radius: var(--r-lg);
      padding: 26px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform .2s, box-shadow .2s;
    }
    .stage-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .stage-card:nth-child(1) { background: linear-gradient(160deg, #FFF2F5 0%, #FFF9F0 100%); }
    .stage-card:nth-child(2) { background: linear-gradient(160deg, #F0FAF7 0%, #F0F7FF 100%); }
    .stage-num {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      width: fit-content;
    }
    .stage-card:nth-child(1) .stage-num { background: var(--rose-soft); color: var(--rose); }
    .stage-card:nth-child(2) .stage-num { background: var(--mint-soft); color: #2A9A7E; }
    .stage-title {
      font-family: var(--ff-head);
      font-size: 20px;
      color: var(--dark);
      font-weight: 700;
    }
    .stage-text {
      font-size: 14px;
      color: var(--mid);
      line-height: 1.65;
      flex: 1;
    }
    .stage-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: var(--r-sm);
      background: var(--white);
      border: 1.5px solid var(--border);
      font-size: 13.5px;
      font-weight: 800;
      color: var(--dark);
      text-decoration: none;
      transition: .2s;
      width: fit-content;
    }
    .stage-link:hover { border-color: var(--rose-soft); color: var(--rose); transform: translateX(3px); }
    .stage-link::after { content: '→'; }

    /* ── STEPS ── */
    .steps { display: flex; flex-direction: column; gap: 12px; }
    .step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      border-radius: var(--r-md);
      background: var(--light);
      border: 1px solid var(--border);
      transition: .2s;
    }
    .step:hover { background: var(--rose-bg); border-color: var(--rose-soft); }
    .step-num {
      flex: 0 0 36px;
      width: 36px; height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose-soft), var(--sky-soft));
      font-size: 14px;
      font-weight: 800;
      color: var(--dark);
      border: 1.5px solid var(--border);
    }
    .step-text { font-size: 14.5px; color: var(--mid); line-height: 1.65; padding-top: 6px; }

    /* ── FACTORS LIST ── */
    .factors { display: grid; gap: 10px; }
    .factor {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 16px 18px;
      border-radius: var(--r-md);
      background: var(--light);
      border: 1px solid var(--border);
    }
    .factor-dot {
      flex: 0 0 10px;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rose), var(--sky));
      margin-top: 5px;
    }
    .factor-text { font-size: 14.5px; color: var(--mid); line-height: 1.65; }

    /* ── HIGHLIGHT BANNER ── */
    .highlight {
      position: relative;
      overflow: hidden;
      border-radius: var(--r-xl);
      padding: 40px 40px;
      background: linear-gradient(135deg, #1A2535 0%, #2E3F58 100%);
      color: var(--white);
      box-shadow: var(--shadow-lg);
      margin-bottom: 28px;
    }
    .highlight::before {
      content: '';
      position: absolute;
      top: -100px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,138,.18) 0%, transparent 70%);
    }
    .highlight::after {
      content: '';
      position: absolute;
      bottom: -80px; left: 10%;
      width: 250px; height: 250px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(60,201,164,.15) 0%, transparent 70%);
    }
    .highlight-inner { position: relative; z-index: 1; }
    .highlight-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.15);
      font-size: 11px;
      font-weight: 800;
      color: rgba(255,255,255,.7);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-bottom: 16px;
    }
    .highlight h2 {
      font-family: var(--ff-head);
      font-size: clamp(24px, 3.5vw, 34px);
      color: var(--white);
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .highlight p {
      font-size: 15px;
      color: rgba(255,255,255,.72);
      line-height: 1.75;
      max-width: 680px;
    }

    /* ── LINKS GRID ── */
    .links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .link-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 26px;
      border-radius: var(--r-lg);
      text-decoration: none;
      border: 1.5px solid var(--border);
      transition: all .25s ease;
      position: relative;
      overflow: hidden;
    }
    .link-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      opacity: 0;
      transition: opacity .25s;
    }
    .link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .link-card:hover::before { opacity: 1; }
    .link-card:nth-child(1) { background: linear-gradient(160deg, var(--rose-bg), var(--white)); }
    .link-card:nth-child(1)::before { background: var(--rose); }
    .link-card:nth-child(2) { background: linear-gradient(160deg, var(--mint-bg), var(--white)); }
    .link-card:nth-child(2)::before { background: var(--mint); }
    .link-card:nth-child(3) { background: linear-gradient(160deg, var(--sky-bg), var(--white)); }
    .link-card:nth-child(3)::before { background: var(--sky); }
    .link-icon {
      width: 50px; height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--r-sm);
      background: var(--white);
      border: 1px solid var(--border);
      font-size: 24px;
      box-shadow: var(--shadow-sm);
    }
    .link-title {
      font-family: var(--ff-head);
      font-size: 19px;
      color: var(--dark);
      font-weight: 700;
    }
    .link-text {
      font-size: 13.5px;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
    }
    .link-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13.5px;
      font-weight: 800;
      color: var(--dark);
      margin-top: 4px;
      transition: gap .2s;
    }
    .link-card:hover .link-cta { gap: 10px; }
    .link-card:nth-child(1) .link-cta { color: var(--rose); }
    .link-card:nth-child(2) .link-cta { color: var(--mint); }
    .link-card:nth-child(3) .link-cta { color: var(--sky); }

    /* ── ACCORDION / FAQ ── */
    .faq { display: flex; flex-direction: column; gap: 10px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .faq-item:hover { box-shadow: var(--shadow-md); }
    .faq-item.open { border-color: var(--rose-soft); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--ff-body);
      font-size: 15px;
      font-weight: 800;
      color: var(--dark);
      gap: 16px;
    }
    .faq-question:hover { background: var(--rose-bg); }
    .faq-arrow {
      flex: 0 0 30px;
      width: 30px; height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--light);
      border: 1px solid var(--border);
      font-size: 16px;
      color: var(--muted);
      transition: transform .3s, background .2s;
    }
    .faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--rose-soft); color: var(--rose); border-color: var(--rose-soft); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer-inner {
      padding: 0 22px 20px;
      font-size: 14.5px;
      color: var(--mid);
      line-height: 1.75;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }

    /* ── STICKY NAV ── */
    .sticky-nav {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 99;
      display: flex;
      gap: 10px;
      background: rgba(255,255,255,.88);
      backdrop-filter: blur(18px);
      padding: 10px;
      border-radius: 999px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
    }
    .sticky-nav a {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 10px 20px;
      border-radius: 999px;
      text-decoration: none;
      font-size: 13.5px;
      font-weight: 800;
      color: var(--dark);
      transition: .2s;
    }
    .sticky-nav a:first-child { background: linear-gradient(135deg, var(--rose), #FF8FA3); color: var(--white); box-shadow: 0 6px 18px rgba(255,107,138,.35); }
    .sticky-nav a:first-child:hover { transform: translateY(-2px); }
    .sticky-nav a:last-child { background: var(--light); border: 1px solid var(--border); }
    .sticky-nav a:last-child:hover { background: var(--sky-bg); color: var(--sky); }

    /* ── DEMO FOOTER ── */
    .demo-footer {
      background: var(--dark);
      color: rgba(255,255,255,.55);
      text-align: center;
      padding: 24px;
      font-size: 12px;
      margin-top: 60px;
    }

    /* ── ENTRANCE ANIMATIONS ── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      animation: fadeUp .6s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: .05s; }
    .fade-up:nth-child(2) { animation-delay: .12s; }
    .fade-up:nth-child(3) { animation-delay: .19s; }
    .fade-up:nth-child(4) { animation-delay: .26s; }
    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { padding: 34px 26px; }
      .links-grid { grid-template-columns: 1fr 1fr; }
      .principles-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .hero { padding: 28px 20px; border-radius: var(--r-lg); }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { justify-content: center; }
      .stages-grid, .links-grid, .principles-grid { grid-template-columns: 1fr; }
      .card { padding: 22px 18px; }
      .highlight { padding: 28px 22px; }
      .sticky-nav { width: calc(100% - 32px); border-radius: var(--r-lg); }
      .sticky-nav a { flex: 1; justify-content: center; }
    }
	
	
	
.author-card {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #FFF6F8 0%, #FFFBF7 38%, #F2F8FF 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.author-card::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,138,.12) 0%, transparent 72%);
  pointer-events: none;
}
.author-card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,164,207,.10) 0%, transparent 72%);
  pointer-events: none;
}
.author-card__media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.author-card__avatar {
  width: 220px;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  background: var(--light);
  box-shadow: var(--shadow-md);
}
.author-card__content {
  position: relative;
  z-index: 1;
}
.author-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 800;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.author-card__text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 12px;
}
.author-card__text p:last-child {
  margin-bottom: 0;
}
.author-card__footer {
  margin-top: 16px;
}
.author-card__person {
  font-family: var(--ff-head);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}
.author-card__role {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}
.author-card__actions {
  margin-top: 18px;
}
.author-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1.5px solid var(--border);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  transition: .2s ease;
  box-shadow: var(--shadow-sm);
}
.author-card__link:hover {
  transform: translateY(-2px);
  border-color: var(--rose-soft);
  color: var(--rose);
  box-shadow: var(--shadow-md);
}
.author-card__link::after {
  content: '→';
}
@media (max-width: 767px) {
  .author-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    text-align: center;
  }
  .author-card__avatar {
    width: 200px;
    height: 200px;
  }
  .author-card__badge {
    margin-bottom: 12px;
  }
  .author-card__person {
    font-size: 22px;
  }
  .author-card__actions {
    margin-top: 16px;
  }
  .author-card__link {
    width: 100%;
    justify-content: center;
  }
}