:root{
  --bg: #efeeec;
  --bg-deep: #e6e4e2;
  --card: #ffffff;
  --ink: #201d1c;
  --muted: #8d8683;
  --rose: #e2a2b6;
  --rose-deep: #c9748f;
  --line: #e3e1df;
  --tag: #f6e2e9;
}
*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  background: linear-gradient(160deg, #f3eeec 0%, #eee9e6 45%, #f0e6e9 100%);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}
.display{font-family:'Poppins', sans-serif;}

/* ---------- NAV ---------- */
nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 26px 48px;
  border-bottom: 1px solid var(--line);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(160deg, var(--rose) 0%, var(--rose-deep) 100%);
  position:relative;
  flex-shrink:0;
}
.brand-mark::after{
  content:"";
  position:absolute; inset:9px;
  border-radius:50%;
  border:2px solid #fff;
  opacity:.85;
}
.brand-name{
  font-family:'Poppins', sans-serif;
  font-size:1.4rem;
  font-weight:600;
  letter-spacing:-0.01em;
  color: var(--ink);
}
.tabs{ display:flex; gap:6px; }
.tab{
  display:inline-block;
  border:1px solid transparent; background:none; cursor:pointer;
  font-family:'Inter', sans-serif;
  font-size:0.95rem;
  color: var(--muted);
  text-decoration:none;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.tab:hover{ color: var(--ink); }
.tab.active{
  background: linear-gradient(135deg, var(--tag), #f1d3dd);
  color: var(--rose-deep);
  border: 1px solid var(--rose);
  font-weight:500;
}

main{ padding: 64px 48px 40px; max-width: 1180px; margin:0 auto; }

/* ---------- ABOUT / HOME ---------- */
.hero{
  display:grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items:start;
}
.hero h1{
  font-family:'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height:1.2;
  margin: 8px 0 26px;
  font-weight:600;
}
.hero h1 .accent{
  background: linear-gradient(100deg, var(--rose-deep), var(--rose) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede{
  background: linear-gradient(165deg, #ffffff 0%, #fdf7f8 100%);
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.05);
  color:#4a4340;
  font-size: 1.02rem;
  line-height:1.7;
  max-width: 48ch;
}
.lede b{ color: var(--rose-deep); font-weight:600; }

.collage{
  position:relative;
  height: 400px;
}
.collage .glow{
  position:absolute;
  width:300px; height:300px;
  left: 20%;
  top: 42%;
  background: radial-gradient(circle, var(--rose) 0%, #f0c9d6 45%, transparent 75%);
  filter: blur(30px);
  opacity:.5;
  z-index:0;
}
.collage img{
  position:absolute;
  object-fit:cover;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}
.collage .img-a{ width:280px; height:360px; top:0; right:6%; z-index:2; }
.collage .img-b{ width:250px; height:200px; bottom:0; left:0; z-index:1; }
.caption{
  margin-top: 22px;
  text-align:right;
  padding-right: 6%;
  font-size: 1rem;
  color: var(--muted);
}

.footnote{
  margin-top: 90px;
  text-align:center;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

/* ---------- PROMPTS / PLANS ---------- */
.plans-head{
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom: 34px;
}
.plans-head h2{ font-family:'Poppins', sans-serif; font-size:1.9rem; font-weight:500; margin:0; }
.plans-head span{ color:var(--muted); font-size:0.95rem; }

.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.plan-card{
  background: linear-gradient(170deg, #ffffff 0%, #fdfaf9 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
}
.plan-top{
  display:flex; gap:18px; align-items:flex-start;
  margin-bottom: 20px;
}
.plan-top img{
  width: 108px; height:108px;
  border-radius: 16px;
  object-fit:cover;
  flex-shrink:0;
}
.plan-id{ flex:1; }
.plan-id .unlock{
  float:right;
  font-size:0.75rem;
  border:1px solid var(--rose);
  color: #fff;
  padding: 4px 12px;
  border-radius:999px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
}
.plan-id h3{
  font-family:'Poppins', sans-serif;
  font-size:1.4rem;
  font-weight:500;
  margin: 2px 0 2px;
}
.plan-id h3 em{
  font-style:normal; color: var(--rose);
}
.plan-id .meta{
  font-size:0.85rem; color: var(--muted); margin-bottom:8px;
}
.plan-id .role{
  font-family:'Inter', sans-serif;
  font-style: italic;
  font-size:0.95rem;
  color:#59504c;
  line-height:1.4;
}

.story-row{
  display:grid;
  grid-template-columns: 1fr 110px;
  gap:16px;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-deep) 100%);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
}
.story-row .story-text{ font-size:0.92rem; line-height:1.55; color:#443a37; }
.story-row .story-text .kicker{
  display:block;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  color: var(--ink);
  margin-bottom:6px;
  font-size:1.05rem;
}
.story-row img{
  width:110px; height:100%;
  min-height:120px;
  border-radius:14px;
  object-fit:cover;
}

.track{
  display:flex; align-items:center; gap:10px;
  background: linear-gradient(135deg, var(--tag), #f3e6ea);
  border-radius: 999px;
  padding: 8px 16px;
  font-size:0.82rem;
  margin-bottom:16px;
  color:#5a4c46;
}
.track .bars{ display:flex; gap:2px; align-items:flex-end; }
.track .bars span{
  display:block; width:2px; background: var(--rose-deep); border-radius:2px;
}
.track .bars span:nth-child(1){height:6px;}
.track .bars span:nth-child(2){height:12px;}
.track .bars span:nth-child(3){height:8px;}
.track .song{ font-weight:500; color:var(--ink); }
.track .artist{ margin-left:auto; color:var(--muted); }

.mood-strip{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:8px;
}
.mood-strip img{
  width:100%; height:92px;
  object-fit:cover;
  border-radius:12px;
}

@media (max-width: 880px){
  nav{ padding:20px 22px; flex-wrap:wrap; gap:14px; }
  main{ padding: 40px 22px; }
  .hero{ grid-template-columns:1fr; }
  .collage{ height:340px; margin-top:20px; }
  .grid{ grid-template-columns:1fr; }
}
